use the libiberty crc code
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2013 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* See the GDB User Guide for details of the GDB remote protocol. */
21
22 #include "defs.h"
23 #include "gdb_string.h"
24 #include <ctype.h>
25 #include <fcntl.h>
26 #include "inferior.h"
27 #include "bfd.h"
28 #include "symfile.h"
29 #include "exceptions.h"
30 #include "target.h"
31 /*#include "terminal.h" */
32 #include "gdbcmd.h"
33 #include "objfiles.h"
34 #include "gdb-stabs.h"
35 #include "gdbthread.h"
36 #include "remote.h"
37 #include "remote-notif.h"
38 #include "regcache.h"
39 #include "value.h"
40 #include "gdb_assert.h"
41 #include "observer.h"
42 #include "solib.h"
43 #include "cli/cli-decode.h"
44 #include "cli/cli-setshow.h"
45 #include "target-descriptions.h"
46 #include "gdb_bfd.h"
47 #include "filestuff.h"
48
49 #include <ctype.h>
50 #include <sys/time.h>
51
52 #include "event-loop.h"
53 #include "event-top.h"
54 #include "inf-loop.h"
55
56 #include <signal.h>
57 #include "serial.h"
58
59 #include "gdbcore.h" /* for exec_bfd */
60
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
63 #include "gdb_stat.h"
64 #include "xml-support.h"
65
66 #include "memory-map.h"
67
68 #include "tracepoint.h"
69 #include "ax.h"
70 #include "ax-gdb.h"
71 #include "agent.h"
72 #include "btrace.h"
73
74 /* Temp hacks for tracepoint encoding migration. */
75 static char *target_buf;
76 static long target_buf_size;
77
78 /* The size to align memory write packets, when practical. The protocol
79 does not guarantee any alignment, and gdb will generate short
80 writes and unaligned writes, but even as a best-effort attempt this
81 can improve bulk transfers. For instance, if a write is misaligned
82 relative to the target's data bus, the stub may need to make an extra
83 round trip fetching data from the target. This doesn't make a
84 huge difference, but it's easy to do, so we try to be helpful.
85
86 The alignment chosen is arbitrary; usually data bus width is
87 important here, not the possibly larger cache line size. */
88 enum { REMOTE_ALIGN_WRITES = 16 };
89
90 /* Prototypes for local functions. */
91 static void async_cleanup_sigint_signal_handler (void *dummy);
92 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
93 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
94 int forever, int *is_notif);
95
96 static void async_handle_remote_sigint (int);
97 static void async_handle_remote_sigint_twice (int);
98
99 static void remote_files_info (struct target_ops *ignore);
100
101 static void remote_prepare_to_store (struct regcache *regcache);
102
103 static void remote_open (char *name, int from_tty);
104
105 static void extended_remote_open (char *name, int from_tty);
106
107 static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
108
109 static void remote_close (void);
110
111 static void remote_mourn (struct target_ops *ops);
112
113 static void extended_remote_restart (void);
114
115 static void extended_remote_mourn (struct target_ops *);
116
117 static void remote_mourn_1 (struct target_ops *);
118
119 static void remote_send (char **buf, long *sizeof_buf_p);
120
121 static int readchar (int timeout);
122
123 static void remote_serial_write (const char *str, int len);
124
125 static void remote_kill (struct target_ops *ops);
126
127 static int tohex (int nib);
128
129 static int remote_can_async_p (void);
130
131 static int remote_is_async_p (void);
132
133 static void remote_async (void (*callback) (enum inferior_event_type event_type,
134 void *context), void *context);
135
136 static void remote_detach (struct target_ops *ops, char *args, int from_tty);
137
138 static void sync_remote_interrupt_twice (int signo);
139
140 static void interrupt_query (void);
141
142 static void set_general_thread (struct ptid ptid);
143 static void set_continue_thread (struct ptid ptid);
144
145 static void get_offsets (void);
146
147 static void skip_frame (void);
148
149 static long read_frame (char **buf_p, long *sizeof_buf);
150
151 static int hexnumlen (ULONGEST num);
152
153 static void init_remote_ops (void);
154
155 static void init_extended_remote_ops (void);
156
157 static void remote_stop (ptid_t);
158
159 static int ishex (int ch, int *val);
160
161 static int stubhex (int ch);
162
163 static int hexnumstr (char *, ULONGEST);
164
165 static int hexnumnstr (char *, ULONGEST, int);
166
167 static CORE_ADDR remote_address_masked (CORE_ADDR);
168
169 static void print_packet (char *);
170
171 static void compare_sections_command (char *, int);
172
173 static void packet_command (char *, int);
174
175 static int stub_unpack_int (char *buff, int fieldlength);
176
177 static ptid_t remote_current_thread (ptid_t oldptid);
178
179 static void remote_find_new_threads (void);
180
181 static void record_currthread (ptid_t currthread);
182
183 static int fromhex (int a);
184
185 static int putpkt_binary (char *buf, int cnt);
186
187 static void check_binary_download (CORE_ADDR addr);
188
189 struct packet_config;
190
191 static void show_packet_config_cmd (struct packet_config *config);
192
193 static void update_packet_config (struct packet_config *config);
194
195 static void set_remote_protocol_packet_cmd (char *args, int from_tty,
196 struct cmd_list_element *c);
197
198 static void show_remote_protocol_packet_cmd (struct ui_file *file,
199 int from_tty,
200 struct cmd_list_element *c,
201 const char *value);
202
203 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
204 static ptid_t read_ptid (char *buf, char **obuf);
205
206 static void remote_set_permissions (void);
207
208 struct remote_state;
209 static int remote_get_trace_status (struct trace_status *ts);
210
211 static int remote_upload_tracepoints (struct uploaded_tp **utpp);
212
213 static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
214
215 static void remote_query_supported (void);
216
217 static void remote_check_symbols (void);
218
219 void _initialize_remote (void);
220
221 struct stop_reply;
222 static void stop_reply_xfree (struct stop_reply *);
223 static void remote_parse_stop_reply (char *, struct stop_reply *);
224 static void push_stop_reply (struct stop_reply *);
225 static void discard_pending_stop_replies (struct inferior *);
226 static int peek_stop_reply (ptid_t ptid);
227
228 static void remote_async_inferior_event_handler (gdb_client_data);
229
230 static void remote_terminal_ours (void);
231
232 static int remote_read_description_p (struct target_ops *target);
233
234 static void remote_console_output (char *msg);
235
236 static int remote_supports_cond_breakpoints (void);
237
238 static int remote_can_run_breakpoint_commands (void);
239
240 /* For "remote". */
241
242 static struct cmd_list_element *remote_cmdlist;
243
244 /* For "set remote" and "show remote". */
245
246 static struct cmd_list_element *remote_set_cmdlist;
247 static struct cmd_list_element *remote_show_cmdlist;
248
249 /* Stub vCont actions support.
250
251 Each field is a boolean flag indicating whether the stub reports
252 support for the corresponding action. */
253
254 struct vCont_action_support
255 {
256 /* vCont;t */
257 int t;
258
259 /* vCont;r */
260 int r;
261 };
262
263 /* Controls whether GDB is willing to use range stepping. */
264
265 static int use_range_stepping = 1;
266
267 /* Description of the remote protocol state for the currently
268 connected target. This is per-target state, and independent of the
269 selected architecture. */
270
271 struct remote_state
272 {
273 /* A buffer to use for incoming packets, and its current size. The
274 buffer is grown dynamically for larger incoming packets.
275 Outgoing packets may also be constructed in this buffer.
276 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
277 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
278 packets. */
279 char *buf;
280 long buf_size;
281
282 /* True if we're going through initial connection setup (finding out
283 about the remote side's threads, relocating symbols, etc.). */
284 int starting_up;
285
286 /* If we negotiated packet size explicitly (and thus can bypass
287 heuristics for the largest packet size that will not overflow
288 a buffer in the stub), this will be set to that packet size.
289 Otherwise zero, meaning to use the guessed size. */
290 long explicit_packet_size;
291
292 /* remote_wait is normally called when the target is running and
293 waits for a stop reply packet. But sometimes we need to call it
294 when the target is already stopped. We can send a "?" packet
295 and have remote_wait read the response. Or, if we already have
296 the response, we can stash it in BUF and tell remote_wait to
297 skip calling getpkt. This flag is set when BUF contains a
298 stop reply packet and the target is not waiting. */
299 int cached_wait_status;
300
301 /* True, if in no ack mode. That is, neither GDB nor the stub will
302 expect acks from each other. The connection is assumed to be
303 reliable. */
304 int noack_mode;
305
306 /* True if we're connected in extended remote mode. */
307 int extended;
308
309 /* True if the stub reported support for multi-process
310 extensions. */
311 int multi_process_aware;
312
313 /* True if we resumed the target and we're waiting for the target to
314 stop. In the mean time, we can't start another command/query.
315 The remote server wouldn't be ready to process it, so we'd
316 timeout waiting for a reply that would never come and eventually
317 we'd close the connection. This can happen in asynchronous mode
318 because we allow GDB commands while the target is running. */
319 int waiting_for_stop_reply;
320
321 /* True if the stub reports support for non-stop mode. */
322 int non_stop_aware;
323
324 /* The status of the stub support for the various vCont actions. */
325 struct vCont_action_support supports_vCont;
326
327 /* True if the stub reports support for conditional tracepoints. */
328 int cond_tracepoints;
329
330 /* True if the stub reports support for target-side breakpoint
331 conditions. */
332 int cond_breakpoints;
333
334 /* True if the stub reports support for target-side breakpoint
335 commands. */
336 int breakpoint_commands;
337
338 /* True if the stub reports support for fast tracepoints. */
339 int fast_tracepoints;
340
341 /* True if the stub reports support for static tracepoints. */
342 int static_tracepoints;
343
344 /* True if the stub reports support for installing tracepoint while
345 tracing. */
346 int install_in_trace;
347
348 /* True if the stub can continue running a trace while GDB is
349 disconnected. */
350 int disconnected_tracing;
351
352 /* True if the stub reports support for enabling and disabling
353 tracepoints while a trace experiment is running. */
354 int enable_disable_tracepoints;
355
356 /* True if the stub can collect strings using tracenz bytecode. */
357 int string_tracing;
358
359 /* True if the stub supports qXfer:libraries-svr4:read with a
360 non-empty annex. */
361 int augmented_libraries_svr4_read;
362
363 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
364 responded to that. */
365 int ctrlc_pending_p;
366 };
367
368 /* Private data that we'll store in (struct thread_info)->private. */
369 struct private_thread_info
370 {
371 char *extra;
372 int core;
373 };
374
375 static void
376 free_private_thread_info (struct private_thread_info *info)
377 {
378 xfree (info->extra);
379 xfree (info);
380 }
381
382 /* Returns true if the multi-process extensions are in effect. */
383 static int
384 remote_multi_process_p (struct remote_state *rs)
385 {
386 return rs->multi_process_aware;
387 }
388
389 /* This data could be associated with a target, but we do not always
390 have access to the current target when we need it, so for now it is
391 static. This will be fine for as long as only one target is in use
392 at a time. */
393 static struct remote_state remote_state;
394
395 static struct remote_state *
396 get_remote_state_raw (void)
397 {
398 return &remote_state;
399 }
400
401 /* Description of the remote protocol for a given architecture. */
402
403 struct packet_reg
404 {
405 long offset; /* Offset into G packet. */
406 long regnum; /* GDB's internal register number. */
407 LONGEST pnum; /* Remote protocol register number. */
408 int in_g_packet; /* Always part of G packet. */
409 /* long size in bytes; == register_size (target_gdbarch (), regnum);
410 at present. */
411 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
412 at present. */
413 };
414
415 struct remote_arch_state
416 {
417 /* Description of the remote protocol registers. */
418 long sizeof_g_packet;
419
420 /* Description of the remote protocol registers indexed by REGNUM
421 (making an array gdbarch_num_regs in size). */
422 struct packet_reg *regs;
423
424 /* This is the size (in chars) of the first response to the ``g''
425 packet. It is used as a heuristic when determining the maximum
426 size of memory-read and memory-write packets. A target will
427 typically only reserve a buffer large enough to hold the ``g''
428 packet. The size does not include packet overhead (headers and
429 trailers). */
430 long actual_register_packet_size;
431
432 /* This is the maximum size (in chars) of a non read/write packet.
433 It is also used as a cap on the size of read/write packets. */
434 long remote_packet_size;
435 };
436
437 long sizeof_pkt = 2000;
438
439 /* Utility: generate error from an incoming stub packet. */
440 static void
441 trace_error (char *buf)
442 {
443 if (*buf++ != 'E')
444 return; /* not an error msg */
445 switch (*buf)
446 {
447 case '1': /* malformed packet error */
448 if (*++buf == '0') /* general case: */
449 error (_("remote.c: error in outgoing packet."));
450 else
451 error (_("remote.c: error in outgoing packet at field #%ld."),
452 strtol (buf, NULL, 16));
453 default:
454 error (_("Target returns error code '%s'."), buf);
455 }
456 }
457
458 /* Utility: wait for reply from stub, while accepting "O" packets. */
459 static char *
460 remote_get_noisy_reply (char **buf_p,
461 long *sizeof_buf)
462 {
463 do /* Loop on reply from remote stub. */
464 {
465 char *buf;
466
467 QUIT; /* Allow user to bail out with ^C. */
468 getpkt (buf_p, sizeof_buf, 0);
469 buf = *buf_p;
470 if (buf[0] == 'E')
471 trace_error (buf);
472 else if (strncmp (buf, "qRelocInsn:", strlen ("qRelocInsn:")) == 0)
473 {
474 ULONGEST ul;
475 CORE_ADDR from, to, org_to;
476 char *p, *pp;
477 int adjusted_size = 0;
478 volatile struct gdb_exception ex;
479
480 p = buf + strlen ("qRelocInsn:");
481 pp = unpack_varlen_hex (p, &ul);
482 if (*pp != ';')
483 error (_("invalid qRelocInsn packet: %s"), buf);
484 from = ul;
485
486 p = pp + 1;
487 unpack_varlen_hex (p, &ul);
488 to = ul;
489
490 org_to = to;
491
492 TRY_CATCH (ex, RETURN_MASK_ALL)
493 {
494 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
495 }
496 if (ex.reason >= 0)
497 {
498 adjusted_size = to - org_to;
499
500 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
501 putpkt (buf);
502 }
503 else if (ex.reason < 0 && ex.error == MEMORY_ERROR)
504 {
505 /* Propagate memory errors silently back to the target.
506 The stub may have limited the range of addresses we
507 can write to, for example. */
508 putpkt ("E01");
509 }
510 else
511 {
512 /* Something unexpectedly bad happened. Be verbose so
513 we can tell what, and propagate the error back to the
514 stub, so it doesn't get stuck waiting for a
515 response. */
516 exception_fprintf (gdb_stderr, ex,
517 _("warning: relocating instruction: "));
518 putpkt ("E01");
519 }
520 }
521 else if (buf[0] == 'O' && buf[1] != 'K')
522 remote_console_output (buf + 1); /* 'O' message from stub */
523 else
524 return buf; /* Here's the actual reply. */
525 }
526 while (1);
527 }
528
529 /* Handle for retreving the remote protocol data from gdbarch. */
530 static struct gdbarch_data *remote_gdbarch_data_handle;
531
532 static struct remote_arch_state *
533 get_remote_arch_state (void)
534 {
535 return gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle);
536 }
537
538 /* Fetch the global remote target state. */
539
540 static struct remote_state *
541 get_remote_state (void)
542 {
543 /* Make sure that the remote architecture state has been
544 initialized, because doing so might reallocate rs->buf. Any
545 function which calls getpkt also needs to be mindful of changes
546 to rs->buf, but this call limits the number of places which run
547 into trouble. */
548 get_remote_arch_state ();
549
550 return get_remote_state_raw ();
551 }
552
553 static int
554 compare_pnums (const void *lhs_, const void *rhs_)
555 {
556 const struct packet_reg * const *lhs = lhs_;
557 const struct packet_reg * const *rhs = rhs_;
558
559 if ((*lhs)->pnum < (*rhs)->pnum)
560 return -1;
561 else if ((*lhs)->pnum == (*rhs)->pnum)
562 return 0;
563 else
564 return 1;
565 }
566
567 static int
568 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
569 {
570 int regnum, num_remote_regs, offset;
571 struct packet_reg **remote_regs;
572
573 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
574 {
575 struct packet_reg *r = &regs[regnum];
576
577 if (register_size (gdbarch, regnum) == 0)
578 /* Do not try to fetch zero-sized (placeholder) registers. */
579 r->pnum = -1;
580 else
581 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
582
583 r->regnum = regnum;
584 }
585
586 /* Define the g/G packet format as the contents of each register
587 with a remote protocol number, in order of ascending protocol
588 number. */
589
590 remote_regs = alloca (gdbarch_num_regs (gdbarch)
591 * sizeof (struct packet_reg *));
592 for (num_remote_regs = 0, regnum = 0;
593 regnum < gdbarch_num_regs (gdbarch);
594 regnum++)
595 if (regs[regnum].pnum != -1)
596 remote_regs[num_remote_regs++] = &regs[regnum];
597
598 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
599 compare_pnums);
600
601 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
602 {
603 remote_regs[regnum]->in_g_packet = 1;
604 remote_regs[regnum]->offset = offset;
605 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
606 }
607
608 return offset;
609 }
610
611 /* Given the architecture described by GDBARCH, return the remote
612 protocol register's number and the register's offset in the g/G
613 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
614 If the target does not have a mapping for REGNUM, return false,
615 otherwise, return true. */
616
617 int
618 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
619 int *pnum, int *poffset)
620 {
621 int sizeof_g_packet;
622 struct packet_reg *regs;
623 struct cleanup *old_chain;
624
625 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
626
627 regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg));
628 old_chain = make_cleanup (xfree, regs);
629
630 sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
631
632 *pnum = regs[regnum].pnum;
633 *poffset = regs[regnum].offset;
634
635 do_cleanups (old_chain);
636
637 return *pnum != -1;
638 }
639
640 static void *
641 init_remote_state (struct gdbarch *gdbarch)
642 {
643 struct remote_state *rs = get_remote_state_raw ();
644 struct remote_arch_state *rsa;
645
646 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
647
648 /* Use the architecture to build a regnum<->pnum table, which will be
649 1:1 unless a feature set specifies otherwise. */
650 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
651 gdbarch_num_regs (gdbarch),
652 struct packet_reg);
653
654 /* Record the maximum possible size of the g packet - it may turn out
655 to be smaller. */
656 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
657
658 /* Default maximum number of characters in a packet body. Many
659 remote stubs have a hardwired buffer size of 400 bytes
660 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
661 as the maximum packet-size to ensure that the packet and an extra
662 NUL character can always fit in the buffer. This stops GDB
663 trashing stubs that try to squeeze an extra NUL into what is
664 already a full buffer (As of 1999-12-04 that was most stubs). */
665 rsa->remote_packet_size = 400 - 1;
666
667 /* This one is filled in when a ``g'' packet is received. */
668 rsa->actual_register_packet_size = 0;
669
670 /* Should rsa->sizeof_g_packet needs more space than the
671 default, adjust the size accordingly. Remember that each byte is
672 encoded as two characters. 32 is the overhead for the packet
673 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
674 (``$NN:G...#NN'') is a better guess, the below has been padded a
675 little. */
676 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
677 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
678
679 /* Make sure that the packet buffer is plenty big enough for
680 this architecture. */
681 if (rs->buf_size < rsa->remote_packet_size)
682 {
683 rs->buf_size = 2 * rsa->remote_packet_size;
684 rs->buf = xrealloc (rs->buf, rs->buf_size);
685 }
686
687 return rsa;
688 }
689
690 /* Return the current allowed size of a remote packet. This is
691 inferred from the current architecture, and should be used to
692 limit the length of outgoing packets. */
693 static long
694 get_remote_packet_size (void)
695 {
696 struct remote_state *rs = get_remote_state ();
697 struct remote_arch_state *rsa = get_remote_arch_state ();
698
699 if (rs->explicit_packet_size)
700 return rs->explicit_packet_size;
701
702 return rsa->remote_packet_size;
703 }
704
705 static struct packet_reg *
706 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
707 {
708 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
709 return NULL;
710 else
711 {
712 struct packet_reg *r = &rsa->regs[regnum];
713
714 gdb_assert (r->regnum == regnum);
715 return r;
716 }
717 }
718
719 static struct packet_reg *
720 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
721 {
722 int i;
723
724 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
725 {
726 struct packet_reg *r = &rsa->regs[i];
727
728 if (r->pnum == pnum)
729 return r;
730 }
731 return NULL;
732 }
733
734 /* FIXME: graces/2002-08-08: These variables should eventually be
735 bound to an instance of the target object (as in gdbarch-tdep()),
736 when such a thing exists. */
737
738 /* This is set to the data address of the access causing the target
739 to stop for a watchpoint. */
740 static CORE_ADDR remote_watch_data_address;
741
742 /* This is non-zero if target stopped for a watchpoint. */
743 static int remote_stopped_by_watchpoint_p;
744
745 static struct target_ops remote_ops;
746
747 static struct target_ops extended_remote_ops;
748
749 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
750 ``forever'' still use the normal timeout mechanism. This is
751 currently used by the ASYNC code to guarentee that target reads
752 during the initial connect always time-out. Once getpkt has been
753 modified to return a timeout indication and, in turn
754 remote_wait()/wait_for_inferior() have gained a timeout parameter
755 this can go away. */
756 static int wait_forever_enabled_p = 1;
757
758 /* Allow the user to specify what sequence to send to the remote
759 when he requests a program interruption: Although ^C is usually
760 what remote systems expect (this is the default, here), it is
761 sometimes preferable to send a break. On other systems such
762 as the Linux kernel, a break followed by g, which is Magic SysRq g
763 is required in order to interrupt the execution. */
764 const char interrupt_sequence_control_c[] = "Ctrl-C";
765 const char interrupt_sequence_break[] = "BREAK";
766 const char interrupt_sequence_break_g[] = "BREAK-g";
767 static const char *const interrupt_sequence_modes[] =
768 {
769 interrupt_sequence_control_c,
770 interrupt_sequence_break,
771 interrupt_sequence_break_g,
772 NULL
773 };
774 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
775
776 static void
777 show_interrupt_sequence (struct ui_file *file, int from_tty,
778 struct cmd_list_element *c,
779 const char *value)
780 {
781 if (interrupt_sequence_mode == interrupt_sequence_control_c)
782 fprintf_filtered (file,
783 _("Send the ASCII ETX character (Ctrl-c) "
784 "to the remote target to interrupt the "
785 "execution of the program.\n"));
786 else if (interrupt_sequence_mode == interrupt_sequence_break)
787 fprintf_filtered (file,
788 _("send a break signal to the remote target "
789 "to interrupt the execution of the program.\n"));
790 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
791 fprintf_filtered (file,
792 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
793 "the remote target to interrupt the execution "
794 "of Linux kernel.\n"));
795 else
796 internal_error (__FILE__, __LINE__,
797 _("Invalid value for interrupt_sequence_mode: %s."),
798 interrupt_sequence_mode);
799 }
800
801 /* This boolean variable specifies whether interrupt_sequence is sent
802 to the remote target when gdb connects to it.
803 This is mostly needed when you debug the Linux kernel: The Linux kernel
804 expects BREAK g which is Magic SysRq g for connecting gdb. */
805 static int interrupt_on_connect = 0;
806
807 /* This variable is used to implement the "set/show remotebreak" commands.
808 Since these commands are now deprecated in favor of "set/show remote
809 interrupt-sequence", it no longer has any effect on the code. */
810 static int remote_break;
811
812 static void
813 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
814 {
815 if (remote_break)
816 interrupt_sequence_mode = interrupt_sequence_break;
817 else
818 interrupt_sequence_mode = interrupt_sequence_control_c;
819 }
820
821 static void
822 show_remotebreak (struct ui_file *file, int from_tty,
823 struct cmd_list_element *c,
824 const char *value)
825 {
826 }
827
828 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
829 remote_open knows that we don't have a file open when the program
830 starts. */
831 static struct serial *remote_desc = NULL;
832
833 /* This variable sets the number of bits in an address that are to be
834 sent in a memory ("M" or "m") packet. Normally, after stripping
835 leading zeros, the entire address would be sent. This variable
836 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
837 initial implementation of remote.c restricted the address sent in
838 memory packets to ``host::sizeof long'' bytes - (typically 32
839 bits). Consequently, for 64 bit targets, the upper 32 bits of an
840 address was never sent. Since fixing this bug may cause a break in
841 some remote targets this variable is principly provided to
842 facilitate backward compatibility. */
843
844 static unsigned int remote_address_size;
845
846 /* Temporary to track who currently owns the terminal. See
847 remote_terminal_* for more details. */
848
849 static int remote_async_terminal_ours_p;
850
851 /* The executable file to use for "run" on the remote side. */
852
853 static char *remote_exec_file = "";
854
855 \f
856 /* User configurable variables for the number of characters in a
857 memory read/write packet. MIN (rsa->remote_packet_size,
858 rsa->sizeof_g_packet) is the default. Some targets need smaller
859 values (fifo overruns, et.al.) and some users need larger values
860 (speed up transfers). The variables ``preferred_*'' (the user
861 request), ``current_*'' (what was actually set) and ``forced_*''
862 (Positive - a soft limit, negative - a hard limit). */
863
864 struct memory_packet_config
865 {
866 char *name;
867 long size;
868 int fixed_p;
869 };
870
871 /* Compute the current size of a read/write packet. Since this makes
872 use of ``actual_register_packet_size'' the computation is dynamic. */
873
874 static long
875 get_memory_packet_size (struct memory_packet_config *config)
876 {
877 struct remote_state *rs = get_remote_state ();
878 struct remote_arch_state *rsa = get_remote_arch_state ();
879
880 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
881 law?) that some hosts don't cope very well with large alloca()
882 calls. Eventually the alloca() code will be replaced by calls to
883 xmalloc() and make_cleanups() allowing this restriction to either
884 be lifted or removed. */
885 #ifndef MAX_REMOTE_PACKET_SIZE
886 #define MAX_REMOTE_PACKET_SIZE 16384
887 #endif
888 /* NOTE: 20 ensures we can write at least one byte. */
889 #ifndef MIN_REMOTE_PACKET_SIZE
890 #define MIN_REMOTE_PACKET_SIZE 20
891 #endif
892 long what_they_get;
893 if (config->fixed_p)
894 {
895 if (config->size <= 0)
896 what_they_get = MAX_REMOTE_PACKET_SIZE;
897 else
898 what_they_get = config->size;
899 }
900 else
901 {
902 what_they_get = get_remote_packet_size ();
903 /* Limit the packet to the size specified by the user. */
904 if (config->size > 0
905 && what_they_get > config->size)
906 what_they_get = config->size;
907
908 /* Limit it to the size of the targets ``g'' response unless we have
909 permission from the stub to use a larger packet size. */
910 if (rs->explicit_packet_size == 0
911 && rsa->actual_register_packet_size > 0
912 && what_they_get > rsa->actual_register_packet_size)
913 what_they_get = rsa->actual_register_packet_size;
914 }
915 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
916 what_they_get = MAX_REMOTE_PACKET_SIZE;
917 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
918 what_they_get = MIN_REMOTE_PACKET_SIZE;
919
920 /* Make sure there is room in the global buffer for this packet
921 (including its trailing NUL byte). */
922 if (rs->buf_size < what_they_get + 1)
923 {
924 rs->buf_size = 2 * what_they_get;
925 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
926 }
927
928 return what_they_get;
929 }
930
931 /* Update the size of a read/write packet. If they user wants
932 something really big then do a sanity check. */
933
934 static void
935 set_memory_packet_size (char *args, struct memory_packet_config *config)
936 {
937 int fixed_p = config->fixed_p;
938 long size = config->size;
939
940 if (args == NULL)
941 error (_("Argument required (integer, `fixed' or `limited')."));
942 else if (strcmp (args, "hard") == 0
943 || strcmp (args, "fixed") == 0)
944 fixed_p = 1;
945 else if (strcmp (args, "soft") == 0
946 || strcmp (args, "limit") == 0)
947 fixed_p = 0;
948 else
949 {
950 char *end;
951
952 size = strtoul (args, &end, 0);
953 if (args == end)
954 error (_("Invalid %s (bad syntax)."), config->name);
955 #if 0
956 /* Instead of explicitly capping the size of a packet to
957 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
958 instead allowed to set the size to something arbitrarily
959 large. */
960 if (size > MAX_REMOTE_PACKET_SIZE)
961 error (_("Invalid %s (too large)."), config->name);
962 #endif
963 }
964 /* Extra checks? */
965 if (fixed_p && !config->fixed_p)
966 {
967 if (! query (_("The target may not be able to correctly handle a %s\n"
968 "of %ld bytes. Change the packet size? "),
969 config->name, size))
970 error (_("Packet size not changed."));
971 }
972 /* Update the config. */
973 config->fixed_p = fixed_p;
974 config->size = size;
975 }
976
977 static void
978 show_memory_packet_size (struct memory_packet_config *config)
979 {
980 printf_filtered (_("The %s is %ld. "), config->name, config->size);
981 if (config->fixed_p)
982 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
983 get_memory_packet_size (config));
984 else
985 printf_filtered (_("Packets are limited to %ld bytes.\n"),
986 get_memory_packet_size (config));
987 }
988
989 static struct memory_packet_config memory_write_packet_config =
990 {
991 "memory-write-packet-size",
992 };
993
994 static void
995 set_memory_write_packet_size (char *args, int from_tty)
996 {
997 set_memory_packet_size (args, &memory_write_packet_config);
998 }
999
1000 static void
1001 show_memory_write_packet_size (char *args, int from_tty)
1002 {
1003 show_memory_packet_size (&memory_write_packet_config);
1004 }
1005
1006 static long
1007 get_memory_write_packet_size (void)
1008 {
1009 return get_memory_packet_size (&memory_write_packet_config);
1010 }
1011
1012 static struct memory_packet_config memory_read_packet_config =
1013 {
1014 "memory-read-packet-size",
1015 };
1016
1017 static void
1018 set_memory_read_packet_size (char *args, int from_tty)
1019 {
1020 set_memory_packet_size (args, &memory_read_packet_config);
1021 }
1022
1023 static void
1024 show_memory_read_packet_size (char *args, int from_tty)
1025 {
1026 show_memory_packet_size (&memory_read_packet_config);
1027 }
1028
1029 static long
1030 get_memory_read_packet_size (void)
1031 {
1032 long size = get_memory_packet_size (&memory_read_packet_config);
1033
1034 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1035 extra buffer size argument before the memory read size can be
1036 increased beyond this. */
1037 if (size > get_remote_packet_size ())
1038 size = get_remote_packet_size ();
1039 return size;
1040 }
1041
1042 \f
1043 /* Generic configuration support for packets the stub optionally
1044 supports. Allows the user to specify the use of the packet as well
1045 as allowing GDB to auto-detect support in the remote stub. */
1046
1047 enum packet_support
1048 {
1049 PACKET_SUPPORT_UNKNOWN = 0,
1050 PACKET_ENABLE,
1051 PACKET_DISABLE
1052 };
1053
1054 struct packet_config
1055 {
1056 const char *name;
1057 const char *title;
1058 enum auto_boolean detect;
1059 enum packet_support support;
1060 };
1061
1062 /* Analyze a packet's return value and update the packet config
1063 accordingly. */
1064
1065 enum packet_result
1066 {
1067 PACKET_ERROR,
1068 PACKET_OK,
1069 PACKET_UNKNOWN
1070 };
1071
1072 static void
1073 update_packet_config (struct packet_config *config)
1074 {
1075 switch (config->detect)
1076 {
1077 case AUTO_BOOLEAN_TRUE:
1078 config->support = PACKET_ENABLE;
1079 break;
1080 case AUTO_BOOLEAN_FALSE:
1081 config->support = PACKET_DISABLE;
1082 break;
1083 case AUTO_BOOLEAN_AUTO:
1084 config->support = PACKET_SUPPORT_UNKNOWN;
1085 break;
1086 }
1087 }
1088
1089 static void
1090 show_packet_config_cmd (struct packet_config *config)
1091 {
1092 char *support = "internal-error";
1093
1094 switch (config->support)
1095 {
1096 case PACKET_ENABLE:
1097 support = "enabled";
1098 break;
1099 case PACKET_DISABLE:
1100 support = "disabled";
1101 break;
1102 case PACKET_SUPPORT_UNKNOWN:
1103 support = "unknown";
1104 break;
1105 }
1106 switch (config->detect)
1107 {
1108 case AUTO_BOOLEAN_AUTO:
1109 printf_filtered (_("Support for the `%s' packet "
1110 "is auto-detected, currently %s.\n"),
1111 config->name, support);
1112 break;
1113 case AUTO_BOOLEAN_TRUE:
1114 case AUTO_BOOLEAN_FALSE:
1115 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1116 config->name, support);
1117 break;
1118 }
1119 }
1120
1121 static void
1122 add_packet_config_cmd (struct packet_config *config, const char *name,
1123 const char *title, int legacy)
1124 {
1125 char *set_doc;
1126 char *show_doc;
1127 char *cmd_name;
1128
1129 config->name = name;
1130 config->title = title;
1131 config->detect = AUTO_BOOLEAN_AUTO;
1132 config->support = PACKET_SUPPORT_UNKNOWN;
1133 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1134 name, title);
1135 show_doc = xstrprintf ("Show current use of remote "
1136 "protocol `%s' (%s) packet",
1137 name, title);
1138 /* set/show TITLE-packet {auto,on,off} */
1139 cmd_name = xstrprintf ("%s-packet", title);
1140 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1141 &config->detect, set_doc,
1142 show_doc, NULL, /* help_doc */
1143 set_remote_protocol_packet_cmd,
1144 show_remote_protocol_packet_cmd,
1145 &remote_set_cmdlist, &remote_show_cmdlist);
1146 /* The command code copies the documentation strings. */
1147 xfree (set_doc);
1148 xfree (show_doc);
1149 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1150 if (legacy)
1151 {
1152 char *legacy_name;
1153
1154 legacy_name = xstrprintf ("%s-packet", name);
1155 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1156 &remote_set_cmdlist);
1157 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1158 &remote_show_cmdlist);
1159 }
1160 }
1161
1162 static enum packet_result
1163 packet_check_result (const char *buf)
1164 {
1165 if (buf[0] != '\0')
1166 {
1167 /* The stub recognized the packet request. Check that the
1168 operation succeeded. */
1169 if (buf[0] == 'E'
1170 && isxdigit (buf[1]) && isxdigit (buf[2])
1171 && buf[3] == '\0')
1172 /* "Enn" - definitly an error. */
1173 return PACKET_ERROR;
1174
1175 /* Always treat "E." as an error. This will be used for
1176 more verbose error messages, such as E.memtypes. */
1177 if (buf[0] == 'E' && buf[1] == '.')
1178 return PACKET_ERROR;
1179
1180 /* The packet may or may not be OK. Just assume it is. */
1181 return PACKET_OK;
1182 }
1183 else
1184 /* The stub does not support the packet. */
1185 return PACKET_UNKNOWN;
1186 }
1187
1188 static enum packet_result
1189 packet_ok (const char *buf, struct packet_config *config)
1190 {
1191 enum packet_result result;
1192
1193 result = packet_check_result (buf);
1194 switch (result)
1195 {
1196 case PACKET_OK:
1197 case PACKET_ERROR:
1198 /* The stub recognized the packet request. */
1199 switch (config->support)
1200 {
1201 case PACKET_SUPPORT_UNKNOWN:
1202 if (remote_debug)
1203 fprintf_unfiltered (gdb_stdlog,
1204 "Packet %s (%s) is supported\n",
1205 config->name, config->title);
1206 config->support = PACKET_ENABLE;
1207 break;
1208 case PACKET_DISABLE:
1209 internal_error (__FILE__, __LINE__,
1210 _("packet_ok: attempt to use a disabled packet"));
1211 break;
1212 case PACKET_ENABLE:
1213 break;
1214 }
1215 break;
1216 case PACKET_UNKNOWN:
1217 /* The stub does not support the packet. */
1218 switch (config->support)
1219 {
1220 case PACKET_ENABLE:
1221 if (config->detect == AUTO_BOOLEAN_AUTO)
1222 /* If the stub previously indicated that the packet was
1223 supported then there is a protocol error.. */
1224 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1225 config->name, config->title);
1226 else
1227 /* The user set it wrong. */
1228 error (_("Enabled packet %s (%s) not recognized by stub"),
1229 config->name, config->title);
1230 break;
1231 case PACKET_SUPPORT_UNKNOWN:
1232 if (remote_debug)
1233 fprintf_unfiltered (gdb_stdlog,
1234 "Packet %s (%s) is NOT supported\n",
1235 config->name, config->title);
1236 config->support = PACKET_DISABLE;
1237 break;
1238 case PACKET_DISABLE:
1239 break;
1240 }
1241 break;
1242 }
1243
1244 return result;
1245 }
1246
1247 enum {
1248 PACKET_vCont = 0,
1249 PACKET_X,
1250 PACKET_qSymbol,
1251 PACKET_P,
1252 PACKET_p,
1253 PACKET_Z0,
1254 PACKET_Z1,
1255 PACKET_Z2,
1256 PACKET_Z3,
1257 PACKET_Z4,
1258 PACKET_vFile_open,
1259 PACKET_vFile_pread,
1260 PACKET_vFile_pwrite,
1261 PACKET_vFile_close,
1262 PACKET_vFile_unlink,
1263 PACKET_vFile_readlink,
1264 PACKET_qXfer_auxv,
1265 PACKET_qXfer_features,
1266 PACKET_qXfer_libraries,
1267 PACKET_qXfer_libraries_svr4,
1268 PACKET_qXfer_memory_map,
1269 PACKET_qXfer_spu_read,
1270 PACKET_qXfer_spu_write,
1271 PACKET_qXfer_osdata,
1272 PACKET_qXfer_threads,
1273 PACKET_qXfer_statictrace_read,
1274 PACKET_qXfer_traceframe_info,
1275 PACKET_qXfer_uib,
1276 PACKET_qGetTIBAddr,
1277 PACKET_qGetTLSAddr,
1278 PACKET_qSupported,
1279 PACKET_qTStatus,
1280 PACKET_QPassSignals,
1281 PACKET_QProgramSignals,
1282 PACKET_qSearch_memory,
1283 PACKET_vAttach,
1284 PACKET_vRun,
1285 PACKET_QStartNoAckMode,
1286 PACKET_vKill,
1287 PACKET_qXfer_siginfo_read,
1288 PACKET_qXfer_siginfo_write,
1289 PACKET_qAttached,
1290 PACKET_ConditionalTracepoints,
1291 PACKET_ConditionalBreakpoints,
1292 PACKET_BreakpointCommands,
1293 PACKET_FastTracepoints,
1294 PACKET_StaticTracepoints,
1295 PACKET_InstallInTrace,
1296 PACKET_bc,
1297 PACKET_bs,
1298 PACKET_TracepointSource,
1299 PACKET_QAllow,
1300 PACKET_qXfer_fdpic,
1301 PACKET_QDisableRandomization,
1302 PACKET_QAgent,
1303 PACKET_QTBuffer_size,
1304 PACKET_Qbtrace_off,
1305 PACKET_Qbtrace_bts,
1306 PACKET_qXfer_btrace,
1307 PACKET_MAX
1308 };
1309
1310 static struct packet_config remote_protocol_packets[PACKET_MAX];
1311
1312 static void
1313 set_remote_protocol_packet_cmd (char *args, int from_tty,
1314 struct cmd_list_element *c)
1315 {
1316 struct packet_config *packet;
1317
1318 for (packet = remote_protocol_packets;
1319 packet < &remote_protocol_packets[PACKET_MAX];
1320 packet++)
1321 {
1322 if (&packet->detect == c->var)
1323 {
1324 update_packet_config (packet);
1325 return;
1326 }
1327 }
1328 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1329 c->name);
1330 }
1331
1332 static void
1333 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1334 struct cmd_list_element *c,
1335 const char *value)
1336 {
1337 struct packet_config *packet;
1338
1339 for (packet = remote_protocol_packets;
1340 packet < &remote_protocol_packets[PACKET_MAX];
1341 packet++)
1342 {
1343 if (&packet->detect == c->var)
1344 {
1345 show_packet_config_cmd (packet);
1346 return;
1347 }
1348 }
1349 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1350 c->name);
1351 }
1352
1353 /* Should we try one of the 'Z' requests? */
1354
1355 enum Z_packet_type
1356 {
1357 Z_PACKET_SOFTWARE_BP,
1358 Z_PACKET_HARDWARE_BP,
1359 Z_PACKET_WRITE_WP,
1360 Z_PACKET_READ_WP,
1361 Z_PACKET_ACCESS_WP,
1362 NR_Z_PACKET_TYPES
1363 };
1364
1365 /* For compatibility with older distributions. Provide a ``set remote
1366 Z-packet ...'' command that updates all the Z packet types. */
1367
1368 static enum auto_boolean remote_Z_packet_detect;
1369
1370 static void
1371 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1372 struct cmd_list_element *c)
1373 {
1374 int i;
1375
1376 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1377 {
1378 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1379 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
1380 }
1381 }
1382
1383 static void
1384 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1385 struct cmd_list_element *c,
1386 const char *value)
1387 {
1388 int i;
1389
1390 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1391 {
1392 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1393 }
1394 }
1395
1396 /* Should we try the 'ThreadInfo' query packet?
1397
1398 This variable (NOT available to the user: auto-detect only!)
1399 determines whether GDB will use the new, simpler "ThreadInfo"
1400 query or the older, more complex syntax for thread queries.
1401 This is an auto-detect variable (set to true at each connect,
1402 and set to false when the target fails to recognize it). */
1403
1404 static int use_threadinfo_query;
1405 static int use_threadextra_query;
1406
1407 /* Tokens for use by the asynchronous signal handlers for SIGINT. */
1408 static struct async_signal_handler *async_sigint_remote_twice_token;
1409 static struct async_signal_handler *async_sigint_remote_token;
1410
1411 \f
1412 /* Asynchronous signal handle registered as event loop source for
1413 when we have pending events ready to be passed to the core. */
1414
1415 static struct async_event_handler *remote_async_inferior_event_token;
1416
1417 \f
1418
1419 static ptid_t magic_null_ptid;
1420 static ptid_t not_sent_ptid;
1421 static ptid_t any_thread_ptid;
1422
1423 /* These are the threads which we last sent to the remote system. The
1424 TID member will be -1 for all or -2 for not sent yet. */
1425
1426 static ptid_t general_thread;
1427 static ptid_t continue_thread;
1428
1429 /* This is the traceframe which we last selected on the remote system.
1430 It will be -1 if no traceframe is selected. */
1431 static int remote_traceframe_number = -1;
1432
1433 /* Find out if the stub attached to PID (and hence GDB should offer to
1434 detach instead of killing it when bailing out). */
1435
1436 static int
1437 remote_query_attached (int pid)
1438 {
1439 struct remote_state *rs = get_remote_state ();
1440 size_t size = get_remote_packet_size ();
1441
1442 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1443 return 0;
1444
1445 if (remote_multi_process_p (rs))
1446 xsnprintf (rs->buf, size, "qAttached:%x", pid);
1447 else
1448 xsnprintf (rs->buf, size, "qAttached");
1449
1450 putpkt (rs->buf);
1451 getpkt (&rs->buf, &rs->buf_size, 0);
1452
1453 switch (packet_ok (rs->buf,
1454 &remote_protocol_packets[PACKET_qAttached]))
1455 {
1456 case PACKET_OK:
1457 if (strcmp (rs->buf, "1") == 0)
1458 return 1;
1459 break;
1460 case PACKET_ERROR:
1461 warning (_("Remote failure reply: %s"), rs->buf);
1462 break;
1463 case PACKET_UNKNOWN:
1464 break;
1465 }
1466
1467 return 0;
1468 }
1469
1470 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1471 has been invented by GDB, instead of reported by the target. Since
1472 we can be connected to a remote system before before knowing about
1473 any inferior, mark the target with execution when we find the first
1474 inferior. If ATTACHED is 1, then we had just attached to this
1475 inferior. If it is 0, then we just created this inferior. If it
1476 is -1, then try querying the remote stub to find out if it had
1477 attached to the inferior or not. */
1478
1479 static struct inferior *
1480 remote_add_inferior (int fake_pid_p, int pid, int attached)
1481 {
1482 struct inferior *inf;
1483
1484 /* Check whether this process we're learning about is to be
1485 considered attached, or if is to be considered to have been
1486 spawned by the stub. */
1487 if (attached == -1)
1488 attached = remote_query_attached (pid);
1489
1490 if (gdbarch_has_global_solist (target_gdbarch ()))
1491 {
1492 /* If the target shares code across all inferiors, then every
1493 attach adds a new inferior. */
1494 inf = add_inferior (pid);
1495
1496 /* ... and every inferior is bound to the same program space.
1497 However, each inferior may still have its own address
1498 space. */
1499 inf->aspace = maybe_new_address_space ();
1500 inf->pspace = current_program_space;
1501 }
1502 else
1503 {
1504 /* In the traditional debugging scenario, there's a 1-1 match
1505 between program/address spaces. We simply bind the inferior
1506 to the program space's address space. */
1507 inf = current_inferior ();
1508 inferior_appeared (inf, pid);
1509 }
1510
1511 inf->attach_flag = attached;
1512 inf->fake_pid_p = fake_pid_p;
1513
1514 return inf;
1515 }
1516
1517 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1518 according to RUNNING. */
1519
1520 static void
1521 remote_add_thread (ptid_t ptid, int running)
1522 {
1523 add_thread (ptid);
1524
1525 set_executing (ptid, running);
1526 set_running (ptid, running);
1527 }
1528
1529 /* Come here when we learn about a thread id from the remote target.
1530 It may be the first time we hear about such thread, so take the
1531 opportunity to add it to GDB's thread list. In case this is the
1532 first time we're noticing its corresponding inferior, add it to
1533 GDB's inferior list as well. */
1534
1535 static void
1536 remote_notice_new_inferior (ptid_t currthread, int running)
1537 {
1538 /* If this is a new thread, add it to GDB's thread list.
1539 If we leave it up to WFI to do this, bad things will happen. */
1540
1541 if (in_thread_list (currthread) && is_exited (currthread))
1542 {
1543 /* We're seeing an event on a thread id we knew had exited.
1544 This has to be a new thread reusing the old id. Add it. */
1545 remote_add_thread (currthread, running);
1546 return;
1547 }
1548
1549 if (!in_thread_list (currthread))
1550 {
1551 struct inferior *inf = NULL;
1552 int pid = ptid_get_pid (currthread);
1553
1554 if (ptid_is_pid (inferior_ptid)
1555 && pid == ptid_get_pid (inferior_ptid))
1556 {
1557 /* inferior_ptid has no thread member yet. This can happen
1558 with the vAttach -> remote_wait,"TAAthread:" path if the
1559 stub doesn't support qC. This is the first stop reported
1560 after an attach, so this is the main thread. Update the
1561 ptid in the thread list. */
1562 if (in_thread_list (pid_to_ptid (pid)))
1563 thread_change_ptid (inferior_ptid, currthread);
1564 else
1565 {
1566 remote_add_thread (currthread, running);
1567 inferior_ptid = currthread;
1568 }
1569 return;
1570 }
1571
1572 if (ptid_equal (magic_null_ptid, inferior_ptid))
1573 {
1574 /* inferior_ptid is not set yet. This can happen with the
1575 vRun -> remote_wait,"TAAthread:" path if the stub
1576 doesn't support qC. This is the first stop reported
1577 after an attach, so this is the main thread. Update the
1578 ptid in the thread list. */
1579 thread_change_ptid (inferior_ptid, currthread);
1580 return;
1581 }
1582
1583 /* When connecting to a target remote, or to a target
1584 extended-remote which already was debugging an inferior, we
1585 may not know about it yet. Add it before adding its child
1586 thread, so notifications are emitted in a sensible order. */
1587 if (!in_inferior_list (ptid_get_pid (currthread)))
1588 {
1589 struct remote_state *rs = get_remote_state ();
1590 int fake_pid_p = !remote_multi_process_p (rs);
1591
1592 inf = remote_add_inferior (fake_pid_p,
1593 ptid_get_pid (currthread), -1);
1594 }
1595
1596 /* This is really a new thread. Add it. */
1597 remote_add_thread (currthread, running);
1598
1599 /* If we found a new inferior, let the common code do whatever
1600 it needs to with it (e.g., read shared libraries, insert
1601 breakpoints). */
1602 if (inf != NULL)
1603 notice_new_inferior (currthread, running, 0);
1604 }
1605 }
1606
1607 /* Return the private thread data, creating it if necessary. */
1608
1609 static struct private_thread_info *
1610 demand_private_info (ptid_t ptid)
1611 {
1612 struct thread_info *info = find_thread_ptid (ptid);
1613
1614 gdb_assert (info);
1615
1616 if (!info->private)
1617 {
1618 info->private = xmalloc (sizeof (*(info->private)));
1619 info->private_dtor = free_private_thread_info;
1620 info->private->core = -1;
1621 info->private->extra = 0;
1622 }
1623
1624 return info->private;
1625 }
1626
1627 /* Call this function as a result of
1628 1) A halt indication (T packet) containing a thread id
1629 2) A direct query of currthread
1630 3) Successful execution of set thread */
1631
1632 static void
1633 record_currthread (ptid_t currthread)
1634 {
1635 general_thread = currthread;
1636 }
1637
1638 static char *last_pass_packet;
1639
1640 /* If 'QPassSignals' is supported, tell the remote stub what signals
1641 it can simply pass through to the inferior without reporting. */
1642
1643 static void
1644 remote_pass_signals (int numsigs, unsigned char *pass_signals)
1645 {
1646 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1647 {
1648 char *pass_packet, *p;
1649 int count = 0, i;
1650
1651 gdb_assert (numsigs < 256);
1652 for (i = 0; i < numsigs; i++)
1653 {
1654 if (pass_signals[i])
1655 count++;
1656 }
1657 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1658 strcpy (pass_packet, "QPassSignals:");
1659 p = pass_packet + strlen (pass_packet);
1660 for (i = 0; i < numsigs; i++)
1661 {
1662 if (pass_signals[i])
1663 {
1664 if (i >= 16)
1665 *p++ = tohex (i >> 4);
1666 *p++ = tohex (i & 15);
1667 if (count)
1668 *p++ = ';';
1669 else
1670 break;
1671 count--;
1672 }
1673 }
1674 *p = 0;
1675 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1676 {
1677 struct remote_state *rs = get_remote_state ();
1678 char *buf = rs->buf;
1679
1680 putpkt (pass_packet);
1681 getpkt (&rs->buf, &rs->buf_size, 0);
1682 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1683 if (last_pass_packet)
1684 xfree (last_pass_packet);
1685 last_pass_packet = pass_packet;
1686 }
1687 else
1688 xfree (pass_packet);
1689 }
1690 }
1691
1692 /* The last QProgramSignals packet sent to the target. We bypass
1693 sending a new program signals list down to the target if the new
1694 packet is exactly the same as the last we sent. IOW, we only let
1695 the target know about program signals list changes. */
1696
1697 static char *last_program_signals_packet;
1698
1699 /* If 'QProgramSignals' is supported, tell the remote stub what
1700 signals it should pass through to the inferior when detaching. */
1701
1702 static void
1703 remote_program_signals (int numsigs, unsigned char *signals)
1704 {
1705 if (remote_protocol_packets[PACKET_QProgramSignals].support != PACKET_DISABLE)
1706 {
1707 char *packet, *p;
1708 int count = 0, i;
1709
1710 gdb_assert (numsigs < 256);
1711 for (i = 0; i < numsigs; i++)
1712 {
1713 if (signals[i])
1714 count++;
1715 }
1716 packet = xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
1717 strcpy (packet, "QProgramSignals:");
1718 p = packet + strlen (packet);
1719 for (i = 0; i < numsigs; i++)
1720 {
1721 if (signal_pass_state (i))
1722 {
1723 if (i >= 16)
1724 *p++ = tohex (i >> 4);
1725 *p++ = tohex (i & 15);
1726 if (count)
1727 *p++ = ';';
1728 else
1729 break;
1730 count--;
1731 }
1732 }
1733 *p = 0;
1734 if (!last_program_signals_packet
1735 || strcmp (last_program_signals_packet, packet) != 0)
1736 {
1737 struct remote_state *rs = get_remote_state ();
1738 char *buf = rs->buf;
1739
1740 putpkt (packet);
1741 getpkt (&rs->buf, &rs->buf_size, 0);
1742 packet_ok (buf, &remote_protocol_packets[PACKET_QProgramSignals]);
1743 xfree (last_program_signals_packet);
1744 last_program_signals_packet = packet;
1745 }
1746 else
1747 xfree (packet);
1748 }
1749 }
1750
1751 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1752 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1753 thread. If GEN is set, set the general thread, if not, then set
1754 the step/continue thread. */
1755 static void
1756 set_thread (struct ptid ptid, int gen)
1757 {
1758 struct remote_state *rs = get_remote_state ();
1759 ptid_t state = gen ? general_thread : continue_thread;
1760 char *buf = rs->buf;
1761 char *endbuf = rs->buf + get_remote_packet_size ();
1762
1763 if (ptid_equal (state, ptid))
1764 return;
1765
1766 *buf++ = 'H';
1767 *buf++ = gen ? 'g' : 'c';
1768 if (ptid_equal (ptid, magic_null_ptid))
1769 xsnprintf (buf, endbuf - buf, "0");
1770 else if (ptid_equal (ptid, any_thread_ptid))
1771 xsnprintf (buf, endbuf - buf, "0");
1772 else if (ptid_equal (ptid, minus_one_ptid))
1773 xsnprintf (buf, endbuf - buf, "-1");
1774 else
1775 write_ptid (buf, endbuf, ptid);
1776 putpkt (rs->buf);
1777 getpkt (&rs->buf, &rs->buf_size, 0);
1778 if (gen)
1779 general_thread = ptid;
1780 else
1781 continue_thread = ptid;
1782 }
1783
1784 static void
1785 set_general_thread (struct ptid ptid)
1786 {
1787 set_thread (ptid, 1);
1788 }
1789
1790 static void
1791 set_continue_thread (struct ptid ptid)
1792 {
1793 set_thread (ptid, 0);
1794 }
1795
1796 /* Change the remote current process. Which thread within the process
1797 ends up selected isn't important, as long as it is the same process
1798 as what INFERIOR_PTID points to.
1799
1800 This comes from that fact that there is no explicit notion of
1801 "selected process" in the protocol. The selected process for
1802 general operations is the process the selected general thread
1803 belongs to. */
1804
1805 static void
1806 set_general_process (void)
1807 {
1808 struct remote_state *rs = get_remote_state ();
1809
1810 /* If the remote can't handle multiple processes, don't bother. */
1811 if (!rs->extended || !remote_multi_process_p (rs))
1812 return;
1813
1814 /* We only need to change the remote current thread if it's pointing
1815 at some other process. */
1816 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1817 set_general_thread (inferior_ptid);
1818 }
1819
1820 \f
1821 /* Return nonzero if the thread PTID is still alive on the remote
1822 system. */
1823
1824 static int
1825 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
1826 {
1827 struct remote_state *rs = get_remote_state ();
1828 char *p, *endp;
1829
1830 if (ptid_equal (ptid, magic_null_ptid))
1831 /* The main thread is always alive. */
1832 return 1;
1833
1834 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1835 /* The main thread is always alive. This can happen after a
1836 vAttach, if the remote side doesn't support
1837 multi-threading. */
1838 return 1;
1839
1840 p = rs->buf;
1841 endp = rs->buf + get_remote_packet_size ();
1842
1843 *p++ = 'T';
1844 write_ptid (p, endp, ptid);
1845
1846 putpkt (rs->buf);
1847 getpkt (&rs->buf, &rs->buf_size, 0);
1848 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
1849 }
1850
1851 /* About these extended threadlist and threadinfo packets. They are
1852 variable length packets but, the fields within them are often fixed
1853 length. They are redundent enough to send over UDP as is the
1854 remote protocol in general. There is a matching unit test module
1855 in libstub. */
1856
1857 #define OPAQUETHREADBYTES 8
1858
1859 /* a 64 bit opaque identifier */
1860 typedef unsigned char threadref[OPAQUETHREADBYTES];
1861
1862 /* WARNING: This threadref data structure comes from the remote O.S.,
1863 libstub protocol encoding, and remote.c. It is not particularly
1864 changable. */
1865
1866 /* Right now, the internal structure is int. We want it to be bigger.
1867 Plan to fix this. */
1868
1869 typedef int gdb_threadref; /* Internal GDB thread reference. */
1870
1871 /* gdb_ext_thread_info is an internal GDB data structure which is
1872 equivalent to the reply of the remote threadinfo packet. */
1873
1874 struct gdb_ext_thread_info
1875 {
1876 threadref threadid; /* External form of thread reference. */
1877 int active; /* Has state interesting to GDB?
1878 regs, stack. */
1879 char display[256]; /* Brief state display, name,
1880 blocked/suspended. */
1881 char shortname[32]; /* To be used to name threads. */
1882 char more_display[256]; /* Long info, statistics, queue depth,
1883 whatever. */
1884 };
1885
1886 /* The volume of remote transfers can be limited by submitting
1887 a mask containing bits specifying the desired information.
1888 Use a union of these values as the 'selection' parameter to
1889 get_thread_info. FIXME: Make these TAG names more thread specific. */
1890
1891 #define TAG_THREADID 1
1892 #define TAG_EXISTS 2
1893 #define TAG_DISPLAY 4
1894 #define TAG_THREADNAME 8
1895 #define TAG_MOREDISPLAY 16
1896
1897 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
1898
1899 char *unpack_varlen_hex (char *buff, ULONGEST *result);
1900
1901 static char *unpack_nibble (char *buf, int *val);
1902
1903 static char *pack_nibble (char *buf, int nibble);
1904
1905 static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
1906
1907 static char *unpack_byte (char *buf, int *value);
1908
1909 static char *pack_int (char *buf, int value);
1910
1911 static char *unpack_int (char *buf, int *value);
1912
1913 static char *unpack_string (char *src, char *dest, int length);
1914
1915 static char *pack_threadid (char *pkt, threadref *id);
1916
1917 static char *unpack_threadid (char *inbuf, threadref *id);
1918
1919 void int_to_threadref (threadref *id, int value);
1920
1921 static int threadref_to_int (threadref *ref);
1922
1923 static void copy_threadref (threadref *dest, threadref *src);
1924
1925 static int threadmatch (threadref *dest, threadref *src);
1926
1927 static char *pack_threadinfo_request (char *pkt, int mode,
1928 threadref *id);
1929
1930 static int remote_unpack_thread_info_response (char *pkt,
1931 threadref *expectedref,
1932 struct gdb_ext_thread_info
1933 *info);
1934
1935
1936 static int remote_get_threadinfo (threadref *threadid,
1937 int fieldset, /*TAG mask */
1938 struct gdb_ext_thread_info *info);
1939
1940 static char *pack_threadlist_request (char *pkt, int startflag,
1941 int threadcount,
1942 threadref *nextthread);
1943
1944 static int parse_threadlist_response (char *pkt,
1945 int result_limit,
1946 threadref *original_echo,
1947 threadref *resultlist,
1948 int *doneflag);
1949
1950 static int remote_get_threadlist (int startflag,
1951 threadref *nextthread,
1952 int result_limit,
1953 int *done,
1954 int *result_count,
1955 threadref *threadlist);
1956
1957 typedef int (*rmt_thread_action) (threadref *ref, void *context);
1958
1959 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1960 void *context, int looplimit);
1961
1962 static int remote_newthread_step (threadref *ref, void *context);
1963
1964
1965 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1966 buffer we're allowed to write to. Returns
1967 BUF+CHARACTERS_WRITTEN. */
1968
1969 static char *
1970 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1971 {
1972 int pid, tid;
1973 struct remote_state *rs = get_remote_state ();
1974
1975 if (remote_multi_process_p (rs))
1976 {
1977 pid = ptid_get_pid (ptid);
1978 if (pid < 0)
1979 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1980 else
1981 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1982 }
1983 tid = ptid_get_tid (ptid);
1984 if (tid < 0)
1985 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1986 else
1987 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1988
1989 return buf;
1990 }
1991
1992 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1993 passed the last parsed char. Returns null_ptid on error. */
1994
1995 static ptid_t
1996 read_ptid (char *buf, char **obuf)
1997 {
1998 char *p = buf;
1999 char *pp;
2000 ULONGEST pid = 0, tid = 0;
2001
2002 if (*p == 'p')
2003 {
2004 /* Multi-process ptid. */
2005 pp = unpack_varlen_hex (p + 1, &pid);
2006 if (*pp != '.')
2007 error (_("invalid remote ptid: %s"), p);
2008
2009 p = pp;
2010 pp = unpack_varlen_hex (p + 1, &tid);
2011 if (obuf)
2012 *obuf = pp;
2013 return ptid_build (pid, 0, tid);
2014 }
2015
2016 /* No multi-process. Just a tid. */
2017 pp = unpack_varlen_hex (p, &tid);
2018
2019 /* Since the stub is not sending a process id, then default to
2020 what's in inferior_ptid, unless it's null at this point. If so,
2021 then since there's no way to know the pid of the reported
2022 threads, use the magic number. */
2023 if (ptid_equal (inferior_ptid, null_ptid))
2024 pid = ptid_get_pid (magic_null_ptid);
2025 else
2026 pid = ptid_get_pid (inferior_ptid);
2027
2028 if (obuf)
2029 *obuf = pp;
2030 return ptid_build (pid, 0, tid);
2031 }
2032
2033 /* Encode 64 bits in 16 chars of hex. */
2034
2035 static const char hexchars[] = "0123456789abcdef";
2036
2037 static int
2038 ishex (int ch, int *val)
2039 {
2040 if ((ch >= 'a') && (ch <= 'f'))
2041 {
2042 *val = ch - 'a' + 10;
2043 return 1;
2044 }
2045 if ((ch >= 'A') && (ch <= 'F'))
2046 {
2047 *val = ch - 'A' + 10;
2048 return 1;
2049 }
2050 if ((ch >= '0') && (ch <= '9'))
2051 {
2052 *val = ch - '0';
2053 return 1;
2054 }
2055 return 0;
2056 }
2057
2058 static int
2059 stubhex (int ch)
2060 {
2061 if (ch >= 'a' && ch <= 'f')
2062 return ch - 'a' + 10;
2063 if (ch >= '0' && ch <= '9')
2064 return ch - '0';
2065 if (ch >= 'A' && ch <= 'F')
2066 return ch - 'A' + 10;
2067 return -1;
2068 }
2069
2070 static int
2071 stub_unpack_int (char *buff, int fieldlength)
2072 {
2073 int nibble;
2074 int retval = 0;
2075
2076 while (fieldlength)
2077 {
2078 nibble = stubhex (*buff++);
2079 retval |= nibble;
2080 fieldlength--;
2081 if (fieldlength)
2082 retval = retval << 4;
2083 }
2084 return retval;
2085 }
2086
2087 char *
2088 unpack_varlen_hex (char *buff, /* packet to parse */
2089 ULONGEST *result)
2090 {
2091 int nibble;
2092 ULONGEST retval = 0;
2093
2094 while (ishex (*buff, &nibble))
2095 {
2096 buff++;
2097 retval = retval << 4;
2098 retval |= nibble & 0x0f;
2099 }
2100 *result = retval;
2101 return buff;
2102 }
2103
2104 static char *
2105 unpack_nibble (char *buf, int *val)
2106 {
2107 *val = fromhex (*buf++);
2108 return buf;
2109 }
2110
2111 static char *
2112 pack_nibble (char *buf, int nibble)
2113 {
2114 *buf++ = hexchars[(nibble & 0x0f)];
2115 return buf;
2116 }
2117
2118 static char *
2119 pack_hex_byte (char *pkt, int byte)
2120 {
2121 *pkt++ = hexchars[(byte >> 4) & 0xf];
2122 *pkt++ = hexchars[(byte & 0xf)];
2123 return pkt;
2124 }
2125
2126 static char *
2127 unpack_byte (char *buf, int *value)
2128 {
2129 *value = stub_unpack_int (buf, 2);
2130 return buf + 2;
2131 }
2132
2133 static char *
2134 pack_int (char *buf, int value)
2135 {
2136 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2137 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2138 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2139 buf = pack_hex_byte (buf, (value & 0xff));
2140 return buf;
2141 }
2142
2143 static char *
2144 unpack_int (char *buf, int *value)
2145 {
2146 *value = stub_unpack_int (buf, 8);
2147 return buf + 8;
2148 }
2149
2150 #if 0 /* Currently unused, uncomment when needed. */
2151 static char *pack_string (char *pkt, char *string);
2152
2153 static char *
2154 pack_string (char *pkt, char *string)
2155 {
2156 char ch;
2157 int len;
2158
2159 len = strlen (string);
2160 if (len > 200)
2161 len = 200; /* Bigger than most GDB packets, junk??? */
2162 pkt = pack_hex_byte (pkt, len);
2163 while (len-- > 0)
2164 {
2165 ch = *string++;
2166 if ((ch == '\0') || (ch == '#'))
2167 ch = '*'; /* Protect encapsulation. */
2168 *pkt++ = ch;
2169 }
2170 return pkt;
2171 }
2172 #endif /* 0 (unused) */
2173
2174 static char *
2175 unpack_string (char *src, char *dest, int length)
2176 {
2177 while (length--)
2178 *dest++ = *src++;
2179 *dest = '\0';
2180 return src;
2181 }
2182
2183 static char *
2184 pack_threadid (char *pkt, threadref *id)
2185 {
2186 char *limit;
2187 unsigned char *altid;
2188
2189 altid = (unsigned char *) id;
2190 limit = pkt + BUF_THREAD_ID_SIZE;
2191 while (pkt < limit)
2192 pkt = pack_hex_byte (pkt, *altid++);
2193 return pkt;
2194 }
2195
2196
2197 static char *
2198 unpack_threadid (char *inbuf, threadref *id)
2199 {
2200 char *altref;
2201 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2202 int x, y;
2203
2204 altref = (char *) id;
2205
2206 while (inbuf < limit)
2207 {
2208 x = stubhex (*inbuf++);
2209 y = stubhex (*inbuf++);
2210 *altref++ = (x << 4) | y;
2211 }
2212 return inbuf;
2213 }
2214
2215 /* Externally, threadrefs are 64 bits but internally, they are still
2216 ints. This is due to a mismatch of specifications. We would like
2217 to use 64bit thread references internally. This is an adapter
2218 function. */
2219
2220 void
2221 int_to_threadref (threadref *id, int value)
2222 {
2223 unsigned char *scan;
2224
2225 scan = (unsigned char *) id;
2226 {
2227 int i = 4;
2228 while (i--)
2229 *scan++ = 0;
2230 }
2231 *scan++ = (value >> 24) & 0xff;
2232 *scan++ = (value >> 16) & 0xff;
2233 *scan++ = (value >> 8) & 0xff;
2234 *scan++ = (value & 0xff);
2235 }
2236
2237 static int
2238 threadref_to_int (threadref *ref)
2239 {
2240 int i, value = 0;
2241 unsigned char *scan;
2242
2243 scan = *ref;
2244 scan += 4;
2245 i = 4;
2246 while (i-- > 0)
2247 value = (value << 8) | ((*scan++) & 0xff);
2248 return value;
2249 }
2250
2251 static void
2252 copy_threadref (threadref *dest, threadref *src)
2253 {
2254 int i;
2255 unsigned char *csrc, *cdest;
2256
2257 csrc = (unsigned char *) src;
2258 cdest = (unsigned char *) dest;
2259 i = 8;
2260 while (i--)
2261 *cdest++ = *csrc++;
2262 }
2263
2264 static int
2265 threadmatch (threadref *dest, threadref *src)
2266 {
2267 /* Things are broken right now, so just assume we got a match. */
2268 #if 0
2269 unsigned char *srcp, *destp;
2270 int i, result;
2271 srcp = (char *) src;
2272 destp = (char *) dest;
2273
2274 result = 1;
2275 while (i-- > 0)
2276 result &= (*srcp++ == *destp++) ? 1 : 0;
2277 return result;
2278 #endif
2279 return 1;
2280 }
2281
2282 /*
2283 threadid:1, # always request threadid
2284 context_exists:2,
2285 display:4,
2286 unique_name:8,
2287 more_display:16
2288 */
2289
2290 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2291
2292 static char *
2293 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2294 {
2295 *pkt++ = 'q'; /* Info Query */
2296 *pkt++ = 'P'; /* process or thread info */
2297 pkt = pack_int (pkt, mode); /* mode */
2298 pkt = pack_threadid (pkt, id); /* threadid */
2299 *pkt = '\0'; /* terminate */
2300 return pkt;
2301 }
2302
2303 /* These values tag the fields in a thread info response packet. */
2304 /* Tagging the fields allows us to request specific fields and to
2305 add more fields as time goes by. */
2306
2307 #define TAG_THREADID 1 /* Echo the thread identifier. */
2308 #define TAG_EXISTS 2 /* Is this process defined enough to
2309 fetch registers and its stack? */
2310 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2311 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2312 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2313 the process. */
2314
2315 static int
2316 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2317 struct gdb_ext_thread_info *info)
2318 {
2319 struct remote_state *rs = get_remote_state ();
2320 int mask, length;
2321 int tag;
2322 threadref ref;
2323 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2324 int retval = 1;
2325
2326 /* info->threadid = 0; FIXME: implement zero_threadref. */
2327 info->active = 0;
2328 info->display[0] = '\0';
2329 info->shortname[0] = '\0';
2330 info->more_display[0] = '\0';
2331
2332 /* Assume the characters indicating the packet type have been
2333 stripped. */
2334 pkt = unpack_int (pkt, &mask); /* arg mask */
2335 pkt = unpack_threadid (pkt, &ref);
2336
2337 if (mask == 0)
2338 warning (_("Incomplete response to threadinfo request."));
2339 if (!threadmatch (&ref, expectedref))
2340 { /* This is an answer to a different request. */
2341 warning (_("ERROR RMT Thread info mismatch."));
2342 return 0;
2343 }
2344 copy_threadref (&info->threadid, &ref);
2345
2346 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2347
2348 /* Packets are terminated with nulls. */
2349 while ((pkt < limit) && mask && *pkt)
2350 {
2351 pkt = unpack_int (pkt, &tag); /* tag */
2352 pkt = unpack_byte (pkt, &length); /* length */
2353 if (!(tag & mask)) /* Tags out of synch with mask. */
2354 {
2355 warning (_("ERROR RMT: threadinfo tag mismatch."));
2356 retval = 0;
2357 break;
2358 }
2359 if (tag == TAG_THREADID)
2360 {
2361 if (length != 16)
2362 {
2363 warning (_("ERROR RMT: length of threadid is not 16."));
2364 retval = 0;
2365 break;
2366 }
2367 pkt = unpack_threadid (pkt, &ref);
2368 mask = mask & ~TAG_THREADID;
2369 continue;
2370 }
2371 if (tag == TAG_EXISTS)
2372 {
2373 info->active = stub_unpack_int (pkt, length);
2374 pkt += length;
2375 mask = mask & ~(TAG_EXISTS);
2376 if (length > 8)
2377 {
2378 warning (_("ERROR RMT: 'exists' length too long."));
2379 retval = 0;
2380 break;
2381 }
2382 continue;
2383 }
2384 if (tag == TAG_THREADNAME)
2385 {
2386 pkt = unpack_string (pkt, &info->shortname[0], length);
2387 mask = mask & ~TAG_THREADNAME;
2388 continue;
2389 }
2390 if (tag == TAG_DISPLAY)
2391 {
2392 pkt = unpack_string (pkt, &info->display[0], length);
2393 mask = mask & ~TAG_DISPLAY;
2394 continue;
2395 }
2396 if (tag == TAG_MOREDISPLAY)
2397 {
2398 pkt = unpack_string (pkt, &info->more_display[0], length);
2399 mask = mask & ~TAG_MOREDISPLAY;
2400 continue;
2401 }
2402 warning (_("ERROR RMT: unknown thread info tag."));
2403 break; /* Not a tag we know about. */
2404 }
2405 return retval;
2406 }
2407
2408 static int
2409 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2410 struct gdb_ext_thread_info *info)
2411 {
2412 struct remote_state *rs = get_remote_state ();
2413 int result;
2414
2415 pack_threadinfo_request (rs->buf, fieldset, threadid);
2416 putpkt (rs->buf);
2417 getpkt (&rs->buf, &rs->buf_size, 0);
2418
2419 if (rs->buf[0] == '\0')
2420 return 0;
2421
2422 result = remote_unpack_thread_info_response (rs->buf + 2,
2423 threadid, info);
2424 return result;
2425 }
2426
2427 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2428
2429 static char *
2430 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2431 threadref *nextthread)
2432 {
2433 *pkt++ = 'q'; /* info query packet */
2434 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2435 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2436 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2437 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2438 *pkt = '\0';
2439 return pkt;
2440 }
2441
2442 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2443
2444 static int
2445 parse_threadlist_response (char *pkt, int result_limit,
2446 threadref *original_echo, threadref *resultlist,
2447 int *doneflag)
2448 {
2449 struct remote_state *rs = get_remote_state ();
2450 char *limit;
2451 int count, resultcount, done;
2452
2453 resultcount = 0;
2454 /* Assume the 'q' and 'M chars have been stripped. */
2455 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2456 /* done parse past here */
2457 pkt = unpack_byte (pkt, &count); /* count field */
2458 pkt = unpack_nibble (pkt, &done);
2459 /* The first threadid is the argument threadid. */
2460 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2461 while ((count-- > 0) && (pkt < limit))
2462 {
2463 pkt = unpack_threadid (pkt, resultlist++);
2464 if (resultcount++ >= result_limit)
2465 break;
2466 }
2467 if (doneflag)
2468 *doneflag = done;
2469 return resultcount;
2470 }
2471
2472 static int
2473 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2474 int *done, int *result_count, threadref *threadlist)
2475 {
2476 struct remote_state *rs = get_remote_state ();
2477 static threadref echo_nextthread;
2478 int result = 1;
2479
2480 /* Trancate result limit to be smaller than the packet size. */
2481 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2482 >= get_remote_packet_size ())
2483 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2484
2485 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2486 putpkt (rs->buf);
2487 getpkt (&rs->buf, &rs->buf_size, 0);
2488
2489 if (*rs->buf == '\0')
2490 return 0;
2491 else
2492 *result_count =
2493 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2494 threadlist, done);
2495
2496 if (!threadmatch (&echo_nextthread, nextthread))
2497 {
2498 /* FIXME: This is a good reason to drop the packet. */
2499 /* Possably, there is a duplicate response. */
2500 /* Possabilities :
2501 retransmit immediatly - race conditions
2502 retransmit after timeout - yes
2503 exit
2504 wait for packet, then exit
2505 */
2506 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2507 return 0; /* I choose simply exiting. */
2508 }
2509 if (*result_count <= 0)
2510 {
2511 if (*done != 1)
2512 {
2513 warning (_("RMT ERROR : failed to get remote thread list."));
2514 result = 0;
2515 }
2516 return result; /* break; */
2517 }
2518 if (*result_count > result_limit)
2519 {
2520 *result_count = 0;
2521 warning (_("RMT ERROR: threadlist response longer than requested."));
2522 return 0;
2523 }
2524 return result;
2525 }
2526
2527 /* This is the interface between remote and threads, remotes upper
2528 interface. */
2529
2530 /* remote_find_new_threads retrieves the thread list and for each
2531 thread in the list, looks up the thread in GDB's internal list,
2532 adding the thread if it does not already exist. This involves
2533 getting partial thread lists from the remote target so, polling the
2534 quit_flag is required. */
2535
2536
2537 /* About this many threadisds fit in a packet. */
2538
2539 #define MAXTHREADLISTRESULTS 32
2540
2541 static int
2542 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2543 int looplimit)
2544 {
2545 int done, i, result_count;
2546 int startflag = 1;
2547 int result = 1;
2548 int loopcount = 0;
2549 static threadref nextthread;
2550 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2551
2552 done = 0;
2553 while (!done)
2554 {
2555 if (loopcount++ > looplimit)
2556 {
2557 result = 0;
2558 warning (_("Remote fetch threadlist -infinite loop-."));
2559 break;
2560 }
2561 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2562 &done, &result_count, resultthreadlist))
2563 {
2564 result = 0;
2565 break;
2566 }
2567 /* Clear for later iterations. */
2568 startflag = 0;
2569 /* Setup to resume next batch of thread references, set nextthread. */
2570 if (result_count >= 1)
2571 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2572 i = 0;
2573 while (result_count--)
2574 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2575 break;
2576 }
2577 return result;
2578 }
2579
2580 static int
2581 remote_newthread_step (threadref *ref, void *context)
2582 {
2583 int pid = ptid_get_pid (inferior_ptid);
2584 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
2585
2586 if (!in_thread_list (ptid))
2587 add_thread (ptid);
2588 return 1; /* continue iterator */
2589 }
2590
2591 #define CRAZY_MAX_THREADS 1000
2592
2593 static ptid_t
2594 remote_current_thread (ptid_t oldpid)
2595 {
2596 struct remote_state *rs = get_remote_state ();
2597
2598 putpkt ("qC");
2599 getpkt (&rs->buf, &rs->buf_size, 0);
2600 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
2601 return read_ptid (&rs->buf[2], NULL);
2602 else
2603 return oldpid;
2604 }
2605
2606 /* Find new threads for info threads command.
2607 * Original version, using John Metzler's thread protocol.
2608 */
2609
2610 static void
2611 remote_find_new_threads (void)
2612 {
2613 remote_threadlist_iterator (remote_newthread_step, 0,
2614 CRAZY_MAX_THREADS);
2615 }
2616
2617 #if defined(HAVE_LIBEXPAT)
2618
2619 typedef struct thread_item
2620 {
2621 ptid_t ptid;
2622 char *extra;
2623 int core;
2624 } thread_item_t;
2625 DEF_VEC_O(thread_item_t);
2626
2627 struct threads_parsing_context
2628 {
2629 VEC (thread_item_t) *items;
2630 };
2631
2632 static void
2633 start_thread (struct gdb_xml_parser *parser,
2634 const struct gdb_xml_element *element,
2635 void *user_data, VEC(gdb_xml_value_s) *attributes)
2636 {
2637 struct threads_parsing_context *data = user_data;
2638
2639 struct thread_item item;
2640 char *id;
2641 struct gdb_xml_value *attr;
2642
2643 id = xml_find_attribute (attributes, "id")->value;
2644 item.ptid = read_ptid (id, NULL);
2645
2646 attr = xml_find_attribute (attributes, "core");
2647 if (attr != NULL)
2648 item.core = *(ULONGEST *) attr->value;
2649 else
2650 item.core = -1;
2651
2652 item.extra = 0;
2653
2654 VEC_safe_push (thread_item_t, data->items, &item);
2655 }
2656
2657 static void
2658 end_thread (struct gdb_xml_parser *parser,
2659 const struct gdb_xml_element *element,
2660 void *user_data, const char *body_text)
2661 {
2662 struct threads_parsing_context *data = user_data;
2663
2664 if (body_text && *body_text)
2665 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
2666 }
2667
2668 const struct gdb_xml_attribute thread_attributes[] = {
2669 { "id", GDB_XML_AF_NONE, NULL, NULL },
2670 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
2671 { NULL, GDB_XML_AF_NONE, NULL, NULL }
2672 };
2673
2674 const struct gdb_xml_element thread_children[] = {
2675 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2676 };
2677
2678 const struct gdb_xml_element threads_children[] = {
2679 { "thread", thread_attributes, thread_children,
2680 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
2681 start_thread, end_thread },
2682 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2683 };
2684
2685 const struct gdb_xml_element threads_elements[] = {
2686 { "threads", NULL, threads_children,
2687 GDB_XML_EF_NONE, NULL, NULL },
2688 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2689 };
2690
2691 /* Discard the contents of the constructed thread info context. */
2692
2693 static void
2694 clear_threads_parsing_context (void *p)
2695 {
2696 struct threads_parsing_context *context = p;
2697 int i;
2698 struct thread_item *item;
2699
2700 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2701 xfree (item->extra);
2702
2703 VEC_free (thread_item_t, context->items);
2704 }
2705
2706 #endif
2707
2708 /*
2709 * Find all threads for info threads command.
2710 * Uses new thread protocol contributed by Cisco.
2711 * Falls back and attempts to use the older method (above)
2712 * if the target doesn't respond to the new method.
2713 */
2714
2715 static void
2716 remote_threads_info (struct target_ops *ops)
2717 {
2718 struct remote_state *rs = get_remote_state ();
2719 char *bufp;
2720 ptid_t new_thread;
2721
2722 if (remote_desc == 0) /* paranoia */
2723 error (_("Command can only be used when connected to the remote target."));
2724
2725 #if defined(HAVE_LIBEXPAT)
2726 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2727 {
2728 char *xml = target_read_stralloc (&current_target,
2729 TARGET_OBJECT_THREADS, NULL);
2730
2731 struct cleanup *back_to = make_cleanup (xfree, xml);
2732
2733 if (xml && *xml)
2734 {
2735 struct threads_parsing_context context;
2736
2737 context.items = NULL;
2738 make_cleanup (clear_threads_parsing_context, &context);
2739
2740 if (gdb_xml_parse_quick (_("threads"), "threads.dtd",
2741 threads_elements, xml, &context) == 0)
2742 {
2743 int i;
2744 struct thread_item *item;
2745
2746 for (i = 0;
2747 VEC_iterate (thread_item_t, context.items, i, item);
2748 ++i)
2749 {
2750 if (!ptid_equal (item->ptid, null_ptid))
2751 {
2752 struct private_thread_info *info;
2753 /* In non-stop mode, we assume new found threads
2754 are running until proven otherwise with a
2755 stop reply. In all-stop, we can only get
2756 here if all threads are stopped. */
2757 int running = non_stop ? 1 : 0;
2758
2759 remote_notice_new_inferior (item->ptid, running);
2760
2761 info = demand_private_info (item->ptid);
2762 info->core = item->core;
2763 info->extra = item->extra;
2764 item->extra = NULL;
2765 }
2766 }
2767 }
2768 }
2769
2770 do_cleanups (back_to);
2771 return;
2772 }
2773 #endif
2774
2775 if (use_threadinfo_query)
2776 {
2777 putpkt ("qfThreadInfo");
2778 getpkt (&rs->buf, &rs->buf_size, 0);
2779 bufp = rs->buf;
2780 if (bufp[0] != '\0') /* q packet recognized */
2781 {
2782 struct cleanup *old_chain;
2783 char *saved_reply;
2784
2785 /* remote_notice_new_inferior (in the loop below) may make
2786 new RSP calls, which clobber rs->buf. Work with a
2787 copy. */
2788 bufp = saved_reply = xstrdup (rs->buf);
2789 old_chain = make_cleanup (free_current_contents, &saved_reply);
2790
2791 while (*bufp++ == 'm') /* reply contains one or more TID */
2792 {
2793 do
2794 {
2795 new_thread = read_ptid (bufp, &bufp);
2796 if (!ptid_equal (new_thread, null_ptid))
2797 {
2798 /* In non-stop mode, we assume new found threads
2799 are running until proven otherwise with a
2800 stop reply. In all-stop, we can only get
2801 here if all threads are stopped. */
2802 int running = non_stop ? 1 : 0;
2803
2804 remote_notice_new_inferior (new_thread, running);
2805 }
2806 }
2807 while (*bufp++ == ','); /* comma-separated list */
2808 free_current_contents (&saved_reply);
2809 putpkt ("qsThreadInfo");
2810 getpkt (&rs->buf, &rs->buf_size, 0);
2811 bufp = saved_reply = xstrdup (rs->buf);
2812 }
2813 do_cleanups (old_chain);
2814 return; /* done */
2815 }
2816 }
2817
2818 /* Only qfThreadInfo is supported in non-stop mode. */
2819 if (non_stop)
2820 return;
2821
2822 /* Else fall back to old method based on jmetzler protocol. */
2823 use_threadinfo_query = 0;
2824 remote_find_new_threads ();
2825 return;
2826 }
2827
2828 /*
2829 * Collect a descriptive string about the given thread.
2830 * The target may say anything it wants to about the thread
2831 * (typically info about its blocked / runnable state, name, etc.).
2832 * This string will appear in the info threads display.
2833 *
2834 * Optional: targets are not required to implement this function.
2835 */
2836
2837 static char *
2838 remote_threads_extra_info (struct thread_info *tp)
2839 {
2840 struct remote_state *rs = get_remote_state ();
2841 int result;
2842 int set;
2843 threadref id;
2844 struct gdb_ext_thread_info threadinfo;
2845 static char display_buf[100]; /* arbitrary... */
2846 int n = 0; /* position in display_buf */
2847
2848 if (remote_desc == 0) /* paranoia */
2849 internal_error (__FILE__, __LINE__,
2850 _("remote_threads_extra_info"));
2851
2852 if (ptid_equal (tp->ptid, magic_null_ptid)
2853 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2854 /* This is the main thread which was added by GDB. The remote
2855 server doesn't know about it. */
2856 return NULL;
2857
2858 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2859 {
2860 struct thread_info *info = find_thread_ptid (tp->ptid);
2861
2862 if (info && info->private)
2863 return info->private->extra;
2864 else
2865 return NULL;
2866 }
2867
2868 if (use_threadextra_query)
2869 {
2870 char *b = rs->buf;
2871 char *endb = rs->buf + get_remote_packet_size ();
2872
2873 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2874 b += strlen (b);
2875 write_ptid (b, endb, tp->ptid);
2876
2877 putpkt (rs->buf);
2878 getpkt (&rs->buf, &rs->buf_size, 0);
2879 if (rs->buf[0] != 0)
2880 {
2881 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2882 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
2883 display_buf [result] = '\0';
2884 return display_buf;
2885 }
2886 }
2887
2888 /* If the above query fails, fall back to the old method. */
2889 use_threadextra_query = 0;
2890 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2891 | TAG_MOREDISPLAY | TAG_DISPLAY;
2892 int_to_threadref (&id, ptid_get_tid (tp->ptid));
2893 if (remote_get_threadinfo (&id, set, &threadinfo))
2894 if (threadinfo.active)
2895 {
2896 if (*threadinfo.shortname)
2897 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
2898 " Name: %s,", threadinfo.shortname);
2899 if (*threadinfo.display)
2900 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2901 " State: %s,", threadinfo.display);
2902 if (*threadinfo.more_display)
2903 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
2904 " Priority: %s", threadinfo.more_display);
2905
2906 if (n > 0)
2907 {
2908 /* For purely cosmetic reasons, clear up trailing commas. */
2909 if (',' == display_buf[n-1])
2910 display_buf[n-1] = ' ';
2911 return display_buf;
2912 }
2913 }
2914 return NULL;
2915 }
2916 \f
2917
2918 static int
2919 remote_static_tracepoint_marker_at (CORE_ADDR addr,
2920 struct static_tracepoint_marker *marker)
2921 {
2922 struct remote_state *rs = get_remote_state ();
2923 char *p = rs->buf;
2924
2925 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
2926 p += strlen (p);
2927 p += hexnumstr (p, addr);
2928 putpkt (rs->buf);
2929 getpkt (&rs->buf, &rs->buf_size, 0);
2930 p = rs->buf;
2931
2932 if (*p == 'E')
2933 error (_("Remote failure reply: %s"), p);
2934
2935 if (*p++ == 'm')
2936 {
2937 parse_static_tracepoint_marker_definition (p, &p, marker);
2938 return 1;
2939 }
2940
2941 return 0;
2942 }
2943
2944 static VEC(static_tracepoint_marker_p) *
2945 remote_static_tracepoint_markers_by_strid (const char *strid)
2946 {
2947 struct remote_state *rs = get_remote_state ();
2948 VEC(static_tracepoint_marker_p) *markers = NULL;
2949 struct static_tracepoint_marker *marker = NULL;
2950 struct cleanup *old_chain;
2951 char *p;
2952
2953 /* Ask for a first packet of static tracepoint marker
2954 definition. */
2955 putpkt ("qTfSTM");
2956 getpkt (&rs->buf, &rs->buf_size, 0);
2957 p = rs->buf;
2958 if (*p == 'E')
2959 error (_("Remote failure reply: %s"), p);
2960
2961 old_chain = make_cleanup (free_current_marker, &marker);
2962
2963 while (*p++ == 'm')
2964 {
2965 if (marker == NULL)
2966 marker = XCNEW (struct static_tracepoint_marker);
2967
2968 do
2969 {
2970 parse_static_tracepoint_marker_definition (p, &p, marker);
2971
2972 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
2973 {
2974 VEC_safe_push (static_tracepoint_marker_p,
2975 markers, marker);
2976 marker = NULL;
2977 }
2978 else
2979 {
2980 release_static_tracepoint_marker (marker);
2981 memset (marker, 0, sizeof (*marker));
2982 }
2983 }
2984 while (*p++ == ','); /* comma-separated list */
2985 /* Ask for another packet of static tracepoint definition. */
2986 putpkt ("qTsSTM");
2987 getpkt (&rs->buf, &rs->buf_size, 0);
2988 p = rs->buf;
2989 }
2990
2991 do_cleanups (old_chain);
2992 return markers;
2993 }
2994
2995 \f
2996 /* Implement the to_get_ada_task_ptid function for the remote targets. */
2997
2998 static ptid_t
2999 remote_get_ada_task_ptid (long lwp, long thread)
3000 {
3001 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
3002 }
3003 \f
3004
3005 /* Restart the remote side; this is an extended protocol operation. */
3006
3007 static void
3008 extended_remote_restart (void)
3009 {
3010 struct remote_state *rs = get_remote_state ();
3011
3012 /* Send the restart command; for reasons I don't understand the
3013 remote side really expects a number after the "R". */
3014 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
3015 putpkt (rs->buf);
3016
3017 remote_fileio_reset ();
3018 }
3019 \f
3020 /* Clean up connection to a remote debugger. */
3021
3022 static void
3023 remote_close (void)
3024 {
3025 if (remote_desc == NULL)
3026 return; /* already closed */
3027
3028 /* Make sure we leave stdin registered in the event loop, and we
3029 don't leave the async SIGINT signal handler installed. */
3030 remote_terminal_ours ();
3031
3032 serial_close (remote_desc);
3033 remote_desc = NULL;
3034
3035 /* We don't have a connection to the remote stub anymore. Get rid
3036 of all the inferiors and their threads we were controlling.
3037 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3038 will be unable to find the thread corresponding to (pid, 0, 0). */
3039 inferior_ptid = null_ptid;
3040 discard_all_inferiors ();
3041
3042 /* Stop replies may from inferiors which are still unknown to GDB.
3043 We are closing the remote target, so we should discard
3044 everything, including the stop replies from GDB-unknown
3045 inferiors. */
3046 discard_pending_stop_replies (NULL);
3047
3048 if (remote_async_inferior_event_token)
3049 delete_async_event_handler (&remote_async_inferior_event_token);
3050
3051 remote_notif_unregister_async_event_handler ();
3052
3053 trace_reset_local_state ();
3054 }
3055
3056 /* Query the remote side for the text, data and bss offsets. */
3057
3058 static void
3059 get_offsets (void)
3060 {
3061 struct remote_state *rs = get_remote_state ();
3062 char *buf;
3063 char *ptr;
3064 int lose, num_segments = 0, do_sections, do_segments;
3065 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
3066 struct section_offsets *offs;
3067 struct symfile_segment_data *data;
3068
3069 if (symfile_objfile == NULL)
3070 return;
3071
3072 putpkt ("qOffsets");
3073 getpkt (&rs->buf, &rs->buf_size, 0);
3074 buf = rs->buf;
3075
3076 if (buf[0] == '\000')
3077 return; /* Return silently. Stub doesn't support
3078 this command. */
3079 if (buf[0] == 'E')
3080 {
3081 warning (_("Remote failure reply: %s"), buf);
3082 return;
3083 }
3084
3085 /* Pick up each field in turn. This used to be done with scanf, but
3086 scanf will make trouble if CORE_ADDR size doesn't match
3087 conversion directives correctly. The following code will work
3088 with any size of CORE_ADDR. */
3089 text_addr = data_addr = bss_addr = 0;
3090 ptr = buf;
3091 lose = 0;
3092
3093 if (strncmp (ptr, "Text=", 5) == 0)
3094 {
3095 ptr += 5;
3096 /* Don't use strtol, could lose on big values. */
3097 while (*ptr && *ptr != ';')
3098 text_addr = (text_addr << 4) + fromhex (*ptr++);
3099
3100 if (strncmp (ptr, ";Data=", 6) == 0)
3101 {
3102 ptr += 6;
3103 while (*ptr && *ptr != ';')
3104 data_addr = (data_addr << 4) + fromhex (*ptr++);
3105 }
3106 else
3107 lose = 1;
3108
3109 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
3110 {
3111 ptr += 5;
3112 while (*ptr && *ptr != ';')
3113 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3114
3115 if (bss_addr != data_addr)
3116 warning (_("Target reported unsupported offsets: %s"), buf);
3117 }
3118 else
3119 lose = 1;
3120 }
3121 else if (strncmp (ptr, "TextSeg=", 8) == 0)
3122 {
3123 ptr += 8;
3124 /* Don't use strtol, could lose on big values. */
3125 while (*ptr && *ptr != ';')
3126 text_addr = (text_addr << 4) + fromhex (*ptr++);
3127 num_segments = 1;
3128
3129 if (strncmp (ptr, ";DataSeg=", 9) == 0)
3130 {
3131 ptr += 9;
3132 while (*ptr && *ptr != ';')
3133 data_addr = (data_addr << 4) + fromhex (*ptr++);
3134 num_segments++;
3135 }
3136 }
3137 else
3138 lose = 1;
3139
3140 if (lose)
3141 error (_("Malformed response to offset query, %s"), buf);
3142 else if (*ptr != '\0')
3143 warning (_("Target reported unsupported offsets: %s"), buf);
3144
3145 offs = ((struct section_offsets *)
3146 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3147 memcpy (offs, symfile_objfile->section_offsets,
3148 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3149
3150 data = get_symfile_segment_data (symfile_objfile->obfd);
3151 do_segments = (data != NULL);
3152 do_sections = num_segments == 0;
3153
3154 if (num_segments > 0)
3155 {
3156 segments[0] = text_addr;
3157 segments[1] = data_addr;
3158 }
3159 /* If we have two segments, we can still try to relocate everything
3160 by assuming that the .text and .data offsets apply to the whole
3161 text and data segments. Convert the offsets given in the packet
3162 to base addresses for symfile_map_offsets_to_segments. */
3163 else if (data && data->num_segments == 2)
3164 {
3165 segments[0] = data->segment_bases[0] + text_addr;
3166 segments[1] = data->segment_bases[1] + data_addr;
3167 num_segments = 2;
3168 }
3169 /* If the object file has only one segment, assume that it is text
3170 rather than data; main programs with no writable data are rare,
3171 but programs with no code are useless. Of course the code might
3172 have ended up in the data segment... to detect that we would need
3173 the permissions here. */
3174 else if (data && data->num_segments == 1)
3175 {
3176 segments[0] = data->segment_bases[0] + text_addr;
3177 num_segments = 1;
3178 }
3179 /* There's no way to relocate by segment. */
3180 else
3181 do_segments = 0;
3182
3183 if (do_segments)
3184 {
3185 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3186 offs, num_segments, segments);
3187
3188 if (ret == 0 && !do_sections)
3189 error (_("Can not handle qOffsets TextSeg "
3190 "response with this symbol file"));
3191
3192 if (ret > 0)
3193 do_sections = 0;
3194 }
3195
3196 if (data)
3197 free_symfile_segment_data (data);
3198
3199 if (do_sections)
3200 {
3201 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3202
3203 /* This is a temporary kludge to force data and bss to use the
3204 same offsets because that's what nlmconv does now. The real
3205 solution requires changes to the stub and remote.c that I
3206 don't have time to do right now. */
3207
3208 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3209 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3210 }
3211
3212 objfile_relocate (symfile_objfile, offs);
3213 }
3214
3215 /* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
3216 threads we know are stopped already. This is used during the
3217 initial remote connection in non-stop mode --- threads that are
3218 reported as already being stopped are left stopped. */
3219
3220 static int
3221 set_stop_requested_callback (struct thread_info *thread, void *data)
3222 {
3223 /* If we have a stop reply for this thread, it must be stopped. */
3224 if (peek_stop_reply (thread->ptid))
3225 set_stop_requested (thread->ptid, 1);
3226
3227 return 0;
3228 }
3229
3230 /* Send interrupt_sequence to remote target. */
3231 static void
3232 send_interrupt_sequence (void)
3233 {
3234 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3235 remote_serial_write ("\x03", 1);
3236 else if (interrupt_sequence_mode == interrupt_sequence_break)
3237 serial_send_break (remote_desc);
3238 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3239 {
3240 serial_send_break (remote_desc);
3241 remote_serial_write ("g", 1);
3242 }
3243 else
3244 internal_error (__FILE__, __LINE__,
3245 _("Invalid value for interrupt_sequence_mode: %s."),
3246 interrupt_sequence_mode);
3247 }
3248
3249
3250 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3251 and extract the PTID. Returns NULL_PTID if not found. */
3252
3253 static ptid_t
3254 stop_reply_extract_thread (char *stop_reply)
3255 {
3256 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3257 {
3258 char *p;
3259
3260 /* Txx r:val ; r:val (...) */
3261 p = &stop_reply[3];
3262
3263 /* Look for "register" named "thread". */
3264 while (*p != '\0')
3265 {
3266 char *p1;
3267
3268 p1 = strchr (p, ':');
3269 if (p1 == NULL)
3270 return null_ptid;
3271
3272 if (strncmp (p, "thread", p1 - p) == 0)
3273 return read_ptid (++p1, &p);
3274
3275 p1 = strchr (p, ';');
3276 if (p1 == NULL)
3277 return null_ptid;
3278 p1++;
3279
3280 p = p1;
3281 }
3282 }
3283
3284 return null_ptid;
3285 }
3286
3287 /* Query the remote target for which is the current thread/process,
3288 add it to our tables, and update INFERIOR_PTID. The caller is
3289 responsible for setting the state such that the remote end is ready
3290 to return the current thread.
3291
3292 This function is called after handling the '?' or 'vRun' packets,
3293 whose response is a stop reply from which we can also try
3294 extracting the thread. If the target doesn't support the explicit
3295 qC query, we infer the current thread from that stop reply, passed
3296 in in WAIT_STATUS, which may be NULL. */
3297
3298 static void
3299 add_current_inferior_and_thread (char *wait_status)
3300 {
3301 struct remote_state *rs = get_remote_state ();
3302 int fake_pid_p = 0;
3303 ptid_t ptid = null_ptid;
3304
3305 inferior_ptid = null_ptid;
3306
3307 /* Now, if we have thread information, update inferior_ptid. First
3308 if we have a stop reply handy, maybe it's a T stop reply with a
3309 "thread" register we can extract the current thread from. If
3310 not, ask the remote which is the current thread, with qC. The
3311 former method avoids a roundtrip. Note we don't use
3312 remote_parse_stop_reply as that makes use of the target
3313 architecture, which we haven't yet fully determined at this
3314 point. */
3315 if (wait_status != NULL)
3316 ptid = stop_reply_extract_thread (wait_status);
3317 if (ptid_equal (ptid, null_ptid))
3318 ptid = remote_current_thread (inferior_ptid);
3319
3320 if (!ptid_equal (ptid, null_ptid))
3321 {
3322 if (!remote_multi_process_p (rs))
3323 fake_pid_p = 1;
3324
3325 inferior_ptid = ptid;
3326 }
3327 else
3328 {
3329 /* Without this, some commands which require an active target
3330 (such as kill) won't work. This variable serves (at least)
3331 double duty as both the pid of the target process (if it has
3332 such), and as a flag indicating that a target is active. */
3333 inferior_ptid = magic_null_ptid;
3334 fake_pid_p = 1;
3335 }
3336
3337 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1);
3338
3339 /* Add the main thread. */
3340 add_thread_silent (inferior_ptid);
3341 }
3342
3343 static void
3344 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
3345 {
3346 struct remote_state *rs = get_remote_state ();
3347 struct packet_config *noack_config;
3348 char *wait_status = NULL;
3349
3350 immediate_quit++; /* Allow user to interrupt it. */
3351 QUIT;
3352
3353 if (interrupt_on_connect)
3354 send_interrupt_sequence ();
3355
3356 /* Ack any packet which the remote side has already sent. */
3357 serial_write (remote_desc, "+", 1);
3358
3359 /* Signal other parts that we're going through the initial setup,
3360 and so things may not be stable yet. */
3361 rs->starting_up = 1;
3362
3363 /* The first packet we send to the target is the optional "supported
3364 packets" request. If the target can answer this, it will tell us
3365 which later probes to skip. */
3366 remote_query_supported ();
3367
3368 /* If the stub wants to get a QAllow, compose one and send it. */
3369 if (remote_protocol_packets[PACKET_QAllow].support != PACKET_DISABLE)
3370 remote_set_permissions ();
3371
3372 /* Next, we possibly activate noack mode.
3373
3374 If the QStartNoAckMode packet configuration is set to AUTO,
3375 enable noack mode if the stub reported a wish for it with
3376 qSupported.
3377
3378 If set to TRUE, then enable noack mode even if the stub didn't
3379 report it in qSupported. If the stub doesn't reply OK, the
3380 session ends with an error.
3381
3382 If FALSE, then don't activate noack mode, regardless of what the
3383 stub claimed should be the default with qSupported. */
3384
3385 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
3386
3387 if (noack_config->detect == AUTO_BOOLEAN_TRUE
3388 || (noack_config->detect == AUTO_BOOLEAN_AUTO
3389 && noack_config->support == PACKET_ENABLE))
3390 {
3391 putpkt ("QStartNoAckMode");
3392 getpkt (&rs->buf, &rs->buf_size, 0);
3393 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
3394 rs->noack_mode = 1;
3395 }
3396
3397 if (extended_p)
3398 {
3399 /* Tell the remote that we are using the extended protocol. */
3400 putpkt ("!");
3401 getpkt (&rs->buf, &rs->buf_size, 0);
3402 }
3403
3404 /* Let the target know which signals it is allowed to pass down to
3405 the program. */
3406 update_signals_program_target ();
3407
3408 /* Next, if the target can specify a description, read it. We do
3409 this before anything involving memory or registers. */
3410 target_find_description ();
3411
3412 /* Next, now that we know something about the target, update the
3413 address spaces in the program spaces. */
3414 update_address_spaces ();
3415
3416 /* On OSs where the list of libraries is global to all
3417 processes, we fetch them early. */
3418 if (gdbarch_has_global_solist (target_gdbarch ()))
3419 solib_add (NULL, from_tty, target, auto_solib_add);
3420
3421 if (non_stop)
3422 {
3423 if (!rs->non_stop_aware)
3424 error (_("Non-stop mode requested, but remote "
3425 "does not support non-stop"));
3426
3427 putpkt ("QNonStop:1");
3428 getpkt (&rs->buf, &rs->buf_size, 0);
3429
3430 if (strcmp (rs->buf, "OK") != 0)
3431 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
3432
3433 /* Find about threads and processes the stub is already
3434 controlling. We default to adding them in the running state.
3435 The '?' query below will then tell us about which threads are
3436 stopped. */
3437 remote_threads_info (target);
3438 }
3439 else if (rs->non_stop_aware)
3440 {
3441 /* Don't assume that the stub can operate in all-stop mode.
3442 Request it explicitly. */
3443 putpkt ("QNonStop:0");
3444 getpkt (&rs->buf, &rs->buf_size, 0);
3445
3446 if (strcmp (rs->buf, "OK") != 0)
3447 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
3448 }
3449
3450 /* Upload TSVs regardless of whether the target is running or not. The
3451 remote stub, such as GDBserver, may have some predefined or builtin
3452 TSVs, even if the target is not running. */
3453 if (remote_get_trace_status (current_trace_status ()) != -1)
3454 {
3455 struct uploaded_tsv *uploaded_tsvs = NULL;
3456
3457 remote_upload_trace_state_variables (&uploaded_tsvs);
3458 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3459 }
3460
3461 /* Check whether the target is running now. */
3462 putpkt ("?");
3463 getpkt (&rs->buf, &rs->buf_size, 0);
3464
3465 if (!non_stop)
3466 {
3467 ptid_t ptid;
3468 int fake_pid_p = 0;
3469 struct inferior *inf;
3470
3471 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
3472 {
3473 if (!extended_p)
3474 error (_("The target is not running (try extended-remote?)"));
3475
3476 /* We're connected, but not running. Drop out before we
3477 call start_remote. */
3478 rs->starting_up = 0;
3479 return;
3480 }
3481 else
3482 {
3483 /* Save the reply for later. */
3484 wait_status = alloca (strlen (rs->buf) + 1);
3485 strcpy (wait_status, rs->buf);
3486 }
3487
3488 /* Let the stub know that we want it to return the thread. */
3489 set_continue_thread (minus_one_ptid);
3490
3491 add_current_inferior_and_thread (wait_status);
3492
3493 /* init_wait_for_inferior should be called before get_offsets in order
3494 to manage `inserted' flag in bp loc in a correct state.
3495 breakpoint_init_inferior, called from init_wait_for_inferior, set
3496 `inserted' flag to 0, while before breakpoint_re_set, called from
3497 start_remote, set `inserted' flag to 1. In the initialization of
3498 inferior, breakpoint_init_inferior should be called first, and then
3499 breakpoint_re_set can be called. If this order is broken, state of
3500 `inserted' flag is wrong, and cause some problems on breakpoint
3501 manipulation. */
3502 init_wait_for_inferior ();
3503
3504 get_offsets (); /* Get text, data & bss offsets. */
3505
3506 /* If we could not find a description using qXfer, and we know
3507 how to do it some other way, try again. This is not
3508 supported for non-stop; it could be, but it is tricky if
3509 there are no stopped threads when we connect. */
3510 if (remote_read_description_p (target)
3511 && gdbarch_target_desc (target_gdbarch ()) == NULL)
3512 {
3513 target_clear_description ();
3514 target_find_description ();
3515 }
3516
3517 /* Use the previously fetched status. */
3518 gdb_assert (wait_status != NULL);
3519 strcpy (rs->buf, wait_status);
3520 rs->cached_wait_status = 1;
3521
3522 immediate_quit--;
3523 start_remote (from_tty); /* Initialize gdb process mechanisms. */
3524 }
3525 else
3526 {
3527 /* Clear WFI global state. Do this before finding about new
3528 threads and inferiors, and setting the current inferior.
3529 Otherwise we would clear the proceed status of the current
3530 inferior when we want its stop_soon state to be preserved
3531 (see notice_new_inferior). */
3532 init_wait_for_inferior ();
3533
3534 /* In non-stop, we will either get an "OK", meaning that there
3535 are no stopped threads at this time; or, a regular stop
3536 reply. In the latter case, there may be more than one thread
3537 stopped --- we pull them all out using the vStopped
3538 mechanism. */
3539 if (strcmp (rs->buf, "OK") != 0)
3540 {
3541 struct notif_client *notif = &notif_client_stop;
3542
3543 /* remote_notif_get_pending_replies acks this one, and gets
3544 the rest out. */
3545 notif_client_stop.pending_event
3546 = remote_notif_parse (notif, rs->buf);
3547 remote_notif_get_pending_events (notif);
3548
3549 /* Make sure that threads that were stopped remain
3550 stopped. */
3551 iterate_over_threads (set_stop_requested_callback, NULL);
3552 }
3553
3554 if (target_can_async_p ())
3555 target_async (inferior_event_handler, 0);
3556
3557 if (thread_count () == 0)
3558 {
3559 if (!extended_p)
3560 error (_("The target is not running (try extended-remote?)"));
3561
3562 /* We're connected, but not running. Drop out before we
3563 call start_remote. */
3564 rs->starting_up = 0;
3565 return;
3566 }
3567
3568 /* Let the stub know that we want it to return the thread. */
3569
3570 /* Force the stub to choose a thread. */
3571 set_general_thread (null_ptid);
3572
3573 /* Query it. */
3574 inferior_ptid = remote_current_thread (minus_one_ptid);
3575 if (ptid_equal (inferior_ptid, minus_one_ptid))
3576 error (_("remote didn't report the current thread in non-stop mode"));
3577
3578 get_offsets (); /* Get text, data & bss offsets. */
3579
3580 /* In non-stop mode, any cached wait status will be stored in
3581 the stop reply queue. */
3582 gdb_assert (wait_status == NULL);
3583
3584 /* Report all signals during attach/startup. */
3585 remote_pass_signals (0, NULL);
3586 }
3587
3588 /* If we connected to a live target, do some additional setup. */
3589 if (target_has_execution)
3590 {
3591 if (exec_bfd) /* No use without an exec file. */
3592 remote_check_symbols ();
3593 }
3594
3595 /* Possibly the target has been engaged in a trace run started
3596 previously; find out where things are at. */
3597 if (remote_get_trace_status (current_trace_status ()) != -1)
3598 {
3599 struct uploaded_tp *uploaded_tps = NULL;
3600
3601 if (current_trace_status ()->running)
3602 printf_filtered (_("Trace is already running on the target.\n"));
3603
3604 remote_upload_tracepoints (&uploaded_tps);
3605
3606 merge_uploaded_tracepoints (&uploaded_tps);
3607 }
3608
3609 /* The thread and inferior lists are now synchronized with the
3610 target, our symbols have been relocated, and we're merged the
3611 target's tracepoints with ours. We're done with basic start
3612 up. */
3613 rs->starting_up = 0;
3614
3615 /* If breakpoints are global, insert them now. */
3616 if (gdbarch_has_global_breakpoints (target_gdbarch ())
3617 && breakpoints_always_inserted_mode ())
3618 insert_breakpoints ();
3619 }
3620
3621 /* Open a connection to a remote debugger.
3622 NAME is the filename used for communication. */
3623
3624 static void
3625 remote_open (char *name, int from_tty)
3626 {
3627 remote_open_1 (name, from_tty, &remote_ops, 0);
3628 }
3629
3630 /* Open a connection to a remote debugger using the extended
3631 remote gdb protocol. NAME is the filename used for communication. */
3632
3633 static void
3634 extended_remote_open (char *name, int from_tty)
3635 {
3636 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
3637 }
3638
3639 /* Generic code for opening a connection to a remote target. */
3640
3641 static void
3642 init_all_packet_configs (void)
3643 {
3644 int i;
3645
3646 for (i = 0; i < PACKET_MAX; i++)
3647 update_packet_config (&remote_protocol_packets[i]);
3648 }
3649
3650 /* Symbol look-up. */
3651
3652 static void
3653 remote_check_symbols (void)
3654 {
3655 struct remote_state *rs = get_remote_state ();
3656 char *msg, *reply, *tmp;
3657 struct minimal_symbol *sym;
3658 int end;
3659
3660 /* The remote side has no concept of inferiors that aren't running
3661 yet, it only knows about running processes. If we're connected
3662 but our current inferior is not running, we should not invite the
3663 remote target to request symbol lookups related to its
3664 (unrelated) current process. */
3665 if (!target_has_execution)
3666 return;
3667
3668 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
3669 return;
3670
3671 /* Make sure the remote is pointing at the right process. Note
3672 there's no way to select "no process". */
3673 set_general_process ();
3674
3675 /* Allocate a message buffer. We can't reuse the input buffer in RS,
3676 because we need both at the same time. */
3677 msg = alloca (get_remote_packet_size ());
3678
3679 /* Invite target to request symbol lookups. */
3680
3681 putpkt ("qSymbol::");
3682 getpkt (&rs->buf, &rs->buf_size, 0);
3683 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
3684 reply = rs->buf;
3685
3686 while (strncmp (reply, "qSymbol:", 8) == 0)
3687 {
3688 tmp = &reply[8];
3689 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
3690 msg[end] = '\0';
3691 sym = lookup_minimal_symbol (msg, NULL, NULL);
3692 if (sym == NULL)
3693 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
3694 else
3695 {
3696 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
3697 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
3698
3699 /* If this is a function address, return the start of code
3700 instead of any data function descriptor. */
3701 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
3702 sym_addr,
3703 &current_target);
3704
3705 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
3706 phex_nz (sym_addr, addr_size), &reply[8]);
3707 }
3708
3709 putpkt (msg);
3710 getpkt (&rs->buf, &rs->buf_size, 0);
3711 reply = rs->buf;
3712 }
3713 }
3714
3715 static struct serial *
3716 remote_serial_open (char *name)
3717 {
3718 static int udp_warning = 0;
3719
3720 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
3721 of in ser-tcp.c, because it is the remote protocol assuming that the
3722 serial connection is reliable and not the serial connection promising
3723 to be. */
3724 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
3725 {
3726 warning (_("The remote protocol may be unreliable over UDP.\n"
3727 "Some events may be lost, rendering further debugging "
3728 "impossible."));
3729 udp_warning = 1;
3730 }
3731
3732 return serial_open (name);
3733 }
3734
3735 /* Inform the target of our permission settings. The permission flags
3736 work without this, but if the target knows the settings, it can do
3737 a couple things. First, it can add its own check, to catch cases
3738 that somehow manage to get by the permissions checks in target
3739 methods. Second, if the target is wired to disallow particular
3740 settings (for instance, a system in the field that is not set up to
3741 be able to stop at a breakpoint), it can object to any unavailable
3742 permissions. */
3743
3744 void
3745 remote_set_permissions (void)
3746 {
3747 struct remote_state *rs = get_remote_state ();
3748
3749 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
3750 "WriteReg:%x;WriteMem:%x;"
3751 "InsertBreak:%x;InsertTrace:%x;"
3752 "InsertFastTrace:%x;Stop:%x",
3753 may_write_registers, may_write_memory,
3754 may_insert_breakpoints, may_insert_tracepoints,
3755 may_insert_fast_tracepoints, may_stop);
3756 putpkt (rs->buf);
3757 getpkt (&rs->buf, &rs->buf_size, 0);
3758
3759 /* If the target didn't like the packet, warn the user. Do not try
3760 to undo the user's settings, that would just be maddening. */
3761 if (strcmp (rs->buf, "OK") != 0)
3762 warning (_("Remote refused setting permissions with: %s"), rs->buf);
3763 }
3764
3765 /* This type describes each known response to the qSupported
3766 packet. */
3767 struct protocol_feature
3768 {
3769 /* The name of this protocol feature. */
3770 const char *name;
3771
3772 /* The default for this protocol feature. */
3773 enum packet_support default_support;
3774
3775 /* The function to call when this feature is reported, or after
3776 qSupported processing if the feature is not supported.
3777 The first argument points to this structure. The second
3778 argument indicates whether the packet requested support be
3779 enabled, disabled, or probed (or the default, if this function
3780 is being called at the end of processing and this feature was
3781 not reported). The third argument may be NULL; if not NULL, it
3782 is a NUL-terminated string taken from the packet following
3783 this feature's name and an equals sign. */
3784 void (*func) (const struct protocol_feature *, enum packet_support,
3785 const char *);
3786
3787 /* The corresponding packet for this feature. Only used if
3788 FUNC is remote_supported_packet. */
3789 int packet;
3790 };
3791
3792 static void
3793 remote_supported_packet (const struct protocol_feature *feature,
3794 enum packet_support support,
3795 const char *argument)
3796 {
3797 if (argument)
3798 {
3799 warning (_("Remote qSupported response supplied an unexpected value for"
3800 " \"%s\"."), feature->name);
3801 return;
3802 }
3803
3804 if (remote_protocol_packets[feature->packet].support
3805 == PACKET_SUPPORT_UNKNOWN)
3806 remote_protocol_packets[feature->packet].support = support;
3807 }
3808
3809 static void
3810 remote_packet_size (const struct protocol_feature *feature,
3811 enum packet_support support, const char *value)
3812 {
3813 struct remote_state *rs = get_remote_state ();
3814
3815 int packet_size;
3816 char *value_end;
3817
3818 if (support != PACKET_ENABLE)
3819 return;
3820
3821 if (value == NULL || *value == '\0')
3822 {
3823 warning (_("Remote target reported \"%s\" without a size."),
3824 feature->name);
3825 return;
3826 }
3827
3828 errno = 0;
3829 packet_size = strtol (value, &value_end, 16);
3830 if (errno != 0 || *value_end != '\0' || packet_size < 0)
3831 {
3832 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3833 feature->name, value);
3834 return;
3835 }
3836
3837 if (packet_size > MAX_REMOTE_PACKET_SIZE)
3838 {
3839 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3840 packet_size, MAX_REMOTE_PACKET_SIZE);
3841 packet_size = MAX_REMOTE_PACKET_SIZE;
3842 }
3843
3844 /* Record the new maximum packet size. */
3845 rs->explicit_packet_size = packet_size;
3846 }
3847
3848 static void
3849 remote_multi_process_feature (const struct protocol_feature *feature,
3850 enum packet_support support, const char *value)
3851 {
3852 struct remote_state *rs = get_remote_state ();
3853
3854 rs->multi_process_aware = (support == PACKET_ENABLE);
3855 }
3856
3857 static void
3858 remote_non_stop_feature (const struct protocol_feature *feature,
3859 enum packet_support support, const char *value)
3860 {
3861 struct remote_state *rs = get_remote_state ();
3862
3863 rs->non_stop_aware = (support == PACKET_ENABLE);
3864 }
3865
3866 static void
3867 remote_cond_tracepoint_feature (const struct protocol_feature *feature,
3868 enum packet_support support,
3869 const char *value)
3870 {
3871 struct remote_state *rs = get_remote_state ();
3872
3873 rs->cond_tracepoints = (support == PACKET_ENABLE);
3874 }
3875
3876 static void
3877 remote_cond_breakpoint_feature (const struct protocol_feature *feature,
3878 enum packet_support support,
3879 const char *value)
3880 {
3881 struct remote_state *rs = get_remote_state ();
3882
3883 rs->cond_breakpoints = (support == PACKET_ENABLE);
3884 }
3885
3886 static void
3887 remote_breakpoint_commands_feature (const struct protocol_feature *feature,
3888 enum packet_support support,
3889 const char *value)
3890 {
3891 struct remote_state *rs = get_remote_state ();
3892
3893 rs->breakpoint_commands = (support == PACKET_ENABLE);
3894 }
3895
3896 static void
3897 remote_fast_tracepoint_feature (const struct protocol_feature *feature,
3898 enum packet_support support,
3899 const char *value)
3900 {
3901 struct remote_state *rs = get_remote_state ();
3902
3903 rs->fast_tracepoints = (support == PACKET_ENABLE);
3904 }
3905
3906 static void
3907 remote_static_tracepoint_feature (const struct protocol_feature *feature,
3908 enum packet_support support,
3909 const char *value)
3910 {
3911 struct remote_state *rs = get_remote_state ();
3912
3913 rs->static_tracepoints = (support == PACKET_ENABLE);
3914 }
3915
3916 static void
3917 remote_install_in_trace_feature (const struct protocol_feature *feature,
3918 enum packet_support support,
3919 const char *value)
3920 {
3921 struct remote_state *rs = get_remote_state ();
3922
3923 rs->install_in_trace = (support == PACKET_ENABLE);
3924 }
3925
3926 static void
3927 remote_disconnected_tracing_feature (const struct protocol_feature *feature,
3928 enum packet_support support,
3929 const char *value)
3930 {
3931 struct remote_state *rs = get_remote_state ();
3932
3933 rs->disconnected_tracing = (support == PACKET_ENABLE);
3934 }
3935
3936 static void
3937 remote_enable_disable_tracepoint_feature (const struct protocol_feature *feature,
3938 enum packet_support support,
3939 const char *value)
3940 {
3941 struct remote_state *rs = get_remote_state ();
3942
3943 rs->enable_disable_tracepoints = (support == PACKET_ENABLE);
3944 }
3945
3946 static void
3947 remote_string_tracing_feature (const struct protocol_feature *feature,
3948 enum packet_support support,
3949 const char *value)
3950 {
3951 struct remote_state *rs = get_remote_state ();
3952
3953 rs->string_tracing = (support == PACKET_ENABLE);
3954 }
3955
3956 static void
3957 remote_augmented_libraries_svr4_read_feature
3958 (const struct protocol_feature *feature,
3959 enum packet_support support, const char *value)
3960 {
3961 struct remote_state *rs = get_remote_state ();
3962
3963 rs->augmented_libraries_svr4_read = (support == PACKET_ENABLE);
3964 }
3965
3966 static struct protocol_feature remote_protocol_features[] = {
3967 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
3968 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
3969 PACKET_qXfer_auxv },
3970 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3971 PACKET_qXfer_features },
3972 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3973 PACKET_qXfer_libraries },
3974 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
3975 PACKET_qXfer_libraries_svr4 },
3976 { "augmented-libraries-svr4-read", PACKET_DISABLE,
3977 remote_augmented_libraries_svr4_read_feature, -1 },
3978 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
3979 PACKET_qXfer_memory_map },
3980 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3981 PACKET_qXfer_spu_read },
3982 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3983 PACKET_qXfer_spu_write },
3984 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3985 PACKET_qXfer_osdata },
3986 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
3987 PACKET_qXfer_threads },
3988 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
3989 PACKET_qXfer_traceframe_info },
3990 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3991 PACKET_QPassSignals },
3992 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
3993 PACKET_QProgramSignals },
3994 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3995 PACKET_QStartNoAckMode },
3996 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
3997 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
3998 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3999 PACKET_qXfer_siginfo_read },
4000 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4001 PACKET_qXfer_siginfo_write },
4002 { "ConditionalTracepoints", PACKET_DISABLE, remote_cond_tracepoint_feature,
4003 PACKET_ConditionalTracepoints },
4004 { "ConditionalBreakpoints", PACKET_DISABLE, remote_cond_breakpoint_feature,
4005 PACKET_ConditionalBreakpoints },
4006 { "BreakpointCommands", PACKET_DISABLE, remote_breakpoint_commands_feature,
4007 PACKET_BreakpointCommands },
4008 { "FastTracepoints", PACKET_DISABLE, remote_fast_tracepoint_feature,
4009 PACKET_FastTracepoints },
4010 { "StaticTracepoints", PACKET_DISABLE, remote_static_tracepoint_feature,
4011 PACKET_StaticTracepoints },
4012 {"InstallInTrace", PACKET_DISABLE, remote_install_in_trace_feature,
4013 PACKET_InstallInTrace},
4014 { "DisconnectedTracing", PACKET_DISABLE, remote_disconnected_tracing_feature,
4015 -1 },
4016 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4017 PACKET_bc },
4018 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4019 PACKET_bs },
4020 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4021 PACKET_TracepointSource },
4022 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4023 PACKET_QAllow },
4024 { "EnableDisableTracepoints", PACKET_DISABLE,
4025 remote_enable_disable_tracepoint_feature, -1 },
4026 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4027 PACKET_qXfer_fdpic },
4028 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4029 PACKET_qXfer_uib },
4030 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4031 PACKET_QDisableRandomization },
4032 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
4033 { "QTBuffer:size", PACKET_DISABLE,
4034 remote_supported_packet, PACKET_QTBuffer_size},
4035 { "tracenz", PACKET_DISABLE,
4036 remote_string_tracing_feature, -1 },
4037 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4038 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4039 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4040 PACKET_qXfer_btrace }
4041 };
4042
4043 static char *remote_support_xml;
4044
4045 /* Register string appended to "xmlRegisters=" in qSupported query. */
4046
4047 void
4048 register_remote_support_xml (const char *xml)
4049 {
4050 #if defined(HAVE_LIBEXPAT)
4051 if (remote_support_xml == NULL)
4052 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
4053 else
4054 {
4055 char *copy = xstrdup (remote_support_xml + 13);
4056 char *p = strtok (copy, ",");
4057
4058 do
4059 {
4060 if (strcmp (p, xml) == 0)
4061 {
4062 /* already there */
4063 xfree (copy);
4064 return;
4065 }
4066 }
4067 while ((p = strtok (NULL, ",")) != NULL);
4068 xfree (copy);
4069
4070 remote_support_xml = reconcat (remote_support_xml,
4071 remote_support_xml, ",", xml,
4072 (char *) NULL);
4073 }
4074 #endif
4075 }
4076
4077 static char *
4078 remote_query_supported_append (char *msg, const char *append)
4079 {
4080 if (msg)
4081 return reconcat (msg, msg, ";", append, (char *) NULL);
4082 else
4083 return xstrdup (append);
4084 }
4085
4086 static void
4087 remote_query_supported (void)
4088 {
4089 struct remote_state *rs = get_remote_state ();
4090 char *next;
4091 int i;
4092 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4093
4094 /* The packet support flags are handled differently for this packet
4095 than for most others. We treat an error, a disabled packet, and
4096 an empty response identically: any features which must be reported
4097 to be used will be automatically disabled. An empty buffer
4098 accomplishes this, since that is also the representation for a list
4099 containing no features. */
4100
4101 rs->buf[0] = 0;
4102 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
4103 {
4104 char *q = NULL;
4105 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
4106
4107 q = remote_query_supported_append (q, "multiprocess+");
4108
4109 if (remote_support_xml)
4110 q = remote_query_supported_append (q, remote_support_xml);
4111
4112 q = remote_query_supported_append (q, "qRelocInsn+");
4113
4114 q = reconcat (q, "qSupported:", q, (char *) NULL);
4115 putpkt (q);
4116
4117 do_cleanups (old_chain);
4118
4119 getpkt (&rs->buf, &rs->buf_size, 0);
4120
4121 /* If an error occured, warn, but do not return - just reset the
4122 buffer to empty and go on to disable features. */
4123 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4124 == PACKET_ERROR)
4125 {
4126 warning (_("Remote failure reply: %s"), rs->buf);
4127 rs->buf[0] = 0;
4128 }
4129 }
4130
4131 memset (seen, 0, sizeof (seen));
4132
4133 next = rs->buf;
4134 while (*next)
4135 {
4136 enum packet_support is_supported;
4137 char *p, *end, *name_end, *value;
4138
4139 /* First separate out this item from the rest of the packet. If
4140 there's another item after this, we overwrite the separator
4141 (terminated strings are much easier to work with). */
4142 p = next;
4143 end = strchr (p, ';');
4144 if (end == NULL)
4145 {
4146 end = p + strlen (p);
4147 next = end;
4148 }
4149 else
4150 {
4151 *end = '\0';
4152 next = end + 1;
4153
4154 if (end == p)
4155 {
4156 warning (_("empty item in \"qSupported\" response"));
4157 continue;
4158 }
4159 }
4160
4161 name_end = strchr (p, '=');
4162 if (name_end)
4163 {
4164 /* This is a name=value entry. */
4165 is_supported = PACKET_ENABLE;
4166 value = name_end + 1;
4167 *name_end = '\0';
4168 }
4169 else
4170 {
4171 value = NULL;
4172 switch (end[-1])
4173 {
4174 case '+':
4175 is_supported = PACKET_ENABLE;
4176 break;
4177
4178 case '-':
4179 is_supported = PACKET_DISABLE;
4180 break;
4181
4182 case '?':
4183 is_supported = PACKET_SUPPORT_UNKNOWN;
4184 break;
4185
4186 default:
4187 warning (_("unrecognized item \"%s\" "
4188 "in \"qSupported\" response"), p);
4189 continue;
4190 }
4191 end[-1] = '\0';
4192 }
4193
4194 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4195 if (strcmp (remote_protocol_features[i].name, p) == 0)
4196 {
4197 const struct protocol_feature *feature;
4198
4199 seen[i] = 1;
4200 feature = &remote_protocol_features[i];
4201 feature->func (feature, is_supported, value);
4202 break;
4203 }
4204 }
4205
4206 /* If we increased the packet size, make sure to increase the global
4207 buffer size also. We delay this until after parsing the entire
4208 qSupported packet, because this is the same buffer we were
4209 parsing. */
4210 if (rs->buf_size < rs->explicit_packet_size)
4211 {
4212 rs->buf_size = rs->explicit_packet_size;
4213 rs->buf = xrealloc (rs->buf, rs->buf_size);
4214 }
4215
4216 /* Handle the defaults for unmentioned features. */
4217 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4218 if (!seen[i])
4219 {
4220 const struct protocol_feature *feature;
4221
4222 feature = &remote_protocol_features[i];
4223 feature->func (feature, feature->default_support, NULL);
4224 }
4225 }
4226
4227 /* Remove any of the remote.c targets from target stack. Upper targets depend
4228 on it so remove them first. */
4229
4230 static void
4231 remote_unpush_target (void)
4232 {
4233 pop_all_targets_above (process_stratum - 1);
4234 }
4235
4236 static void
4237 remote_open_1 (char *name, int from_tty,
4238 struct target_ops *target, int extended_p)
4239 {
4240 struct remote_state *rs = get_remote_state ();
4241
4242 if (name == 0)
4243 error (_("To open a remote debug connection, you need to specify what\n"
4244 "serial device is attached to the remote system\n"
4245 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4246
4247 /* See FIXME above. */
4248 if (!target_async_permitted)
4249 wait_forever_enabled_p = 1;
4250
4251 /* If we're connected to a running target, target_preopen will kill it.
4252 Ask this question first, before target_preopen has a chance to kill
4253 anything. */
4254 if (remote_desc != NULL && !have_inferiors ())
4255 {
4256 if (from_tty
4257 && !query (_("Already connected to a remote target. Disconnect? ")))
4258 error (_("Still connected."));
4259 }
4260
4261 /* Here the possibly existing remote target gets unpushed. */
4262 target_preopen (from_tty);
4263
4264 /* Make sure we send the passed signals list the next time we resume. */
4265 xfree (last_pass_packet);
4266 last_pass_packet = NULL;
4267
4268 /* Make sure we send the program signals list the next time we
4269 resume. */
4270 xfree (last_program_signals_packet);
4271 last_program_signals_packet = NULL;
4272
4273 remote_fileio_reset ();
4274 reopen_exec_file ();
4275 reread_symbols ();
4276
4277 remote_desc = remote_serial_open (name);
4278 if (!remote_desc)
4279 perror_with_name (name);
4280
4281 if (baud_rate != -1)
4282 {
4283 if (serial_setbaudrate (remote_desc, baud_rate))
4284 {
4285 /* The requested speed could not be set. Error out to
4286 top level after closing remote_desc. Take care to
4287 set remote_desc to NULL to avoid closing remote_desc
4288 more than once. */
4289 serial_close (remote_desc);
4290 remote_desc = NULL;
4291 perror_with_name (name);
4292 }
4293 }
4294
4295 serial_raw (remote_desc);
4296
4297 /* If there is something sitting in the buffer we might take it as a
4298 response to a command, which would be bad. */
4299 serial_flush_input (remote_desc);
4300
4301 if (from_tty)
4302 {
4303 puts_filtered ("Remote debugging using ");
4304 puts_filtered (name);
4305 puts_filtered ("\n");
4306 }
4307 push_target (target); /* Switch to using remote target now. */
4308
4309 /* Register extra event sources in the event loop. */
4310 remote_async_inferior_event_token
4311 = create_async_event_handler (remote_async_inferior_event_handler,
4312 NULL);
4313 remote_notif_register_async_event_handler ();
4314
4315 /* Reset the target state; these things will be queried either by
4316 remote_query_supported or as they are needed. */
4317 init_all_packet_configs ();
4318 rs->cached_wait_status = 0;
4319 rs->explicit_packet_size = 0;
4320 rs->noack_mode = 0;
4321 rs->multi_process_aware = 0;
4322 rs->extended = extended_p;
4323 rs->non_stop_aware = 0;
4324 rs->waiting_for_stop_reply = 0;
4325 rs->ctrlc_pending_p = 0;
4326
4327 general_thread = not_sent_ptid;
4328 continue_thread = not_sent_ptid;
4329 remote_traceframe_number = -1;
4330
4331 /* Probe for ability to use "ThreadInfo" query, as required. */
4332 use_threadinfo_query = 1;
4333 use_threadextra_query = 1;
4334
4335 if (target_async_permitted)
4336 {
4337 /* With this target we start out by owning the terminal. */
4338 remote_async_terminal_ours_p = 1;
4339
4340 /* FIXME: cagney/1999-09-23: During the initial connection it is
4341 assumed that the target is already ready and able to respond to
4342 requests. Unfortunately remote_start_remote() eventually calls
4343 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
4344 around this. Eventually a mechanism that allows
4345 wait_for_inferior() to expect/get timeouts will be
4346 implemented. */
4347 wait_forever_enabled_p = 0;
4348 }
4349
4350 /* First delete any symbols previously loaded from shared libraries. */
4351 no_shared_libraries (NULL, 0);
4352
4353 /* Start afresh. */
4354 init_thread_list ();
4355
4356 /* Start the remote connection. If error() or QUIT, discard this
4357 target (we'd otherwise be in an inconsistent state) and then
4358 propogate the error on up the exception chain. This ensures that
4359 the caller doesn't stumble along blindly assuming that the
4360 function succeeded. The CLI doesn't have this problem but other
4361 UI's, such as MI do.
4362
4363 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4364 this function should return an error indication letting the
4365 caller restore the previous state. Unfortunately the command
4366 ``target remote'' is directly wired to this function making that
4367 impossible. On a positive note, the CLI side of this problem has
4368 been fixed - the function set_cmd_context() makes it possible for
4369 all the ``target ....'' commands to share a common callback
4370 function. See cli-dump.c. */
4371 {
4372 volatile struct gdb_exception ex;
4373
4374 TRY_CATCH (ex, RETURN_MASK_ALL)
4375 {
4376 remote_start_remote (from_tty, target, extended_p);
4377 }
4378 if (ex.reason < 0)
4379 {
4380 /* Pop the partially set up target - unless something else did
4381 already before throwing the exception. */
4382 if (remote_desc != NULL)
4383 remote_unpush_target ();
4384 if (target_async_permitted)
4385 wait_forever_enabled_p = 1;
4386 throw_exception (ex);
4387 }
4388 }
4389
4390 if (target_async_permitted)
4391 wait_forever_enabled_p = 1;
4392 }
4393
4394 /* This takes a program previously attached to and detaches it. After
4395 this is done, GDB can be used to debug some other program. We
4396 better not have left any breakpoints in the target program or it'll
4397 die when it hits one. */
4398
4399 static void
4400 remote_detach_1 (char *args, int from_tty, int extended)
4401 {
4402 int pid = ptid_get_pid (inferior_ptid);
4403 struct remote_state *rs = get_remote_state ();
4404
4405 if (args)
4406 error (_("Argument given to \"detach\" when remotely debugging."));
4407
4408 if (!target_has_execution)
4409 error (_("No process to detach from."));
4410
4411 if (from_tty)
4412 {
4413 char *exec_file = get_exec_file (0);
4414 if (exec_file == NULL)
4415 exec_file = "";
4416 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
4417 target_pid_to_str (pid_to_ptid (pid)));
4418 gdb_flush (gdb_stdout);
4419 }
4420
4421 /* Tell the remote target to detach. */
4422 if (remote_multi_process_p (rs))
4423 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
4424 else
4425 strcpy (rs->buf, "D");
4426
4427 putpkt (rs->buf);
4428 getpkt (&rs->buf, &rs->buf_size, 0);
4429
4430 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
4431 ;
4432 else if (rs->buf[0] == '\0')
4433 error (_("Remote doesn't know how to detach"));
4434 else
4435 error (_("Can't detach process."));
4436
4437 if (from_tty && !extended)
4438 puts_filtered (_("Ending remote debugging.\n"));
4439
4440 target_mourn_inferior ();
4441 }
4442
4443 static void
4444 remote_detach (struct target_ops *ops, char *args, int from_tty)
4445 {
4446 remote_detach_1 (args, from_tty, 0);
4447 }
4448
4449 static void
4450 extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
4451 {
4452 remote_detach_1 (args, from_tty, 1);
4453 }
4454
4455 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
4456
4457 static void
4458 remote_disconnect (struct target_ops *target, char *args, int from_tty)
4459 {
4460 if (args)
4461 error (_("Argument given to \"disconnect\" when remotely debugging."));
4462
4463 /* Make sure we unpush even the extended remote targets; mourn
4464 won't do it. So call remote_mourn_1 directly instead of
4465 target_mourn_inferior. */
4466 remote_mourn_1 (target);
4467
4468 if (from_tty)
4469 puts_filtered ("Ending remote debugging.\n");
4470 }
4471
4472 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
4473 be chatty about it. */
4474
4475 static void
4476 extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
4477 {
4478 struct remote_state *rs = get_remote_state ();
4479 int pid;
4480 char *wait_status = NULL;
4481
4482 pid = parse_pid_to_attach (args);
4483
4484 /* Remote PID can be freely equal to getpid, do not check it here the same
4485 way as in other targets. */
4486
4487 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4488 error (_("This target does not support attaching to a process"));
4489
4490 if (from_tty)
4491 {
4492 char *exec_file = get_exec_file (0);
4493
4494 if (exec_file)
4495 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
4496 target_pid_to_str (pid_to_ptid (pid)));
4497 else
4498 printf_unfiltered (_("Attaching to %s\n"),
4499 target_pid_to_str (pid_to_ptid (pid)));
4500
4501 gdb_flush (gdb_stdout);
4502 }
4503
4504 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
4505 putpkt (rs->buf);
4506 getpkt (&rs->buf, &rs->buf_size, 0);
4507
4508 if (packet_ok (rs->buf,
4509 &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
4510 {
4511 if (!non_stop)
4512 {
4513 /* Save the reply for later. */
4514 wait_status = alloca (strlen (rs->buf) + 1);
4515 strcpy (wait_status, rs->buf);
4516 }
4517 else if (strcmp (rs->buf, "OK") != 0)
4518 error (_("Attaching to %s failed with: %s"),
4519 target_pid_to_str (pid_to_ptid (pid)),
4520 rs->buf);
4521 }
4522 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4523 error (_("This target does not support attaching to a process"));
4524 else
4525 error (_("Attaching to %s failed"),
4526 target_pid_to_str (pid_to_ptid (pid)));
4527
4528 set_current_inferior (remote_add_inferior (0, pid, 1));
4529
4530 inferior_ptid = pid_to_ptid (pid);
4531
4532 if (non_stop)
4533 {
4534 struct thread_info *thread;
4535
4536 /* Get list of threads. */
4537 remote_threads_info (target);
4538
4539 thread = first_thread_of_process (pid);
4540 if (thread)
4541 inferior_ptid = thread->ptid;
4542 else
4543 inferior_ptid = pid_to_ptid (pid);
4544
4545 /* Invalidate our notion of the remote current thread. */
4546 record_currthread (minus_one_ptid);
4547 }
4548 else
4549 {
4550 /* Now, if we have thread information, update inferior_ptid. */
4551 inferior_ptid = remote_current_thread (inferior_ptid);
4552
4553 /* Add the main thread to the thread list. */
4554 add_thread_silent (inferior_ptid);
4555 }
4556
4557 /* Next, if the target can specify a description, read it. We do
4558 this before anything involving memory or registers. */
4559 target_find_description ();
4560
4561 if (!non_stop)
4562 {
4563 /* Use the previously fetched status. */
4564 gdb_assert (wait_status != NULL);
4565
4566 if (target_can_async_p ())
4567 {
4568 struct notif_event *reply
4569 = remote_notif_parse (&notif_client_stop, wait_status);
4570
4571 push_stop_reply ((struct stop_reply *) reply);
4572
4573 target_async (inferior_event_handler, 0);
4574 }
4575 else
4576 {
4577 gdb_assert (wait_status != NULL);
4578 strcpy (rs->buf, wait_status);
4579 rs->cached_wait_status = 1;
4580 }
4581 }
4582 else
4583 gdb_assert (wait_status == NULL);
4584 }
4585
4586 static void
4587 extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
4588 {
4589 extended_remote_attach_1 (ops, args, from_tty);
4590 }
4591
4592 /* Convert hex digit A to a number. */
4593
4594 static int
4595 fromhex (int a)
4596 {
4597 if (a >= '0' && a <= '9')
4598 return a - '0';
4599 else if (a >= 'a' && a <= 'f')
4600 return a - 'a' + 10;
4601 else if (a >= 'A' && a <= 'F')
4602 return a - 'A' + 10;
4603 else
4604 error (_("Reply contains invalid hex digit %d"), a);
4605 }
4606
4607 int
4608 hex2bin (const char *hex, gdb_byte *bin, int count)
4609 {
4610 int i;
4611
4612 for (i = 0; i < count; i++)
4613 {
4614 if (hex[0] == 0 || hex[1] == 0)
4615 {
4616 /* Hex string is short, or of uneven length.
4617 Return the count that has been converted so far. */
4618 return i;
4619 }
4620 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
4621 hex += 2;
4622 }
4623 return i;
4624 }
4625
4626 /* Convert number NIB to a hex digit. */
4627
4628 static int
4629 tohex (int nib)
4630 {
4631 if (nib < 10)
4632 return '0' + nib;
4633 else
4634 return 'a' + nib - 10;
4635 }
4636
4637 int
4638 bin2hex (const gdb_byte *bin, char *hex, int count)
4639 {
4640 int i;
4641
4642 /* May use a length, or a nul-terminated string as input. */
4643 if (count == 0)
4644 count = strlen ((char *) bin);
4645
4646 for (i = 0; i < count; i++)
4647 {
4648 *hex++ = tohex ((*bin >> 4) & 0xf);
4649 *hex++ = tohex (*bin++ & 0xf);
4650 }
4651 *hex = 0;
4652 return i;
4653 }
4654 \f
4655 /* Check for the availability of vCont. This function should also check
4656 the response. */
4657
4658 static void
4659 remote_vcont_probe (struct remote_state *rs)
4660 {
4661 char *buf;
4662
4663 strcpy (rs->buf, "vCont?");
4664 putpkt (rs->buf);
4665 getpkt (&rs->buf, &rs->buf_size, 0);
4666 buf = rs->buf;
4667
4668 /* Make sure that the features we assume are supported. */
4669 if (strncmp (buf, "vCont", 5) == 0)
4670 {
4671 char *p = &buf[5];
4672 int support_s, support_S, support_c, support_C;
4673
4674 support_s = 0;
4675 support_S = 0;
4676 support_c = 0;
4677 support_C = 0;
4678 rs->supports_vCont.t = 0;
4679 rs->supports_vCont.r = 0;
4680 while (p && *p == ';')
4681 {
4682 p++;
4683 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
4684 support_s = 1;
4685 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
4686 support_S = 1;
4687 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
4688 support_c = 1;
4689 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
4690 support_C = 1;
4691 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
4692 rs->supports_vCont.t = 1;
4693 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
4694 rs->supports_vCont.r = 1;
4695
4696 p = strchr (p, ';');
4697 }
4698
4699 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
4700 BUF will make packet_ok disable the packet. */
4701 if (!support_s || !support_S || !support_c || !support_C)
4702 buf[0] = 0;
4703 }
4704
4705 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
4706 }
4707
4708 /* Helper function for building "vCont" resumptions. Write a
4709 resumption to P. ENDP points to one-passed-the-end of the buffer
4710 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
4711 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4712 resumed thread should be single-stepped and/or signalled. If PTID
4713 equals minus_one_ptid, then all threads are resumed; if PTID
4714 represents a process, then all threads of the process are resumed;
4715 the thread to be stepped and/or signalled is given in the global
4716 INFERIOR_PTID. */
4717
4718 static char *
4719 append_resumption (char *p, char *endp,
4720 ptid_t ptid, int step, enum gdb_signal siggnal)
4721 {
4722 struct remote_state *rs = get_remote_state ();
4723
4724 if (step && siggnal != GDB_SIGNAL_0)
4725 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
4726 else if (step
4727 /* GDB is willing to range step. */
4728 && use_range_stepping
4729 /* Target supports range stepping. */
4730 && rs->supports_vCont.r
4731 /* We don't currently support range stepping multiple
4732 threads with a wildcard (though the protocol allows it,
4733 so stubs shouldn't make an active effort to forbid
4734 it). */
4735 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
4736 {
4737 struct thread_info *tp;
4738
4739 if (ptid_equal (ptid, minus_one_ptid))
4740 {
4741 /* If we don't know about the target thread's tid, then
4742 we're resuming magic_null_ptid (see caller). */
4743 tp = find_thread_ptid (magic_null_ptid);
4744 }
4745 else
4746 tp = find_thread_ptid (ptid);
4747 gdb_assert (tp != NULL);
4748
4749 if (tp->control.may_range_step)
4750 {
4751 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4752
4753 p += xsnprintf (p, endp - p, ";r%s,%s",
4754 phex_nz (tp->control.step_range_start,
4755 addr_size),
4756 phex_nz (tp->control.step_range_end,
4757 addr_size));
4758 }
4759 else
4760 p += xsnprintf (p, endp - p, ";s");
4761 }
4762 else if (step)
4763 p += xsnprintf (p, endp - p, ";s");
4764 else if (siggnal != GDB_SIGNAL_0)
4765 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
4766 else
4767 p += xsnprintf (p, endp - p, ";c");
4768
4769 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
4770 {
4771 ptid_t nptid;
4772
4773 /* All (-1) threads of process. */
4774 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4775
4776 p += xsnprintf (p, endp - p, ":");
4777 p = write_ptid (p, endp, nptid);
4778 }
4779 else if (!ptid_equal (ptid, minus_one_ptid))
4780 {
4781 p += xsnprintf (p, endp - p, ":");
4782 p = write_ptid (p, endp, ptid);
4783 }
4784
4785 return p;
4786 }
4787
4788 /* Append a vCont continue-with-signal action for threads that have a
4789 non-zero stop signal. */
4790
4791 static char *
4792 append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
4793 {
4794 struct thread_info *thread;
4795
4796 ALL_THREADS (thread)
4797 if (ptid_match (thread->ptid, ptid)
4798 && !ptid_equal (inferior_ptid, thread->ptid)
4799 && thread->suspend.stop_signal != GDB_SIGNAL_0
4800 && signal_pass_state (thread->suspend.stop_signal))
4801 {
4802 p = append_resumption (p, endp, thread->ptid,
4803 0, thread->suspend.stop_signal);
4804 thread->suspend.stop_signal = GDB_SIGNAL_0;
4805 }
4806
4807 return p;
4808 }
4809
4810 /* Resume the remote inferior by using a "vCont" packet. The thread
4811 to be resumed is PTID; STEP and SIGGNAL indicate whether the
4812 resumed thread should be single-stepped and/or signalled. If PTID
4813 equals minus_one_ptid, then all threads are resumed; the thread to
4814 be stepped and/or signalled is given in the global INFERIOR_PTID.
4815 This function returns non-zero iff it resumes the inferior.
4816
4817 This function issues a strict subset of all possible vCont commands at the
4818 moment. */
4819
4820 static int
4821 remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
4822 {
4823 struct remote_state *rs = get_remote_state ();
4824 char *p;
4825 char *endp;
4826
4827 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
4828 remote_vcont_probe (rs);
4829
4830 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
4831 return 0;
4832
4833 p = rs->buf;
4834 endp = rs->buf + get_remote_packet_size ();
4835
4836 /* If we could generate a wider range of packets, we'd have to worry
4837 about overflowing BUF. Should there be a generic
4838 "multi-part-packet" packet? */
4839
4840 p += xsnprintf (p, endp - p, "vCont");
4841
4842 if (ptid_equal (ptid, magic_null_ptid))
4843 {
4844 /* MAGIC_NULL_PTID means that we don't have any active threads,
4845 so we don't have any TID numbers the inferior will
4846 understand. Make sure to only send forms that do not specify
4847 a TID. */
4848 append_resumption (p, endp, minus_one_ptid, step, siggnal);
4849 }
4850 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
4851 {
4852 /* Resume all threads (of all processes, or of a single
4853 process), with preference for INFERIOR_PTID. This assumes
4854 inferior_ptid belongs to the set of all threads we are about
4855 to resume. */
4856 if (step || siggnal != GDB_SIGNAL_0)
4857 {
4858 /* Step inferior_ptid, with or without signal. */
4859 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
4860 }
4861
4862 /* Also pass down any pending signaled resumption for other
4863 threads not the current. */
4864 p = append_pending_thread_resumptions (p, endp, ptid);
4865
4866 /* And continue others without a signal. */
4867 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
4868 }
4869 else
4870 {
4871 /* Scheduler locking; resume only PTID. */
4872 append_resumption (p, endp, ptid, step, siggnal);
4873 }
4874
4875 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
4876 putpkt (rs->buf);
4877
4878 if (non_stop)
4879 {
4880 /* In non-stop, the stub replies to vCont with "OK". The stop
4881 reply will be reported asynchronously by means of a `%Stop'
4882 notification. */
4883 getpkt (&rs->buf, &rs->buf_size, 0);
4884 if (strcmp (rs->buf, "OK") != 0)
4885 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
4886 }
4887
4888 return 1;
4889 }
4890
4891 /* Tell the remote machine to resume. */
4892
4893 static enum gdb_signal last_sent_signal = GDB_SIGNAL_0;
4894
4895 static int last_sent_step;
4896
4897 static void
4898 remote_resume (struct target_ops *ops,
4899 ptid_t ptid, int step, enum gdb_signal siggnal)
4900 {
4901 struct remote_state *rs = get_remote_state ();
4902 char *buf;
4903
4904 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
4905 (explained in remote-notif.c:handle_notification) so
4906 remote_notif_process is not called. We need find a place where
4907 it is safe to start a 'vNotif' sequence. It is good to do it
4908 before resuming inferior, because inferior was stopped and no RSP
4909 traffic at that moment. */
4910 if (!non_stop)
4911 remote_notif_process (&notif_client_stop);
4912
4913 last_sent_signal = siggnal;
4914 last_sent_step = step;
4915
4916 /* The vCont packet doesn't need to specify threads via Hc. */
4917 /* No reverse support (yet) for vCont. */
4918 if (execution_direction != EXEC_REVERSE)
4919 if (remote_vcont_resume (ptid, step, siggnal))
4920 goto done;
4921
4922 /* All other supported resume packets do use Hc, so set the continue
4923 thread. */
4924 if (ptid_equal (ptid, minus_one_ptid))
4925 set_continue_thread (any_thread_ptid);
4926 else
4927 set_continue_thread (ptid);
4928
4929 buf = rs->buf;
4930 if (execution_direction == EXEC_REVERSE)
4931 {
4932 /* We don't pass signals to the target in reverse exec mode. */
4933 if (info_verbose && siggnal != GDB_SIGNAL_0)
4934 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
4935 siggnal);
4936
4937 if (step
4938 && remote_protocol_packets[PACKET_bs].support == PACKET_DISABLE)
4939 error (_("Remote reverse-step not supported."));
4940 if (!step
4941 && remote_protocol_packets[PACKET_bc].support == PACKET_DISABLE)
4942 error (_("Remote reverse-continue not supported."));
4943
4944 strcpy (buf, step ? "bs" : "bc");
4945 }
4946 else if (siggnal != GDB_SIGNAL_0)
4947 {
4948 buf[0] = step ? 'S' : 'C';
4949 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
4950 buf[2] = tohex (((int) siggnal) & 0xf);
4951 buf[3] = '\0';
4952 }
4953 else
4954 strcpy (buf, step ? "s" : "c");
4955
4956 putpkt (buf);
4957
4958 done:
4959 /* We are about to start executing the inferior, let's register it
4960 with the event loop. NOTE: this is the one place where all the
4961 execution commands end up. We could alternatively do this in each
4962 of the execution commands in infcmd.c. */
4963 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
4964 into infcmd.c in order to allow inferior function calls to work
4965 NOT asynchronously. */
4966 if (target_can_async_p ())
4967 target_async (inferior_event_handler, 0);
4968
4969 /* We've just told the target to resume. The remote server will
4970 wait for the inferior to stop, and then send a stop reply. In
4971 the mean time, we can't start another command/query ourselves
4972 because the stub wouldn't be ready to process it. This applies
4973 only to the base all-stop protocol, however. In non-stop (which
4974 only supports vCont), the stub replies with an "OK", and is
4975 immediate able to process further serial input. */
4976 if (!non_stop)
4977 rs->waiting_for_stop_reply = 1;
4978 }
4979 \f
4980
4981 /* Set up the signal handler for SIGINT, while the target is
4982 executing, ovewriting the 'regular' SIGINT signal handler. */
4983 static void
4984 async_initialize_sigint_signal_handler (void)
4985 {
4986 signal (SIGINT, async_handle_remote_sigint);
4987 }
4988
4989 /* Signal handler for SIGINT, while the target is executing. */
4990 static void
4991 async_handle_remote_sigint (int sig)
4992 {
4993 signal (sig, async_handle_remote_sigint_twice);
4994 mark_async_signal_handler (async_sigint_remote_token);
4995 }
4996
4997 /* Signal handler for SIGINT, installed after SIGINT has already been
4998 sent once. It will take effect the second time that the user sends
4999 a ^C. */
5000 static void
5001 async_handle_remote_sigint_twice (int sig)
5002 {
5003 signal (sig, async_handle_remote_sigint);
5004 mark_async_signal_handler (async_sigint_remote_twice_token);
5005 }
5006
5007 /* Perform the real interruption of the target execution, in response
5008 to a ^C. */
5009 static void
5010 async_remote_interrupt (gdb_client_data arg)
5011 {
5012 if (remote_debug)
5013 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
5014
5015 target_stop (inferior_ptid);
5016 }
5017
5018 /* Perform interrupt, if the first attempt did not succeed. Just give
5019 up on the target alltogether. */
5020 static void
5021 async_remote_interrupt_twice (gdb_client_data arg)
5022 {
5023 if (remote_debug)
5024 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
5025
5026 interrupt_query ();
5027 }
5028
5029 /* Reinstall the usual SIGINT handlers, after the target has
5030 stopped. */
5031 static void
5032 async_cleanup_sigint_signal_handler (void *dummy)
5033 {
5034 signal (SIGINT, handle_sigint);
5035 }
5036
5037 /* Send ^C to target to halt it. Target will respond, and send us a
5038 packet. */
5039 static void (*ofunc) (int);
5040
5041 /* The command line interface's stop routine. This function is installed
5042 as a signal handler for SIGINT. The first time a user requests a
5043 stop, we call remote_stop to send a break or ^C. If there is no
5044 response from the target (it didn't stop when the user requested it),
5045 we ask the user if he'd like to detach from the target. */
5046 static void
5047 sync_remote_interrupt (int signo)
5048 {
5049 /* If this doesn't work, try more severe steps. */
5050 signal (signo, sync_remote_interrupt_twice);
5051
5052 gdb_call_async_signal_handler (async_sigint_remote_token, 1);
5053 }
5054
5055 /* The user typed ^C twice. */
5056
5057 static void
5058 sync_remote_interrupt_twice (int signo)
5059 {
5060 signal (signo, ofunc);
5061 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1);
5062 signal (signo, sync_remote_interrupt);
5063 }
5064
5065 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5066 thread, all threads of a remote process, or all threads of all
5067 processes. */
5068
5069 static void
5070 remote_stop_ns (ptid_t ptid)
5071 {
5072 struct remote_state *rs = get_remote_state ();
5073 char *p = rs->buf;
5074 char *endp = rs->buf + get_remote_packet_size ();
5075
5076 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
5077 remote_vcont_probe (rs);
5078
5079 if (!rs->supports_vCont.t)
5080 error (_("Remote server does not support stopping threads"));
5081
5082 if (ptid_equal (ptid, minus_one_ptid)
5083 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5084 p += xsnprintf (p, endp - p, "vCont;t");
5085 else
5086 {
5087 ptid_t nptid;
5088
5089 p += xsnprintf (p, endp - p, "vCont;t:");
5090
5091 if (ptid_is_pid (ptid))
5092 /* All (-1) threads of process. */
5093 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
5094 else
5095 {
5096 /* Small optimization: if we already have a stop reply for
5097 this thread, no use in telling the stub we want this
5098 stopped. */
5099 if (peek_stop_reply (ptid))
5100 return;
5101
5102 nptid = ptid;
5103 }
5104
5105 write_ptid (p, endp, nptid);
5106 }
5107
5108 /* In non-stop, we get an immediate OK reply. The stop reply will
5109 come in asynchronously by notification. */
5110 putpkt (rs->buf);
5111 getpkt (&rs->buf, &rs->buf_size, 0);
5112 if (strcmp (rs->buf, "OK") != 0)
5113 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5114 }
5115
5116 /* All-stop version of target_stop. Sends a break or a ^C to stop the
5117 remote target. It is undefined which thread of which process
5118 reports the stop. */
5119
5120 static void
5121 remote_stop_as (ptid_t ptid)
5122 {
5123 struct remote_state *rs = get_remote_state ();
5124
5125 rs->ctrlc_pending_p = 1;
5126
5127 /* If the inferior is stopped already, but the core didn't know
5128 about it yet, just ignore the request. The cached wait status
5129 will be collected in remote_wait. */
5130 if (rs->cached_wait_status)
5131 return;
5132
5133 /* Send interrupt_sequence to remote target. */
5134 send_interrupt_sequence ();
5135 }
5136
5137 /* This is the generic stop called via the target vector. When a target
5138 interrupt is requested, either by the command line or the GUI, we
5139 will eventually end up here. */
5140
5141 static void
5142 remote_stop (ptid_t ptid)
5143 {
5144 if (remote_debug)
5145 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
5146
5147 if (non_stop)
5148 remote_stop_ns (ptid);
5149 else
5150 remote_stop_as (ptid);
5151 }
5152
5153 /* Ask the user what to do when an interrupt is received. */
5154
5155 static void
5156 interrupt_query (void)
5157 {
5158 target_terminal_ours ();
5159
5160 if (target_can_async_p ())
5161 {
5162 signal (SIGINT, handle_sigint);
5163 quit ();
5164 }
5165 else
5166 {
5167 if (query (_("Interrupted while waiting for the program.\n\
5168 Give up (and stop debugging it)? ")))
5169 {
5170 remote_unpush_target ();
5171 quit ();
5172 }
5173 }
5174
5175 target_terminal_inferior ();
5176 }
5177
5178 /* Enable/disable target terminal ownership. Most targets can use
5179 terminal groups to control terminal ownership. Remote targets are
5180 different in that explicit transfer of ownership to/from GDB/target
5181 is required. */
5182
5183 static void
5184 remote_terminal_inferior (void)
5185 {
5186 if (!target_async_permitted)
5187 /* Nothing to do. */
5188 return;
5189
5190 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5191 idempotent. The event-loop GDB talking to an asynchronous target
5192 with a synchronous command calls this function from both
5193 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5194 transfer the terminal to the target when it shouldn't this guard
5195 can go away. */
5196 if (!remote_async_terminal_ours_p)
5197 return;
5198 delete_file_handler (input_fd);
5199 remote_async_terminal_ours_p = 0;
5200 async_initialize_sigint_signal_handler ();
5201 /* NOTE: At this point we could also register our selves as the
5202 recipient of all input. Any characters typed could then be
5203 passed on down to the target. */
5204 }
5205
5206 static void
5207 remote_terminal_ours (void)
5208 {
5209 if (!target_async_permitted)
5210 /* Nothing to do. */
5211 return;
5212
5213 /* See FIXME in remote_terminal_inferior. */
5214 if (remote_async_terminal_ours_p)
5215 return;
5216 async_cleanup_sigint_signal_handler (NULL);
5217 add_file_handler (input_fd, stdin_event_handler, 0);
5218 remote_async_terminal_ours_p = 1;
5219 }
5220
5221 static void
5222 remote_console_output (char *msg)
5223 {
5224 char *p;
5225
5226 for (p = msg; p[0] && p[1]; p += 2)
5227 {
5228 char tb[2];
5229 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
5230
5231 tb[0] = c;
5232 tb[1] = 0;
5233 fputs_unfiltered (tb, gdb_stdtarg);
5234 }
5235 gdb_flush (gdb_stdtarg);
5236 }
5237
5238 typedef struct cached_reg
5239 {
5240 int num;
5241 gdb_byte data[MAX_REGISTER_SIZE];
5242 } cached_reg_t;
5243
5244 DEF_VEC_O(cached_reg_t);
5245
5246 typedef struct stop_reply
5247 {
5248 struct notif_event base;
5249
5250 /* The identifier of the thread about this event */
5251 ptid_t ptid;
5252
5253 struct target_waitstatus ws;
5254
5255 /* Expedited registers. This makes remote debugging a bit more
5256 efficient for those targets that provide critical registers as
5257 part of their normal status mechanism (as another roundtrip to
5258 fetch them is avoided). */
5259 VEC(cached_reg_t) *regcache;
5260
5261 int stopped_by_watchpoint_p;
5262 CORE_ADDR watch_data_address;
5263
5264 int solibs_changed;
5265 int replay_event;
5266
5267 int core;
5268 } *stop_reply_p;
5269
5270 DECLARE_QUEUE_P (stop_reply_p);
5271 DEFINE_QUEUE_P (stop_reply_p);
5272 /* The list of already fetched and acknowledged stop events. This
5273 queue is used for notification Stop, and other notifications
5274 don't need queue for their events, because the notification events
5275 of Stop can't be consumed immediately, so that events should be
5276 queued first, and be consumed by remote_wait_{ns,as} one per
5277 time. Other notifications can consume their events immediately,
5278 so queue is not needed for them. */
5279 static QUEUE (stop_reply_p) *stop_reply_queue;
5280
5281 static void
5282 stop_reply_xfree (struct stop_reply *r)
5283 {
5284 if (r != NULL)
5285 {
5286 VEC_free (cached_reg_t, r->regcache);
5287 xfree (r);
5288 }
5289 }
5290
5291 static void
5292 remote_notif_stop_parse (struct notif_client *self, char *buf,
5293 struct notif_event *event)
5294 {
5295 remote_parse_stop_reply (buf, (struct stop_reply *) event);
5296 }
5297
5298 static void
5299 remote_notif_stop_ack (struct notif_client *self, char *buf,
5300 struct notif_event *event)
5301 {
5302 struct stop_reply *stop_reply = (struct stop_reply *) event;
5303
5304 /* acknowledge */
5305 putpkt ((char *) self->ack_command);
5306
5307 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
5308 /* We got an unknown stop reply. */
5309 error (_("Unknown stop reply"));
5310
5311 push_stop_reply (stop_reply);
5312 }
5313
5314 static int
5315 remote_notif_stop_can_get_pending_events (struct notif_client *self)
5316 {
5317 /* We can't get pending events in remote_notif_process for
5318 notification stop, and we have to do this in remote_wait_ns
5319 instead. If we fetch all queued events from stub, remote stub
5320 may exit and we have no chance to process them back in
5321 remote_wait_ns. */
5322 mark_async_event_handler (remote_async_inferior_event_token);
5323 return 0;
5324 }
5325
5326 static void
5327 stop_reply_dtr (struct notif_event *event)
5328 {
5329 struct stop_reply *r = (struct stop_reply *) event;
5330
5331 VEC_free (cached_reg_t, r->regcache);
5332 }
5333
5334 static struct notif_event *
5335 remote_notif_stop_alloc_reply (void)
5336 {
5337 struct notif_event *r
5338 = (struct notif_event *) XMALLOC (struct stop_reply);
5339
5340 r->dtr = stop_reply_dtr;
5341
5342 return r;
5343 }
5344
5345 /* A client of notification Stop. */
5346
5347 struct notif_client notif_client_stop =
5348 {
5349 "Stop",
5350 "vStopped",
5351 remote_notif_stop_parse,
5352 remote_notif_stop_ack,
5353 remote_notif_stop_can_get_pending_events,
5354 remote_notif_stop_alloc_reply,
5355 NULL,
5356 };
5357
5358 /* A parameter to pass data in and out. */
5359
5360 struct queue_iter_param
5361 {
5362 void *input;
5363 struct stop_reply *output;
5364 };
5365
5366 /* Remove all queue elements meet the condition it checks. */
5367
5368 static int
5369 remote_notif_remove_all (QUEUE (stop_reply_p) *q,
5370 QUEUE_ITER (stop_reply_p) *iter,
5371 stop_reply_p event,
5372 void *data)
5373 {
5374 struct queue_iter_param *param = data;
5375 struct inferior *inf = param->input;
5376
5377 if (inf == NULL || ptid_get_pid (event->ptid) == inf->pid)
5378 {
5379 stop_reply_xfree (event);
5380 QUEUE_remove_elem (stop_reply_p, q, iter);
5381 }
5382
5383 return 1;
5384 }
5385
5386 /* Discard all pending stop replies of inferior INF. If INF is NULL,
5387 discard everything. */
5388
5389 static void
5390 discard_pending_stop_replies (struct inferior *inf)
5391 {
5392 int i;
5393 struct queue_iter_param param;
5394 struct stop_reply *reply
5395 = (struct stop_reply *) notif_client_stop.pending_event;
5396
5397 /* Discard the in-flight notification. */
5398 if (reply != NULL
5399 && (inf == NULL
5400 || ptid_get_pid (reply->ptid) == inf->pid))
5401 {
5402 stop_reply_xfree (reply);
5403 notif_client_stop.pending_event = NULL;
5404 }
5405
5406 param.input = inf;
5407 param.output = NULL;
5408 /* Discard the stop replies we have already pulled with
5409 vStopped. */
5410 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5411 remote_notif_remove_all, &param);
5412 }
5413
5414 /* A parameter to pass data in and out. */
5415
5416 static int
5417 remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
5418 QUEUE_ITER (stop_reply_p) *iter,
5419 stop_reply_p event,
5420 void *data)
5421 {
5422 struct queue_iter_param *param = data;
5423 ptid_t *ptid = param->input;
5424
5425 if (ptid_match (event->ptid, *ptid))
5426 {
5427 param->output = event;
5428 QUEUE_remove_elem (stop_reply_p, q, iter);
5429 return 0;
5430 }
5431
5432 return 1;
5433 }
5434
5435 /* Remove the first reply in 'stop_reply_queue' which matches
5436 PTID. */
5437
5438 static struct stop_reply *
5439 remote_notif_remove_queued_reply (ptid_t ptid)
5440 {
5441 struct queue_iter_param param;
5442
5443 param.input = &ptid;
5444 param.output = NULL;
5445
5446 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5447 remote_notif_remove_once_on_match, &param);
5448 if (notif_debug)
5449 fprintf_unfiltered (gdb_stdlog,
5450 "notif: discard queued event: 'Stop' in %s\n",
5451 target_pid_to_str (ptid));
5452
5453 return param.output;
5454 }
5455
5456 /* Look for a queued stop reply belonging to PTID. If one is found,
5457 remove it from the queue, and return it. Returns NULL if none is
5458 found. If there are still queued events left to process, tell the
5459 event loop to get back to target_wait soon. */
5460
5461 static struct stop_reply *
5462 queued_stop_reply (ptid_t ptid)
5463 {
5464 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
5465
5466 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
5467 /* There's still at least an event left. */
5468 mark_async_event_handler (remote_async_inferior_event_token);
5469
5470 return r;
5471 }
5472
5473 /* Push a fully parsed stop reply in the stop reply queue. Since we
5474 know that we now have at least one queued event left to pass to the
5475 core side, tell the event loop to get back to target_wait soon. */
5476
5477 static void
5478 push_stop_reply (struct stop_reply *new_event)
5479 {
5480 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
5481
5482 if (notif_debug)
5483 fprintf_unfiltered (gdb_stdlog,
5484 "notif: push 'Stop' %s to queue %d\n",
5485 target_pid_to_str (new_event->ptid),
5486 QUEUE_length (stop_reply_p,
5487 stop_reply_queue));
5488
5489 mark_async_event_handler (remote_async_inferior_event_token);
5490 }
5491
5492 static int
5493 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
5494 QUEUE_ITER (stop_reply_p) *iter,
5495 struct stop_reply *event,
5496 void *data)
5497 {
5498 ptid_t *ptid = data;
5499
5500 return !(ptid_equal (*ptid, event->ptid)
5501 && event->ws.kind == TARGET_WAITKIND_STOPPED);
5502 }
5503
5504 /* Returns true if we have a stop reply for PTID. */
5505
5506 static int
5507 peek_stop_reply (ptid_t ptid)
5508 {
5509 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
5510 stop_reply_match_ptid_and_ws, &ptid);
5511 }
5512
5513 /* Parse the stop reply in BUF. Either the function succeeds, and the
5514 result is stored in EVENT, or throws an error. */
5515
5516 static void
5517 remote_parse_stop_reply (char *buf, struct stop_reply *event)
5518 {
5519 struct remote_arch_state *rsa = get_remote_arch_state ();
5520 ULONGEST addr;
5521 char *p;
5522
5523 event->ptid = null_ptid;
5524 event->ws.kind = TARGET_WAITKIND_IGNORE;
5525 event->ws.value.integer = 0;
5526 event->solibs_changed = 0;
5527 event->replay_event = 0;
5528 event->stopped_by_watchpoint_p = 0;
5529 event->regcache = NULL;
5530 event->core = -1;
5531
5532 switch (buf[0])
5533 {
5534 case 'T': /* Status with PC, SP, FP, ... */
5535 /* Expedited reply, containing Signal, {regno, reg} repeat. */
5536 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
5537 ss = signal number
5538 n... = register number
5539 r... = register contents
5540 */
5541
5542 p = &buf[3]; /* after Txx */
5543 while (*p)
5544 {
5545 char *p1;
5546 char *p_temp;
5547 int fieldsize;
5548 LONGEST pnum = 0;
5549
5550 /* If the packet contains a register number, save it in
5551 pnum and set p1 to point to the character following it.
5552 Otherwise p1 points to p. */
5553
5554 /* If this packet is an awatch packet, don't parse the 'a'
5555 as a register number. */
5556
5557 if (strncmp (p, "awatch", strlen("awatch")) != 0
5558 && strncmp (p, "core", strlen ("core") != 0))
5559 {
5560 /* Read the ``P'' register number. */
5561 pnum = strtol (p, &p_temp, 16);
5562 p1 = p_temp;
5563 }
5564 else
5565 p1 = p;
5566
5567 if (p1 == p) /* No register number present here. */
5568 {
5569 p1 = strchr (p, ':');
5570 if (p1 == NULL)
5571 error (_("Malformed packet(a) (missing colon): %s\n\
5572 Packet: '%s'\n"),
5573 p, buf);
5574 if (strncmp (p, "thread", p1 - p) == 0)
5575 event->ptid = read_ptid (++p1, &p);
5576 else if ((strncmp (p, "watch", p1 - p) == 0)
5577 || (strncmp (p, "rwatch", p1 - p) == 0)
5578 || (strncmp (p, "awatch", p1 - p) == 0))
5579 {
5580 event->stopped_by_watchpoint_p = 1;
5581 p = unpack_varlen_hex (++p1, &addr);
5582 event->watch_data_address = (CORE_ADDR) addr;
5583 }
5584 else if (strncmp (p, "library", p1 - p) == 0)
5585 {
5586 p1++;
5587 p_temp = p1;
5588 while (*p_temp && *p_temp != ';')
5589 p_temp++;
5590
5591 event->solibs_changed = 1;
5592 p = p_temp;
5593 }
5594 else if (strncmp (p, "replaylog", p1 - p) == 0)
5595 {
5596 /* NO_HISTORY event.
5597 p1 will indicate "begin" or "end", but
5598 it makes no difference for now, so ignore it. */
5599 event->replay_event = 1;
5600 p_temp = strchr (p1 + 1, ';');
5601 if (p_temp)
5602 p = p_temp;
5603 }
5604 else if (strncmp (p, "core", p1 - p) == 0)
5605 {
5606 ULONGEST c;
5607
5608 p = unpack_varlen_hex (++p1, &c);
5609 event->core = c;
5610 }
5611 else
5612 {
5613 /* Silently skip unknown optional info. */
5614 p_temp = strchr (p1 + 1, ';');
5615 if (p_temp)
5616 p = p_temp;
5617 }
5618 }
5619 else
5620 {
5621 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
5622 cached_reg_t cached_reg;
5623
5624 p = p1;
5625
5626 if (*p != ':')
5627 error (_("Malformed packet(b) (missing colon): %s\n\
5628 Packet: '%s'\n"),
5629 p, buf);
5630 ++p;
5631
5632 if (reg == NULL)
5633 error (_("Remote sent bad register number %s: %s\n\
5634 Packet: '%s'\n"),
5635 hex_string (pnum), p, buf);
5636
5637 cached_reg.num = reg->regnum;
5638
5639 fieldsize = hex2bin (p, cached_reg.data,
5640 register_size (target_gdbarch (),
5641 reg->regnum));
5642 p += 2 * fieldsize;
5643 if (fieldsize < register_size (target_gdbarch (),
5644 reg->regnum))
5645 warning (_("Remote reply is too short: %s"), buf);
5646
5647 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
5648 }
5649
5650 if (*p != ';')
5651 error (_("Remote register badly formatted: %s\nhere: %s"),
5652 buf, p);
5653 ++p;
5654 }
5655 /* fall through */
5656 case 'S': /* Old style status, just signal only. */
5657 if (event->solibs_changed)
5658 event->ws.kind = TARGET_WAITKIND_LOADED;
5659 else if (event->replay_event)
5660 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
5661 else
5662 {
5663 event->ws.kind = TARGET_WAITKIND_STOPPED;
5664 event->ws.value.sig = (enum gdb_signal)
5665 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
5666 }
5667 break;
5668 case 'W': /* Target exited. */
5669 case 'X':
5670 {
5671 char *p;
5672 int pid;
5673 ULONGEST value;
5674
5675 /* GDB used to accept only 2 hex chars here. Stubs should
5676 only send more if they detect GDB supports multi-process
5677 support. */
5678 p = unpack_varlen_hex (&buf[1], &value);
5679
5680 if (buf[0] == 'W')
5681 {
5682 /* The remote process exited. */
5683 event->ws.kind = TARGET_WAITKIND_EXITED;
5684 event->ws.value.integer = value;
5685 }
5686 else
5687 {
5688 /* The remote process exited with a signal. */
5689 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
5690 event->ws.value.sig = (enum gdb_signal) value;
5691 }
5692
5693 /* If no process is specified, assume inferior_ptid. */
5694 pid = ptid_get_pid (inferior_ptid);
5695 if (*p == '\0')
5696 ;
5697 else if (*p == ';')
5698 {
5699 p++;
5700
5701 if (p == '\0')
5702 ;
5703 else if (strncmp (p,
5704 "process:", sizeof ("process:") - 1) == 0)
5705 {
5706 ULONGEST upid;
5707
5708 p += sizeof ("process:") - 1;
5709 unpack_varlen_hex (p, &upid);
5710 pid = upid;
5711 }
5712 else
5713 error (_("unknown stop reply packet: %s"), buf);
5714 }
5715 else
5716 error (_("unknown stop reply packet: %s"), buf);
5717 event->ptid = pid_to_ptid (pid);
5718 }
5719 break;
5720 }
5721
5722 if (non_stop && ptid_equal (event->ptid, null_ptid))
5723 error (_("No process or thread specified in stop reply: %s"), buf);
5724 }
5725
5726 /* When the stub wants to tell GDB about a new notification reply, it
5727 sends a notification (%Stop, for example). Those can come it at
5728 any time, hence, we have to make sure that any pending
5729 putpkt/getpkt sequence we're making is finished, before querying
5730 the stub for more events with the corresponding ack command
5731 (vStopped, for example). E.g., if we started a vStopped sequence
5732 immediately upon receiving the notification, something like this
5733 could happen:
5734
5735 1.1) --> Hg 1
5736 1.2) <-- OK
5737 1.3) --> g
5738 1.4) <-- %Stop
5739 1.5) --> vStopped
5740 1.6) <-- (registers reply to step #1.3)
5741
5742 Obviously, the reply in step #1.6 would be unexpected to a vStopped
5743 query.
5744
5745 To solve this, whenever we parse a %Stop notification successfully,
5746 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
5747 doing whatever we were doing:
5748
5749 2.1) --> Hg 1
5750 2.2) <-- OK
5751 2.3) --> g
5752 2.4) <-- %Stop
5753 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
5754 2.5) <-- (registers reply to step #2.3)
5755
5756 Eventualy after step #2.5, we return to the event loop, which
5757 notices there's an event on the
5758 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
5759 associated callback --- the function below. At this point, we're
5760 always safe to start a vStopped sequence. :
5761
5762 2.6) --> vStopped
5763 2.7) <-- T05 thread:2
5764 2.8) --> vStopped
5765 2.9) --> OK
5766 */
5767
5768 void
5769 remote_notif_get_pending_events (struct notif_client *nc)
5770 {
5771 struct remote_state *rs = get_remote_state ();
5772
5773 if (nc->pending_event)
5774 {
5775 if (notif_debug)
5776 fprintf_unfiltered (gdb_stdlog,
5777 "notif: process: '%s' ack pending event\n",
5778 nc->name);
5779
5780 /* acknowledge */
5781 nc->ack (nc, rs->buf, nc->pending_event);
5782 nc->pending_event = NULL;
5783
5784 while (1)
5785 {
5786 getpkt (&rs->buf, &rs->buf_size, 0);
5787 if (strcmp (rs->buf, "OK") == 0)
5788 break;
5789 else
5790 remote_notif_ack (nc, rs->buf);
5791 }
5792 }
5793 else
5794 {
5795 if (notif_debug)
5796 fprintf_unfiltered (gdb_stdlog,
5797 "notif: process: '%s' no pending reply\n",
5798 nc->name);
5799 }
5800 }
5801
5802 /* Called when it is decided that STOP_REPLY holds the info of the
5803 event that is to be returned to the core. This function always
5804 destroys STOP_REPLY. */
5805
5806 static ptid_t
5807 process_stop_reply (struct stop_reply *stop_reply,
5808 struct target_waitstatus *status)
5809 {
5810 ptid_t ptid;
5811
5812 *status = stop_reply->ws;
5813 ptid = stop_reply->ptid;
5814
5815 /* If no thread/process was reported by the stub, assume the current
5816 inferior. */
5817 if (ptid_equal (ptid, null_ptid))
5818 ptid = inferior_ptid;
5819
5820 if (status->kind != TARGET_WAITKIND_EXITED
5821 && status->kind != TARGET_WAITKIND_SIGNALLED)
5822 {
5823 /* Expedited registers. */
5824 if (stop_reply->regcache)
5825 {
5826 struct regcache *regcache
5827 = get_thread_arch_regcache (ptid, target_gdbarch ());
5828 cached_reg_t *reg;
5829 int ix;
5830
5831 for (ix = 0;
5832 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
5833 ix++)
5834 regcache_raw_supply (regcache, reg->num, reg->data);
5835 VEC_free (cached_reg_t, stop_reply->regcache);
5836 }
5837
5838 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
5839 remote_watch_data_address = stop_reply->watch_data_address;
5840
5841 remote_notice_new_inferior (ptid, 0);
5842 demand_private_info (ptid)->core = stop_reply->core;
5843 }
5844
5845 stop_reply_xfree (stop_reply);
5846 return ptid;
5847 }
5848
5849 /* The non-stop mode version of target_wait. */
5850
5851 static ptid_t
5852 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
5853 {
5854 struct remote_state *rs = get_remote_state ();
5855 struct stop_reply *stop_reply;
5856 int ret;
5857 int is_notif = 0;
5858
5859 /* If in non-stop mode, get out of getpkt even if a
5860 notification is received. */
5861
5862 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5863 0 /* forever */, &is_notif);
5864 while (1)
5865 {
5866 if (ret != -1 && !is_notif)
5867 switch (rs->buf[0])
5868 {
5869 case 'E': /* Error of some sort. */
5870 /* We're out of sync with the target now. Did it continue
5871 or not? We can't tell which thread it was in non-stop,
5872 so just ignore this. */
5873 warning (_("Remote failure reply: %s"), rs->buf);
5874 break;
5875 case 'O': /* Console output. */
5876 remote_console_output (rs->buf + 1);
5877 break;
5878 default:
5879 warning (_("Invalid remote reply: %s"), rs->buf);
5880 break;
5881 }
5882
5883 /* Acknowledge a pending stop reply that may have arrived in the
5884 mean time. */
5885 if (notif_client_stop.pending_event != NULL)
5886 remote_notif_get_pending_events (&notif_client_stop);
5887
5888 /* If indeed we noticed a stop reply, we're done. */
5889 stop_reply = queued_stop_reply (ptid);
5890 if (stop_reply != NULL)
5891 return process_stop_reply (stop_reply, status);
5892
5893 /* Still no event. If we're just polling for an event, then
5894 return to the event loop. */
5895 if (options & TARGET_WNOHANG)
5896 {
5897 status->kind = TARGET_WAITKIND_IGNORE;
5898 return minus_one_ptid;
5899 }
5900
5901 /* Otherwise do a blocking wait. */
5902 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5903 1 /* forever */, &is_notif);
5904 }
5905 }
5906
5907 /* Wait until the remote machine stops, then return, storing status in
5908 STATUS just as `wait' would. */
5909
5910 static ptid_t
5911 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
5912 {
5913 struct remote_state *rs = get_remote_state ();
5914 ptid_t event_ptid = null_ptid;
5915 char *buf;
5916 struct stop_reply *stop_reply;
5917
5918 again:
5919
5920 status->kind = TARGET_WAITKIND_IGNORE;
5921 status->value.integer = 0;
5922
5923 stop_reply = queued_stop_reply (ptid);
5924 if (stop_reply != NULL)
5925 return process_stop_reply (stop_reply, status);
5926
5927 if (rs->cached_wait_status)
5928 /* Use the cached wait status, but only once. */
5929 rs->cached_wait_status = 0;
5930 else
5931 {
5932 int ret;
5933 int is_notif;
5934
5935 if (!target_is_async_p ())
5936 {
5937 ofunc = signal (SIGINT, sync_remote_interrupt);
5938 /* If the user hit C-c before this packet, or between packets,
5939 pretend that it was hit right here. */
5940 if (check_quit_flag ())
5941 {
5942 clear_quit_flag ();
5943 sync_remote_interrupt (SIGINT);
5944 }
5945 }
5946
5947 /* FIXME: cagney/1999-09-27: If we're in async mode we should
5948 _never_ wait for ever -> test on target_is_async_p().
5949 However, before we do that we need to ensure that the caller
5950 knows how to take the target into/out of async mode. */
5951 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
5952 wait_forever_enabled_p, &is_notif);
5953
5954 if (!target_is_async_p ())
5955 signal (SIGINT, ofunc);
5956
5957 /* GDB gets a notification. Return to core as this event is
5958 not interesting. */
5959 if (ret != -1 && is_notif)
5960 return minus_one_ptid;
5961 }
5962
5963 buf = rs->buf;
5964
5965 remote_stopped_by_watchpoint_p = 0;
5966
5967 /* We got something. */
5968 rs->waiting_for_stop_reply = 0;
5969
5970 /* Assume that the target has acknowledged Ctrl-C unless we receive
5971 an 'F' or 'O' packet. */
5972 if (buf[0] != 'F' && buf[0] != 'O')
5973 rs->ctrlc_pending_p = 0;
5974
5975 switch (buf[0])
5976 {
5977 case 'E': /* Error of some sort. */
5978 /* We're out of sync with the target now. Did it continue or
5979 not? Not is more likely, so report a stop. */
5980 warning (_("Remote failure reply: %s"), buf);
5981 status->kind = TARGET_WAITKIND_STOPPED;
5982 status->value.sig = GDB_SIGNAL_0;
5983 break;
5984 case 'F': /* File-I/O request. */
5985 remote_fileio_request (buf, rs->ctrlc_pending_p);
5986 rs->ctrlc_pending_p = 0;
5987 break;
5988 case 'T': case 'S': case 'X': case 'W':
5989 {
5990 struct stop_reply *stop_reply
5991 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
5992 rs->buf);
5993
5994 event_ptid = process_stop_reply (stop_reply, status);
5995 break;
5996 }
5997 case 'O': /* Console output. */
5998 remote_console_output (buf + 1);
5999
6000 /* The target didn't really stop; keep waiting. */
6001 rs->waiting_for_stop_reply = 1;
6002
6003 break;
6004 case '\0':
6005 if (last_sent_signal != GDB_SIGNAL_0)
6006 {
6007 /* Zero length reply means that we tried 'S' or 'C' and the
6008 remote system doesn't support it. */
6009 target_terminal_ours_for_output ();
6010 printf_filtered
6011 ("Can't send signals to this remote system. %s not sent.\n",
6012 gdb_signal_to_name (last_sent_signal));
6013 last_sent_signal = GDB_SIGNAL_0;
6014 target_terminal_inferior ();
6015
6016 strcpy ((char *) buf, last_sent_step ? "s" : "c");
6017 putpkt ((char *) buf);
6018
6019 /* We just told the target to resume, so a stop reply is in
6020 order. */
6021 rs->waiting_for_stop_reply = 1;
6022 break;
6023 }
6024 /* else fallthrough */
6025 default:
6026 warning (_("Invalid remote reply: %s"), buf);
6027 /* Keep waiting. */
6028 rs->waiting_for_stop_reply = 1;
6029 break;
6030 }
6031
6032 if (status->kind == TARGET_WAITKIND_IGNORE)
6033 {
6034 /* Nothing interesting happened. If we're doing a non-blocking
6035 poll, we're done. Otherwise, go back to waiting. */
6036 if (options & TARGET_WNOHANG)
6037 return minus_one_ptid;
6038 else
6039 goto again;
6040 }
6041 else if (status->kind != TARGET_WAITKIND_EXITED
6042 && status->kind != TARGET_WAITKIND_SIGNALLED)
6043 {
6044 if (!ptid_equal (event_ptid, null_ptid))
6045 record_currthread (event_ptid);
6046 else
6047 event_ptid = inferior_ptid;
6048 }
6049 else
6050 /* A process exit. Invalidate our notion of current thread. */
6051 record_currthread (minus_one_ptid);
6052
6053 return event_ptid;
6054 }
6055
6056 /* Wait until the remote machine stops, then return, storing status in
6057 STATUS just as `wait' would. */
6058
6059 static ptid_t
6060 remote_wait (struct target_ops *ops,
6061 ptid_t ptid, struct target_waitstatus *status, int options)
6062 {
6063 ptid_t event_ptid;
6064
6065 if (non_stop)
6066 event_ptid = remote_wait_ns (ptid, status, options);
6067 else
6068 event_ptid = remote_wait_as (ptid, status, options);
6069
6070 if (target_can_async_p ())
6071 {
6072 /* If there are are events left in the queue tell the event loop
6073 to return here. */
6074 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
6075 mark_async_event_handler (remote_async_inferior_event_token);
6076 }
6077
6078 return event_ptid;
6079 }
6080
6081 /* Fetch a single register using a 'p' packet. */
6082
6083 static int
6084 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
6085 {
6086 struct remote_state *rs = get_remote_state ();
6087 char *buf, *p;
6088 char regp[MAX_REGISTER_SIZE];
6089 int i;
6090
6091 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
6092 return 0;
6093
6094 if (reg->pnum == -1)
6095 return 0;
6096
6097 p = rs->buf;
6098 *p++ = 'p';
6099 p += hexnumstr (p, reg->pnum);
6100 *p++ = '\0';
6101 putpkt (rs->buf);
6102 getpkt (&rs->buf, &rs->buf_size, 0);
6103
6104 buf = rs->buf;
6105
6106 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
6107 {
6108 case PACKET_OK:
6109 break;
6110 case PACKET_UNKNOWN:
6111 return 0;
6112 case PACKET_ERROR:
6113 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
6114 gdbarch_register_name (get_regcache_arch (regcache),
6115 reg->regnum),
6116 buf);
6117 }
6118
6119 /* If this register is unfetchable, tell the regcache. */
6120 if (buf[0] == 'x')
6121 {
6122 regcache_raw_supply (regcache, reg->regnum, NULL);
6123 return 1;
6124 }
6125
6126 /* Otherwise, parse and supply the value. */
6127 p = buf;
6128 i = 0;
6129 while (p[0] != 0)
6130 {
6131 if (p[1] == 0)
6132 error (_("fetch_register_using_p: early buf termination"));
6133
6134 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
6135 p += 2;
6136 }
6137 regcache_raw_supply (regcache, reg->regnum, regp);
6138 return 1;
6139 }
6140
6141 /* Fetch the registers included in the target's 'g' packet. */
6142
6143 static int
6144 send_g_packet (void)
6145 {
6146 struct remote_state *rs = get_remote_state ();
6147 int buf_len;
6148
6149 xsnprintf (rs->buf, get_remote_packet_size (), "g");
6150 remote_send (&rs->buf, &rs->buf_size);
6151
6152 /* We can get out of synch in various cases. If the first character
6153 in the buffer is not a hex character, assume that has happened
6154 and try to fetch another packet to read. */
6155 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
6156 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
6157 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
6158 && rs->buf[0] != 'x') /* New: unavailable register value. */
6159 {
6160 if (remote_debug)
6161 fprintf_unfiltered (gdb_stdlog,
6162 "Bad register packet; fetching a new packet\n");
6163 getpkt (&rs->buf, &rs->buf_size, 0);
6164 }
6165
6166 buf_len = strlen (rs->buf);
6167
6168 /* Sanity check the received packet. */
6169 if (buf_len % 2 != 0)
6170 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
6171
6172 return buf_len / 2;
6173 }
6174
6175 static void
6176 process_g_packet (struct regcache *regcache)
6177 {
6178 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6179 struct remote_state *rs = get_remote_state ();
6180 struct remote_arch_state *rsa = get_remote_arch_state ();
6181 int i, buf_len;
6182 char *p;
6183 char *regs;
6184
6185 buf_len = strlen (rs->buf);
6186
6187 /* Further sanity checks, with knowledge of the architecture. */
6188 if (buf_len > 2 * rsa->sizeof_g_packet)
6189 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
6190
6191 /* Save the size of the packet sent to us by the target. It is used
6192 as a heuristic when determining the max size of packets that the
6193 target can safely receive. */
6194 if (rsa->actual_register_packet_size == 0)
6195 rsa->actual_register_packet_size = buf_len;
6196
6197 /* If this is smaller than we guessed the 'g' packet would be,
6198 update our records. A 'g' reply that doesn't include a register's
6199 value implies either that the register is not available, or that
6200 the 'p' packet must be used. */
6201 if (buf_len < 2 * rsa->sizeof_g_packet)
6202 {
6203 rsa->sizeof_g_packet = buf_len / 2;
6204
6205 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6206 {
6207 if (rsa->regs[i].pnum == -1)
6208 continue;
6209
6210 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
6211 rsa->regs[i].in_g_packet = 0;
6212 else
6213 rsa->regs[i].in_g_packet = 1;
6214 }
6215 }
6216
6217 regs = alloca (rsa->sizeof_g_packet);
6218
6219 /* Unimplemented registers read as all bits zero. */
6220 memset (regs, 0, rsa->sizeof_g_packet);
6221
6222 /* Reply describes registers byte by byte, each byte encoded as two
6223 hex characters. Suck them all up, then supply them to the
6224 register cacheing/storage mechanism. */
6225
6226 p = rs->buf;
6227 for (i = 0; i < rsa->sizeof_g_packet; i++)
6228 {
6229 if (p[0] == 0 || p[1] == 0)
6230 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
6231 internal_error (__FILE__, __LINE__,
6232 _("unexpected end of 'g' packet reply"));
6233
6234 if (p[0] == 'x' && p[1] == 'x')
6235 regs[i] = 0; /* 'x' */
6236 else
6237 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
6238 p += 2;
6239 }
6240
6241 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6242 {
6243 struct packet_reg *r = &rsa->regs[i];
6244
6245 if (r->in_g_packet)
6246 {
6247 if (r->offset * 2 >= strlen (rs->buf))
6248 /* This shouldn't happen - we adjusted in_g_packet above. */
6249 internal_error (__FILE__, __LINE__,
6250 _("unexpected end of 'g' packet reply"));
6251 else if (rs->buf[r->offset * 2] == 'x')
6252 {
6253 gdb_assert (r->offset * 2 < strlen (rs->buf));
6254 /* The register isn't available, mark it as such (at
6255 the same time setting the value to zero). */
6256 regcache_raw_supply (regcache, r->regnum, NULL);
6257 }
6258 else
6259 regcache_raw_supply (regcache, r->regnum,
6260 regs + r->offset);
6261 }
6262 }
6263 }
6264
6265 static void
6266 fetch_registers_using_g (struct regcache *regcache)
6267 {
6268 send_g_packet ();
6269 process_g_packet (regcache);
6270 }
6271
6272 /* Make the remote selected traceframe match GDB's selected
6273 traceframe. */
6274
6275 static void
6276 set_remote_traceframe (void)
6277 {
6278 int newnum;
6279
6280 if (remote_traceframe_number == get_traceframe_number ())
6281 return;
6282
6283 /* Avoid recursion, remote_trace_find calls us again. */
6284 remote_traceframe_number = get_traceframe_number ();
6285
6286 newnum = target_trace_find (tfind_number,
6287 get_traceframe_number (), 0, 0, NULL);
6288
6289 /* Should not happen. If it does, all bets are off. */
6290 if (newnum != get_traceframe_number ())
6291 warning (_("could not set remote traceframe"));
6292 }
6293
6294 static void
6295 remote_fetch_registers (struct target_ops *ops,
6296 struct regcache *regcache, int regnum)
6297 {
6298 struct remote_arch_state *rsa = get_remote_arch_state ();
6299 int i;
6300
6301 set_remote_traceframe ();
6302 set_general_thread (inferior_ptid);
6303
6304 if (regnum >= 0)
6305 {
6306 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6307
6308 gdb_assert (reg != NULL);
6309
6310 /* If this register might be in the 'g' packet, try that first -
6311 we are likely to read more than one register. If this is the
6312 first 'g' packet, we might be overly optimistic about its
6313 contents, so fall back to 'p'. */
6314 if (reg->in_g_packet)
6315 {
6316 fetch_registers_using_g (regcache);
6317 if (reg->in_g_packet)
6318 return;
6319 }
6320
6321 if (fetch_register_using_p (regcache, reg))
6322 return;
6323
6324 /* This register is not available. */
6325 regcache_raw_supply (regcache, reg->regnum, NULL);
6326
6327 return;
6328 }
6329
6330 fetch_registers_using_g (regcache);
6331
6332 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6333 if (!rsa->regs[i].in_g_packet)
6334 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
6335 {
6336 /* This register is not available. */
6337 regcache_raw_supply (regcache, i, NULL);
6338 }
6339 }
6340
6341 /* Prepare to store registers. Since we may send them all (using a
6342 'G' request), we have to read out the ones we don't want to change
6343 first. */
6344
6345 static void
6346 remote_prepare_to_store (struct regcache *regcache)
6347 {
6348 struct remote_arch_state *rsa = get_remote_arch_state ();
6349 int i;
6350 gdb_byte buf[MAX_REGISTER_SIZE];
6351
6352 /* Make sure the entire registers array is valid. */
6353 switch (remote_protocol_packets[PACKET_P].support)
6354 {
6355 case PACKET_DISABLE:
6356 case PACKET_SUPPORT_UNKNOWN:
6357 /* Make sure all the necessary registers are cached. */
6358 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6359 if (rsa->regs[i].in_g_packet)
6360 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
6361 break;
6362 case PACKET_ENABLE:
6363 break;
6364 }
6365 }
6366
6367 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
6368 packet was not recognized. */
6369
6370 static int
6371 store_register_using_P (const struct regcache *regcache,
6372 struct packet_reg *reg)
6373 {
6374 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6375 struct remote_state *rs = get_remote_state ();
6376 /* Try storing a single register. */
6377 char *buf = rs->buf;
6378 gdb_byte regp[MAX_REGISTER_SIZE];
6379 char *p;
6380
6381 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
6382 return 0;
6383
6384 if (reg->pnum == -1)
6385 return 0;
6386
6387 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
6388 p = buf + strlen (buf);
6389 regcache_raw_collect (regcache, reg->regnum, regp);
6390 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
6391 putpkt (rs->buf);
6392 getpkt (&rs->buf, &rs->buf_size, 0);
6393
6394 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
6395 {
6396 case PACKET_OK:
6397 return 1;
6398 case PACKET_ERROR:
6399 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
6400 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
6401 case PACKET_UNKNOWN:
6402 return 0;
6403 default:
6404 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
6405 }
6406 }
6407
6408 /* Store register REGNUM, or all registers if REGNUM == -1, from the
6409 contents of the register cache buffer. FIXME: ignores errors. */
6410
6411 static void
6412 store_registers_using_G (const struct regcache *regcache)
6413 {
6414 struct remote_state *rs = get_remote_state ();
6415 struct remote_arch_state *rsa = get_remote_arch_state ();
6416 gdb_byte *regs;
6417 char *p;
6418
6419 /* Extract all the registers in the regcache copying them into a
6420 local buffer. */
6421 {
6422 int i;
6423
6424 regs = alloca (rsa->sizeof_g_packet);
6425 memset (regs, 0, rsa->sizeof_g_packet);
6426 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6427 {
6428 struct packet_reg *r = &rsa->regs[i];
6429
6430 if (r->in_g_packet)
6431 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
6432 }
6433 }
6434
6435 /* Command describes registers byte by byte,
6436 each byte encoded as two hex characters. */
6437 p = rs->buf;
6438 *p++ = 'G';
6439 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
6440 updated. */
6441 bin2hex (regs, p, rsa->sizeof_g_packet);
6442 putpkt (rs->buf);
6443 getpkt (&rs->buf, &rs->buf_size, 0);
6444 if (packet_check_result (rs->buf) == PACKET_ERROR)
6445 error (_("Could not write registers; remote failure reply '%s'"),
6446 rs->buf);
6447 }
6448
6449 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
6450 of the register cache buffer. FIXME: ignores errors. */
6451
6452 static void
6453 remote_store_registers (struct target_ops *ops,
6454 struct regcache *regcache, int regnum)
6455 {
6456 struct remote_arch_state *rsa = get_remote_arch_state ();
6457 int i;
6458
6459 set_remote_traceframe ();
6460 set_general_thread (inferior_ptid);
6461
6462 if (regnum >= 0)
6463 {
6464 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
6465
6466 gdb_assert (reg != NULL);
6467
6468 /* Always prefer to store registers using the 'P' packet if
6469 possible; we often change only a small number of registers.
6470 Sometimes we change a larger number; we'd need help from a
6471 higher layer to know to use 'G'. */
6472 if (store_register_using_P (regcache, reg))
6473 return;
6474
6475 /* For now, don't complain if we have no way to write the
6476 register. GDB loses track of unavailable registers too
6477 easily. Some day, this may be an error. We don't have
6478 any way to read the register, either... */
6479 if (!reg->in_g_packet)
6480 return;
6481
6482 store_registers_using_G (regcache);
6483 return;
6484 }
6485
6486 store_registers_using_G (regcache);
6487
6488 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
6489 if (!rsa->regs[i].in_g_packet)
6490 if (!store_register_using_P (regcache, &rsa->regs[i]))
6491 /* See above for why we do not issue an error here. */
6492 continue;
6493 }
6494 \f
6495
6496 /* Return the number of hex digits in num. */
6497
6498 static int
6499 hexnumlen (ULONGEST num)
6500 {
6501 int i;
6502
6503 for (i = 0; num != 0; i++)
6504 num >>= 4;
6505
6506 return max (i, 1);
6507 }
6508
6509 /* Set BUF to the minimum number of hex digits representing NUM. */
6510
6511 static int
6512 hexnumstr (char *buf, ULONGEST num)
6513 {
6514 int len = hexnumlen (num);
6515
6516 return hexnumnstr (buf, num, len);
6517 }
6518
6519
6520 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
6521
6522 static int
6523 hexnumnstr (char *buf, ULONGEST num, int width)
6524 {
6525 int i;
6526
6527 buf[width] = '\0';
6528
6529 for (i = width - 1; i >= 0; i--)
6530 {
6531 buf[i] = "0123456789abcdef"[(num & 0xf)];
6532 num >>= 4;
6533 }
6534
6535 return width;
6536 }
6537
6538 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
6539
6540 static CORE_ADDR
6541 remote_address_masked (CORE_ADDR addr)
6542 {
6543 unsigned int address_size = remote_address_size;
6544
6545 /* If "remoteaddresssize" was not set, default to target address size. */
6546 if (!address_size)
6547 address_size = gdbarch_addr_bit (target_gdbarch ());
6548
6549 if (address_size > 0
6550 && address_size < (sizeof (ULONGEST) * 8))
6551 {
6552 /* Only create a mask when that mask can safely be constructed
6553 in a ULONGEST variable. */
6554 ULONGEST mask = 1;
6555
6556 mask = (mask << address_size) - 1;
6557 addr &= mask;
6558 }
6559 return addr;
6560 }
6561
6562 /* Convert BUFFER, binary data at least LEN bytes long, into escaped
6563 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
6564 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
6565 (which may be more than *OUT_LEN due to escape characters). The
6566 total number of bytes in the output buffer will be at most
6567 OUT_MAXLEN. */
6568
6569 static int
6570 remote_escape_output (const gdb_byte *buffer, int len,
6571 gdb_byte *out_buf, int *out_len,
6572 int out_maxlen)
6573 {
6574 int input_index, output_index;
6575
6576 output_index = 0;
6577 for (input_index = 0; input_index < len; input_index++)
6578 {
6579 gdb_byte b = buffer[input_index];
6580
6581 if (b == '$' || b == '#' || b == '}')
6582 {
6583 /* These must be escaped. */
6584 if (output_index + 2 > out_maxlen)
6585 break;
6586 out_buf[output_index++] = '}';
6587 out_buf[output_index++] = b ^ 0x20;
6588 }
6589 else
6590 {
6591 if (output_index + 1 > out_maxlen)
6592 break;
6593 out_buf[output_index++] = b;
6594 }
6595 }
6596
6597 *out_len = input_index;
6598 return output_index;
6599 }
6600
6601 /* Convert BUFFER, escaped data LEN bytes long, into binary data
6602 in OUT_BUF. Return the number of bytes written to OUT_BUF.
6603 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
6604
6605 This function reverses remote_escape_output. It allows more
6606 escaped characters than that function does, in particular because
6607 '*' must be escaped to avoid the run-length encoding processing
6608 in reading packets. */
6609
6610 static int
6611 remote_unescape_input (const gdb_byte *buffer, int len,
6612 gdb_byte *out_buf, int out_maxlen)
6613 {
6614 int input_index, output_index;
6615 int escaped;
6616
6617 output_index = 0;
6618 escaped = 0;
6619 for (input_index = 0; input_index < len; input_index++)
6620 {
6621 gdb_byte b = buffer[input_index];
6622
6623 if (output_index + 1 > out_maxlen)
6624 {
6625 warning (_("Received too much data from remote target;"
6626 " ignoring overflow."));
6627 return output_index;
6628 }
6629
6630 if (escaped)
6631 {
6632 out_buf[output_index++] = b ^ 0x20;
6633 escaped = 0;
6634 }
6635 else if (b == '}')
6636 escaped = 1;
6637 else
6638 out_buf[output_index++] = b;
6639 }
6640
6641 if (escaped)
6642 error (_("Unmatched escape character in target response."));
6643
6644 return output_index;
6645 }
6646
6647 /* Determine whether the remote target supports binary downloading.
6648 This is accomplished by sending a no-op memory write of zero length
6649 to the target at the specified address. It does not suffice to send
6650 the whole packet, since many stubs strip the eighth bit and
6651 subsequently compute a wrong checksum, which causes real havoc with
6652 remote_write_bytes.
6653
6654 NOTE: This can still lose if the serial line is not eight-bit
6655 clean. In cases like this, the user should clear "remote
6656 X-packet". */
6657
6658 static void
6659 check_binary_download (CORE_ADDR addr)
6660 {
6661 struct remote_state *rs = get_remote_state ();
6662
6663 switch (remote_protocol_packets[PACKET_X].support)
6664 {
6665 case PACKET_DISABLE:
6666 break;
6667 case PACKET_ENABLE:
6668 break;
6669 case PACKET_SUPPORT_UNKNOWN:
6670 {
6671 char *p;
6672
6673 p = rs->buf;
6674 *p++ = 'X';
6675 p += hexnumstr (p, (ULONGEST) addr);
6676 *p++ = ',';
6677 p += hexnumstr (p, (ULONGEST) 0);
6678 *p++ = ':';
6679 *p = '\0';
6680
6681 putpkt_binary (rs->buf, (int) (p - rs->buf));
6682 getpkt (&rs->buf, &rs->buf_size, 0);
6683
6684 if (rs->buf[0] == '\0')
6685 {
6686 if (remote_debug)
6687 fprintf_unfiltered (gdb_stdlog,
6688 "binary downloading NOT "
6689 "supported by target\n");
6690 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
6691 }
6692 else
6693 {
6694 if (remote_debug)
6695 fprintf_unfiltered (gdb_stdlog,
6696 "binary downloading supported by target\n");
6697 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
6698 }
6699 break;
6700 }
6701 }
6702 }
6703
6704 /* Write memory data directly to the remote machine.
6705 This does not inform the data cache; the data cache uses this.
6706 HEADER is the starting part of the packet.
6707 MEMADDR is the address in the remote memory space.
6708 MYADDR is the address of the buffer in our space.
6709 LEN is the number of bytes.
6710 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
6711 should send data as binary ('X'), or hex-encoded ('M').
6712
6713 The function creates packet of the form
6714 <HEADER><ADDRESS>,<LENGTH>:<DATA>
6715
6716 where encoding of <DATA> is termined by PACKET_FORMAT.
6717
6718 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
6719 are omitted.
6720
6721 Returns the number of bytes transferred, or 0 (setting errno) for
6722 error. Only transfer a single packet. */
6723
6724 static int
6725 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
6726 const gdb_byte *myaddr, ssize_t len,
6727 char packet_format, int use_length)
6728 {
6729 struct remote_state *rs = get_remote_state ();
6730 char *p;
6731 char *plen = NULL;
6732 int plenlen = 0;
6733 int todo;
6734 int nr_bytes;
6735 int payload_size;
6736 int payload_length;
6737 int header_length;
6738
6739 if (packet_format != 'X' && packet_format != 'M')
6740 internal_error (__FILE__, __LINE__,
6741 _("remote_write_bytes_aux: bad packet format"));
6742
6743 if (len <= 0)
6744 return 0;
6745
6746 payload_size = get_memory_write_packet_size ();
6747
6748 /* The packet buffer will be large enough for the payload;
6749 get_memory_packet_size ensures this. */
6750 rs->buf[0] = '\0';
6751
6752 /* Compute the size of the actual payload by subtracting out the
6753 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
6754
6755 payload_size -= strlen ("$,:#NN");
6756 if (!use_length)
6757 /* The comma won't be used. */
6758 payload_size += 1;
6759 header_length = strlen (header);
6760 payload_size -= header_length;
6761 payload_size -= hexnumlen (memaddr);
6762
6763 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
6764
6765 strcat (rs->buf, header);
6766 p = rs->buf + strlen (header);
6767
6768 /* Compute a best guess of the number of bytes actually transfered. */
6769 if (packet_format == 'X')
6770 {
6771 /* Best guess at number of bytes that will fit. */
6772 todo = min (len, payload_size);
6773 if (use_length)
6774 payload_size -= hexnumlen (todo);
6775 todo = min (todo, payload_size);
6776 }
6777 else
6778 {
6779 /* Num bytes that will fit. */
6780 todo = min (len, payload_size / 2);
6781 if (use_length)
6782 payload_size -= hexnumlen (todo);
6783 todo = min (todo, payload_size / 2);
6784 }
6785
6786 if (todo <= 0)
6787 internal_error (__FILE__, __LINE__,
6788 _("minimum packet size too small to write data"));
6789
6790 /* If we already need another packet, then try to align the end
6791 of this packet to a useful boundary. */
6792 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
6793 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
6794
6795 /* Append "<memaddr>". */
6796 memaddr = remote_address_masked (memaddr);
6797 p += hexnumstr (p, (ULONGEST) memaddr);
6798
6799 if (use_length)
6800 {
6801 /* Append ",". */
6802 *p++ = ',';
6803
6804 /* Append <len>. Retain the location/size of <len>. It may need to
6805 be adjusted once the packet body has been created. */
6806 plen = p;
6807 plenlen = hexnumstr (p, (ULONGEST) todo);
6808 p += plenlen;
6809 }
6810
6811 /* Append ":". */
6812 *p++ = ':';
6813 *p = '\0';
6814
6815 /* Append the packet body. */
6816 if (packet_format == 'X')
6817 {
6818 /* Binary mode. Send target system values byte by byte, in
6819 increasing byte addresses. Only escape certain critical
6820 characters. */
6821 payload_length = remote_escape_output (myaddr, todo, (gdb_byte *) p,
6822 &nr_bytes, payload_size);
6823
6824 /* If not all TODO bytes fit, then we'll need another packet. Make
6825 a second try to keep the end of the packet aligned. Don't do
6826 this if the packet is tiny. */
6827 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6828 {
6829 int new_nr_bytes;
6830
6831 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
6832 - memaddr);
6833 if (new_nr_bytes != nr_bytes)
6834 payload_length = remote_escape_output (myaddr, new_nr_bytes,
6835 (gdb_byte *) p, &nr_bytes,
6836 payload_size);
6837 }
6838
6839 p += payload_length;
6840 if (use_length && nr_bytes < todo)
6841 {
6842 /* Escape chars have filled up the buffer prematurely,
6843 and we have actually sent fewer bytes than planned.
6844 Fix-up the length field of the packet. Use the same
6845 number of characters as before. */
6846 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
6847 *plen = ':'; /* overwrite \0 from hexnumnstr() */
6848 }
6849 }
6850 else
6851 {
6852 /* Normal mode: Send target system values byte by byte, in
6853 increasing byte addresses. Each byte is encoded as a two hex
6854 value. */
6855 nr_bytes = bin2hex (myaddr, p, todo);
6856 p += 2 * nr_bytes;
6857 }
6858
6859 putpkt_binary (rs->buf, (int) (p - rs->buf));
6860 getpkt (&rs->buf, &rs->buf_size, 0);
6861
6862 if (rs->buf[0] == 'E')
6863 {
6864 /* There is no correspondance between what the remote protocol
6865 uses for errors and errno codes. We would like a cleaner way
6866 of representing errors (big enough to include errno codes,
6867 bfd_error codes, and others). But for now just return EIO. */
6868 errno = EIO;
6869 return 0;
6870 }
6871
6872 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
6873 fewer bytes than we'd planned. */
6874 return nr_bytes;
6875 }
6876
6877 /* Write memory data directly to the remote machine.
6878 This does not inform the data cache; the data cache uses this.
6879 MEMADDR is the address in the remote memory space.
6880 MYADDR is the address of the buffer in our space.
6881 LEN is the number of bytes.
6882
6883 Returns number of bytes transferred, or 0 (setting errno) for
6884 error. Only transfer a single packet. */
6885
6886 static int
6887 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
6888 {
6889 char *packet_format = 0;
6890
6891 /* Check whether the target supports binary download. */
6892 check_binary_download (memaddr);
6893
6894 switch (remote_protocol_packets[PACKET_X].support)
6895 {
6896 case PACKET_ENABLE:
6897 packet_format = "X";
6898 break;
6899 case PACKET_DISABLE:
6900 packet_format = "M";
6901 break;
6902 case PACKET_SUPPORT_UNKNOWN:
6903 internal_error (__FILE__, __LINE__,
6904 _("remote_write_bytes: bad internal state"));
6905 default:
6906 internal_error (__FILE__, __LINE__, _("bad switch"));
6907 }
6908
6909 return remote_write_bytes_aux (packet_format,
6910 memaddr, myaddr, len, packet_format[0], 1);
6911 }
6912
6913 /* Read memory data directly from the remote machine.
6914 This does not use the data cache; the data cache uses this.
6915 MEMADDR is the address in the remote memory space.
6916 MYADDR is the address of the buffer in our space.
6917 LEN is the number of bytes.
6918
6919 Returns number of bytes transferred, or 0 for error. */
6920
6921 static int
6922 remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
6923 {
6924 struct remote_state *rs = get_remote_state ();
6925 int max_buf_size; /* Max size of packet output buffer. */
6926 char *p;
6927 int todo;
6928 int i;
6929
6930 if (len <= 0)
6931 return 0;
6932
6933 max_buf_size = get_memory_read_packet_size ();
6934 /* The packet buffer will be large enough for the payload;
6935 get_memory_packet_size ensures this. */
6936
6937 /* Number if bytes that will fit. */
6938 todo = min (len, max_buf_size / 2);
6939
6940 /* Construct "m"<memaddr>","<len>". */
6941 memaddr = remote_address_masked (memaddr);
6942 p = rs->buf;
6943 *p++ = 'm';
6944 p += hexnumstr (p, (ULONGEST) memaddr);
6945 *p++ = ',';
6946 p += hexnumstr (p, (ULONGEST) todo);
6947 *p = '\0';
6948 putpkt (rs->buf);
6949 getpkt (&rs->buf, &rs->buf_size, 0);
6950 if (rs->buf[0] == 'E'
6951 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
6952 && rs->buf[3] == '\0')
6953 {
6954 /* There is no correspondance between what the remote protocol
6955 uses for errors and errno codes. We would like a cleaner way
6956 of representing errors (big enough to include errno codes,
6957 bfd_error codes, and others). But for now just return
6958 EIO. */
6959 errno = EIO;
6960 return 0;
6961 }
6962 /* Reply describes memory byte by byte, each byte encoded as two hex
6963 characters. */
6964 p = rs->buf;
6965 i = hex2bin (p, myaddr, todo);
6966 /* Return what we have. Let higher layers handle partial reads. */
6967 return i;
6968 }
6969
6970 \f
6971 /* Read or write LEN bytes from inferior memory at MEMADDR,
6972 transferring to or from debugger address BUFFER. Write to inferior
6973 if SHOULD_WRITE is nonzero. Returns length of data written or
6974 read; 0 for error. TARGET is unused. */
6975
6976 static int
6977 remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
6978 int should_write, struct mem_attrib *attrib,
6979 struct target_ops *target)
6980 {
6981 int res;
6982
6983 set_remote_traceframe ();
6984 set_general_thread (inferior_ptid);
6985
6986 if (should_write)
6987 res = remote_write_bytes (mem_addr, buffer, mem_len);
6988 else
6989 res = remote_read_bytes (mem_addr, buffer, mem_len);
6990
6991 return res;
6992 }
6993
6994 /* Sends a packet with content determined by the printf format string
6995 FORMAT and the remaining arguments, then gets the reply. Returns
6996 whether the packet was a success, a failure, or unknown. */
6997
6998 static enum packet_result
6999 remote_send_printf (const char *format, ...)
7000 {
7001 struct remote_state *rs = get_remote_state ();
7002 int max_size = get_remote_packet_size ();
7003 va_list ap;
7004
7005 va_start (ap, format);
7006
7007 rs->buf[0] = '\0';
7008 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
7009 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
7010
7011 if (putpkt (rs->buf) < 0)
7012 error (_("Communication problem with target."));
7013
7014 rs->buf[0] = '\0';
7015 getpkt (&rs->buf, &rs->buf_size, 0);
7016
7017 return packet_check_result (rs->buf);
7018 }
7019
7020 static void
7021 restore_remote_timeout (void *p)
7022 {
7023 int value = *(int *)p;
7024
7025 remote_timeout = value;
7026 }
7027
7028 /* Flash writing can take quite some time. We'll set
7029 effectively infinite timeout for flash operations.
7030 In future, we'll need to decide on a better approach. */
7031 static const int remote_flash_timeout = 1000;
7032
7033 static void
7034 remote_flash_erase (struct target_ops *ops,
7035 ULONGEST address, LONGEST length)
7036 {
7037 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
7038 int saved_remote_timeout = remote_timeout;
7039 enum packet_result ret;
7040 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7041 &saved_remote_timeout);
7042
7043 remote_timeout = remote_flash_timeout;
7044
7045 ret = remote_send_printf ("vFlashErase:%s,%s",
7046 phex (address, addr_size),
7047 phex (length, 4));
7048 switch (ret)
7049 {
7050 case PACKET_UNKNOWN:
7051 error (_("Remote target does not support flash erase"));
7052 case PACKET_ERROR:
7053 error (_("Error erasing flash with vFlashErase packet"));
7054 default:
7055 break;
7056 }
7057
7058 do_cleanups (back_to);
7059 }
7060
7061 static LONGEST
7062 remote_flash_write (struct target_ops *ops,
7063 ULONGEST address, LONGEST length,
7064 const gdb_byte *data)
7065 {
7066 int saved_remote_timeout = remote_timeout;
7067 int ret;
7068 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7069 &saved_remote_timeout);
7070
7071 remote_timeout = remote_flash_timeout;
7072 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
7073 do_cleanups (back_to);
7074
7075 return ret;
7076 }
7077
7078 static void
7079 remote_flash_done (struct target_ops *ops)
7080 {
7081 int saved_remote_timeout = remote_timeout;
7082 int ret;
7083 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7084 &saved_remote_timeout);
7085
7086 remote_timeout = remote_flash_timeout;
7087 ret = remote_send_printf ("vFlashDone");
7088 do_cleanups (back_to);
7089
7090 switch (ret)
7091 {
7092 case PACKET_UNKNOWN:
7093 error (_("Remote target does not support vFlashDone"));
7094 case PACKET_ERROR:
7095 error (_("Error finishing flash operation"));
7096 default:
7097 break;
7098 }
7099 }
7100
7101 static void
7102 remote_files_info (struct target_ops *ignore)
7103 {
7104 puts_filtered ("Debugging a target over a serial line.\n");
7105 }
7106 \f
7107 /* Stuff for dealing with the packets which are part of this protocol.
7108 See comment at top of file for details. */
7109
7110 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
7111 error to higher layers. Called when a serial error is detected.
7112 The exception message is STRING, followed by a colon and a blank,
7113 the system error message for errno at function entry and final dot
7114 for output compatibility with throw_perror_with_name. */
7115
7116 static void
7117 unpush_and_perror (const char *string)
7118 {
7119 int saved_errno = errno;
7120
7121 remote_unpush_target ();
7122 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
7123 safe_strerror (saved_errno));
7124 }
7125
7126 /* Read a single character from the remote end. */
7127
7128 static int
7129 readchar (int timeout)
7130 {
7131 int ch;
7132
7133 ch = serial_readchar (remote_desc, timeout);
7134
7135 if (ch >= 0)
7136 return ch;
7137
7138 switch ((enum serial_rc) ch)
7139 {
7140 case SERIAL_EOF:
7141 remote_unpush_target ();
7142 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
7143 /* no return */
7144 case SERIAL_ERROR:
7145 unpush_and_perror (_("Remote communication error. "
7146 "Target disconnected."));
7147 /* no return */
7148 case SERIAL_TIMEOUT:
7149 break;
7150 }
7151 return ch;
7152 }
7153
7154 /* Wrapper for serial_write that closes the target and throws if
7155 writing fails. */
7156
7157 static void
7158 remote_serial_write (const char *str, int len)
7159 {
7160 if (serial_write (remote_desc, str, len))
7161 {
7162 unpush_and_perror (_("Remote communication error. "
7163 "Target disconnected."));
7164 }
7165 }
7166
7167 /* Send the command in *BUF to the remote machine, and read the reply
7168 into *BUF. Report an error if we get an error reply. Resize
7169 *BUF using xrealloc if necessary to hold the result, and update
7170 *SIZEOF_BUF. */
7171
7172 static void
7173 remote_send (char **buf,
7174 long *sizeof_buf)
7175 {
7176 putpkt (*buf);
7177 getpkt (buf, sizeof_buf, 0);
7178
7179 if ((*buf)[0] == 'E')
7180 error (_("Remote failure reply: %s"), *buf);
7181 }
7182
7183 /* Return a pointer to an xmalloc'ed string representing an escaped
7184 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
7185 etc. The caller is responsible for releasing the returned
7186 memory. */
7187
7188 static char *
7189 escape_buffer (const char *buf, int n)
7190 {
7191 struct cleanup *old_chain;
7192 struct ui_file *stb;
7193 char *str;
7194
7195 stb = mem_fileopen ();
7196 old_chain = make_cleanup_ui_file_delete (stb);
7197
7198 fputstrn_unfiltered (buf, n, 0, stb);
7199 str = ui_file_xstrdup (stb, NULL);
7200 do_cleanups (old_chain);
7201 return str;
7202 }
7203
7204 /* Display a null-terminated packet on stdout, for debugging, using C
7205 string notation. */
7206
7207 static void
7208 print_packet (char *buf)
7209 {
7210 puts_filtered ("\"");
7211 fputstr_filtered (buf, '"', gdb_stdout);
7212 puts_filtered ("\"");
7213 }
7214
7215 int
7216 putpkt (char *buf)
7217 {
7218 return putpkt_binary (buf, strlen (buf));
7219 }
7220
7221 /* Send a packet to the remote machine, with error checking. The data
7222 of the packet is in BUF. The string in BUF can be at most
7223 get_remote_packet_size () - 5 to account for the $, # and checksum,
7224 and for a possible /0 if we are debugging (remote_debug) and want
7225 to print the sent packet as a string. */
7226
7227 static int
7228 putpkt_binary (char *buf, int cnt)
7229 {
7230 struct remote_state *rs = get_remote_state ();
7231 int i;
7232 unsigned char csum = 0;
7233 char *buf2 = alloca (cnt + 6);
7234
7235 int ch;
7236 int tcount = 0;
7237 char *p;
7238 char *message;
7239
7240 /* Catch cases like trying to read memory or listing threads while
7241 we're waiting for a stop reply. The remote server wouldn't be
7242 ready to handle this request, so we'd hang and timeout. We don't
7243 have to worry about this in synchronous mode, because in that
7244 case it's not possible to issue a command while the target is
7245 running. This is not a problem in non-stop mode, because in that
7246 case, the stub is always ready to process serial input. */
7247 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
7248 error (_("Cannot execute this command while the target is running."));
7249
7250 /* We're sending out a new packet. Make sure we don't look at a
7251 stale cached response. */
7252 rs->cached_wait_status = 0;
7253
7254 /* Copy the packet into buffer BUF2, encapsulating it
7255 and giving it a checksum. */
7256
7257 p = buf2;
7258 *p++ = '$';
7259
7260 for (i = 0; i < cnt; i++)
7261 {
7262 csum += buf[i];
7263 *p++ = buf[i];
7264 }
7265 *p++ = '#';
7266 *p++ = tohex ((csum >> 4) & 0xf);
7267 *p++ = tohex (csum & 0xf);
7268
7269 /* Send it over and over until we get a positive ack. */
7270
7271 while (1)
7272 {
7273 int started_error_output = 0;
7274
7275 if (remote_debug)
7276 {
7277 struct cleanup *old_chain;
7278 char *str;
7279
7280 *p = '\0';
7281 str = escape_buffer (buf2, p - buf2);
7282 old_chain = make_cleanup (xfree, str);
7283 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
7284 gdb_flush (gdb_stdlog);
7285 do_cleanups (old_chain);
7286 }
7287 remote_serial_write (buf2, p - buf2);
7288
7289 /* If this is a no acks version of the remote protocol, send the
7290 packet and move on. */
7291 if (rs->noack_mode)
7292 break;
7293
7294 /* Read until either a timeout occurs (-2) or '+' is read.
7295 Handle any notification that arrives in the mean time. */
7296 while (1)
7297 {
7298 ch = readchar (remote_timeout);
7299
7300 if (remote_debug)
7301 {
7302 switch (ch)
7303 {
7304 case '+':
7305 case '-':
7306 case SERIAL_TIMEOUT:
7307 case '$':
7308 case '%':
7309 if (started_error_output)
7310 {
7311 putchar_unfiltered ('\n');
7312 started_error_output = 0;
7313 }
7314 }
7315 }
7316
7317 switch (ch)
7318 {
7319 case '+':
7320 if (remote_debug)
7321 fprintf_unfiltered (gdb_stdlog, "Ack\n");
7322 return 1;
7323 case '-':
7324 if (remote_debug)
7325 fprintf_unfiltered (gdb_stdlog, "Nak\n");
7326 /* FALLTHROUGH */
7327 case SERIAL_TIMEOUT:
7328 tcount++;
7329 if (tcount > 3)
7330 return 0;
7331 break; /* Retransmit buffer. */
7332 case '$':
7333 {
7334 if (remote_debug)
7335 fprintf_unfiltered (gdb_stdlog,
7336 "Packet instead of Ack, ignoring it\n");
7337 /* It's probably an old response sent because an ACK
7338 was lost. Gobble up the packet and ack it so it
7339 doesn't get retransmitted when we resend this
7340 packet. */
7341 skip_frame ();
7342 remote_serial_write ("+", 1);
7343 continue; /* Now, go look for +. */
7344 }
7345
7346 case '%':
7347 {
7348 int val;
7349
7350 /* If we got a notification, handle it, and go back to looking
7351 for an ack. */
7352 /* We've found the start of a notification. Now
7353 collect the data. */
7354 val = read_frame (&rs->buf, &rs->buf_size);
7355 if (val >= 0)
7356 {
7357 if (remote_debug)
7358 {
7359 struct cleanup *old_chain;
7360 char *str;
7361
7362 str = escape_buffer (rs->buf, val);
7363 old_chain = make_cleanup (xfree, str);
7364 fprintf_unfiltered (gdb_stdlog,
7365 " Notification received: %s\n",
7366 str);
7367 do_cleanups (old_chain);
7368 }
7369 handle_notification (rs->buf);
7370 /* We're in sync now, rewait for the ack. */
7371 tcount = 0;
7372 }
7373 else
7374 {
7375 if (remote_debug)
7376 {
7377 if (!started_error_output)
7378 {
7379 started_error_output = 1;
7380 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7381 }
7382 fputc_unfiltered (ch & 0177, gdb_stdlog);
7383 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
7384 }
7385 }
7386 continue;
7387 }
7388 /* fall-through */
7389 default:
7390 if (remote_debug)
7391 {
7392 if (!started_error_output)
7393 {
7394 started_error_output = 1;
7395 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7396 }
7397 fputc_unfiltered (ch & 0177, gdb_stdlog);
7398 }
7399 continue;
7400 }
7401 break; /* Here to retransmit. */
7402 }
7403
7404 #if 0
7405 /* This is wrong. If doing a long backtrace, the user should be
7406 able to get out next time we call QUIT, without anything as
7407 violent as interrupt_query. If we want to provide a way out of
7408 here without getting to the next QUIT, it should be based on
7409 hitting ^C twice as in remote_wait. */
7410 if (quit_flag)
7411 {
7412 quit_flag = 0;
7413 interrupt_query ();
7414 }
7415 #endif
7416 }
7417 return 0;
7418 }
7419
7420 /* Come here after finding the start of a frame when we expected an
7421 ack. Do our best to discard the rest of this packet. */
7422
7423 static void
7424 skip_frame (void)
7425 {
7426 int c;
7427
7428 while (1)
7429 {
7430 c = readchar (remote_timeout);
7431 switch (c)
7432 {
7433 case SERIAL_TIMEOUT:
7434 /* Nothing we can do. */
7435 return;
7436 case '#':
7437 /* Discard the two bytes of checksum and stop. */
7438 c = readchar (remote_timeout);
7439 if (c >= 0)
7440 c = readchar (remote_timeout);
7441
7442 return;
7443 case '*': /* Run length encoding. */
7444 /* Discard the repeat count. */
7445 c = readchar (remote_timeout);
7446 if (c < 0)
7447 return;
7448 break;
7449 default:
7450 /* A regular character. */
7451 break;
7452 }
7453 }
7454 }
7455
7456 /* Come here after finding the start of the frame. Collect the rest
7457 into *BUF, verifying the checksum, length, and handling run-length
7458 compression. NUL terminate the buffer. If there is not enough room,
7459 expand *BUF using xrealloc.
7460
7461 Returns -1 on error, number of characters in buffer (ignoring the
7462 trailing NULL) on success. (could be extended to return one of the
7463 SERIAL status indications). */
7464
7465 static long
7466 read_frame (char **buf_p,
7467 long *sizeof_buf)
7468 {
7469 unsigned char csum;
7470 long bc;
7471 int c;
7472 char *buf = *buf_p;
7473 struct remote_state *rs = get_remote_state ();
7474
7475 csum = 0;
7476 bc = 0;
7477
7478 while (1)
7479 {
7480 c = readchar (remote_timeout);
7481 switch (c)
7482 {
7483 case SERIAL_TIMEOUT:
7484 if (remote_debug)
7485 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
7486 return -1;
7487 case '$':
7488 if (remote_debug)
7489 fputs_filtered ("Saw new packet start in middle of old one\n",
7490 gdb_stdlog);
7491 return -1; /* Start a new packet, count retries. */
7492 case '#':
7493 {
7494 unsigned char pktcsum;
7495 int check_0 = 0;
7496 int check_1 = 0;
7497
7498 buf[bc] = '\0';
7499
7500 check_0 = readchar (remote_timeout);
7501 if (check_0 >= 0)
7502 check_1 = readchar (remote_timeout);
7503
7504 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
7505 {
7506 if (remote_debug)
7507 fputs_filtered ("Timeout in checksum, retrying\n",
7508 gdb_stdlog);
7509 return -1;
7510 }
7511 else if (check_0 < 0 || check_1 < 0)
7512 {
7513 if (remote_debug)
7514 fputs_filtered ("Communication error in checksum\n",
7515 gdb_stdlog);
7516 return -1;
7517 }
7518
7519 /* Don't recompute the checksum; with no ack packets we
7520 don't have any way to indicate a packet retransmission
7521 is necessary. */
7522 if (rs->noack_mode)
7523 return bc;
7524
7525 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
7526 if (csum == pktcsum)
7527 return bc;
7528
7529 if (remote_debug)
7530 {
7531 struct cleanup *old_chain;
7532 char *str;
7533
7534 str = escape_buffer (buf, bc);
7535 old_chain = make_cleanup (xfree, str);
7536 fprintf_unfiltered (gdb_stdlog,
7537 "Bad checksum, sentsum=0x%x, "
7538 "csum=0x%x, buf=%s\n",
7539 pktcsum, csum, str);
7540 do_cleanups (old_chain);
7541 }
7542 /* Number of characters in buffer ignoring trailing
7543 NULL. */
7544 return -1;
7545 }
7546 case '*': /* Run length encoding. */
7547 {
7548 int repeat;
7549
7550 csum += c;
7551 c = readchar (remote_timeout);
7552 csum += c;
7553 repeat = c - ' ' + 3; /* Compute repeat count. */
7554
7555 /* The character before ``*'' is repeated. */
7556
7557 if (repeat > 0 && repeat <= 255 && bc > 0)
7558 {
7559 if (bc + repeat - 1 >= *sizeof_buf - 1)
7560 {
7561 /* Make some more room in the buffer. */
7562 *sizeof_buf += repeat;
7563 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7564 buf = *buf_p;
7565 }
7566
7567 memset (&buf[bc], buf[bc - 1], repeat);
7568 bc += repeat;
7569 continue;
7570 }
7571
7572 buf[bc] = '\0';
7573 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
7574 return -1;
7575 }
7576 default:
7577 if (bc >= *sizeof_buf - 1)
7578 {
7579 /* Make some more room in the buffer. */
7580 *sizeof_buf *= 2;
7581 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7582 buf = *buf_p;
7583 }
7584
7585 buf[bc++] = c;
7586 csum += c;
7587 continue;
7588 }
7589 }
7590 }
7591
7592 /* Read a packet from the remote machine, with error checking, and
7593 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7594 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7595 rather than timing out; this is used (in synchronous mode) to wait
7596 for a target that is is executing user code to stop. */
7597 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
7598 don't have to change all the calls to getpkt to deal with the
7599 return value, because at the moment I don't know what the right
7600 thing to do it for those. */
7601 void
7602 getpkt (char **buf,
7603 long *sizeof_buf,
7604 int forever)
7605 {
7606 int timed_out;
7607
7608 timed_out = getpkt_sane (buf, sizeof_buf, forever);
7609 }
7610
7611
7612 /* Read a packet from the remote machine, with error checking, and
7613 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7614 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7615 rather than timing out; this is used (in synchronous mode) to wait
7616 for a target that is is executing user code to stop. If FOREVER ==
7617 0, this function is allowed to time out gracefully and return an
7618 indication of this to the caller. Otherwise return the number of
7619 bytes read. If EXPECTING_NOTIF, consider receiving a notification
7620 enough reason to return to the caller. *IS_NOTIF is an output
7621 boolean that indicates whether *BUF holds a notification or not
7622 (a regular packet). */
7623
7624 static int
7625 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
7626 int expecting_notif, int *is_notif)
7627 {
7628 struct remote_state *rs = get_remote_state ();
7629 int c;
7630 int tries;
7631 int timeout;
7632 int val = -1;
7633
7634 /* We're reading a new response. Make sure we don't look at a
7635 previously cached response. */
7636 rs->cached_wait_status = 0;
7637
7638 strcpy (*buf, "timeout");
7639
7640 if (forever)
7641 timeout = watchdog > 0 ? watchdog : -1;
7642 else if (expecting_notif)
7643 timeout = 0; /* There should already be a char in the buffer. If
7644 not, bail out. */
7645 else
7646 timeout = remote_timeout;
7647
7648 #define MAX_TRIES 3
7649
7650 /* Process any number of notifications, and then return when
7651 we get a packet. */
7652 for (;;)
7653 {
7654 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
7655 times. */
7656 for (tries = 1; tries <= MAX_TRIES; tries++)
7657 {
7658 /* This can loop forever if the remote side sends us
7659 characters continuously, but if it pauses, we'll get
7660 SERIAL_TIMEOUT from readchar because of timeout. Then
7661 we'll count that as a retry.
7662
7663 Note that even when forever is set, we will only wait
7664 forever prior to the start of a packet. After that, we
7665 expect characters to arrive at a brisk pace. They should
7666 show up within remote_timeout intervals. */
7667 do
7668 c = readchar (timeout);
7669 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
7670
7671 if (c == SERIAL_TIMEOUT)
7672 {
7673 if (expecting_notif)
7674 return -1; /* Don't complain, it's normal to not get
7675 anything in this case. */
7676
7677 if (forever) /* Watchdog went off? Kill the target. */
7678 {
7679 QUIT;
7680 remote_unpush_target ();
7681 throw_error (TARGET_CLOSE_ERROR,
7682 _("Watchdog timeout has expired. "
7683 "Target detached."));
7684 }
7685 if (remote_debug)
7686 fputs_filtered ("Timed out.\n", gdb_stdlog);
7687 }
7688 else
7689 {
7690 /* We've found the start of a packet or notification.
7691 Now collect the data. */
7692 val = read_frame (buf, sizeof_buf);
7693 if (val >= 0)
7694 break;
7695 }
7696
7697 remote_serial_write ("-", 1);
7698 }
7699
7700 if (tries > MAX_TRIES)
7701 {
7702 /* We have tried hard enough, and just can't receive the
7703 packet/notification. Give up. */
7704 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
7705
7706 /* Skip the ack char if we're in no-ack mode. */
7707 if (!rs->noack_mode)
7708 remote_serial_write ("+", 1);
7709 return -1;
7710 }
7711
7712 /* If we got an ordinary packet, return that to our caller. */
7713 if (c == '$')
7714 {
7715 if (remote_debug)
7716 {
7717 struct cleanup *old_chain;
7718 char *str;
7719
7720 str = escape_buffer (*buf, val);
7721 old_chain = make_cleanup (xfree, str);
7722 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
7723 do_cleanups (old_chain);
7724 }
7725
7726 /* Skip the ack char if we're in no-ack mode. */
7727 if (!rs->noack_mode)
7728 remote_serial_write ("+", 1);
7729 if (is_notif != NULL)
7730 *is_notif = 0;
7731 return val;
7732 }
7733
7734 /* If we got a notification, handle it, and go back to looking
7735 for a packet. */
7736 else
7737 {
7738 gdb_assert (c == '%');
7739
7740 if (remote_debug)
7741 {
7742 struct cleanup *old_chain;
7743 char *str;
7744
7745 str = escape_buffer (*buf, val);
7746 old_chain = make_cleanup (xfree, str);
7747 fprintf_unfiltered (gdb_stdlog,
7748 " Notification received: %s\n",
7749 str);
7750 do_cleanups (old_chain);
7751 }
7752 if (is_notif != NULL)
7753 *is_notif = 1;
7754
7755 handle_notification (*buf);
7756
7757 /* Notifications require no acknowledgement. */
7758
7759 if (expecting_notif)
7760 return val;
7761 }
7762 }
7763 }
7764
7765 static int
7766 getpkt_sane (char **buf, long *sizeof_buf, int forever)
7767 {
7768 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
7769 }
7770
7771 static int
7772 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
7773 int *is_notif)
7774 {
7775 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
7776 is_notif);
7777 }
7778
7779 \f
7780 /* A helper function that just calls putpkt; for type correctness. */
7781
7782 static int
7783 putpkt_for_catch_errors (void *arg)
7784 {
7785 return putpkt (arg);
7786 }
7787
7788 static void
7789 remote_kill (struct target_ops *ops)
7790 {
7791 /* Use catch_errors so the user can quit from gdb even when we
7792 aren't on speaking terms with the remote system. */
7793 catch_errors (putpkt_for_catch_errors, "k", "", RETURN_MASK_ERROR);
7794
7795 /* Don't wait for it to die. I'm not really sure it matters whether
7796 we do or not. For the existing stubs, kill is a noop. */
7797 target_mourn_inferior ();
7798 }
7799
7800 static int
7801 remote_vkill (int pid, struct remote_state *rs)
7802 {
7803 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7804 return -1;
7805
7806 /* Tell the remote target to detach. */
7807 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
7808 putpkt (rs->buf);
7809 getpkt (&rs->buf, &rs->buf_size, 0);
7810
7811 if (packet_ok (rs->buf,
7812 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
7813 return 0;
7814 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7815 return -1;
7816 else
7817 return 1;
7818 }
7819
7820 static void
7821 extended_remote_kill (struct target_ops *ops)
7822 {
7823 int res;
7824 int pid = ptid_get_pid (inferior_ptid);
7825 struct remote_state *rs = get_remote_state ();
7826
7827 res = remote_vkill (pid, rs);
7828 if (res == -1 && !(rs->extended && remote_multi_process_p (rs)))
7829 {
7830 /* Don't try 'k' on a multi-process aware stub -- it has no way
7831 to specify the pid. */
7832
7833 putpkt ("k");
7834 #if 0
7835 getpkt (&rs->buf, &rs->buf_size, 0);
7836 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
7837 res = 1;
7838 #else
7839 /* Don't wait for it to die. I'm not really sure it matters whether
7840 we do or not. For the existing stubs, kill is a noop. */
7841 res = 0;
7842 #endif
7843 }
7844
7845 if (res != 0)
7846 error (_("Can't kill process"));
7847
7848 target_mourn_inferior ();
7849 }
7850
7851 static void
7852 remote_mourn (struct target_ops *ops)
7853 {
7854 remote_mourn_1 (ops);
7855 }
7856
7857 /* Worker function for remote_mourn. */
7858 static void
7859 remote_mourn_1 (struct target_ops *target)
7860 {
7861 unpush_target (target);
7862
7863 /* remote_close takes care of doing most of the clean up. */
7864 generic_mourn_inferior ();
7865 }
7866
7867 static void
7868 extended_remote_mourn_1 (struct target_ops *target)
7869 {
7870 struct remote_state *rs = get_remote_state ();
7871
7872 /* In case we got here due to an error, but we're going to stay
7873 connected. */
7874 rs->waiting_for_stop_reply = 0;
7875
7876 /* If the current general thread belonged to the process we just
7877 detached from or has exited, the remote side current general
7878 thread becomes undefined. Considering a case like this:
7879
7880 - We just got here due to a detach.
7881 - The process that we're detaching from happens to immediately
7882 report a global breakpoint being hit in non-stop mode, in the
7883 same thread we had selected before.
7884 - GDB attaches to this process again.
7885 - This event happens to be the next event we handle.
7886
7887 GDB would consider that the current general thread didn't need to
7888 be set on the stub side (with Hg), since for all it knew,
7889 GENERAL_THREAD hadn't changed.
7890
7891 Notice that although in all-stop mode, the remote server always
7892 sets the current thread to the thread reporting the stop event,
7893 that doesn't happen in non-stop mode; in non-stop, the stub *must
7894 not* change the current thread when reporting a breakpoint hit,
7895 due to the decoupling of event reporting and event handling.
7896
7897 To keep things simple, we always invalidate our notion of the
7898 current thread. */
7899 record_currthread (minus_one_ptid);
7900
7901 /* Unlike "target remote", we do not want to unpush the target; then
7902 the next time the user says "run", we won't be connected. */
7903
7904 /* Call common code to mark the inferior as not running. */
7905 generic_mourn_inferior ();
7906
7907 if (!have_inferiors ())
7908 {
7909 if (!remote_multi_process_p (rs))
7910 {
7911 /* Check whether the target is running now - some remote stubs
7912 automatically restart after kill. */
7913 putpkt ("?");
7914 getpkt (&rs->buf, &rs->buf_size, 0);
7915
7916 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
7917 {
7918 /* Assume that the target has been restarted. Set
7919 inferior_ptid so that bits of core GDB realizes
7920 there's something here, e.g., so that the user can
7921 say "kill" again. */
7922 inferior_ptid = magic_null_ptid;
7923 }
7924 }
7925 }
7926 }
7927
7928 static void
7929 extended_remote_mourn (struct target_ops *ops)
7930 {
7931 extended_remote_mourn_1 (ops);
7932 }
7933
7934 static int
7935 extended_remote_supports_disable_randomization (void)
7936 {
7937 return (remote_protocol_packets[PACKET_QDisableRandomization].support
7938 == PACKET_ENABLE);
7939 }
7940
7941 static void
7942 extended_remote_disable_randomization (int val)
7943 {
7944 struct remote_state *rs = get_remote_state ();
7945 char *reply;
7946
7947 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
7948 val);
7949 putpkt (rs->buf);
7950 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
7951 if (*reply == '\0')
7952 error (_("Target does not support QDisableRandomization."));
7953 if (strcmp (reply, "OK") != 0)
7954 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
7955 }
7956
7957 static int
7958 extended_remote_run (char *args)
7959 {
7960 struct remote_state *rs = get_remote_state ();
7961 int len;
7962
7963 /* If the user has disabled vRun support, or we have detected that
7964 support is not available, do not try it. */
7965 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
7966 return -1;
7967
7968 strcpy (rs->buf, "vRun;");
7969 len = strlen (rs->buf);
7970
7971 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
7972 error (_("Remote file name too long for run packet"));
7973 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
7974
7975 gdb_assert (args != NULL);
7976 if (*args)
7977 {
7978 struct cleanup *back_to;
7979 int i;
7980 char **argv;
7981
7982 argv = gdb_buildargv (args);
7983 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
7984 for (i = 0; argv[i] != NULL; i++)
7985 {
7986 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
7987 error (_("Argument list too long for run packet"));
7988 rs->buf[len++] = ';';
7989 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
7990 }
7991 do_cleanups (back_to);
7992 }
7993
7994 rs->buf[len++] = '\0';
7995
7996 putpkt (rs->buf);
7997 getpkt (&rs->buf, &rs->buf_size, 0);
7998
7999 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
8000 {
8001 /* We have a wait response. All is well. */
8002 return 0;
8003 }
8004 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
8005 /* It wasn't disabled before, but it is now. */
8006 return -1;
8007 else
8008 {
8009 if (remote_exec_file[0] == '\0')
8010 error (_("Running the default executable on the remote target failed; "
8011 "try \"set remote exec-file\"?"));
8012 else
8013 error (_("Running \"%s\" on the remote target failed"),
8014 remote_exec_file);
8015 }
8016 }
8017
8018 /* In the extended protocol we want to be able to do things like
8019 "run" and have them basically work as expected. So we need
8020 a special create_inferior function. We support changing the
8021 executable file and the command line arguments, but not the
8022 environment. */
8023
8024 static void
8025 extended_remote_create_inferior_1 (char *exec_file, char *args,
8026 char **env, int from_tty)
8027 {
8028 int run_worked;
8029 char *stop_reply;
8030 struct remote_state *rs = get_remote_state ();
8031
8032 /* If running asynchronously, register the target file descriptor
8033 with the event loop. */
8034 if (target_can_async_p ())
8035 target_async (inferior_event_handler, 0);
8036
8037 /* Disable address space randomization if requested (and supported). */
8038 if (extended_remote_supports_disable_randomization ())
8039 extended_remote_disable_randomization (disable_randomization);
8040
8041 /* Now restart the remote server. */
8042 run_worked = extended_remote_run (args) != -1;
8043 if (!run_worked)
8044 {
8045 /* vRun was not supported. Fail if we need it to do what the
8046 user requested. */
8047 if (remote_exec_file[0])
8048 error (_("Remote target does not support \"set remote exec-file\""));
8049 if (args[0])
8050 error (_("Remote target does not support \"set args\" or run <ARGS>"));
8051
8052 /* Fall back to "R". */
8053 extended_remote_restart ();
8054 }
8055
8056 if (!have_inferiors ())
8057 {
8058 /* Clean up from the last time we ran, before we mark the target
8059 running again. This will mark breakpoints uninserted, and
8060 get_offsets may insert breakpoints. */
8061 init_thread_list ();
8062 init_wait_for_inferior ();
8063 }
8064
8065 /* vRun's success return is a stop reply. */
8066 stop_reply = run_worked ? rs->buf : NULL;
8067 add_current_inferior_and_thread (stop_reply);
8068
8069 /* Get updated offsets, if the stub uses qOffsets. */
8070 get_offsets ();
8071 }
8072
8073 static void
8074 extended_remote_create_inferior (struct target_ops *ops,
8075 char *exec_file, char *args,
8076 char **env, int from_tty)
8077 {
8078 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
8079 }
8080 \f
8081
8082 /* Given a location's target info BP_TGT and the packet buffer BUF, output
8083 the list of conditions (in agent expression bytecode format), if any, the
8084 target needs to evaluate. The output is placed into the packet buffer
8085 started from BUF and ended at BUF_END. */
8086
8087 static int
8088 remote_add_target_side_condition (struct gdbarch *gdbarch,
8089 struct bp_target_info *bp_tgt, char *buf,
8090 char *buf_end)
8091 {
8092 struct agent_expr *aexpr = NULL;
8093 int i, ix;
8094 char *pkt;
8095 char *buf_start = buf;
8096
8097 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
8098 return 0;
8099
8100 buf += strlen (buf);
8101 xsnprintf (buf, buf_end - buf, "%s", ";");
8102 buf++;
8103
8104 /* Send conditions to the target and free the vector. */
8105 for (ix = 0;
8106 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
8107 ix++)
8108 {
8109 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
8110 buf += strlen (buf);
8111 for (i = 0; i < aexpr->len; ++i)
8112 buf = pack_hex_byte (buf, aexpr->buf[i]);
8113 *buf = '\0';
8114 }
8115
8116 VEC_free (agent_expr_p, bp_tgt->conditions);
8117 return 0;
8118 }
8119
8120 static void
8121 remote_add_target_side_commands (struct gdbarch *gdbarch,
8122 struct bp_target_info *bp_tgt, char *buf)
8123 {
8124 struct agent_expr *aexpr = NULL;
8125 int i, ix;
8126
8127 if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
8128 return;
8129
8130 buf += strlen (buf);
8131
8132 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
8133 buf += strlen (buf);
8134
8135 /* Concatenate all the agent expressions that are commands into the
8136 cmds parameter. */
8137 for (ix = 0;
8138 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
8139 ix++)
8140 {
8141 sprintf (buf, "X%x,", aexpr->len);
8142 buf += strlen (buf);
8143 for (i = 0; i < aexpr->len; ++i)
8144 buf = pack_hex_byte (buf, aexpr->buf[i]);
8145 *buf = '\0';
8146 }
8147
8148 VEC_free (agent_expr_p, bp_tgt->tcommands);
8149 }
8150
8151 /* Insert a breakpoint. On targets that have software breakpoint
8152 support, we ask the remote target to do the work; on targets
8153 which don't, we insert a traditional memory breakpoint. */
8154
8155 static int
8156 remote_insert_breakpoint (struct gdbarch *gdbarch,
8157 struct bp_target_info *bp_tgt)
8158 {
8159 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
8160 If it succeeds, then set the support to PACKET_ENABLE. If it
8161 fails, and the user has explicitly requested the Z support then
8162 report an error, otherwise, mark it disabled and go on. */
8163
8164 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
8165 {
8166 CORE_ADDR addr = bp_tgt->placed_address;
8167 struct remote_state *rs;
8168 char *p, *endbuf;
8169 int bpsize;
8170 struct condition_list *cond = NULL;
8171
8172 /* Make sure the remote is pointing at the right process, if
8173 necessary. */
8174 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8175 set_general_process ();
8176
8177 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
8178
8179 rs = get_remote_state ();
8180 p = rs->buf;
8181 endbuf = rs->buf + get_remote_packet_size ();
8182
8183 *(p++) = 'Z';
8184 *(p++) = '0';
8185 *(p++) = ',';
8186 addr = (ULONGEST) remote_address_masked (addr);
8187 p += hexnumstr (p, addr);
8188 xsnprintf (p, endbuf - p, ",%d", bpsize);
8189
8190 if (remote_supports_cond_breakpoints ())
8191 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
8192
8193 if (remote_can_run_breakpoint_commands ())
8194 remote_add_target_side_commands (gdbarch, bp_tgt, p);
8195
8196 putpkt (rs->buf);
8197 getpkt (&rs->buf, &rs->buf_size, 0);
8198
8199 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
8200 {
8201 case PACKET_ERROR:
8202 return -1;
8203 case PACKET_OK:
8204 bp_tgt->placed_address = addr;
8205 bp_tgt->placed_size = bpsize;
8206 return 0;
8207 case PACKET_UNKNOWN:
8208 break;
8209 }
8210 }
8211
8212 return memory_insert_breakpoint (gdbarch, bp_tgt);
8213 }
8214
8215 static int
8216 remote_remove_breakpoint (struct gdbarch *gdbarch,
8217 struct bp_target_info *bp_tgt)
8218 {
8219 CORE_ADDR addr = bp_tgt->placed_address;
8220 struct remote_state *rs = get_remote_state ();
8221
8222 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
8223 {
8224 char *p = rs->buf;
8225 char *endbuf = rs->buf + get_remote_packet_size ();
8226
8227 /* Make sure the remote is pointing at the right process, if
8228 necessary. */
8229 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8230 set_general_process ();
8231
8232 *(p++) = 'z';
8233 *(p++) = '0';
8234 *(p++) = ',';
8235
8236 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
8237 p += hexnumstr (p, addr);
8238 xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
8239
8240 putpkt (rs->buf);
8241 getpkt (&rs->buf, &rs->buf_size, 0);
8242
8243 return (rs->buf[0] == 'E');
8244 }
8245
8246 return memory_remove_breakpoint (gdbarch, bp_tgt);
8247 }
8248
8249 static int
8250 watchpoint_to_Z_packet (int type)
8251 {
8252 switch (type)
8253 {
8254 case hw_write:
8255 return Z_PACKET_WRITE_WP;
8256 break;
8257 case hw_read:
8258 return Z_PACKET_READ_WP;
8259 break;
8260 case hw_access:
8261 return Z_PACKET_ACCESS_WP;
8262 break;
8263 default:
8264 internal_error (__FILE__, __LINE__,
8265 _("hw_bp_to_z: bad watchpoint type %d"), type);
8266 }
8267 }
8268
8269 static int
8270 remote_insert_watchpoint (CORE_ADDR addr, int len, int type,
8271 struct expression *cond)
8272 {
8273 struct remote_state *rs = get_remote_state ();
8274 char *endbuf = rs->buf + get_remote_packet_size ();
8275 char *p;
8276 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8277
8278 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
8279 return 1;
8280
8281 /* Make sure the remote is pointing at the right process, if
8282 necessary. */
8283 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8284 set_general_process ();
8285
8286 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
8287 p = strchr (rs->buf, '\0');
8288 addr = remote_address_masked (addr);
8289 p += hexnumstr (p, (ULONGEST) addr);
8290 xsnprintf (p, endbuf - p, ",%x", len);
8291
8292 putpkt (rs->buf);
8293 getpkt (&rs->buf, &rs->buf_size, 0);
8294
8295 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
8296 {
8297 case PACKET_ERROR:
8298 return -1;
8299 case PACKET_UNKNOWN:
8300 return 1;
8301 case PACKET_OK:
8302 return 0;
8303 }
8304 internal_error (__FILE__, __LINE__,
8305 _("remote_insert_watchpoint: reached end of function"));
8306 }
8307
8308 static int
8309 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
8310 CORE_ADDR start, int length)
8311 {
8312 CORE_ADDR diff = remote_address_masked (addr - start);
8313
8314 return diff < length;
8315 }
8316
8317
8318 static int
8319 remote_remove_watchpoint (CORE_ADDR addr, int len, int type,
8320 struct expression *cond)
8321 {
8322 struct remote_state *rs = get_remote_state ();
8323 char *endbuf = rs->buf + get_remote_packet_size ();
8324 char *p;
8325 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8326
8327 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
8328 return -1;
8329
8330 /* Make sure the remote is pointing at the right process, if
8331 necessary. */
8332 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8333 set_general_process ();
8334
8335 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
8336 p = strchr (rs->buf, '\0');
8337 addr = remote_address_masked (addr);
8338 p += hexnumstr (p, (ULONGEST) addr);
8339 xsnprintf (p, endbuf - p, ",%x", len);
8340 putpkt (rs->buf);
8341 getpkt (&rs->buf, &rs->buf_size, 0);
8342
8343 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
8344 {
8345 case PACKET_ERROR:
8346 case PACKET_UNKNOWN:
8347 return -1;
8348 case PACKET_OK:
8349 return 0;
8350 }
8351 internal_error (__FILE__, __LINE__,
8352 _("remote_remove_watchpoint: reached end of function"));
8353 }
8354
8355
8356 int remote_hw_watchpoint_limit = -1;
8357 int remote_hw_watchpoint_length_limit = -1;
8358 int remote_hw_breakpoint_limit = -1;
8359
8360 static int
8361 remote_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
8362 {
8363 if (remote_hw_watchpoint_length_limit == 0)
8364 return 0;
8365 else if (remote_hw_watchpoint_length_limit < 0)
8366 return 1;
8367 else if (len <= remote_hw_watchpoint_length_limit)
8368 return 1;
8369 else
8370 return 0;
8371 }
8372
8373 static int
8374 remote_check_watch_resources (int type, int cnt, int ot)
8375 {
8376 if (type == bp_hardware_breakpoint)
8377 {
8378 if (remote_hw_breakpoint_limit == 0)
8379 return 0;
8380 else if (remote_hw_breakpoint_limit < 0)
8381 return 1;
8382 else if (cnt <= remote_hw_breakpoint_limit)
8383 return 1;
8384 }
8385 else
8386 {
8387 if (remote_hw_watchpoint_limit == 0)
8388 return 0;
8389 else if (remote_hw_watchpoint_limit < 0)
8390 return 1;
8391 else if (ot)
8392 return -1;
8393 else if (cnt <= remote_hw_watchpoint_limit)
8394 return 1;
8395 }
8396 return -1;
8397 }
8398
8399 static int
8400 remote_stopped_by_watchpoint (void)
8401 {
8402 return remote_stopped_by_watchpoint_p;
8403 }
8404
8405 static int
8406 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
8407 {
8408 int rc = 0;
8409
8410 if (remote_stopped_by_watchpoint ())
8411 {
8412 *addr_p = remote_watch_data_address;
8413 rc = 1;
8414 }
8415
8416 return rc;
8417 }
8418
8419
8420 static int
8421 remote_insert_hw_breakpoint (struct gdbarch *gdbarch,
8422 struct bp_target_info *bp_tgt)
8423 {
8424 CORE_ADDR addr;
8425 struct remote_state *rs;
8426 char *p, *endbuf;
8427 char *message;
8428
8429 /* The length field should be set to the size of a breakpoint
8430 instruction, even though we aren't inserting one ourselves. */
8431
8432 gdbarch_remote_breakpoint_from_pc
8433 (gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
8434
8435 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
8436 return -1;
8437
8438 /* Make sure the remote is pointing at the right process, if
8439 necessary. */
8440 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8441 set_general_process ();
8442
8443 rs = get_remote_state ();
8444 p = rs->buf;
8445 endbuf = rs->buf + get_remote_packet_size ();
8446
8447 *(p++) = 'Z';
8448 *(p++) = '1';
8449 *(p++) = ',';
8450
8451 addr = remote_address_masked (bp_tgt->placed_address);
8452 p += hexnumstr (p, (ULONGEST) addr);
8453 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
8454
8455 if (remote_supports_cond_breakpoints ())
8456 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
8457
8458 if (remote_can_run_breakpoint_commands ())
8459 remote_add_target_side_commands (gdbarch, bp_tgt, p);
8460
8461 putpkt (rs->buf);
8462 getpkt (&rs->buf, &rs->buf_size, 0);
8463
8464 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
8465 {
8466 case PACKET_ERROR:
8467 if (rs->buf[1] == '.')
8468 {
8469 message = strchr (rs->buf + 2, '.');
8470 if (message)
8471 error (_("Remote failure reply: %s"), message + 1);
8472 }
8473 return -1;
8474 case PACKET_UNKNOWN:
8475 return -1;
8476 case PACKET_OK:
8477 return 0;
8478 }
8479 internal_error (__FILE__, __LINE__,
8480 _("remote_insert_hw_breakpoint: reached end of function"));
8481 }
8482
8483
8484 static int
8485 remote_remove_hw_breakpoint (struct gdbarch *gdbarch,
8486 struct bp_target_info *bp_tgt)
8487 {
8488 CORE_ADDR addr;
8489 struct remote_state *rs = get_remote_state ();
8490 char *p = rs->buf;
8491 char *endbuf = rs->buf + get_remote_packet_size ();
8492
8493 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
8494 return -1;
8495
8496 /* Make sure the remote is pointing at the right process, if
8497 necessary. */
8498 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8499 set_general_process ();
8500
8501 *(p++) = 'z';
8502 *(p++) = '1';
8503 *(p++) = ',';
8504
8505 addr = remote_address_masked (bp_tgt->placed_address);
8506 p += hexnumstr (p, (ULONGEST) addr);
8507 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
8508
8509 putpkt (rs->buf);
8510 getpkt (&rs->buf, &rs->buf_size, 0);
8511
8512 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
8513 {
8514 case PACKET_ERROR:
8515 case PACKET_UNKNOWN:
8516 return -1;
8517 case PACKET_OK:
8518 return 0;
8519 }
8520 internal_error (__FILE__, __LINE__,
8521 _("remote_remove_hw_breakpoint: reached end of function"));
8522 }
8523
8524 /* Verify memory using the "qCRC:" request. */
8525
8526 static int
8527 remote_verify_memory (struct target_ops *ops,
8528 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
8529 {
8530 struct remote_state *rs = get_remote_state ();
8531 unsigned long host_crc, target_crc;
8532 char *tmp;
8533
8534 /* Make sure the remote is pointing at the right process. */
8535 set_general_process ();
8536
8537 /* FIXME: assumes lma can fit into long. */
8538 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
8539 (long) lma, (long) size);
8540 putpkt (rs->buf);
8541
8542 /* Be clever; compute the host_crc before waiting for target
8543 reply. */
8544 host_crc = xcrc32 (data, size, 0xffffffff);
8545
8546 getpkt (&rs->buf, &rs->buf_size, 0);
8547 if (rs->buf[0] == 'E')
8548 return -1;
8549
8550 if (rs->buf[0] != 'C')
8551 error (_("remote target does not support this operation"));
8552
8553 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
8554 target_crc = target_crc * 16 + fromhex (*tmp);
8555
8556 return (host_crc == target_crc);
8557 }
8558
8559 /* compare-sections command
8560
8561 With no arguments, compares each loadable section in the exec bfd
8562 with the same memory range on the target, and reports mismatches.
8563 Useful for verifying the image on the target against the exec file. */
8564
8565 static void
8566 compare_sections_command (char *args, int from_tty)
8567 {
8568 asection *s;
8569 struct cleanup *old_chain;
8570 gdb_byte *sectdata;
8571 const char *sectname;
8572 bfd_size_type size;
8573 bfd_vma lma;
8574 int matched = 0;
8575 int mismatched = 0;
8576 int res;
8577
8578 if (!exec_bfd)
8579 error (_("command cannot be used without an exec file"));
8580
8581 /* Make sure the remote is pointing at the right process. */
8582 set_general_process ();
8583
8584 for (s = exec_bfd->sections; s; s = s->next)
8585 {
8586 if (!(s->flags & SEC_LOAD))
8587 continue; /* Skip non-loadable section. */
8588
8589 size = bfd_get_section_size (s);
8590 if (size == 0)
8591 continue; /* Skip zero-length section. */
8592
8593 sectname = bfd_get_section_name (exec_bfd, s);
8594 if (args && strcmp (args, sectname) != 0)
8595 continue; /* Not the section selected by user. */
8596
8597 matched = 1; /* Do this section. */
8598 lma = s->lma;
8599
8600 sectdata = xmalloc (size);
8601 old_chain = make_cleanup (xfree, sectdata);
8602 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
8603
8604 res = target_verify_memory (sectdata, lma, size);
8605
8606 if (res == -1)
8607 error (_("target memory fault, section %s, range %s -- %s"), sectname,
8608 paddress (target_gdbarch (), lma),
8609 paddress (target_gdbarch (), lma + size));
8610
8611 printf_filtered ("Section %s, range %s -- %s: ", sectname,
8612 paddress (target_gdbarch (), lma),
8613 paddress (target_gdbarch (), lma + size));
8614 if (res)
8615 printf_filtered ("matched.\n");
8616 else
8617 {
8618 printf_filtered ("MIS-MATCHED!\n");
8619 mismatched++;
8620 }
8621
8622 do_cleanups (old_chain);
8623 }
8624 if (mismatched > 0)
8625 warning (_("One or more sections of the remote executable does not match\n\
8626 the loaded file\n"));
8627 if (args && !matched)
8628 printf_filtered (_("No loaded section named '%s'.\n"), args);
8629 }
8630
8631 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
8632 into remote target. The number of bytes written to the remote
8633 target is returned, or -1 for error. */
8634
8635 static LONGEST
8636 remote_write_qxfer (struct target_ops *ops, const char *object_name,
8637 const char *annex, const gdb_byte *writebuf,
8638 ULONGEST offset, LONGEST len,
8639 struct packet_config *packet)
8640 {
8641 int i, buf_len;
8642 ULONGEST n;
8643 struct remote_state *rs = get_remote_state ();
8644 int max_size = get_memory_write_packet_size ();
8645
8646 if (packet->support == PACKET_DISABLE)
8647 return -1;
8648
8649 /* Insert header. */
8650 i = snprintf (rs->buf, max_size,
8651 "qXfer:%s:write:%s:%s:",
8652 object_name, annex ? annex : "",
8653 phex_nz (offset, sizeof offset));
8654 max_size -= (i + 1);
8655
8656 /* Escape as much data as fits into rs->buf. */
8657 buf_len = remote_escape_output
8658 (writebuf, len, (gdb_byte *) rs->buf + i, &max_size, max_size);
8659
8660 if (putpkt_binary (rs->buf, i + buf_len) < 0
8661 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8662 || packet_ok (rs->buf, packet) != PACKET_OK)
8663 return -1;
8664
8665 unpack_varlen_hex (rs->buf, &n);
8666 return n;
8667 }
8668
8669 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
8670 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
8671 number of bytes read is returned, or 0 for EOF, or -1 for error.
8672 The number of bytes read may be less than LEN without indicating an
8673 EOF. PACKET is checked and updated to indicate whether the remote
8674 target supports this object. */
8675
8676 static LONGEST
8677 remote_read_qxfer (struct target_ops *ops, const char *object_name,
8678 const char *annex,
8679 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
8680 struct packet_config *packet)
8681 {
8682 static char *finished_object;
8683 static char *finished_annex;
8684 static ULONGEST finished_offset;
8685
8686 struct remote_state *rs = get_remote_state ();
8687 LONGEST i, n, packet_len;
8688
8689 if (packet->support == PACKET_DISABLE)
8690 return -1;
8691
8692 /* Check whether we've cached an end-of-object packet that matches
8693 this request. */
8694 if (finished_object)
8695 {
8696 if (strcmp (object_name, finished_object) == 0
8697 && strcmp (annex ? annex : "", finished_annex) == 0
8698 && offset == finished_offset)
8699 return 0;
8700
8701 /* Otherwise, we're now reading something different. Discard
8702 the cache. */
8703 xfree (finished_object);
8704 xfree (finished_annex);
8705 finished_object = NULL;
8706 finished_annex = NULL;
8707 }
8708
8709 /* Request only enough to fit in a single packet. The actual data
8710 may not, since we don't know how much of it will need to be escaped;
8711 the target is free to respond with slightly less data. We subtract
8712 five to account for the response type and the protocol frame. */
8713 n = min (get_remote_packet_size () - 5, len);
8714 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
8715 object_name, annex ? annex : "",
8716 phex_nz (offset, sizeof offset),
8717 phex_nz (n, sizeof n));
8718 i = putpkt (rs->buf);
8719 if (i < 0)
8720 return -1;
8721
8722 rs->buf[0] = '\0';
8723 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8724 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
8725 return -1;
8726
8727 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8728 error (_("Unknown remote qXfer reply: %s"), rs->buf);
8729
8730 /* 'm' means there is (or at least might be) more data after this
8731 batch. That does not make sense unless there's at least one byte
8732 of data in this reply. */
8733 if (rs->buf[0] == 'm' && packet_len == 1)
8734 error (_("Remote qXfer reply contained no data."));
8735
8736 /* Got some data. */
8737 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
8738 packet_len - 1, readbuf, n);
8739
8740 /* 'l' is an EOF marker, possibly including a final block of data,
8741 or possibly empty. If we have the final block of a non-empty
8742 object, record this fact to bypass a subsequent partial read. */
8743 if (rs->buf[0] == 'l' && offset + i > 0)
8744 {
8745 finished_object = xstrdup (object_name);
8746 finished_annex = xstrdup (annex ? annex : "");
8747 finished_offset = offset + i;
8748 }
8749
8750 return i;
8751 }
8752
8753 static LONGEST
8754 remote_xfer_partial (struct target_ops *ops, enum target_object object,
8755 const char *annex, gdb_byte *readbuf,
8756 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
8757 {
8758 struct remote_state *rs;
8759 int i;
8760 char *p2;
8761 char query_type;
8762
8763 set_remote_traceframe ();
8764 set_general_thread (inferior_ptid);
8765
8766 rs = get_remote_state ();
8767
8768 /* Handle memory using the standard memory routines. */
8769 if (object == TARGET_OBJECT_MEMORY)
8770 {
8771 int xfered;
8772
8773 errno = 0;
8774
8775 /* If the remote target is connected but not running, we should
8776 pass this request down to a lower stratum (e.g. the executable
8777 file). */
8778 if (!target_has_execution)
8779 return 0;
8780
8781 if (writebuf != NULL)
8782 xfered = remote_write_bytes (offset, writebuf, len);
8783 else
8784 xfered = remote_read_bytes (offset, readbuf, len);
8785
8786 if (xfered > 0)
8787 return xfered;
8788 else if (xfered == 0 && errno == 0)
8789 return 0;
8790 else
8791 return -1;
8792 }
8793
8794 /* Handle SPU memory using qxfer packets. */
8795 if (object == TARGET_OBJECT_SPU)
8796 {
8797 if (readbuf)
8798 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
8799 &remote_protocol_packets
8800 [PACKET_qXfer_spu_read]);
8801 else
8802 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
8803 &remote_protocol_packets
8804 [PACKET_qXfer_spu_write]);
8805 }
8806
8807 /* Handle extra signal info using qxfer packets. */
8808 if (object == TARGET_OBJECT_SIGNAL_INFO)
8809 {
8810 if (readbuf)
8811 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
8812 &remote_protocol_packets
8813 [PACKET_qXfer_siginfo_read]);
8814 else
8815 return remote_write_qxfer (ops, "siginfo", annex,
8816 writebuf, offset, len,
8817 &remote_protocol_packets
8818 [PACKET_qXfer_siginfo_write]);
8819 }
8820
8821 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
8822 {
8823 if (readbuf)
8824 return remote_read_qxfer (ops, "statictrace", annex,
8825 readbuf, offset, len,
8826 &remote_protocol_packets
8827 [PACKET_qXfer_statictrace_read]);
8828 else
8829 return -1;
8830 }
8831
8832 /* Only handle flash writes. */
8833 if (writebuf != NULL)
8834 {
8835 LONGEST xfered;
8836
8837 switch (object)
8838 {
8839 case TARGET_OBJECT_FLASH:
8840 xfered = remote_flash_write (ops, offset, len, writebuf);
8841
8842 if (xfered > 0)
8843 return xfered;
8844 else if (xfered == 0 && errno == 0)
8845 return 0;
8846 else
8847 return -1;
8848
8849 default:
8850 return -1;
8851 }
8852 }
8853
8854 /* Map pre-existing objects onto letters. DO NOT do this for new
8855 objects!!! Instead specify new query packets. */
8856 switch (object)
8857 {
8858 case TARGET_OBJECT_AVR:
8859 query_type = 'R';
8860 break;
8861
8862 case TARGET_OBJECT_AUXV:
8863 gdb_assert (annex == NULL);
8864 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
8865 &remote_protocol_packets[PACKET_qXfer_auxv]);
8866
8867 case TARGET_OBJECT_AVAILABLE_FEATURES:
8868 return remote_read_qxfer
8869 (ops, "features", annex, readbuf, offset, len,
8870 &remote_protocol_packets[PACKET_qXfer_features]);
8871
8872 case TARGET_OBJECT_LIBRARIES:
8873 return remote_read_qxfer
8874 (ops, "libraries", annex, readbuf, offset, len,
8875 &remote_protocol_packets[PACKET_qXfer_libraries]);
8876
8877 case TARGET_OBJECT_LIBRARIES_SVR4:
8878 return remote_read_qxfer
8879 (ops, "libraries-svr4", annex, readbuf, offset, len,
8880 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
8881
8882 case TARGET_OBJECT_MEMORY_MAP:
8883 gdb_assert (annex == NULL);
8884 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
8885 &remote_protocol_packets[PACKET_qXfer_memory_map]);
8886
8887 case TARGET_OBJECT_OSDATA:
8888 /* Should only get here if we're connected. */
8889 gdb_assert (remote_desc);
8890 return remote_read_qxfer
8891 (ops, "osdata", annex, readbuf, offset, len,
8892 &remote_protocol_packets[PACKET_qXfer_osdata]);
8893
8894 case TARGET_OBJECT_THREADS:
8895 gdb_assert (annex == NULL);
8896 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
8897 &remote_protocol_packets[PACKET_qXfer_threads]);
8898
8899 case TARGET_OBJECT_TRACEFRAME_INFO:
8900 gdb_assert (annex == NULL);
8901 return remote_read_qxfer
8902 (ops, "traceframe-info", annex, readbuf, offset, len,
8903 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
8904
8905 case TARGET_OBJECT_FDPIC:
8906 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
8907 &remote_protocol_packets[PACKET_qXfer_fdpic]);
8908
8909 case TARGET_OBJECT_OPENVMS_UIB:
8910 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
8911 &remote_protocol_packets[PACKET_qXfer_uib]);
8912
8913 case TARGET_OBJECT_BTRACE:
8914 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
8915 &remote_protocol_packets[PACKET_qXfer_btrace]);
8916
8917 default:
8918 return -1;
8919 }
8920
8921 /* Note: a zero OFFSET and LEN can be used to query the minimum
8922 buffer size. */
8923 if (offset == 0 && len == 0)
8924 return (get_remote_packet_size ());
8925 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
8926 large enough let the caller deal with it. */
8927 if (len < get_remote_packet_size ())
8928 return -1;
8929 len = get_remote_packet_size ();
8930
8931 /* Except for querying the minimum buffer size, target must be open. */
8932 if (!remote_desc)
8933 error (_("remote query is only available after target open"));
8934
8935 gdb_assert (annex != NULL);
8936 gdb_assert (readbuf != NULL);
8937
8938 p2 = rs->buf;
8939 *p2++ = 'q';
8940 *p2++ = query_type;
8941
8942 /* We used one buffer char for the remote protocol q command and
8943 another for the query type. As the remote protocol encapsulation
8944 uses 4 chars plus one extra in case we are debugging
8945 (remote_debug), we have PBUFZIZ - 7 left to pack the query
8946 string. */
8947 i = 0;
8948 while (annex[i] && (i < (get_remote_packet_size () - 8)))
8949 {
8950 /* Bad caller may have sent forbidden characters. */
8951 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
8952 *p2++ = annex[i];
8953 i++;
8954 }
8955 *p2 = '\0';
8956 gdb_assert (annex[i] == '\0');
8957
8958 i = putpkt (rs->buf);
8959 if (i < 0)
8960 return i;
8961
8962 getpkt (&rs->buf, &rs->buf_size, 0);
8963 strcpy ((char *) readbuf, rs->buf);
8964
8965 return strlen ((char *) readbuf);
8966 }
8967
8968 static int
8969 remote_search_memory (struct target_ops* ops,
8970 CORE_ADDR start_addr, ULONGEST search_space_len,
8971 const gdb_byte *pattern, ULONGEST pattern_len,
8972 CORE_ADDR *found_addrp)
8973 {
8974 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8975 struct remote_state *rs = get_remote_state ();
8976 int max_size = get_memory_write_packet_size ();
8977 struct packet_config *packet =
8978 &remote_protocol_packets[PACKET_qSearch_memory];
8979 /* Number of packet bytes used to encode the pattern;
8980 this could be more than PATTERN_LEN due to escape characters. */
8981 int escaped_pattern_len;
8982 /* Amount of pattern that was encodable in the packet. */
8983 int used_pattern_len;
8984 int i;
8985 int found;
8986 ULONGEST found_addr;
8987
8988 /* Don't go to the target if we don't have to.
8989 This is done before checking packet->support to avoid the possibility that
8990 a success for this edge case means the facility works in general. */
8991 if (pattern_len > search_space_len)
8992 return 0;
8993 if (pattern_len == 0)
8994 {
8995 *found_addrp = start_addr;
8996 return 1;
8997 }
8998
8999 /* If we already know the packet isn't supported, fall back to the simple
9000 way of searching memory. */
9001
9002 if (packet->support == PACKET_DISABLE)
9003 {
9004 /* Target doesn't provided special support, fall back and use the
9005 standard support (copy memory and do the search here). */
9006 return simple_search_memory (ops, start_addr, search_space_len,
9007 pattern, pattern_len, found_addrp);
9008 }
9009
9010 /* Make sure the remote is pointing at the right process. */
9011 set_general_process ();
9012
9013 /* Insert header. */
9014 i = snprintf (rs->buf, max_size,
9015 "qSearch:memory:%s;%s;",
9016 phex_nz (start_addr, addr_size),
9017 phex_nz (search_space_len, sizeof (search_space_len)));
9018 max_size -= (i + 1);
9019
9020 /* Escape as much data as fits into rs->buf. */
9021 escaped_pattern_len =
9022 remote_escape_output (pattern, pattern_len, (gdb_byte *) rs->buf + i,
9023 &used_pattern_len, max_size);
9024
9025 /* Bail if the pattern is too large. */
9026 if (used_pattern_len != pattern_len)
9027 error (_("Pattern is too large to transmit to remote target."));
9028
9029 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
9030 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9031 || packet_ok (rs->buf, packet) != PACKET_OK)
9032 {
9033 /* The request may not have worked because the command is not
9034 supported. If so, fall back to the simple way. */
9035 if (packet->support == PACKET_DISABLE)
9036 {
9037 return simple_search_memory (ops, start_addr, search_space_len,
9038 pattern, pattern_len, found_addrp);
9039 }
9040 return -1;
9041 }
9042
9043 if (rs->buf[0] == '0')
9044 found = 0;
9045 else if (rs->buf[0] == '1')
9046 {
9047 found = 1;
9048 if (rs->buf[1] != ',')
9049 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
9050 unpack_varlen_hex (rs->buf + 2, &found_addr);
9051 *found_addrp = found_addr;
9052 }
9053 else
9054 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
9055
9056 return found;
9057 }
9058
9059 static void
9060 remote_rcmd (char *command,
9061 struct ui_file *outbuf)
9062 {
9063 struct remote_state *rs = get_remote_state ();
9064 char *p = rs->buf;
9065
9066 if (!remote_desc)
9067 error (_("remote rcmd is only available after target open"));
9068
9069 /* Send a NULL command across as an empty command. */
9070 if (command == NULL)
9071 command = "";
9072
9073 /* The query prefix. */
9074 strcpy (rs->buf, "qRcmd,");
9075 p = strchr (rs->buf, '\0');
9076
9077 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
9078 > get_remote_packet_size ())
9079 error (_("\"monitor\" command ``%s'' is too long."), command);
9080
9081 /* Encode the actual command. */
9082 bin2hex ((gdb_byte *) command, p, 0);
9083
9084 if (putpkt (rs->buf) < 0)
9085 error (_("Communication problem with target."));
9086
9087 /* get/display the response */
9088 while (1)
9089 {
9090 char *buf;
9091
9092 /* XXX - see also remote_get_noisy_reply(). */
9093 QUIT; /* Allow user to bail out with ^C. */
9094 rs->buf[0] = '\0';
9095 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
9096 {
9097 /* Timeout. Continue to (try to) read responses.
9098 This is better than stopping with an error, assuming the stub
9099 is still executing the (long) monitor command.
9100 If needed, the user can interrupt gdb using C-c, obtaining
9101 an effect similar to stop on timeout. */
9102 continue;
9103 }
9104 buf = rs->buf;
9105 if (buf[0] == '\0')
9106 error (_("Target does not support this command."));
9107 if (buf[0] == 'O' && buf[1] != 'K')
9108 {
9109 remote_console_output (buf + 1); /* 'O' message from stub. */
9110 continue;
9111 }
9112 if (strcmp (buf, "OK") == 0)
9113 break;
9114 if (strlen (buf) == 3 && buf[0] == 'E'
9115 && isdigit (buf[1]) && isdigit (buf[2]))
9116 {
9117 error (_("Protocol error with Rcmd"));
9118 }
9119 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
9120 {
9121 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
9122
9123 fputc_unfiltered (c, outbuf);
9124 }
9125 break;
9126 }
9127 }
9128
9129 static VEC(mem_region_s) *
9130 remote_memory_map (struct target_ops *ops)
9131 {
9132 VEC(mem_region_s) *result = NULL;
9133 char *text = target_read_stralloc (&current_target,
9134 TARGET_OBJECT_MEMORY_MAP, NULL);
9135
9136 if (text)
9137 {
9138 struct cleanup *back_to = make_cleanup (xfree, text);
9139
9140 result = parse_memory_map (text);
9141 do_cleanups (back_to);
9142 }
9143
9144 return result;
9145 }
9146
9147 static void
9148 packet_command (char *args, int from_tty)
9149 {
9150 struct remote_state *rs = get_remote_state ();
9151
9152 if (!remote_desc)
9153 error (_("command can only be used with remote target"));
9154
9155 if (!args)
9156 error (_("remote-packet command requires packet text as argument"));
9157
9158 puts_filtered ("sending: ");
9159 print_packet (args);
9160 puts_filtered ("\n");
9161 putpkt (args);
9162
9163 getpkt (&rs->buf, &rs->buf_size, 0);
9164 puts_filtered ("received: ");
9165 print_packet (rs->buf);
9166 puts_filtered ("\n");
9167 }
9168
9169 #if 0
9170 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
9171
9172 static void display_thread_info (struct gdb_ext_thread_info *info);
9173
9174 static void threadset_test_cmd (char *cmd, int tty);
9175
9176 static void threadalive_test (char *cmd, int tty);
9177
9178 static void threadlist_test_cmd (char *cmd, int tty);
9179
9180 int get_and_display_threadinfo (threadref *ref);
9181
9182 static void threadinfo_test_cmd (char *cmd, int tty);
9183
9184 static int thread_display_step (threadref *ref, void *context);
9185
9186 static void threadlist_update_test_cmd (char *cmd, int tty);
9187
9188 static void init_remote_threadtests (void);
9189
9190 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
9191
9192 static void
9193 threadset_test_cmd (char *cmd, int tty)
9194 {
9195 int sample_thread = SAMPLE_THREAD;
9196
9197 printf_filtered (_("Remote threadset test\n"));
9198 set_general_thread (sample_thread);
9199 }
9200
9201
9202 static void
9203 threadalive_test (char *cmd, int tty)
9204 {
9205 int sample_thread = SAMPLE_THREAD;
9206 int pid = ptid_get_pid (inferior_ptid);
9207 ptid_t ptid = ptid_build (pid, 0, sample_thread);
9208
9209 if (remote_thread_alive (ptid))
9210 printf_filtered ("PASS: Thread alive test\n");
9211 else
9212 printf_filtered ("FAIL: Thread alive test\n");
9213 }
9214
9215 void output_threadid (char *title, threadref *ref);
9216
9217 void
9218 output_threadid (char *title, threadref *ref)
9219 {
9220 char hexid[20];
9221
9222 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
9223 hexid[16] = 0;
9224 printf_filtered ("%s %s\n", title, (&hexid[0]));
9225 }
9226
9227 static void
9228 threadlist_test_cmd (char *cmd, int tty)
9229 {
9230 int startflag = 1;
9231 threadref nextthread;
9232 int done, result_count;
9233 threadref threadlist[3];
9234
9235 printf_filtered ("Remote Threadlist test\n");
9236 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
9237 &result_count, &threadlist[0]))
9238 printf_filtered ("FAIL: threadlist test\n");
9239 else
9240 {
9241 threadref *scan = threadlist;
9242 threadref *limit = scan + result_count;
9243
9244 while (scan < limit)
9245 output_threadid (" thread ", scan++);
9246 }
9247 }
9248
9249 void
9250 display_thread_info (struct gdb_ext_thread_info *info)
9251 {
9252 output_threadid ("Threadid: ", &info->threadid);
9253 printf_filtered ("Name: %s\n ", info->shortname);
9254 printf_filtered ("State: %s\n", info->display);
9255 printf_filtered ("other: %s\n\n", info->more_display);
9256 }
9257
9258 int
9259 get_and_display_threadinfo (threadref *ref)
9260 {
9261 int result;
9262 int set;
9263 struct gdb_ext_thread_info threadinfo;
9264
9265 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
9266 | TAG_MOREDISPLAY | TAG_DISPLAY;
9267 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
9268 display_thread_info (&threadinfo);
9269 return result;
9270 }
9271
9272 static void
9273 threadinfo_test_cmd (char *cmd, int tty)
9274 {
9275 int athread = SAMPLE_THREAD;
9276 threadref thread;
9277 int set;
9278
9279 int_to_threadref (&thread, athread);
9280 printf_filtered ("Remote Threadinfo test\n");
9281 if (!get_and_display_threadinfo (&thread))
9282 printf_filtered ("FAIL cannot get thread info\n");
9283 }
9284
9285 static int
9286 thread_display_step (threadref *ref, void *context)
9287 {
9288 /* output_threadid(" threadstep ",ref); *//* simple test */
9289 return get_and_display_threadinfo (ref);
9290 }
9291
9292 static void
9293 threadlist_update_test_cmd (char *cmd, int tty)
9294 {
9295 printf_filtered ("Remote Threadlist update test\n");
9296 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
9297 }
9298
9299 static void
9300 init_remote_threadtests (void)
9301 {
9302 add_com ("tlist", class_obscure, threadlist_test_cmd,
9303 _("Fetch and print the remote list of "
9304 "thread identifiers, one pkt only"));
9305 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
9306 _("Fetch and display info about one thread"));
9307 add_com ("tset", class_obscure, threadset_test_cmd,
9308 _("Test setting to a different thread"));
9309 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
9310 _("Iterate through updating all remote thread info"));
9311 add_com ("talive", class_obscure, threadalive_test,
9312 _(" Remote thread alive test "));
9313 }
9314
9315 #endif /* 0 */
9316
9317 /* Convert a thread ID to a string. Returns the string in a static
9318 buffer. */
9319
9320 static char *
9321 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
9322 {
9323 static char buf[64];
9324 struct remote_state *rs = get_remote_state ();
9325
9326 if (ptid_equal (ptid, null_ptid))
9327 return normal_pid_to_str (ptid);
9328 else if (ptid_is_pid (ptid))
9329 {
9330 /* Printing an inferior target id. */
9331
9332 /* When multi-process extensions are off, there's no way in the
9333 remote protocol to know the remote process id, if there's any
9334 at all. There's one exception --- when we're connected with
9335 target extended-remote, and we manually attached to a process
9336 with "attach PID". We don't record anywhere a flag that
9337 allows us to distinguish that case from the case of
9338 connecting with extended-remote and the stub already being
9339 attached to a process, and reporting yes to qAttached, hence
9340 no smart special casing here. */
9341 if (!remote_multi_process_p (rs))
9342 {
9343 xsnprintf (buf, sizeof buf, "Remote target");
9344 return buf;
9345 }
9346
9347 return normal_pid_to_str (ptid);
9348 }
9349 else
9350 {
9351 if (ptid_equal (magic_null_ptid, ptid))
9352 xsnprintf (buf, sizeof buf, "Thread <main>");
9353 else if (rs->extended && remote_multi_process_p (rs))
9354 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
9355 ptid_get_pid (ptid), ptid_get_tid (ptid));
9356 else
9357 xsnprintf (buf, sizeof buf, "Thread %ld",
9358 ptid_get_tid (ptid));
9359 return buf;
9360 }
9361 }
9362
9363 /* Get the address of the thread local variable in OBJFILE which is
9364 stored at OFFSET within the thread local storage for thread PTID. */
9365
9366 static CORE_ADDR
9367 remote_get_thread_local_address (struct target_ops *ops,
9368 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
9369 {
9370 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
9371 {
9372 struct remote_state *rs = get_remote_state ();
9373 char *p = rs->buf;
9374 char *endp = rs->buf + get_remote_packet_size ();
9375 enum packet_result result;
9376
9377 strcpy (p, "qGetTLSAddr:");
9378 p += strlen (p);
9379 p = write_ptid (p, endp, ptid);
9380 *p++ = ',';
9381 p += hexnumstr (p, offset);
9382 *p++ = ',';
9383 p += hexnumstr (p, lm);
9384 *p++ = '\0';
9385
9386 putpkt (rs->buf);
9387 getpkt (&rs->buf, &rs->buf_size, 0);
9388 result = packet_ok (rs->buf,
9389 &remote_protocol_packets[PACKET_qGetTLSAddr]);
9390 if (result == PACKET_OK)
9391 {
9392 ULONGEST result;
9393
9394 unpack_varlen_hex (rs->buf, &result);
9395 return result;
9396 }
9397 else if (result == PACKET_UNKNOWN)
9398 throw_error (TLS_GENERIC_ERROR,
9399 _("Remote target doesn't support qGetTLSAddr packet"));
9400 else
9401 throw_error (TLS_GENERIC_ERROR,
9402 _("Remote target failed to process qGetTLSAddr request"));
9403 }
9404 else
9405 throw_error (TLS_GENERIC_ERROR,
9406 _("TLS not supported or disabled on this target"));
9407 /* Not reached. */
9408 return 0;
9409 }
9410
9411 /* Provide thread local base, i.e. Thread Information Block address.
9412 Returns 1 if ptid is found and thread_local_base is non zero. */
9413
9414 static int
9415 remote_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
9416 {
9417 if (remote_protocol_packets[PACKET_qGetTIBAddr].support != PACKET_DISABLE)
9418 {
9419 struct remote_state *rs = get_remote_state ();
9420 char *p = rs->buf;
9421 char *endp = rs->buf + get_remote_packet_size ();
9422 enum packet_result result;
9423
9424 strcpy (p, "qGetTIBAddr:");
9425 p += strlen (p);
9426 p = write_ptid (p, endp, ptid);
9427 *p++ = '\0';
9428
9429 putpkt (rs->buf);
9430 getpkt (&rs->buf, &rs->buf_size, 0);
9431 result = packet_ok (rs->buf,
9432 &remote_protocol_packets[PACKET_qGetTIBAddr]);
9433 if (result == PACKET_OK)
9434 {
9435 ULONGEST result;
9436
9437 unpack_varlen_hex (rs->buf, &result);
9438 if (addr)
9439 *addr = (CORE_ADDR) result;
9440 return 1;
9441 }
9442 else if (result == PACKET_UNKNOWN)
9443 error (_("Remote target doesn't support qGetTIBAddr packet"));
9444 else
9445 error (_("Remote target failed to process qGetTIBAddr request"));
9446 }
9447 else
9448 error (_("qGetTIBAddr not supported or disabled on this target"));
9449 /* Not reached. */
9450 return 0;
9451 }
9452
9453 /* Support for inferring a target description based on the current
9454 architecture and the size of a 'g' packet. While the 'g' packet
9455 can have any size (since optional registers can be left off the
9456 end), some sizes are easily recognizable given knowledge of the
9457 approximate architecture. */
9458
9459 struct remote_g_packet_guess
9460 {
9461 int bytes;
9462 const struct target_desc *tdesc;
9463 };
9464 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
9465 DEF_VEC_O(remote_g_packet_guess_s);
9466
9467 struct remote_g_packet_data
9468 {
9469 VEC(remote_g_packet_guess_s) *guesses;
9470 };
9471
9472 static struct gdbarch_data *remote_g_packet_data_handle;
9473
9474 static void *
9475 remote_g_packet_data_init (struct obstack *obstack)
9476 {
9477 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
9478 }
9479
9480 void
9481 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
9482 const struct target_desc *tdesc)
9483 {
9484 struct remote_g_packet_data *data
9485 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
9486 struct remote_g_packet_guess new_guess, *guess;
9487 int ix;
9488
9489 gdb_assert (tdesc != NULL);
9490
9491 for (ix = 0;
9492 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9493 ix++)
9494 if (guess->bytes == bytes)
9495 internal_error (__FILE__, __LINE__,
9496 _("Duplicate g packet description added for size %d"),
9497 bytes);
9498
9499 new_guess.bytes = bytes;
9500 new_guess.tdesc = tdesc;
9501 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
9502 }
9503
9504 /* Return 1 if remote_read_description would do anything on this target
9505 and architecture, 0 otherwise. */
9506
9507 static int
9508 remote_read_description_p (struct target_ops *target)
9509 {
9510 struct remote_g_packet_data *data
9511 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
9512
9513 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9514 return 1;
9515
9516 return 0;
9517 }
9518
9519 static const struct target_desc *
9520 remote_read_description (struct target_ops *target)
9521 {
9522 struct remote_g_packet_data *data
9523 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
9524
9525 /* Do not try this during initial connection, when we do not know
9526 whether there is a running but stopped thread. */
9527 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
9528 return NULL;
9529
9530 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9531 {
9532 struct remote_g_packet_guess *guess;
9533 int ix;
9534 int bytes = send_g_packet ();
9535
9536 for (ix = 0;
9537 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9538 ix++)
9539 if (guess->bytes == bytes)
9540 return guess->tdesc;
9541
9542 /* We discard the g packet. A minor optimization would be to
9543 hold on to it, and fill the register cache once we have selected
9544 an architecture, but it's too tricky to do safely. */
9545 }
9546
9547 return NULL;
9548 }
9549
9550 /* Remote file transfer support. This is host-initiated I/O, not
9551 target-initiated; for target-initiated, see remote-fileio.c. */
9552
9553 /* If *LEFT is at least the length of STRING, copy STRING to
9554 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9555 decrease *LEFT. Otherwise raise an error. */
9556
9557 static void
9558 remote_buffer_add_string (char **buffer, int *left, char *string)
9559 {
9560 int len = strlen (string);
9561
9562 if (len > *left)
9563 error (_("Packet too long for target."));
9564
9565 memcpy (*buffer, string, len);
9566 *buffer += len;
9567 *left -= len;
9568
9569 /* NUL-terminate the buffer as a convenience, if there is
9570 room. */
9571 if (*left)
9572 **buffer = '\0';
9573 }
9574
9575 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
9576 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9577 decrease *LEFT. Otherwise raise an error. */
9578
9579 static void
9580 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
9581 int len)
9582 {
9583 if (2 * len > *left)
9584 error (_("Packet too long for target."));
9585
9586 bin2hex (bytes, *buffer, len);
9587 *buffer += 2 * len;
9588 *left -= 2 * len;
9589
9590 /* NUL-terminate the buffer as a convenience, if there is
9591 room. */
9592 if (*left)
9593 **buffer = '\0';
9594 }
9595
9596 /* If *LEFT is large enough, convert VALUE to hex and add it to
9597 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9598 decrease *LEFT. Otherwise raise an error. */
9599
9600 static void
9601 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
9602 {
9603 int len = hexnumlen (value);
9604
9605 if (len > *left)
9606 error (_("Packet too long for target."));
9607
9608 hexnumstr (*buffer, value);
9609 *buffer += len;
9610 *left -= len;
9611
9612 /* NUL-terminate the buffer as a convenience, if there is
9613 room. */
9614 if (*left)
9615 **buffer = '\0';
9616 }
9617
9618 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
9619 value, *REMOTE_ERRNO to the remote error number or zero if none
9620 was included, and *ATTACHMENT to point to the start of the annex
9621 if any. The length of the packet isn't needed here; there may
9622 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
9623
9624 Return 0 if the packet could be parsed, -1 if it could not. If
9625 -1 is returned, the other variables may not be initialized. */
9626
9627 static int
9628 remote_hostio_parse_result (char *buffer, int *retcode,
9629 int *remote_errno, char **attachment)
9630 {
9631 char *p, *p2;
9632
9633 *remote_errno = 0;
9634 *attachment = NULL;
9635
9636 if (buffer[0] != 'F')
9637 return -1;
9638
9639 errno = 0;
9640 *retcode = strtol (&buffer[1], &p, 16);
9641 if (errno != 0 || p == &buffer[1])
9642 return -1;
9643
9644 /* Check for ",errno". */
9645 if (*p == ',')
9646 {
9647 errno = 0;
9648 *remote_errno = strtol (p + 1, &p2, 16);
9649 if (errno != 0 || p + 1 == p2)
9650 return -1;
9651 p = p2;
9652 }
9653
9654 /* Check for ";attachment". If there is no attachment, the
9655 packet should end here. */
9656 if (*p == ';')
9657 {
9658 *attachment = p + 1;
9659 return 0;
9660 }
9661 else if (*p == '\0')
9662 return 0;
9663 else
9664 return -1;
9665 }
9666
9667 /* Send a prepared I/O packet to the target and read its response.
9668 The prepared packet is in the global RS->BUF before this function
9669 is called, and the answer is there when we return.
9670
9671 COMMAND_BYTES is the length of the request to send, which may include
9672 binary data. WHICH_PACKET is the packet configuration to check
9673 before attempting a packet. If an error occurs, *REMOTE_ERRNO
9674 is set to the error number and -1 is returned. Otherwise the value
9675 returned by the function is returned.
9676
9677 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
9678 attachment is expected; an error will be reported if there's a
9679 mismatch. If one is found, *ATTACHMENT will be set to point into
9680 the packet buffer and *ATTACHMENT_LEN will be set to the
9681 attachment's length. */
9682
9683 static int
9684 remote_hostio_send_command (int command_bytes, int which_packet,
9685 int *remote_errno, char **attachment,
9686 int *attachment_len)
9687 {
9688 struct remote_state *rs = get_remote_state ();
9689 int ret, bytes_read;
9690 char *attachment_tmp;
9691
9692 if (!remote_desc
9693 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
9694 {
9695 *remote_errno = FILEIO_ENOSYS;
9696 return -1;
9697 }
9698
9699 putpkt_binary (rs->buf, command_bytes);
9700 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9701
9702 /* If it timed out, something is wrong. Don't try to parse the
9703 buffer. */
9704 if (bytes_read < 0)
9705 {
9706 *remote_errno = FILEIO_EINVAL;
9707 return -1;
9708 }
9709
9710 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
9711 {
9712 case PACKET_ERROR:
9713 *remote_errno = FILEIO_EINVAL;
9714 return -1;
9715 case PACKET_UNKNOWN:
9716 *remote_errno = FILEIO_ENOSYS;
9717 return -1;
9718 case PACKET_OK:
9719 break;
9720 }
9721
9722 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
9723 &attachment_tmp))
9724 {
9725 *remote_errno = FILEIO_EINVAL;
9726 return -1;
9727 }
9728
9729 /* Make sure we saw an attachment if and only if we expected one. */
9730 if ((attachment_tmp == NULL && attachment != NULL)
9731 || (attachment_tmp != NULL && attachment == NULL))
9732 {
9733 *remote_errno = FILEIO_EINVAL;
9734 return -1;
9735 }
9736
9737 /* If an attachment was found, it must point into the packet buffer;
9738 work out how many bytes there were. */
9739 if (attachment_tmp != NULL)
9740 {
9741 *attachment = attachment_tmp;
9742 *attachment_len = bytes_read - (*attachment - rs->buf);
9743 }
9744
9745 return ret;
9746 }
9747
9748 /* Open FILENAME on the remote target, using FLAGS and MODE. Return a
9749 remote file descriptor, or -1 if an error occurs (and set
9750 *REMOTE_ERRNO). */
9751
9752 static int
9753 remote_hostio_open (const char *filename, int flags, int mode,
9754 int *remote_errno)
9755 {
9756 struct remote_state *rs = get_remote_state ();
9757 char *p = rs->buf;
9758 int left = get_remote_packet_size () - 1;
9759
9760 remote_buffer_add_string (&p, &left, "vFile:open:");
9761
9762 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9763 strlen (filename));
9764 remote_buffer_add_string (&p, &left, ",");
9765
9766 remote_buffer_add_int (&p, &left, flags);
9767 remote_buffer_add_string (&p, &left, ",");
9768
9769 remote_buffer_add_int (&p, &left, mode);
9770
9771 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
9772 remote_errno, NULL, NULL);
9773 }
9774
9775 /* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
9776 Return the number of bytes written, or -1 if an error occurs (and
9777 set *REMOTE_ERRNO). */
9778
9779 static int
9780 remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
9781 ULONGEST offset, int *remote_errno)
9782 {
9783 struct remote_state *rs = get_remote_state ();
9784 char *p = rs->buf;
9785 int left = get_remote_packet_size ();
9786 int out_len;
9787
9788 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
9789
9790 remote_buffer_add_int (&p, &left, fd);
9791 remote_buffer_add_string (&p, &left, ",");
9792
9793 remote_buffer_add_int (&p, &left, offset);
9794 remote_buffer_add_string (&p, &left, ",");
9795
9796 p += remote_escape_output (write_buf, len, (gdb_byte *) p, &out_len,
9797 get_remote_packet_size () - (p - rs->buf));
9798
9799 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
9800 remote_errno, NULL, NULL);
9801 }
9802
9803 /* Read up to LEN bytes FD on the remote target into READ_BUF
9804 Return the number of bytes read, or -1 if an error occurs (and
9805 set *REMOTE_ERRNO). */
9806
9807 static int
9808 remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
9809 ULONGEST offset, int *remote_errno)
9810 {
9811 struct remote_state *rs = get_remote_state ();
9812 char *p = rs->buf;
9813 char *attachment;
9814 int left = get_remote_packet_size ();
9815 int ret, attachment_len;
9816 int read_len;
9817
9818 remote_buffer_add_string (&p, &left, "vFile:pread:");
9819
9820 remote_buffer_add_int (&p, &left, fd);
9821 remote_buffer_add_string (&p, &left, ",");
9822
9823 remote_buffer_add_int (&p, &left, len);
9824 remote_buffer_add_string (&p, &left, ",");
9825
9826 remote_buffer_add_int (&p, &left, offset);
9827
9828 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
9829 remote_errno, &attachment,
9830 &attachment_len);
9831
9832 if (ret < 0)
9833 return ret;
9834
9835 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
9836 read_buf, len);
9837 if (read_len != ret)
9838 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
9839
9840 return ret;
9841 }
9842
9843 /* Close FD on the remote target. Return 0, or -1 if an error occurs
9844 (and set *REMOTE_ERRNO). */
9845
9846 static int
9847 remote_hostio_close (int fd, int *remote_errno)
9848 {
9849 struct remote_state *rs = get_remote_state ();
9850 char *p = rs->buf;
9851 int left = get_remote_packet_size () - 1;
9852
9853 remote_buffer_add_string (&p, &left, "vFile:close:");
9854
9855 remote_buffer_add_int (&p, &left, fd);
9856
9857 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
9858 remote_errno, NULL, NULL);
9859 }
9860
9861 /* Unlink FILENAME on the remote target. Return 0, or -1 if an error
9862 occurs (and set *REMOTE_ERRNO). */
9863
9864 static int
9865 remote_hostio_unlink (const char *filename, int *remote_errno)
9866 {
9867 struct remote_state *rs = get_remote_state ();
9868 char *p = rs->buf;
9869 int left = get_remote_packet_size () - 1;
9870
9871 remote_buffer_add_string (&p, &left, "vFile:unlink:");
9872
9873 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9874 strlen (filename));
9875
9876 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
9877 remote_errno, NULL, NULL);
9878 }
9879
9880 /* Read value of symbolic link FILENAME on the remote target. Return
9881 a null-terminated string allocated via xmalloc, or NULL if an error
9882 occurs (and set *REMOTE_ERRNO). */
9883
9884 static char *
9885 remote_hostio_readlink (const char *filename, int *remote_errno)
9886 {
9887 struct remote_state *rs = get_remote_state ();
9888 char *p = rs->buf;
9889 char *attachment;
9890 int left = get_remote_packet_size ();
9891 int len, attachment_len;
9892 int read_len;
9893 char *ret;
9894
9895 remote_buffer_add_string (&p, &left, "vFile:readlink:");
9896
9897 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9898 strlen (filename));
9899
9900 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
9901 remote_errno, &attachment,
9902 &attachment_len);
9903
9904 if (len < 0)
9905 return NULL;
9906
9907 ret = xmalloc (len + 1);
9908
9909 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
9910 (gdb_byte *) ret, len);
9911 if (read_len != len)
9912 error (_("Readlink returned %d, but %d bytes."), len, read_len);
9913
9914 ret[len] = '\0';
9915 return ret;
9916 }
9917
9918 static int
9919 remote_fileio_errno_to_host (int errnum)
9920 {
9921 switch (errnum)
9922 {
9923 case FILEIO_EPERM:
9924 return EPERM;
9925 case FILEIO_ENOENT:
9926 return ENOENT;
9927 case FILEIO_EINTR:
9928 return EINTR;
9929 case FILEIO_EIO:
9930 return EIO;
9931 case FILEIO_EBADF:
9932 return EBADF;
9933 case FILEIO_EACCES:
9934 return EACCES;
9935 case FILEIO_EFAULT:
9936 return EFAULT;
9937 case FILEIO_EBUSY:
9938 return EBUSY;
9939 case FILEIO_EEXIST:
9940 return EEXIST;
9941 case FILEIO_ENODEV:
9942 return ENODEV;
9943 case FILEIO_ENOTDIR:
9944 return ENOTDIR;
9945 case FILEIO_EISDIR:
9946 return EISDIR;
9947 case FILEIO_EINVAL:
9948 return EINVAL;
9949 case FILEIO_ENFILE:
9950 return ENFILE;
9951 case FILEIO_EMFILE:
9952 return EMFILE;
9953 case FILEIO_EFBIG:
9954 return EFBIG;
9955 case FILEIO_ENOSPC:
9956 return ENOSPC;
9957 case FILEIO_ESPIPE:
9958 return ESPIPE;
9959 case FILEIO_EROFS:
9960 return EROFS;
9961 case FILEIO_ENOSYS:
9962 return ENOSYS;
9963 case FILEIO_ENAMETOOLONG:
9964 return ENAMETOOLONG;
9965 }
9966 return -1;
9967 }
9968
9969 static char *
9970 remote_hostio_error (int errnum)
9971 {
9972 int host_error = remote_fileio_errno_to_host (errnum);
9973
9974 if (host_error == -1)
9975 error (_("Unknown remote I/O error %d"), errnum);
9976 else
9977 error (_("Remote I/O error: %s"), safe_strerror (host_error));
9978 }
9979
9980 static void
9981 remote_hostio_close_cleanup (void *opaque)
9982 {
9983 int fd = *(int *) opaque;
9984 int remote_errno;
9985
9986 remote_hostio_close (fd, &remote_errno);
9987 }
9988
9989
9990 static void *
9991 remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
9992 {
9993 const char *filename = bfd_get_filename (abfd);
9994 int fd, remote_errno;
9995 int *stream;
9996
9997 gdb_assert (remote_filename_p (filename));
9998
9999 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
10000 if (fd == -1)
10001 {
10002 errno = remote_fileio_errno_to_host (remote_errno);
10003 bfd_set_error (bfd_error_system_call);
10004 return NULL;
10005 }
10006
10007 stream = xmalloc (sizeof (int));
10008 *stream = fd;
10009 return stream;
10010 }
10011
10012 static int
10013 remote_bfd_iovec_close (struct bfd *abfd, void *stream)
10014 {
10015 int fd = *(int *)stream;
10016 int remote_errno;
10017
10018 xfree (stream);
10019
10020 /* Ignore errors on close; these may happen if the remote
10021 connection was already torn down. */
10022 remote_hostio_close (fd, &remote_errno);
10023
10024 /* Zero means success. */
10025 return 0;
10026 }
10027
10028 static file_ptr
10029 remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
10030 file_ptr nbytes, file_ptr offset)
10031 {
10032 int fd = *(int *)stream;
10033 int remote_errno;
10034 file_ptr pos, bytes;
10035
10036 pos = 0;
10037 while (nbytes > pos)
10038 {
10039 bytes = remote_hostio_pread (fd, (gdb_byte *) buf + pos, nbytes - pos,
10040 offset + pos, &remote_errno);
10041 if (bytes == 0)
10042 /* Success, but no bytes, means end-of-file. */
10043 break;
10044 if (bytes == -1)
10045 {
10046 errno = remote_fileio_errno_to_host (remote_errno);
10047 bfd_set_error (bfd_error_system_call);
10048 return -1;
10049 }
10050
10051 pos += bytes;
10052 }
10053
10054 return pos;
10055 }
10056
10057 static int
10058 remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
10059 {
10060 /* FIXME: We should probably implement remote_hostio_stat. */
10061 sb->st_size = INT_MAX;
10062 return 0;
10063 }
10064
10065 int
10066 remote_filename_p (const char *filename)
10067 {
10068 return strncmp (filename, "remote:", 7) == 0;
10069 }
10070
10071 bfd *
10072 remote_bfd_open (const char *remote_file, const char *target)
10073 {
10074 bfd *abfd = gdb_bfd_openr_iovec (remote_file, target,
10075 remote_bfd_iovec_open, NULL,
10076 remote_bfd_iovec_pread,
10077 remote_bfd_iovec_close,
10078 remote_bfd_iovec_stat);
10079
10080 return abfd;
10081 }
10082
10083 void
10084 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
10085 {
10086 struct cleanup *back_to, *close_cleanup;
10087 int retcode, fd, remote_errno, bytes, io_size;
10088 FILE *file;
10089 gdb_byte *buffer;
10090 int bytes_in_buffer;
10091 int saw_eof;
10092 ULONGEST offset;
10093
10094 if (!remote_desc)
10095 error (_("command can only be used with remote target"));
10096
10097 file = gdb_fopen_cloexec (local_file, "rb");
10098 if (file == NULL)
10099 perror_with_name (local_file);
10100 back_to = make_cleanup_fclose (file);
10101
10102 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
10103 | FILEIO_O_TRUNC),
10104 0700, &remote_errno);
10105 if (fd == -1)
10106 remote_hostio_error (remote_errno);
10107
10108 /* Send up to this many bytes at once. They won't all fit in the
10109 remote packet limit, so we'll transfer slightly fewer. */
10110 io_size = get_remote_packet_size ();
10111 buffer = xmalloc (io_size);
10112 make_cleanup (xfree, buffer);
10113
10114 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
10115
10116 bytes_in_buffer = 0;
10117 saw_eof = 0;
10118 offset = 0;
10119 while (bytes_in_buffer || !saw_eof)
10120 {
10121 if (!saw_eof)
10122 {
10123 bytes = fread (buffer + bytes_in_buffer, 1,
10124 io_size - bytes_in_buffer,
10125 file);
10126 if (bytes == 0)
10127 {
10128 if (ferror (file))
10129 error (_("Error reading %s."), local_file);
10130 else
10131 {
10132 /* EOF. Unless there is something still in the
10133 buffer from the last iteration, we are done. */
10134 saw_eof = 1;
10135 if (bytes_in_buffer == 0)
10136 break;
10137 }
10138 }
10139 }
10140 else
10141 bytes = 0;
10142
10143 bytes += bytes_in_buffer;
10144 bytes_in_buffer = 0;
10145
10146 retcode = remote_hostio_pwrite (fd, buffer, bytes,
10147 offset, &remote_errno);
10148
10149 if (retcode < 0)
10150 remote_hostio_error (remote_errno);
10151 else if (retcode == 0)
10152 error (_("Remote write of %d bytes returned 0!"), bytes);
10153 else if (retcode < bytes)
10154 {
10155 /* Short write. Save the rest of the read data for the next
10156 write. */
10157 bytes_in_buffer = bytes - retcode;
10158 memmove (buffer, buffer + retcode, bytes_in_buffer);
10159 }
10160
10161 offset += retcode;
10162 }
10163
10164 discard_cleanups (close_cleanup);
10165 if (remote_hostio_close (fd, &remote_errno))
10166 remote_hostio_error (remote_errno);
10167
10168 if (from_tty)
10169 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
10170 do_cleanups (back_to);
10171 }
10172
10173 void
10174 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
10175 {
10176 struct cleanup *back_to, *close_cleanup;
10177 int fd, remote_errno, bytes, io_size;
10178 FILE *file;
10179 gdb_byte *buffer;
10180 ULONGEST offset;
10181
10182 if (!remote_desc)
10183 error (_("command can only be used with remote target"));
10184
10185 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
10186 if (fd == -1)
10187 remote_hostio_error (remote_errno);
10188
10189 file = gdb_fopen_cloexec (local_file, "wb");
10190 if (file == NULL)
10191 perror_with_name (local_file);
10192 back_to = make_cleanup_fclose (file);
10193
10194 /* Send up to this many bytes at once. They won't all fit in the
10195 remote packet limit, so we'll transfer slightly fewer. */
10196 io_size = get_remote_packet_size ();
10197 buffer = xmalloc (io_size);
10198 make_cleanup (xfree, buffer);
10199
10200 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
10201
10202 offset = 0;
10203 while (1)
10204 {
10205 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
10206 if (bytes == 0)
10207 /* Success, but no bytes, means end-of-file. */
10208 break;
10209 if (bytes == -1)
10210 remote_hostio_error (remote_errno);
10211
10212 offset += bytes;
10213
10214 bytes = fwrite (buffer, 1, bytes, file);
10215 if (bytes == 0)
10216 perror_with_name (local_file);
10217 }
10218
10219 discard_cleanups (close_cleanup);
10220 if (remote_hostio_close (fd, &remote_errno))
10221 remote_hostio_error (remote_errno);
10222
10223 if (from_tty)
10224 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
10225 do_cleanups (back_to);
10226 }
10227
10228 void
10229 remote_file_delete (const char *remote_file, int from_tty)
10230 {
10231 int retcode, remote_errno;
10232
10233 if (!remote_desc)
10234 error (_("command can only be used with remote target"));
10235
10236 retcode = remote_hostio_unlink (remote_file, &remote_errno);
10237 if (retcode == -1)
10238 remote_hostio_error (remote_errno);
10239
10240 if (from_tty)
10241 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
10242 }
10243
10244 static void
10245 remote_put_command (char *args, int from_tty)
10246 {
10247 struct cleanup *back_to;
10248 char **argv;
10249
10250 if (args == NULL)
10251 error_no_arg (_("file to put"));
10252
10253 argv = gdb_buildargv (args);
10254 back_to = make_cleanup_freeargv (argv);
10255 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
10256 error (_("Invalid parameters to remote put"));
10257
10258 remote_file_put (argv[0], argv[1], from_tty);
10259
10260 do_cleanups (back_to);
10261 }
10262
10263 static void
10264 remote_get_command (char *args, int from_tty)
10265 {
10266 struct cleanup *back_to;
10267 char **argv;
10268
10269 if (args == NULL)
10270 error_no_arg (_("file to get"));
10271
10272 argv = gdb_buildargv (args);
10273 back_to = make_cleanup_freeargv (argv);
10274 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
10275 error (_("Invalid parameters to remote get"));
10276
10277 remote_file_get (argv[0], argv[1], from_tty);
10278
10279 do_cleanups (back_to);
10280 }
10281
10282 static void
10283 remote_delete_command (char *args, int from_tty)
10284 {
10285 struct cleanup *back_to;
10286 char **argv;
10287
10288 if (args == NULL)
10289 error_no_arg (_("file to delete"));
10290
10291 argv = gdb_buildargv (args);
10292 back_to = make_cleanup_freeargv (argv);
10293 if (argv[0] == NULL || argv[1] != NULL)
10294 error (_("Invalid parameters to remote delete"));
10295
10296 remote_file_delete (argv[0], from_tty);
10297
10298 do_cleanups (back_to);
10299 }
10300
10301 static void
10302 remote_command (char *args, int from_tty)
10303 {
10304 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
10305 }
10306
10307 static int
10308 remote_can_execute_reverse (void)
10309 {
10310 if (remote_protocol_packets[PACKET_bs].support == PACKET_ENABLE
10311 || remote_protocol_packets[PACKET_bc].support == PACKET_ENABLE)
10312 return 1;
10313 else
10314 return 0;
10315 }
10316
10317 static int
10318 remote_supports_non_stop (void)
10319 {
10320 return 1;
10321 }
10322
10323 static int
10324 remote_supports_disable_randomization (void)
10325 {
10326 /* Only supported in extended mode. */
10327 return 0;
10328 }
10329
10330 static int
10331 remote_supports_multi_process (void)
10332 {
10333 struct remote_state *rs = get_remote_state ();
10334
10335 /* Only extended-remote handles being attached to multiple
10336 processes, even though plain remote can use the multi-process
10337 thread id extensions, so that GDB knows the target process's
10338 PID. */
10339 return rs->extended && remote_multi_process_p (rs);
10340 }
10341
10342 static int
10343 remote_supports_cond_tracepoints (void)
10344 {
10345 struct remote_state *rs = get_remote_state ();
10346
10347 return rs->cond_tracepoints;
10348 }
10349
10350 static int
10351 remote_supports_cond_breakpoints (void)
10352 {
10353 struct remote_state *rs = get_remote_state ();
10354
10355 return rs->cond_breakpoints;
10356 }
10357
10358 static int
10359 remote_supports_fast_tracepoints (void)
10360 {
10361 struct remote_state *rs = get_remote_state ();
10362
10363 return rs->fast_tracepoints;
10364 }
10365
10366 static int
10367 remote_supports_static_tracepoints (void)
10368 {
10369 struct remote_state *rs = get_remote_state ();
10370
10371 return rs->static_tracepoints;
10372 }
10373
10374 static int
10375 remote_supports_install_in_trace (void)
10376 {
10377 struct remote_state *rs = get_remote_state ();
10378
10379 return rs->install_in_trace;
10380 }
10381
10382 static int
10383 remote_supports_enable_disable_tracepoint (void)
10384 {
10385 struct remote_state *rs = get_remote_state ();
10386
10387 return rs->enable_disable_tracepoints;
10388 }
10389
10390 static int
10391 remote_supports_string_tracing (void)
10392 {
10393 struct remote_state *rs = get_remote_state ();
10394
10395 return rs->string_tracing;
10396 }
10397
10398 static int
10399 remote_can_run_breakpoint_commands (void)
10400 {
10401 struct remote_state *rs = get_remote_state ();
10402
10403 return rs->breakpoint_commands;
10404 }
10405
10406 static void
10407 remote_trace_init (void)
10408 {
10409 putpkt ("QTinit");
10410 remote_get_noisy_reply (&target_buf, &target_buf_size);
10411 if (strcmp (target_buf, "OK") != 0)
10412 error (_("Target does not support this command."));
10413 }
10414
10415 static void free_actions_list (char **actions_list);
10416 static void free_actions_list_cleanup_wrapper (void *);
10417 static void
10418 free_actions_list_cleanup_wrapper (void *al)
10419 {
10420 free_actions_list (al);
10421 }
10422
10423 static void
10424 free_actions_list (char **actions_list)
10425 {
10426 int ndx;
10427
10428 if (actions_list == 0)
10429 return;
10430
10431 for (ndx = 0; actions_list[ndx]; ndx++)
10432 xfree (actions_list[ndx]);
10433
10434 xfree (actions_list);
10435 }
10436
10437 /* Recursive routine to walk through command list including loops, and
10438 download packets for each command. */
10439
10440 static void
10441 remote_download_command_source (int num, ULONGEST addr,
10442 struct command_line *cmds)
10443 {
10444 struct remote_state *rs = get_remote_state ();
10445 struct command_line *cmd;
10446
10447 for (cmd = cmds; cmd; cmd = cmd->next)
10448 {
10449 QUIT; /* Allow user to bail out with ^C. */
10450 strcpy (rs->buf, "QTDPsrc:");
10451 encode_source_string (num, addr, "cmd", cmd->line,
10452 rs->buf + strlen (rs->buf),
10453 rs->buf_size - strlen (rs->buf));
10454 putpkt (rs->buf);
10455 remote_get_noisy_reply (&target_buf, &target_buf_size);
10456 if (strcmp (target_buf, "OK"))
10457 warning (_("Target does not support source download."));
10458
10459 if (cmd->control_type == while_control
10460 || cmd->control_type == while_stepping_control)
10461 {
10462 remote_download_command_source (num, addr, *cmd->body_list);
10463
10464 QUIT; /* Allow user to bail out with ^C. */
10465 strcpy (rs->buf, "QTDPsrc:");
10466 encode_source_string (num, addr, "cmd", "end",
10467 rs->buf + strlen (rs->buf),
10468 rs->buf_size - strlen (rs->buf));
10469 putpkt (rs->buf);
10470 remote_get_noisy_reply (&target_buf, &target_buf_size);
10471 if (strcmp (target_buf, "OK"))
10472 warning (_("Target does not support source download."));
10473 }
10474 }
10475 }
10476
10477 static void
10478 remote_download_tracepoint (struct bp_location *loc)
10479 {
10480 #define BUF_SIZE 2048
10481
10482 CORE_ADDR tpaddr;
10483 char addrbuf[40];
10484 char buf[BUF_SIZE];
10485 char **tdp_actions;
10486 char **stepping_actions;
10487 int ndx;
10488 struct cleanup *old_chain = NULL;
10489 struct agent_expr *aexpr;
10490 struct cleanup *aexpr_chain = NULL;
10491 char *pkt;
10492 struct breakpoint *b = loc->owner;
10493 struct tracepoint *t = (struct tracepoint *) b;
10494
10495 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
10496 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
10497 tdp_actions);
10498 (void) make_cleanup (free_actions_list_cleanup_wrapper,
10499 stepping_actions);
10500
10501 tpaddr = loc->address;
10502 sprintf_vma (addrbuf, tpaddr);
10503 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
10504 addrbuf, /* address */
10505 (b->enable_state == bp_enabled ? 'E' : 'D'),
10506 t->step_count, t->pass_count);
10507 /* Fast tracepoints are mostly handled by the target, but we can
10508 tell the target how big of an instruction block should be moved
10509 around. */
10510 if (b->type == bp_fast_tracepoint)
10511 {
10512 /* Only test for support at download time; we may not know
10513 target capabilities at definition time. */
10514 if (remote_supports_fast_tracepoints ())
10515 {
10516 int isize;
10517
10518 if (gdbarch_fast_tracepoint_valid_at (target_gdbarch (),
10519 tpaddr, &isize, NULL))
10520 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
10521 isize);
10522 else
10523 /* If it passed validation at definition but fails now,
10524 something is very wrong. */
10525 internal_error (__FILE__, __LINE__,
10526 _("Fast tracepoint not "
10527 "valid during download"));
10528 }
10529 else
10530 /* Fast tracepoints are functionally identical to regular
10531 tracepoints, so don't take lack of support as a reason to
10532 give up on the trace run. */
10533 warning (_("Target does not support fast tracepoints, "
10534 "downloading %d as regular tracepoint"), b->number);
10535 }
10536 else if (b->type == bp_static_tracepoint)
10537 {
10538 /* Only test for support at download time; we may not know
10539 target capabilities at definition time. */
10540 if (remote_supports_static_tracepoints ())
10541 {
10542 struct static_tracepoint_marker marker;
10543
10544 if (target_static_tracepoint_marker_at (tpaddr, &marker))
10545 strcat (buf, ":S");
10546 else
10547 error (_("Static tracepoint not valid during download"));
10548 }
10549 else
10550 /* Fast tracepoints are functionally identical to regular
10551 tracepoints, so don't take lack of support as a reason
10552 to give up on the trace run. */
10553 error (_("Target does not support static tracepoints"));
10554 }
10555 /* If the tracepoint has a conditional, make it into an agent
10556 expression and append to the definition. */
10557 if (loc->cond)
10558 {
10559 /* Only test support at download time, we may not know target
10560 capabilities at definition time. */
10561 if (remote_supports_cond_tracepoints ())
10562 {
10563 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
10564 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
10565 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
10566 aexpr->len);
10567 pkt = buf + strlen (buf);
10568 for (ndx = 0; ndx < aexpr->len; ++ndx)
10569 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
10570 *pkt = '\0';
10571 do_cleanups (aexpr_chain);
10572 }
10573 else
10574 warning (_("Target does not support conditional tracepoints, "
10575 "ignoring tp %d cond"), b->number);
10576 }
10577
10578 if (b->commands || *default_collect)
10579 strcat (buf, "-");
10580 putpkt (buf);
10581 remote_get_noisy_reply (&target_buf, &target_buf_size);
10582 if (strcmp (target_buf, "OK"))
10583 error (_("Target does not support tracepoints."));
10584
10585 /* do_single_steps (t); */
10586 if (tdp_actions)
10587 {
10588 for (ndx = 0; tdp_actions[ndx]; ndx++)
10589 {
10590 QUIT; /* Allow user to bail out with ^C. */
10591 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
10592 b->number, addrbuf, /* address */
10593 tdp_actions[ndx],
10594 ((tdp_actions[ndx + 1] || stepping_actions)
10595 ? '-' : 0));
10596 putpkt (buf);
10597 remote_get_noisy_reply (&target_buf,
10598 &target_buf_size);
10599 if (strcmp (target_buf, "OK"))
10600 error (_("Error on target while setting tracepoints."));
10601 }
10602 }
10603 if (stepping_actions)
10604 {
10605 for (ndx = 0; stepping_actions[ndx]; ndx++)
10606 {
10607 QUIT; /* Allow user to bail out with ^C. */
10608 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
10609 b->number, addrbuf, /* address */
10610 ((ndx == 0) ? "S" : ""),
10611 stepping_actions[ndx],
10612 (stepping_actions[ndx + 1] ? "-" : ""));
10613 putpkt (buf);
10614 remote_get_noisy_reply (&target_buf,
10615 &target_buf_size);
10616 if (strcmp (target_buf, "OK"))
10617 error (_("Error on target while setting tracepoints."));
10618 }
10619 }
10620
10621 if (remote_protocol_packets[PACKET_TracepointSource].support
10622 == PACKET_ENABLE)
10623 {
10624 if (b->addr_string)
10625 {
10626 strcpy (buf, "QTDPsrc:");
10627 encode_source_string (b->number, loc->address,
10628 "at", b->addr_string, buf + strlen (buf),
10629 2048 - strlen (buf));
10630
10631 putpkt (buf);
10632 remote_get_noisy_reply (&target_buf, &target_buf_size);
10633 if (strcmp (target_buf, "OK"))
10634 warning (_("Target does not support source download."));
10635 }
10636 if (b->cond_string)
10637 {
10638 strcpy (buf, "QTDPsrc:");
10639 encode_source_string (b->number, loc->address,
10640 "cond", b->cond_string, buf + strlen (buf),
10641 2048 - strlen (buf));
10642 putpkt (buf);
10643 remote_get_noisy_reply (&target_buf, &target_buf_size);
10644 if (strcmp (target_buf, "OK"))
10645 warning (_("Target does not support source download."));
10646 }
10647 remote_download_command_source (b->number, loc->address,
10648 breakpoint_commands (b));
10649 }
10650
10651 do_cleanups (old_chain);
10652 }
10653
10654 static int
10655 remote_can_download_tracepoint (void)
10656 {
10657 struct remote_state *rs = get_remote_state ();
10658 struct trace_status *ts;
10659 int status;
10660
10661 /* Don't try to install tracepoints until we've relocated our
10662 symbols, and fetched and merged the target's tracepoint list with
10663 ours. */
10664 if (rs->starting_up)
10665 return 0;
10666
10667 ts = current_trace_status ();
10668 status = remote_get_trace_status (ts);
10669
10670 if (status == -1 || !ts->running_known || !ts->running)
10671 return 0;
10672
10673 /* If we are in a tracing experiment, but remote stub doesn't support
10674 installing tracepoint in trace, we have to return. */
10675 if (!remote_supports_install_in_trace ())
10676 return 0;
10677
10678 return 1;
10679 }
10680
10681
10682 static void
10683 remote_download_trace_state_variable (struct trace_state_variable *tsv)
10684 {
10685 struct remote_state *rs = get_remote_state ();
10686 char *p;
10687
10688 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
10689 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
10690 tsv->builtin);
10691 p = rs->buf + strlen (rs->buf);
10692 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
10693 error (_("Trace state variable name too long for tsv definition packet"));
10694 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, 0);
10695 *p++ = '\0';
10696 putpkt (rs->buf);
10697 remote_get_noisy_reply (&target_buf, &target_buf_size);
10698 if (*target_buf == '\0')
10699 error (_("Target does not support this command."));
10700 if (strcmp (target_buf, "OK") != 0)
10701 error (_("Error on target while downloading trace state variable."));
10702 }
10703
10704 static void
10705 remote_enable_tracepoint (struct bp_location *location)
10706 {
10707 struct remote_state *rs = get_remote_state ();
10708 char addr_buf[40];
10709
10710 sprintf_vma (addr_buf, location->address);
10711 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
10712 location->owner->number, addr_buf);
10713 putpkt (rs->buf);
10714 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10715 if (*rs->buf == '\0')
10716 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
10717 if (strcmp (rs->buf, "OK") != 0)
10718 error (_("Error on target while enabling tracepoint."));
10719 }
10720
10721 static void
10722 remote_disable_tracepoint (struct bp_location *location)
10723 {
10724 struct remote_state *rs = get_remote_state ();
10725 char addr_buf[40];
10726
10727 sprintf_vma (addr_buf, location->address);
10728 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
10729 location->owner->number, addr_buf);
10730 putpkt (rs->buf);
10731 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10732 if (*rs->buf == '\0')
10733 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
10734 if (strcmp (rs->buf, "OK") != 0)
10735 error (_("Error on target while disabling tracepoint."));
10736 }
10737
10738 static void
10739 remote_trace_set_readonly_regions (void)
10740 {
10741 asection *s;
10742 bfd *abfd = NULL;
10743 bfd_size_type size;
10744 bfd_vma vma;
10745 int anysecs = 0;
10746 int offset = 0;
10747
10748 if (!exec_bfd)
10749 return; /* No information to give. */
10750
10751 strcpy (target_buf, "QTro");
10752 offset = strlen (target_buf);
10753 for (s = exec_bfd->sections; s; s = s->next)
10754 {
10755 char tmp1[40], tmp2[40];
10756 int sec_length;
10757
10758 if ((s->flags & SEC_LOAD) == 0 ||
10759 /* (s->flags & SEC_CODE) == 0 || */
10760 (s->flags & SEC_READONLY) == 0)
10761 continue;
10762
10763 anysecs = 1;
10764 vma = bfd_get_section_vma (abfd, s);
10765 size = bfd_get_section_size (s);
10766 sprintf_vma (tmp1, vma);
10767 sprintf_vma (tmp2, vma + size);
10768 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
10769 if (offset + sec_length + 1 > target_buf_size)
10770 {
10771 if (remote_protocol_packets[PACKET_qXfer_traceframe_info].support
10772 != PACKET_ENABLE)
10773 warning (_("\
10774 Too many sections for read-only sections definition packet."));
10775 break;
10776 }
10777 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
10778 tmp1, tmp2);
10779 offset += sec_length;
10780 }
10781 if (anysecs)
10782 {
10783 putpkt (target_buf);
10784 getpkt (&target_buf, &target_buf_size, 0);
10785 }
10786 }
10787
10788 static void
10789 remote_trace_start (void)
10790 {
10791 putpkt ("QTStart");
10792 remote_get_noisy_reply (&target_buf, &target_buf_size);
10793 if (*target_buf == '\0')
10794 error (_("Target does not support this command."));
10795 if (strcmp (target_buf, "OK") != 0)
10796 error (_("Bogus reply from target: %s"), target_buf);
10797 }
10798
10799 static int
10800 remote_get_trace_status (struct trace_status *ts)
10801 {
10802 /* Initialize it just to avoid a GCC false warning. */
10803 char *p = NULL;
10804 /* FIXME we need to get register block size some other way. */
10805 extern int trace_regblock_size;
10806 volatile struct gdb_exception ex;
10807 enum packet_result result;
10808
10809 if (remote_protocol_packets[PACKET_qTStatus].support == PACKET_DISABLE)
10810 return -1;
10811
10812 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
10813
10814 putpkt ("qTStatus");
10815
10816 TRY_CATCH (ex, RETURN_MASK_ERROR)
10817 {
10818 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
10819 }
10820 if (ex.reason < 0)
10821 {
10822 if (ex.error != TARGET_CLOSE_ERROR)
10823 {
10824 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
10825 return -1;
10826 }
10827 throw_exception (ex);
10828 }
10829
10830 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
10831
10832 /* If the remote target doesn't do tracing, flag it. */
10833 if (result == PACKET_UNKNOWN)
10834 return -1;
10835
10836 /* We're working with a live target. */
10837 ts->filename = NULL;
10838
10839 if (*p++ != 'T')
10840 error (_("Bogus trace status reply from target: %s"), target_buf);
10841
10842 /* Function 'parse_trace_status' sets default value of each field of
10843 'ts' at first, so we don't have to do it here. */
10844 parse_trace_status (p, ts);
10845
10846 return ts->running;
10847 }
10848
10849 static void
10850 remote_get_tracepoint_status (struct breakpoint *bp,
10851 struct uploaded_tp *utp)
10852 {
10853 struct remote_state *rs = get_remote_state ();
10854 char *reply;
10855 struct bp_location *loc;
10856 struct tracepoint *tp = (struct tracepoint *) bp;
10857 size_t size = get_remote_packet_size ();
10858
10859 if (tp)
10860 {
10861 tp->base.hit_count = 0;
10862 tp->traceframe_usage = 0;
10863 for (loc = tp->base.loc; loc; loc = loc->next)
10864 {
10865 /* If the tracepoint was never downloaded, don't go asking for
10866 any status. */
10867 if (tp->number_on_target == 0)
10868 continue;
10869 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
10870 phex_nz (loc->address, 0));
10871 putpkt (rs->buf);
10872 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10873 if (reply && *reply)
10874 {
10875 if (*reply == 'V')
10876 parse_tracepoint_status (reply + 1, bp, utp);
10877 }
10878 }
10879 }
10880 else if (utp)
10881 {
10882 utp->hit_count = 0;
10883 utp->traceframe_usage = 0;
10884 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
10885 phex_nz (utp->addr, 0));
10886 putpkt (rs->buf);
10887 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10888 if (reply && *reply)
10889 {
10890 if (*reply == 'V')
10891 parse_tracepoint_status (reply + 1, bp, utp);
10892 }
10893 }
10894 }
10895
10896 static void
10897 remote_trace_stop (void)
10898 {
10899 putpkt ("QTStop");
10900 remote_get_noisy_reply (&target_buf, &target_buf_size);
10901 if (*target_buf == '\0')
10902 error (_("Target does not support this command."));
10903 if (strcmp (target_buf, "OK") != 0)
10904 error (_("Bogus reply from target: %s"), target_buf);
10905 }
10906
10907 static int
10908 remote_trace_find (enum trace_find_type type, int num,
10909 CORE_ADDR addr1, CORE_ADDR addr2,
10910 int *tpp)
10911 {
10912 struct remote_state *rs = get_remote_state ();
10913 char *endbuf = rs->buf + get_remote_packet_size ();
10914 char *p, *reply;
10915 int target_frameno = -1, target_tracept = -1;
10916
10917 /* Lookups other than by absolute frame number depend on the current
10918 trace selected, so make sure it is correct on the remote end
10919 first. */
10920 if (type != tfind_number)
10921 set_remote_traceframe ();
10922
10923 p = rs->buf;
10924 strcpy (p, "QTFrame:");
10925 p = strchr (p, '\0');
10926 switch (type)
10927 {
10928 case tfind_number:
10929 xsnprintf (p, endbuf - p, "%x", num);
10930 break;
10931 case tfind_pc:
10932 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
10933 break;
10934 case tfind_tp:
10935 xsnprintf (p, endbuf - p, "tdp:%x", num);
10936 break;
10937 case tfind_range:
10938 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
10939 phex_nz (addr2, 0));
10940 break;
10941 case tfind_outside:
10942 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
10943 phex_nz (addr2, 0));
10944 break;
10945 default:
10946 error (_("Unknown trace find type %d"), type);
10947 }
10948
10949 putpkt (rs->buf);
10950 reply = remote_get_noisy_reply (&(rs->buf), &sizeof_pkt);
10951 if (*reply == '\0')
10952 error (_("Target does not support this command."));
10953
10954 while (reply && *reply)
10955 switch (*reply)
10956 {
10957 case 'F':
10958 p = ++reply;
10959 target_frameno = (int) strtol (p, &reply, 16);
10960 if (reply == p)
10961 error (_("Unable to parse trace frame number"));
10962 /* Don't update our remote traceframe number cache on failure
10963 to select a remote traceframe. */
10964 if (target_frameno == -1)
10965 return -1;
10966 break;
10967 case 'T':
10968 p = ++reply;
10969 target_tracept = (int) strtol (p, &reply, 16);
10970 if (reply == p)
10971 error (_("Unable to parse tracepoint number"));
10972 break;
10973 case 'O': /* "OK"? */
10974 if (reply[1] == 'K' && reply[2] == '\0')
10975 reply += 2;
10976 else
10977 error (_("Bogus reply from target: %s"), reply);
10978 break;
10979 default:
10980 error (_("Bogus reply from target: %s"), reply);
10981 }
10982 if (tpp)
10983 *tpp = target_tracept;
10984
10985 remote_traceframe_number = target_frameno;
10986 return target_frameno;
10987 }
10988
10989 static int
10990 remote_get_trace_state_variable_value (int tsvnum, LONGEST *val)
10991 {
10992 struct remote_state *rs = get_remote_state ();
10993 char *reply;
10994 ULONGEST uval;
10995
10996 set_remote_traceframe ();
10997
10998 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
10999 putpkt (rs->buf);
11000 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11001 if (reply && *reply)
11002 {
11003 if (*reply == 'V')
11004 {
11005 unpack_varlen_hex (reply + 1, &uval);
11006 *val = (LONGEST) uval;
11007 return 1;
11008 }
11009 }
11010 return 0;
11011 }
11012
11013 static int
11014 remote_save_trace_data (const char *filename)
11015 {
11016 struct remote_state *rs = get_remote_state ();
11017 char *p, *reply;
11018
11019 p = rs->buf;
11020 strcpy (p, "QTSave:");
11021 p += strlen (p);
11022 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
11023 error (_("Remote file name too long for trace save packet"));
11024 p += 2 * bin2hex ((gdb_byte *) filename, p, 0);
11025 *p++ = '\0';
11026 putpkt (rs->buf);
11027 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11028 if (*reply == '\0')
11029 error (_("Target does not support this command."));
11030 if (strcmp (reply, "OK") != 0)
11031 error (_("Bogus reply from target: %s"), reply);
11032 return 0;
11033 }
11034
11035 /* This is basically a memory transfer, but needs to be its own packet
11036 because we don't know how the target actually organizes its trace
11037 memory, plus we want to be able to ask for as much as possible, but
11038 not be unhappy if we don't get as much as we ask for. */
11039
11040 static LONGEST
11041 remote_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
11042 {
11043 struct remote_state *rs = get_remote_state ();
11044 char *reply;
11045 char *p;
11046 int rslt;
11047
11048 p = rs->buf;
11049 strcpy (p, "qTBuffer:");
11050 p += strlen (p);
11051 p += hexnumstr (p, offset);
11052 *p++ = ',';
11053 p += hexnumstr (p, len);
11054 *p++ = '\0';
11055
11056 putpkt (rs->buf);
11057 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11058 if (reply && *reply)
11059 {
11060 /* 'l' by itself means we're at the end of the buffer and
11061 there is nothing more to get. */
11062 if (*reply == 'l')
11063 return 0;
11064
11065 /* Convert the reply into binary. Limit the number of bytes to
11066 convert according to our passed-in buffer size, rather than
11067 what was returned in the packet; if the target is
11068 unexpectedly generous and gives us a bigger reply than we
11069 asked for, we don't want to crash. */
11070 rslt = hex2bin (target_buf, buf, len);
11071 return rslt;
11072 }
11073
11074 /* Something went wrong, flag as an error. */
11075 return -1;
11076 }
11077
11078 static void
11079 remote_set_disconnected_tracing (int val)
11080 {
11081 struct remote_state *rs = get_remote_state ();
11082
11083 if (rs->disconnected_tracing)
11084 {
11085 char *reply;
11086
11087 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
11088 putpkt (rs->buf);
11089 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11090 if (*reply == '\0')
11091 error (_("Target does not support this command."));
11092 if (strcmp (reply, "OK") != 0)
11093 error (_("Bogus reply from target: %s"), reply);
11094 }
11095 else if (val)
11096 warning (_("Target does not support disconnected tracing."));
11097 }
11098
11099 static int
11100 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
11101 {
11102 struct thread_info *info = find_thread_ptid (ptid);
11103
11104 if (info && info->private)
11105 return info->private->core;
11106 return -1;
11107 }
11108
11109 static void
11110 remote_set_circular_trace_buffer (int val)
11111 {
11112 struct remote_state *rs = get_remote_state ();
11113 char *reply;
11114
11115 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
11116 putpkt (rs->buf);
11117 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11118 if (*reply == '\0')
11119 error (_("Target does not support this command."));
11120 if (strcmp (reply, "OK") != 0)
11121 error (_("Bogus reply from target: %s"), reply);
11122 }
11123
11124 static struct traceframe_info *
11125 remote_traceframe_info (void)
11126 {
11127 char *text;
11128
11129 text = target_read_stralloc (&current_target,
11130 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
11131 if (text != NULL)
11132 {
11133 struct traceframe_info *info;
11134 struct cleanup *back_to = make_cleanup (xfree, text);
11135
11136 info = parse_traceframe_info (text);
11137 do_cleanups (back_to);
11138 return info;
11139 }
11140
11141 return NULL;
11142 }
11143
11144 /* Handle the qTMinFTPILen packet. Returns the minimum length of
11145 instruction on which a fast tracepoint may be placed. Returns -1
11146 if the packet is not supported, and 0 if the minimum instruction
11147 length is unknown. */
11148
11149 static int
11150 remote_get_min_fast_tracepoint_insn_len (void)
11151 {
11152 struct remote_state *rs = get_remote_state ();
11153 char *reply;
11154
11155 /* If we're not debugging a process yet, the IPA can't be
11156 loaded. */
11157 if (!target_has_execution)
11158 return 0;
11159
11160 /* Make sure the remote is pointing at the right process. */
11161 set_general_process ();
11162
11163 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
11164 putpkt (rs->buf);
11165 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11166 if (*reply == '\0')
11167 return -1;
11168 else
11169 {
11170 ULONGEST min_insn_len;
11171
11172 unpack_varlen_hex (reply, &min_insn_len);
11173
11174 return (int) min_insn_len;
11175 }
11176 }
11177
11178 static void
11179 remote_set_trace_buffer_size (LONGEST val)
11180 {
11181 if (remote_protocol_packets[PACKET_QTBuffer_size].support
11182 != PACKET_DISABLE)
11183 {
11184 struct remote_state *rs = get_remote_state ();
11185 char *buf = rs->buf;
11186 char *endbuf = rs->buf + get_remote_packet_size ();
11187 enum packet_result result;
11188
11189 gdb_assert (val >= 0 || val == -1);
11190 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
11191 /* Send -1 as literal "-1" to avoid host size dependency. */
11192 if (val < 0)
11193 {
11194 *buf++ = '-';
11195 buf += hexnumstr (buf, (ULONGEST) -val);
11196 }
11197 else
11198 buf += hexnumstr (buf, (ULONGEST) val);
11199
11200 putpkt (rs->buf);
11201 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
11202 result = packet_ok (rs->buf,
11203 &remote_protocol_packets[PACKET_QTBuffer_size]);
11204
11205 if (result != PACKET_OK)
11206 warning (_("Bogus reply from target: %s"), rs->buf);
11207 }
11208 }
11209
11210 static int
11211 remote_set_trace_notes (const char *user, const char *notes,
11212 const char *stop_notes)
11213 {
11214 struct remote_state *rs = get_remote_state ();
11215 char *reply;
11216 char *buf = rs->buf;
11217 char *endbuf = rs->buf + get_remote_packet_size ();
11218 int nbytes;
11219
11220 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
11221 if (user)
11222 {
11223 buf += xsnprintf (buf, endbuf - buf, "user:");
11224 nbytes = bin2hex ((gdb_byte *) user, buf, 0);
11225 buf += 2 * nbytes;
11226 *buf++ = ';';
11227 }
11228 if (notes)
11229 {
11230 buf += xsnprintf (buf, endbuf - buf, "notes:");
11231 nbytes = bin2hex ((gdb_byte *) notes, buf, 0);
11232 buf += 2 * nbytes;
11233 *buf++ = ';';
11234 }
11235 if (stop_notes)
11236 {
11237 buf += xsnprintf (buf, endbuf - buf, "tstop:");
11238 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, 0);
11239 buf += 2 * nbytes;
11240 *buf++ = ';';
11241 }
11242 /* Ensure the buffer is terminated. */
11243 *buf = '\0';
11244
11245 putpkt (rs->buf);
11246 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11247 if (*reply == '\0')
11248 return 0;
11249
11250 if (strcmp (reply, "OK") != 0)
11251 error (_("Bogus reply from target: %s"), reply);
11252
11253 return 1;
11254 }
11255
11256 static int
11257 remote_use_agent (int use)
11258 {
11259 if (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE)
11260 {
11261 struct remote_state *rs = get_remote_state ();
11262
11263 /* If the stub supports QAgent. */
11264 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
11265 putpkt (rs->buf);
11266 getpkt (&rs->buf, &rs->buf_size, 0);
11267
11268 if (strcmp (rs->buf, "OK") == 0)
11269 {
11270 use_agent = use;
11271 return 1;
11272 }
11273 }
11274
11275 return 0;
11276 }
11277
11278 static int
11279 remote_can_use_agent (void)
11280 {
11281 return (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE);
11282 }
11283
11284 struct btrace_target_info
11285 {
11286 /* The ptid of the traced thread. */
11287 ptid_t ptid;
11288 };
11289
11290 /* Check whether the target supports branch tracing. */
11291
11292 static int
11293 remote_supports_btrace (void)
11294 {
11295 if (remote_protocol_packets[PACKET_Qbtrace_off].support != PACKET_ENABLE)
11296 return 0;
11297 if (remote_protocol_packets[PACKET_Qbtrace_bts].support != PACKET_ENABLE)
11298 return 0;
11299 if (remote_protocol_packets[PACKET_qXfer_btrace].support != PACKET_ENABLE)
11300 return 0;
11301
11302 return 1;
11303 }
11304
11305 /* Enable branch tracing. */
11306
11307 static struct btrace_target_info *
11308 remote_enable_btrace (ptid_t ptid)
11309 {
11310 struct btrace_target_info *tinfo = NULL;
11311 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
11312 struct remote_state *rs = get_remote_state ();
11313 char *buf = rs->buf;
11314 char *endbuf = rs->buf + get_remote_packet_size ();
11315
11316 if (packet->support != PACKET_ENABLE)
11317 error (_("Target does not support branch tracing."));
11318
11319 set_general_thread (ptid);
11320
11321 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
11322 putpkt (rs->buf);
11323 getpkt (&rs->buf, &rs->buf_size, 0);
11324
11325 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
11326 {
11327 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
11328 error (_("Could not enable branch tracing for %s: %s"),
11329 target_pid_to_str (ptid), rs->buf + 2);
11330 else
11331 error (_("Could not enable branch tracing for %s."),
11332 target_pid_to_str (ptid));
11333 }
11334
11335 tinfo = xzalloc (sizeof (*tinfo));
11336 tinfo->ptid = ptid;
11337
11338 return tinfo;
11339 }
11340
11341 /* Disable branch tracing. */
11342
11343 static void
11344 remote_disable_btrace (struct btrace_target_info *tinfo)
11345 {
11346 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
11347 struct remote_state *rs = get_remote_state ();
11348 char *buf = rs->buf;
11349 char *endbuf = rs->buf + get_remote_packet_size ();
11350
11351 if (packet->support != PACKET_ENABLE)
11352 error (_("Target does not support branch tracing."));
11353
11354 set_general_thread (tinfo->ptid);
11355
11356 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
11357 putpkt (rs->buf);
11358 getpkt (&rs->buf, &rs->buf_size, 0);
11359
11360 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
11361 {
11362 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
11363 error (_("Could not disable branch tracing for %s: %s"),
11364 target_pid_to_str (tinfo->ptid), rs->buf + 2);
11365 else
11366 error (_("Could not disable branch tracing for %s."),
11367 target_pid_to_str (tinfo->ptid));
11368 }
11369
11370 xfree (tinfo);
11371 }
11372
11373 /* Teardown branch tracing. */
11374
11375 static void
11376 remote_teardown_btrace (struct btrace_target_info *tinfo)
11377 {
11378 /* We must not talk to the target during teardown. */
11379 xfree (tinfo);
11380 }
11381
11382 /* Read the branch trace. */
11383
11384 static VEC (btrace_block_s) *
11385 remote_read_btrace (struct btrace_target_info *tinfo,
11386 enum btrace_read_type type)
11387 {
11388 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
11389 struct remote_state *rs = get_remote_state ();
11390 VEC (btrace_block_s) *btrace = NULL;
11391 const char *annex;
11392 char *xml;
11393
11394 if (packet->support != PACKET_ENABLE)
11395 error (_("Target does not support branch tracing."));
11396
11397 #if !defined(HAVE_LIBEXPAT)
11398 error (_("Cannot process branch tracing result. XML parsing not supported."));
11399 #endif
11400
11401 switch (type)
11402 {
11403 case btrace_read_all:
11404 annex = "all";
11405 break;
11406 case btrace_read_new:
11407 annex = "new";
11408 break;
11409 default:
11410 internal_error (__FILE__, __LINE__,
11411 _("Bad branch tracing read type: %u."),
11412 (unsigned int) type);
11413 }
11414
11415 xml = target_read_stralloc (&current_target,
11416 TARGET_OBJECT_BTRACE, annex);
11417 if (xml != NULL)
11418 {
11419 struct cleanup *cleanup = make_cleanup (xfree, xml);
11420
11421 btrace = parse_xml_btrace (xml);
11422 do_cleanups (cleanup);
11423 }
11424
11425 return btrace;
11426 }
11427
11428 static int
11429 remote_augmented_libraries_svr4_read (void)
11430 {
11431 struct remote_state *rs = get_remote_state ();
11432
11433 return rs->augmented_libraries_svr4_read;
11434 }
11435
11436 static void
11437 init_remote_ops (void)
11438 {
11439 remote_ops.to_shortname = "remote";
11440 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
11441 remote_ops.to_doc =
11442 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
11443 Specify the serial device it is connected to\n\
11444 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
11445 remote_ops.to_open = remote_open;
11446 remote_ops.to_close = remote_close;
11447 remote_ops.to_detach = remote_detach;
11448 remote_ops.to_disconnect = remote_disconnect;
11449 remote_ops.to_resume = remote_resume;
11450 remote_ops.to_wait = remote_wait;
11451 remote_ops.to_fetch_registers = remote_fetch_registers;
11452 remote_ops.to_store_registers = remote_store_registers;
11453 remote_ops.to_prepare_to_store = remote_prepare_to_store;
11454 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
11455 remote_ops.to_files_info = remote_files_info;
11456 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
11457 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
11458 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
11459 remote_ops.to_stopped_data_address = remote_stopped_data_address;
11460 remote_ops.to_watchpoint_addr_within_range =
11461 remote_watchpoint_addr_within_range;
11462 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
11463 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
11464 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
11465 remote_ops.to_region_ok_for_hw_watchpoint
11466 = remote_region_ok_for_hw_watchpoint;
11467 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
11468 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
11469 remote_ops.to_kill = remote_kill;
11470 remote_ops.to_load = generic_load;
11471 remote_ops.to_mourn_inferior = remote_mourn;
11472 remote_ops.to_pass_signals = remote_pass_signals;
11473 remote_ops.to_program_signals = remote_program_signals;
11474 remote_ops.to_thread_alive = remote_thread_alive;
11475 remote_ops.to_find_new_threads = remote_threads_info;
11476 remote_ops.to_pid_to_str = remote_pid_to_str;
11477 remote_ops.to_extra_thread_info = remote_threads_extra_info;
11478 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
11479 remote_ops.to_stop = remote_stop;
11480 remote_ops.to_xfer_partial = remote_xfer_partial;
11481 remote_ops.to_rcmd = remote_rcmd;
11482 remote_ops.to_log_command = serial_log_command;
11483 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
11484 remote_ops.to_stratum = process_stratum;
11485 remote_ops.to_has_all_memory = default_child_has_all_memory;
11486 remote_ops.to_has_memory = default_child_has_memory;
11487 remote_ops.to_has_stack = default_child_has_stack;
11488 remote_ops.to_has_registers = default_child_has_registers;
11489 remote_ops.to_has_execution = default_child_has_execution;
11490 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
11491 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
11492 remote_ops.to_magic = OPS_MAGIC;
11493 remote_ops.to_memory_map = remote_memory_map;
11494 remote_ops.to_flash_erase = remote_flash_erase;
11495 remote_ops.to_flash_done = remote_flash_done;
11496 remote_ops.to_read_description = remote_read_description;
11497 remote_ops.to_search_memory = remote_search_memory;
11498 remote_ops.to_can_async_p = remote_can_async_p;
11499 remote_ops.to_is_async_p = remote_is_async_p;
11500 remote_ops.to_async = remote_async;
11501 remote_ops.to_terminal_inferior = remote_terminal_inferior;
11502 remote_ops.to_terminal_ours = remote_terminal_ours;
11503 remote_ops.to_supports_non_stop = remote_supports_non_stop;
11504 remote_ops.to_supports_multi_process = remote_supports_multi_process;
11505 remote_ops.to_supports_disable_randomization
11506 = remote_supports_disable_randomization;
11507 remote_ops.to_fileio_open = remote_hostio_open;
11508 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
11509 remote_ops.to_fileio_pread = remote_hostio_pread;
11510 remote_ops.to_fileio_close = remote_hostio_close;
11511 remote_ops.to_fileio_unlink = remote_hostio_unlink;
11512 remote_ops.to_fileio_readlink = remote_hostio_readlink;
11513 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
11514 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
11515 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
11516 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
11517 remote_ops.to_trace_init = remote_trace_init;
11518 remote_ops.to_download_tracepoint = remote_download_tracepoint;
11519 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
11520 remote_ops.to_download_trace_state_variable
11521 = remote_download_trace_state_variable;
11522 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
11523 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
11524 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
11525 remote_ops.to_trace_start = remote_trace_start;
11526 remote_ops.to_get_trace_status = remote_get_trace_status;
11527 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
11528 remote_ops.to_trace_stop = remote_trace_stop;
11529 remote_ops.to_trace_find = remote_trace_find;
11530 remote_ops.to_get_trace_state_variable_value
11531 = remote_get_trace_state_variable_value;
11532 remote_ops.to_save_trace_data = remote_save_trace_data;
11533 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
11534 remote_ops.to_upload_trace_state_variables
11535 = remote_upload_trace_state_variables;
11536 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
11537 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
11538 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
11539 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
11540 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
11541 remote_ops.to_set_trace_notes = remote_set_trace_notes;
11542 remote_ops.to_core_of_thread = remote_core_of_thread;
11543 remote_ops.to_verify_memory = remote_verify_memory;
11544 remote_ops.to_get_tib_address = remote_get_tib_address;
11545 remote_ops.to_set_permissions = remote_set_permissions;
11546 remote_ops.to_static_tracepoint_marker_at
11547 = remote_static_tracepoint_marker_at;
11548 remote_ops.to_static_tracepoint_markers_by_strid
11549 = remote_static_tracepoint_markers_by_strid;
11550 remote_ops.to_traceframe_info = remote_traceframe_info;
11551 remote_ops.to_use_agent = remote_use_agent;
11552 remote_ops.to_can_use_agent = remote_can_use_agent;
11553 remote_ops.to_supports_btrace = remote_supports_btrace;
11554 remote_ops.to_enable_btrace = remote_enable_btrace;
11555 remote_ops.to_disable_btrace = remote_disable_btrace;
11556 remote_ops.to_teardown_btrace = remote_teardown_btrace;
11557 remote_ops.to_read_btrace = remote_read_btrace;
11558 remote_ops.to_augmented_libraries_svr4_read =
11559 remote_augmented_libraries_svr4_read;
11560 }
11561
11562 /* Set up the extended remote vector by making a copy of the standard
11563 remote vector and adding to it. */
11564
11565 static void
11566 init_extended_remote_ops (void)
11567 {
11568 extended_remote_ops = remote_ops;
11569
11570 extended_remote_ops.to_shortname = "extended-remote";
11571 extended_remote_ops.to_longname =
11572 "Extended remote serial target in gdb-specific protocol";
11573 extended_remote_ops.to_doc =
11574 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
11575 Specify the serial device it is connected to (e.g. /dev/ttya).";
11576 extended_remote_ops.to_open = extended_remote_open;
11577 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
11578 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
11579 extended_remote_ops.to_detach = extended_remote_detach;
11580 extended_remote_ops.to_attach = extended_remote_attach;
11581 extended_remote_ops.to_kill = extended_remote_kill;
11582 extended_remote_ops.to_supports_disable_randomization
11583 = extended_remote_supports_disable_randomization;
11584 }
11585
11586 static int
11587 remote_can_async_p (void)
11588 {
11589 if (!target_async_permitted)
11590 /* We only enable async when the user specifically asks for it. */
11591 return 0;
11592
11593 /* We're async whenever the serial device is. */
11594 return serial_can_async_p (remote_desc);
11595 }
11596
11597 static int
11598 remote_is_async_p (void)
11599 {
11600 if (!target_async_permitted)
11601 /* We only enable async when the user specifically asks for it. */
11602 return 0;
11603
11604 /* We're async whenever the serial device is. */
11605 return serial_is_async_p (remote_desc);
11606 }
11607
11608 /* Pass the SERIAL event on and up to the client. One day this code
11609 will be able to delay notifying the client of an event until the
11610 point where an entire packet has been received. */
11611
11612 static void (*async_client_callback) (enum inferior_event_type event_type,
11613 void *context);
11614 static void *async_client_context;
11615 static serial_event_ftype remote_async_serial_handler;
11616
11617 static void
11618 remote_async_serial_handler (struct serial *scb, void *context)
11619 {
11620 /* Don't propogate error information up to the client. Instead let
11621 the client find out about the error by querying the target. */
11622 async_client_callback (INF_REG_EVENT, async_client_context);
11623 }
11624
11625 static void
11626 remote_async_inferior_event_handler (gdb_client_data data)
11627 {
11628 inferior_event_handler (INF_REG_EVENT, NULL);
11629 }
11630
11631 static void
11632 remote_async (void (*callback) (enum inferior_event_type event_type,
11633 void *context), void *context)
11634 {
11635 if (callback != NULL)
11636 {
11637 serial_async (remote_desc, remote_async_serial_handler, NULL);
11638 async_client_callback = callback;
11639 async_client_context = context;
11640 }
11641 else
11642 serial_async (remote_desc, NULL, NULL);
11643 }
11644
11645 static void
11646 set_remote_cmd (char *args, int from_tty)
11647 {
11648 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
11649 }
11650
11651 static void
11652 show_remote_cmd (char *args, int from_tty)
11653 {
11654 /* We can't just use cmd_show_list here, because we want to skip
11655 the redundant "show remote Z-packet" and the legacy aliases. */
11656 struct cleanup *showlist_chain;
11657 struct cmd_list_element *list = remote_show_cmdlist;
11658 struct ui_out *uiout = current_uiout;
11659
11660 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
11661 for (; list != NULL; list = list->next)
11662 if (strcmp (list->name, "Z-packet") == 0)
11663 continue;
11664 else if (list->type == not_set_cmd)
11665 /* Alias commands are exactly like the original, except they
11666 don't have the normal type. */
11667 continue;
11668 else
11669 {
11670 struct cleanup *option_chain
11671 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
11672
11673 ui_out_field_string (uiout, "name", list->name);
11674 ui_out_text (uiout, ": ");
11675 if (list->type == show_cmd)
11676 do_show_command ((char *) NULL, from_tty, list);
11677 else
11678 cmd_func (list, NULL, from_tty);
11679 /* Close the tuple. */
11680 do_cleanups (option_chain);
11681 }
11682
11683 /* Close the tuple. */
11684 do_cleanups (showlist_chain);
11685 }
11686
11687
11688 /* Function to be called whenever a new objfile (shlib) is detected. */
11689 static void
11690 remote_new_objfile (struct objfile *objfile)
11691 {
11692 if (remote_desc != 0) /* Have a remote connection. */
11693 remote_check_symbols ();
11694 }
11695
11696 /* Pull all the tracepoints defined on the target and create local
11697 data structures representing them. We don't want to create real
11698 tracepoints yet, we don't want to mess up the user's existing
11699 collection. */
11700
11701 static int
11702 remote_upload_tracepoints (struct uploaded_tp **utpp)
11703 {
11704 struct remote_state *rs = get_remote_state ();
11705 char *p;
11706
11707 /* Ask for a first packet of tracepoint definition. */
11708 putpkt ("qTfP");
11709 getpkt (&rs->buf, &rs->buf_size, 0);
11710 p = rs->buf;
11711 while (*p && *p != 'l')
11712 {
11713 parse_tracepoint_definition (p, utpp);
11714 /* Ask for another packet of tracepoint definition. */
11715 putpkt ("qTsP");
11716 getpkt (&rs->buf, &rs->buf_size, 0);
11717 p = rs->buf;
11718 }
11719 return 0;
11720 }
11721
11722 static int
11723 remote_upload_trace_state_variables (struct uploaded_tsv **utsvp)
11724 {
11725 struct remote_state *rs = get_remote_state ();
11726 char *p;
11727
11728 /* Ask for a first packet of variable definition. */
11729 putpkt ("qTfV");
11730 getpkt (&rs->buf, &rs->buf_size, 0);
11731 p = rs->buf;
11732 while (*p && *p != 'l')
11733 {
11734 parse_tsv_definition (p, utsvp);
11735 /* Ask for another packet of variable definition. */
11736 putpkt ("qTsV");
11737 getpkt (&rs->buf, &rs->buf_size, 0);
11738 p = rs->buf;
11739 }
11740 return 0;
11741 }
11742
11743 /* The "set/show range-stepping" show hook. */
11744
11745 static void
11746 show_range_stepping (struct ui_file *file, int from_tty,
11747 struct cmd_list_element *c,
11748 const char *value)
11749 {
11750 fprintf_filtered (file,
11751 _("Debugger's willingness to use range stepping "
11752 "is %s.\n"), value);
11753 }
11754
11755 /* The "set/show range-stepping" set hook. */
11756
11757 static void
11758 set_range_stepping (char *ignore_args, int from_tty,
11759 struct cmd_list_element *c)
11760 {
11761 /* Whene enabling, check whether range stepping is actually
11762 supported by the target, and warn if not. */
11763 if (use_range_stepping)
11764 {
11765 if (remote_desc != NULL)
11766 {
11767 struct remote_state *rs = get_remote_state ();
11768
11769 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
11770 remote_vcont_probe (rs);
11771
11772 if (remote_protocol_packets[PACKET_vCont].support == PACKET_ENABLE
11773 && rs->supports_vCont.r)
11774 return;
11775 }
11776
11777 warning (_("Range stepping is not supported by the current target"));
11778 }
11779 }
11780
11781 void
11782 _initialize_remote (void)
11783 {
11784 struct remote_state *rs;
11785 struct cmd_list_element *cmd;
11786 const char *cmd_name;
11787
11788 /* architecture specific data */
11789 remote_gdbarch_data_handle =
11790 gdbarch_data_register_post_init (init_remote_state);
11791 remote_g_packet_data_handle =
11792 gdbarch_data_register_pre_init (remote_g_packet_data_init);
11793
11794 /* Initialize the per-target state. At the moment there is only one
11795 of these, not one per target. Only one target is active at a
11796 time. The default buffer size is unimportant; it will be expanded
11797 whenever a larger buffer is needed. */
11798 rs = get_remote_state_raw ();
11799 rs->buf_size = 400;
11800 rs->buf = xmalloc (rs->buf_size);
11801
11802 init_remote_ops ();
11803 add_target (&remote_ops);
11804
11805 init_extended_remote_ops ();
11806 add_target (&extended_remote_ops);
11807
11808 /* Hook into new objfile notification. */
11809 observer_attach_new_objfile (remote_new_objfile);
11810 /* We're no longer interested in notification events of an inferior
11811 when it exits. */
11812 observer_attach_inferior_exit (discard_pending_stop_replies);
11813
11814 /* Set up signal handlers. */
11815 async_sigint_remote_token =
11816 create_async_signal_handler (async_remote_interrupt, NULL);
11817 async_sigint_remote_twice_token =
11818 create_async_signal_handler (async_remote_interrupt_twice, NULL);
11819
11820 #if 0
11821 init_remote_threadtests ();
11822 #endif
11823
11824 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
11825 /* set/show remote ... */
11826
11827 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
11828 Remote protocol specific variables\n\
11829 Configure various remote-protocol specific variables such as\n\
11830 the packets being used"),
11831 &remote_set_cmdlist, "set remote ",
11832 0 /* allow-unknown */, &setlist);
11833 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
11834 Remote protocol specific variables\n\
11835 Configure various remote-protocol specific variables such as\n\
11836 the packets being used"),
11837 &remote_show_cmdlist, "show remote ",
11838 0 /* allow-unknown */, &showlist);
11839
11840 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
11841 Compare section data on target to the exec file.\n\
11842 Argument is a single section name (default: all loaded sections)."),
11843 &cmdlist);
11844
11845 add_cmd ("packet", class_maintenance, packet_command, _("\
11846 Send an arbitrary packet to a remote target.\n\
11847 maintenance packet TEXT\n\
11848 If GDB is talking to an inferior via the GDB serial protocol, then\n\
11849 this command sends the string TEXT to the inferior, and displays the\n\
11850 response packet. GDB supplies the initial `$' character, and the\n\
11851 terminating `#' character and checksum."),
11852 &maintenancelist);
11853
11854 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
11855 Set whether to send break if interrupted."), _("\
11856 Show whether to send break if interrupted."), _("\
11857 If set, a break, instead of a cntrl-c, is sent to the remote target."),
11858 set_remotebreak, show_remotebreak,
11859 &setlist, &showlist);
11860 cmd_name = "remotebreak";
11861 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
11862 deprecate_cmd (cmd, "set remote interrupt-sequence");
11863 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
11864 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
11865 deprecate_cmd (cmd, "show remote interrupt-sequence");
11866
11867 add_setshow_enum_cmd ("interrupt-sequence", class_support,
11868 interrupt_sequence_modes, &interrupt_sequence_mode,
11869 _("\
11870 Set interrupt sequence to remote target."), _("\
11871 Show interrupt sequence to remote target."), _("\
11872 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
11873 NULL, show_interrupt_sequence,
11874 &remote_set_cmdlist,
11875 &remote_show_cmdlist);
11876
11877 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
11878 &interrupt_on_connect, _("\
11879 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11880 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11881 If set, interrupt sequence is sent to remote target."),
11882 NULL, NULL,
11883 &remote_set_cmdlist, &remote_show_cmdlist);
11884
11885 /* Install commands for configuring memory read/write packets. */
11886
11887 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
11888 Set the maximum number of bytes per memory write packet (deprecated)."),
11889 &setlist);
11890 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
11891 Show the maximum number of bytes per memory write packet (deprecated)."),
11892 &showlist);
11893 add_cmd ("memory-write-packet-size", no_class,
11894 set_memory_write_packet_size, _("\
11895 Set the maximum number of bytes per memory-write packet.\n\
11896 Specify the number of bytes in a packet or 0 (zero) for the\n\
11897 default packet size. The actual limit is further reduced\n\
11898 dependent on the target. Specify ``fixed'' to disable the\n\
11899 further restriction and ``limit'' to enable that restriction."),
11900 &remote_set_cmdlist);
11901 add_cmd ("memory-read-packet-size", no_class,
11902 set_memory_read_packet_size, _("\
11903 Set the maximum number of bytes per memory-read packet.\n\
11904 Specify the number of bytes in a packet or 0 (zero) for the\n\
11905 default packet size. The actual limit is further reduced\n\
11906 dependent on the target. Specify ``fixed'' to disable the\n\
11907 further restriction and ``limit'' to enable that restriction."),
11908 &remote_set_cmdlist);
11909 add_cmd ("memory-write-packet-size", no_class,
11910 show_memory_write_packet_size,
11911 _("Show the maximum number of bytes per memory-write packet."),
11912 &remote_show_cmdlist);
11913 add_cmd ("memory-read-packet-size", no_class,
11914 show_memory_read_packet_size,
11915 _("Show the maximum number of bytes per memory-read packet."),
11916 &remote_show_cmdlist);
11917
11918 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
11919 &remote_hw_watchpoint_limit, _("\
11920 Set the maximum number of target hardware watchpoints."), _("\
11921 Show the maximum number of target hardware watchpoints."), _("\
11922 Specify a negative limit for unlimited."),
11923 NULL, NULL, /* FIXME: i18n: The maximum
11924 number of target hardware
11925 watchpoints is %s. */
11926 &remote_set_cmdlist, &remote_show_cmdlist);
11927 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
11928 &remote_hw_watchpoint_length_limit, _("\
11929 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
11930 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
11931 Specify a negative limit for unlimited."),
11932 NULL, NULL, /* FIXME: i18n: The maximum
11933 length (in bytes) of a target
11934 hardware watchpoint is %s. */
11935 &remote_set_cmdlist, &remote_show_cmdlist);
11936 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
11937 &remote_hw_breakpoint_limit, _("\
11938 Set the maximum number of target hardware breakpoints."), _("\
11939 Show the maximum number of target hardware breakpoints."), _("\
11940 Specify a negative limit for unlimited."),
11941 NULL, NULL, /* FIXME: i18n: The maximum
11942 number of target hardware
11943 breakpoints is %s. */
11944 &remote_set_cmdlist, &remote_show_cmdlist);
11945
11946 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
11947 &remote_address_size, _("\
11948 Set the maximum size of the address (in bits) in a memory packet."), _("\
11949 Show the maximum size of the address (in bits) in a memory packet."), NULL,
11950 NULL,
11951 NULL, /* FIXME: i18n: */
11952 &setlist, &showlist);
11953
11954 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
11955 "X", "binary-download", 1);
11956
11957 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
11958 "vCont", "verbose-resume", 0);
11959
11960 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
11961 "QPassSignals", "pass-signals", 0);
11962
11963 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
11964 "QProgramSignals", "program-signals", 0);
11965
11966 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
11967 "qSymbol", "symbol-lookup", 0);
11968
11969 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
11970 "P", "set-register", 1);
11971
11972 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
11973 "p", "fetch-register", 1);
11974
11975 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
11976 "Z0", "software-breakpoint", 0);
11977
11978 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
11979 "Z1", "hardware-breakpoint", 0);
11980
11981 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
11982 "Z2", "write-watchpoint", 0);
11983
11984 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
11985 "Z3", "read-watchpoint", 0);
11986
11987 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
11988 "Z4", "access-watchpoint", 0);
11989
11990 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
11991 "qXfer:auxv:read", "read-aux-vector", 0);
11992
11993 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
11994 "qXfer:features:read", "target-features", 0);
11995
11996 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
11997 "qXfer:libraries:read", "library-info", 0);
11998
11999 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
12000 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
12001
12002 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
12003 "qXfer:memory-map:read", "memory-map", 0);
12004
12005 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
12006 "qXfer:spu:read", "read-spu-object", 0);
12007
12008 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
12009 "qXfer:spu:write", "write-spu-object", 0);
12010
12011 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
12012 "qXfer:osdata:read", "osdata", 0);
12013
12014 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
12015 "qXfer:threads:read", "threads", 0);
12016
12017 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
12018 "qXfer:siginfo:read", "read-siginfo-object", 0);
12019
12020 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
12021 "qXfer:siginfo:write", "write-siginfo-object", 0);
12022
12023 add_packet_config_cmd
12024 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
12025 "qXfer:traceframe-info:read", "traceframe-info", 0);
12026
12027 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
12028 "qXfer:uib:read", "unwind-info-block", 0);
12029
12030 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
12031 "qGetTLSAddr", "get-thread-local-storage-address",
12032 0);
12033
12034 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
12035 "qGetTIBAddr", "get-thread-information-block-address",
12036 0);
12037
12038 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
12039 "bc", "reverse-continue", 0);
12040
12041 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
12042 "bs", "reverse-step", 0);
12043
12044 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
12045 "qSupported", "supported-packets", 0);
12046
12047 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
12048 "qSearch:memory", "search-memory", 0);
12049
12050 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
12051 "qTStatus", "trace-status", 0);
12052
12053 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
12054 "vFile:open", "hostio-open", 0);
12055
12056 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
12057 "vFile:pread", "hostio-pread", 0);
12058
12059 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
12060 "vFile:pwrite", "hostio-pwrite", 0);
12061
12062 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
12063 "vFile:close", "hostio-close", 0);
12064
12065 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
12066 "vFile:unlink", "hostio-unlink", 0);
12067
12068 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
12069 "vFile:readlink", "hostio-readlink", 0);
12070
12071 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
12072 "vAttach", "attach", 0);
12073
12074 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
12075 "vRun", "run", 0);
12076
12077 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
12078 "QStartNoAckMode", "noack", 0);
12079
12080 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
12081 "vKill", "kill", 0);
12082
12083 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
12084 "qAttached", "query-attached", 0);
12085
12086 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
12087 "ConditionalTracepoints",
12088 "conditional-tracepoints", 0);
12089
12090 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
12091 "ConditionalBreakpoints",
12092 "conditional-breakpoints", 0);
12093
12094 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
12095 "BreakpointCommands",
12096 "breakpoint-commands", 0);
12097
12098 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
12099 "FastTracepoints", "fast-tracepoints", 0);
12100
12101 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
12102 "TracepointSource", "TracepointSource", 0);
12103
12104 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
12105 "QAllow", "allow", 0);
12106
12107 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
12108 "StaticTracepoints", "static-tracepoints", 0);
12109
12110 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
12111 "InstallInTrace", "install-in-trace", 0);
12112
12113 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
12114 "qXfer:statictrace:read", "read-sdata-object", 0);
12115
12116 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
12117 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
12118
12119 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
12120 "QDisableRandomization", "disable-randomization", 0);
12121
12122 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
12123 "QAgent", "agent", 0);
12124
12125 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
12126 "QTBuffer:size", "trace-buffer-size", 0);
12127
12128 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
12129 "Qbtrace:off", "disable-btrace", 0);
12130
12131 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
12132 "Qbtrace:bts", "enable-btrace", 0);
12133
12134 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
12135 "qXfer:btrace", "read-btrace", 0);
12136
12137 /* Keep the old ``set remote Z-packet ...'' working. Each individual
12138 Z sub-packet has its own set and show commands, but users may
12139 have sets to this variable in their .gdbinit files (or in their
12140 documentation). */
12141 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
12142 &remote_Z_packet_detect, _("\
12143 Set use of remote protocol `Z' packets"), _("\
12144 Show use of remote protocol `Z' packets "), _("\
12145 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
12146 packets."),
12147 set_remote_protocol_Z_packet_cmd,
12148 show_remote_protocol_Z_packet_cmd,
12149 /* FIXME: i18n: Use of remote protocol
12150 `Z' packets is %s. */
12151 &remote_set_cmdlist, &remote_show_cmdlist);
12152
12153 add_prefix_cmd ("remote", class_files, remote_command, _("\
12154 Manipulate files on the remote system\n\
12155 Transfer files to and from the remote target system."),
12156 &remote_cmdlist, "remote ",
12157 0 /* allow-unknown */, &cmdlist);
12158
12159 add_cmd ("put", class_files, remote_put_command,
12160 _("Copy a local file to the remote system."),
12161 &remote_cmdlist);
12162
12163 add_cmd ("get", class_files, remote_get_command,
12164 _("Copy a remote file to the local system."),
12165 &remote_cmdlist);
12166
12167 add_cmd ("delete", class_files, remote_delete_command,
12168 _("Delete a remote file."),
12169 &remote_cmdlist);
12170
12171 remote_exec_file = xstrdup ("");
12172 add_setshow_string_noescape_cmd ("exec-file", class_files,
12173 &remote_exec_file, _("\
12174 Set the remote pathname for \"run\""), _("\
12175 Show the remote pathname for \"run\""), NULL, NULL, NULL,
12176 &remote_set_cmdlist, &remote_show_cmdlist);
12177
12178 add_setshow_boolean_cmd ("range-stepping", class_run,
12179 &use_range_stepping, _("\
12180 Enable or disable range stepping."), _("\
12181 Show whether target-assisted range stepping is enabled."), _("\
12182 If on, and the target supports it, when stepping a source line, GDB\n\
12183 tells the target to step the corresponding range of addresses itself instead\n\
12184 of issuing multiple single-steps. This speeds up source level\n\
12185 stepping. If off, GDB always issues single-steps, even if range\n\
12186 stepping is supported by the target. The default is on."),
12187 set_range_stepping,
12188 show_range_stepping,
12189 &setlist,
12190 &showlist);
12191
12192 /* Eventually initialize fileio. See fileio.c */
12193 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
12194
12195 /* Take advantage of the fact that the LWP field is not used, to tag
12196 special ptids with it set to != 0. */
12197 magic_null_ptid = ptid_build (42000, 1, -1);
12198 not_sent_ptid = ptid_build (42000, 1, -2);
12199 any_thread_ptid = ptid_build (42000, 1, 0);
12200
12201 target_buf_size = 2048;
12202 target_buf = xmalloc (target_buf_size);
12203 }
12204
This page took 0.347886 seconds and 5 git commands to generate.