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