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