Implement proper "startup-with-shell" support on gdbserver
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2017 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 /* See the GDB User Guide for details of the GDB remote protocol. */
21
22 #include "defs.h"
23 #include <ctype.h>
24 #include <fcntl.h>
25 #include "inferior.h"
26 #include "infrun.h"
27 #include "bfd.h"
28 #include "symfile.h"
29 #include "target.h"
30 /*#include "terminal.h" */
31 #include "gdbcmd.h"
32 #include "objfiles.h"
33 #include "gdb-stabs.h"
34 #include "gdbthread.h"
35 #include "remote.h"
36 #include "remote-notif.h"
37 #include "regcache.h"
38 #include "value.h"
39 #include "observer.h"
40 #include "solib.h"
41 #include "cli/cli-decode.h"
42 #include "cli/cli-setshow.h"
43 #include "target-descriptions.h"
44 #include "gdb_bfd.h"
45 #include "filestuff.h"
46 #include "rsp-low.h"
47 #include "disasm.h"
48 #include "location.h"
49
50 #include "gdb_sys_time.h"
51
52 #include "event-loop.h"
53 #include "event-top.h"
54 #include "inf-loop.h"
55
56 #include <signal.h>
57 #include "serial.h"
58
59 #include "gdbcore.h" /* for exec_bfd */
60
61 #include "remote-fileio.h"
62 #include "gdb/fileio.h"
63 #include <sys/stat.h>
64 #include "xml-support.h"
65
66 #include "memory-map.h"
67
68 #include "tracepoint.h"
69 #include "ax.h"
70 #include "ax-gdb.h"
71 #include "agent.h"
72 #include "btrace.h"
73 #include "record-btrace.h"
74 #include <algorithm>
75
76 /* Temp hacks for tracepoint encoding migration. */
77 static char *target_buf;
78 static long target_buf_size;
79
80 /* Per-program-space data key. */
81 static const struct program_space_data *remote_pspace_data;
82
83 /* The variable registered as the control variable used by the
84 remote exec-file commands. While the remote exec-file setting is
85 per-program-space, the set/show machinery uses this as the
86 location of the remote exec-file value. */
87 static char *remote_exec_file_var;
88
89 /* The size to align memory write packets, when practical. The protocol
90 does not guarantee any alignment, and gdb will generate short
91 writes and unaligned writes, but even as a best-effort attempt this
92 can improve bulk transfers. For instance, if a write is misaligned
93 relative to the target's data bus, the stub may need to make an extra
94 round trip fetching data from the target. This doesn't make a
95 huge difference, but it's easy to do, so we try to be helpful.
96
97 The alignment chosen is arbitrary; usually data bus width is
98 important here, not the possibly larger cache line size. */
99 enum { REMOTE_ALIGN_WRITES = 16 };
100
101 /* Prototypes for local functions. */
102 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
103 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
104 int forever, int *is_notif);
105
106 static void remote_files_info (struct target_ops *ignore);
107
108 static void remote_prepare_to_store (struct target_ops *self,
109 struct regcache *regcache);
110
111 static void remote_open_1 (const char *, int, struct target_ops *,
112 int extended_p);
113
114 static void remote_close (struct target_ops *self);
115
116 struct remote_state;
117
118 static int remote_vkill (int pid, struct remote_state *rs);
119
120 static void remote_kill_k (void);
121
122 static void remote_mourn (struct target_ops *ops);
123
124 static void extended_remote_restart (void);
125
126 static void remote_send (char **buf, long *sizeof_buf_p);
127
128 static int readchar (int timeout);
129
130 static void remote_serial_write (const char *str, int len);
131
132 static void remote_kill (struct target_ops *ops);
133
134 static int remote_can_async_p (struct target_ops *);
135
136 static int remote_is_async_p (struct target_ops *);
137
138 static void remote_async (struct target_ops *ops, int enable);
139
140 static void remote_thread_events (struct target_ops *ops, int enable);
141
142 static void interrupt_query (void);
143
144 static void set_general_thread (ptid_t ptid);
145 static void set_continue_thread (ptid_t ptid);
146
147 static void get_offsets (void);
148
149 static void skip_frame (void);
150
151 static long read_frame (char **buf_p, long *sizeof_buf);
152
153 static int hexnumlen (ULONGEST num);
154
155 static void init_remote_ops (void);
156
157 static void init_extended_remote_ops (void);
158
159 static void remote_stop (struct target_ops *self, ptid_t);
160
161 static int stubhex (int ch);
162
163 static int hexnumstr (char *, ULONGEST);
164
165 static int hexnumnstr (char *, ULONGEST, int);
166
167 static CORE_ADDR remote_address_masked (CORE_ADDR);
168
169 static void print_packet (const char *);
170
171 static void compare_sections_command (char *, int);
172
173 static void packet_command (char *, int);
174
175 static int stub_unpack_int (char *buff, int fieldlength);
176
177 static ptid_t remote_current_thread (ptid_t oldptid);
178
179 static int putpkt_binary (const 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 static int remote_get_trace_status (struct target_ops *self,
198 struct trace_status *ts);
199
200 static int remote_upload_tracepoints (struct target_ops *self,
201 struct uploaded_tp **utpp);
202
203 static int remote_upload_trace_state_variables (struct target_ops *self,
204 struct uploaded_tsv **utsvp);
205
206 static void remote_query_supported (void);
207
208 static void remote_check_symbols (void);
209
210 void _initialize_remote (void);
211
212 struct stop_reply;
213 static void stop_reply_xfree (struct stop_reply *);
214 static void remote_parse_stop_reply (char *, struct stop_reply *);
215 static void push_stop_reply (struct stop_reply *);
216 static void discard_pending_stop_replies_in_queue (struct remote_state *);
217 static int peek_stop_reply (ptid_t ptid);
218
219 struct threads_listing_context;
220 static void remove_new_fork_children (struct threads_listing_context *);
221
222 static void remote_async_inferior_event_handler (gdb_client_data);
223
224 static void remote_terminal_ours (struct target_ops *self);
225
226 static int remote_read_description_p (struct target_ops *target);
227
228 static void remote_console_output (char *msg);
229
230 static int remote_supports_cond_breakpoints (struct target_ops *self);
231
232 static int remote_can_run_breakpoint_commands (struct target_ops *self);
233
234 static void remote_btrace_reset (void);
235
236 static void remote_btrace_maybe_reopen (void);
237
238 static int stop_reply_queue_length (void);
239
240 static void readahead_cache_invalidate (void);
241
242 static void remote_unpush_and_throw (void);
243
244 /* For "remote". */
245
246 static struct cmd_list_element *remote_cmdlist;
247
248 /* For "set remote" and "show remote". */
249
250 static struct cmd_list_element *remote_set_cmdlist;
251 static struct cmd_list_element *remote_show_cmdlist;
252
253 /* Stub vCont actions support.
254
255 Each field is a boolean flag indicating whether the stub reports
256 support for the corresponding action. */
257
258 struct vCont_action_support
259 {
260 /* vCont;t */
261 int t;
262
263 /* vCont;r */
264 int r;
265
266 /* vCont;s */
267 int s;
268
269 /* vCont;S */
270 int S;
271 };
272
273 /* Controls whether GDB is willing to use range stepping. */
274
275 static int use_range_stepping = 1;
276
277 #define OPAQUETHREADBYTES 8
278
279 /* a 64 bit opaque identifier */
280 typedef unsigned char threadref[OPAQUETHREADBYTES];
281
282 /* About this many threadisds fit in a packet. */
283
284 #define MAXTHREADLISTRESULTS 32
285
286 /* The max number of chars in debug output. The rest of chars are
287 omitted. */
288
289 #define REMOTE_DEBUG_MAX_CHAR 512
290
291 /* Data for the vFile:pread readahead cache. */
292
293 struct readahead_cache
294 {
295 /* The file descriptor for the file that is being cached. -1 if the
296 cache is invalid. */
297 int fd;
298
299 /* The offset into the file that the cache buffer corresponds
300 to. */
301 ULONGEST offset;
302
303 /* The buffer holding the cache contents. */
304 gdb_byte *buf;
305 /* The buffer's size. We try to read as much as fits into a packet
306 at a time. */
307 size_t bufsize;
308
309 /* Cache hit and miss counters. */
310 ULONGEST hit_count;
311 ULONGEST miss_count;
312 };
313
314 /* Description of the remote protocol state for the currently
315 connected target. This is per-target state, and independent of the
316 selected architecture. */
317
318 struct remote_state
319 {
320 /* A buffer to use for incoming packets, and its current size. The
321 buffer is grown dynamically for larger incoming packets.
322 Outgoing packets may also be constructed in this buffer.
323 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
324 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
325 packets. */
326 char *buf;
327 long buf_size;
328
329 /* True if we're going through initial connection setup (finding out
330 about the remote side's threads, relocating symbols, etc.). */
331 int starting_up;
332
333 /* If we negotiated packet size explicitly (and thus can bypass
334 heuristics for the largest packet size that will not overflow
335 a buffer in the stub), this will be set to that packet size.
336 Otherwise zero, meaning to use the guessed size. */
337 long explicit_packet_size;
338
339 /* remote_wait is normally called when the target is running and
340 waits for a stop reply packet. But sometimes we need to call it
341 when the target is already stopped. We can send a "?" packet
342 and have remote_wait read the response. Or, if we already have
343 the response, we can stash it in BUF and tell remote_wait to
344 skip calling getpkt. This flag is set when BUF contains a
345 stop reply packet and the target is not waiting. */
346 int cached_wait_status;
347
348 /* True, if in no ack mode. That is, neither GDB nor the stub will
349 expect acks from each other. The connection is assumed to be
350 reliable. */
351 int noack_mode;
352
353 /* True if we're connected in extended remote mode. */
354 int extended;
355
356 /* True if we resumed the target and we're waiting for the target to
357 stop. In the mean time, we can't start another command/query.
358 The remote server wouldn't be ready to process it, so we'd
359 timeout waiting for a reply that would never come and eventually
360 we'd close the connection. This can happen in asynchronous mode
361 because we allow GDB commands while the target is running. */
362 int waiting_for_stop_reply;
363
364 /* The status of the stub support for the various vCont actions. */
365 struct vCont_action_support supports_vCont;
366
367 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
368 responded to that. */
369 int ctrlc_pending_p;
370
371 /* True if we saw a Ctrl-C while reading or writing from/to the
372 remote descriptor. At that point it is not safe to send a remote
373 interrupt packet, so we instead remember we saw the Ctrl-C and
374 process it once we're done with sending/receiving the current
375 packet, which should be shortly. If however that takes too long,
376 and the user presses Ctrl-C again, we offer to disconnect. */
377 int got_ctrlc_during_io;
378
379 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
380 remote_open knows that we don't have a file open when the program
381 starts. */
382 struct serial *remote_desc;
383
384 /* These are the threads which we last sent to the remote system. The
385 TID member will be -1 for all or -2 for not sent yet. */
386 ptid_t general_thread;
387 ptid_t continue_thread;
388
389 /* This is the traceframe which we last selected on the remote system.
390 It will be -1 if no traceframe is selected. */
391 int remote_traceframe_number;
392
393 char *last_pass_packet;
394
395 /* The last QProgramSignals packet sent to the target. We bypass
396 sending a new program signals list down to the target if the new
397 packet is exactly the same as the last we sent. IOW, we only let
398 the target know about program signals list changes. */
399 char *last_program_signals_packet;
400
401 enum gdb_signal last_sent_signal;
402
403 int last_sent_step;
404
405 /* The execution direction of the last resume we got. */
406 enum exec_direction_kind last_resume_exec_dir;
407
408 char *finished_object;
409 char *finished_annex;
410 ULONGEST finished_offset;
411
412 /* Should we try the 'ThreadInfo' query packet?
413
414 This variable (NOT available to the user: auto-detect only!)
415 determines whether GDB will use the new, simpler "ThreadInfo"
416 query or the older, more complex syntax for thread queries.
417 This is an auto-detect variable (set to true at each connect,
418 and set to false when the target fails to recognize it). */
419 int use_threadinfo_query;
420 int use_threadextra_query;
421
422 threadref echo_nextthread;
423 threadref nextthread;
424 threadref resultthreadlist[MAXTHREADLISTRESULTS];
425
426 /* The state of remote notification. */
427 struct remote_notif_state *notif_state;
428
429 /* The branch trace configuration. */
430 struct btrace_config btrace_config;
431
432 /* The argument to the last "vFile:setfs:" packet we sent, used
433 to avoid sending repeated unnecessary "vFile:setfs:" packets.
434 Initialized to -1 to indicate that no "vFile:setfs:" packet
435 has yet been sent. */
436 int fs_pid;
437
438 /* A readahead cache for vFile:pread. Often, reading a binary
439 involves a sequence of small reads. E.g., when parsing an ELF
440 file. A readahead cache helps mostly the case of remote
441 debugging on a connection with higher latency, due to the
442 request/reply nature of the RSP. We only cache data for a single
443 file descriptor at a time. */
444 struct readahead_cache readahead_cache;
445 };
446
447 /* Private data that we'll store in (struct thread_info)->private. */
448 struct private_thread_info
449 {
450 char *extra;
451 char *name;
452 int core;
453
454 /* Whether the target stopped for a breakpoint/watchpoint. */
455 enum target_stop_reason stop_reason;
456
457 /* This is set to the data address of the access causing the target
458 to stop for a watchpoint. */
459 CORE_ADDR watch_data_address;
460
461 /* Fields used by the vCont action coalescing implemented in
462 remote_resume / remote_commit_resume. remote_resume stores each
463 thread's last resume request in these fields, so that a later
464 remote_commit_resume knows which is the proper action for this
465 thread to include in the vCont packet. */
466
467 /* True if the last target_resume call for this thread was a step
468 request, false if a continue request. */
469 int last_resume_step;
470
471 /* The signal specified in the last target_resume call for this
472 thread. */
473 enum gdb_signal last_resume_sig;
474
475 /* Whether this thread was already vCont-resumed on the remote
476 side. */
477 int vcont_resumed;
478 };
479
480 static void
481 free_private_thread_info (struct private_thread_info *info)
482 {
483 xfree (info->extra);
484 xfree (info->name);
485 xfree (info);
486 }
487
488 /* This data could be associated with a target, but we do not always
489 have access to the current target when we need it, so for now it is
490 static. This will be fine for as long as only one target is in use
491 at a time. */
492 static struct remote_state *remote_state;
493
494 static struct remote_state *
495 get_remote_state_raw (void)
496 {
497 return remote_state;
498 }
499
500 /* Allocate a new struct remote_state with xmalloc, initialize it, and
501 return it. */
502
503 static struct remote_state *
504 new_remote_state (void)
505 {
506 struct remote_state *result = XCNEW (struct remote_state);
507
508 /* The default buffer size is unimportant; it will be expanded
509 whenever a larger buffer is needed. */
510 result->buf_size = 400;
511 result->buf = (char *) xmalloc (result->buf_size);
512 result->remote_traceframe_number = -1;
513 result->last_sent_signal = GDB_SIGNAL_0;
514 result->last_resume_exec_dir = EXEC_FORWARD;
515 result->fs_pid = -1;
516
517 return result;
518 }
519
520 /* Description of the remote protocol for a given architecture. */
521
522 struct packet_reg
523 {
524 long offset; /* Offset into G packet. */
525 long regnum; /* GDB's internal register number. */
526 LONGEST pnum; /* Remote protocol register number. */
527 int in_g_packet; /* Always part of G packet. */
528 /* long size in bytes; == register_size (target_gdbarch (), regnum);
529 at present. */
530 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
531 at present. */
532 };
533
534 struct remote_arch_state
535 {
536 /* Description of the remote protocol registers. */
537 long sizeof_g_packet;
538
539 /* Description of the remote protocol registers indexed by REGNUM
540 (making an array gdbarch_num_regs in size). */
541 struct packet_reg *regs;
542
543 /* This is the size (in chars) of the first response to the ``g''
544 packet. It is used as a heuristic when determining the maximum
545 size of memory-read and memory-write packets. A target will
546 typically only reserve a buffer large enough to hold the ``g''
547 packet. The size does not include packet overhead (headers and
548 trailers). */
549 long actual_register_packet_size;
550
551 /* This is the maximum size (in chars) of a non read/write packet.
552 It is also used as a cap on the size of read/write packets. */
553 long remote_packet_size;
554 };
555
556 /* Utility: generate error from an incoming stub packet. */
557 static void
558 trace_error (char *buf)
559 {
560 if (*buf++ != 'E')
561 return; /* not an error msg */
562 switch (*buf)
563 {
564 case '1': /* malformed packet error */
565 if (*++buf == '0') /* general case: */
566 error (_("remote.c: error in outgoing packet."));
567 else
568 error (_("remote.c: error in outgoing packet at field #%ld."),
569 strtol (buf, NULL, 16));
570 default:
571 error (_("Target returns error code '%s'."), buf);
572 }
573 }
574
575 /* Utility: wait for reply from stub, while accepting "O" packets. */
576 static char *
577 remote_get_noisy_reply (char **buf_p,
578 long *sizeof_buf)
579 {
580 do /* Loop on reply from remote stub. */
581 {
582 char *buf;
583
584 QUIT; /* Allow user to bail out with ^C. */
585 getpkt (buf_p, sizeof_buf, 0);
586 buf = *buf_p;
587 if (buf[0] == 'E')
588 trace_error (buf);
589 else if (startswith (buf, "qRelocInsn:"))
590 {
591 ULONGEST ul;
592 CORE_ADDR from, to, org_to;
593 char *p, *pp;
594 int adjusted_size = 0;
595 int relocated = 0;
596
597 p = buf + strlen ("qRelocInsn:");
598 pp = unpack_varlen_hex (p, &ul);
599 if (*pp != ';')
600 error (_("invalid qRelocInsn packet: %s"), buf);
601 from = ul;
602
603 p = pp + 1;
604 unpack_varlen_hex (p, &ul);
605 to = ul;
606
607 org_to = to;
608
609 TRY
610 {
611 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
612 relocated = 1;
613 }
614 CATCH (ex, RETURN_MASK_ALL)
615 {
616 if (ex.error == MEMORY_ERROR)
617 {
618 /* Propagate memory errors silently back to the
619 target. The stub may have limited the range of
620 addresses we can write to, for example. */
621 }
622 else
623 {
624 /* Something unexpectedly bad happened. Be verbose
625 so we can tell what, and propagate the error back
626 to the stub, so it doesn't get stuck waiting for
627 a response. */
628 exception_fprintf (gdb_stderr, ex,
629 _("warning: relocating instruction: "));
630 }
631 putpkt ("E01");
632 }
633 END_CATCH
634
635 if (relocated)
636 {
637 adjusted_size = to - org_to;
638
639 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
640 putpkt (buf);
641 }
642 }
643 else if (buf[0] == 'O' && buf[1] != 'K')
644 remote_console_output (buf + 1); /* 'O' message from stub */
645 else
646 return buf; /* Here's the actual reply. */
647 }
648 while (1);
649 }
650
651 /* Handle for retreving the remote protocol data from gdbarch. */
652 static struct gdbarch_data *remote_gdbarch_data_handle;
653
654 static struct remote_arch_state *
655 get_remote_arch_state (void)
656 {
657 gdb_assert (target_gdbarch () != NULL);
658 return ((struct remote_arch_state *)
659 gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle));
660 }
661
662 /* Fetch the global remote target state. */
663
664 static struct remote_state *
665 get_remote_state (void)
666 {
667 /* Make sure that the remote architecture state has been
668 initialized, because doing so might reallocate rs->buf. Any
669 function which calls getpkt also needs to be mindful of changes
670 to rs->buf, but this call limits the number of places which run
671 into trouble. */
672 get_remote_arch_state ();
673
674 return get_remote_state_raw ();
675 }
676
677 /* Cleanup routine for the remote module's pspace data. */
678
679 static void
680 remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
681 {
682 char *remote_exec_file = (char *) arg;
683
684 xfree (remote_exec_file);
685 }
686
687 /* Fetch the remote exec-file from the current program space. */
688
689 static const char *
690 get_remote_exec_file (void)
691 {
692 char *remote_exec_file;
693
694 remote_exec_file
695 = (char *) program_space_data (current_program_space,
696 remote_pspace_data);
697 if (remote_exec_file == NULL)
698 return "";
699
700 return remote_exec_file;
701 }
702
703 /* Set the remote exec file for PSPACE. */
704
705 static void
706 set_pspace_remote_exec_file (struct program_space *pspace,
707 char *remote_exec_file)
708 {
709 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
710
711 xfree (old_file);
712 set_program_space_data (pspace, remote_pspace_data,
713 xstrdup (remote_exec_file));
714 }
715
716 /* The "set/show remote exec-file" set command hook. */
717
718 static void
719 set_remote_exec_file (char *ignored, int from_tty,
720 struct cmd_list_element *c)
721 {
722 gdb_assert (remote_exec_file_var != NULL);
723 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
724 }
725
726 /* The "set/show remote exec-file" show command hook. */
727
728 static void
729 show_remote_exec_file (struct ui_file *file, int from_tty,
730 struct cmd_list_element *cmd, const char *value)
731 {
732 fprintf_filtered (file, "%s\n", remote_exec_file_var);
733 }
734
735 static int
736 compare_pnums (const void *lhs_, const void *rhs_)
737 {
738 const struct packet_reg * const *lhs
739 = (const struct packet_reg * const *) lhs_;
740 const struct packet_reg * const *rhs
741 = (const struct packet_reg * const *) rhs_;
742
743 if ((*lhs)->pnum < (*rhs)->pnum)
744 return -1;
745 else if ((*lhs)->pnum == (*rhs)->pnum)
746 return 0;
747 else
748 return 1;
749 }
750
751 static int
752 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
753 {
754 int regnum, num_remote_regs, offset;
755 struct packet_reg **remote_regs;
756
757 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
758 {
759 struct packet_reg *r = &regs[regnum];
760
761 if (register_size (gdbarch, regnum) == 0)
762 /* Do not try to fetch zero-sized (placeholder) registers. */
763 r->pnum = -1;
764 else
765 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
766
767 r->regnum = regnum;
768 }
769
770 /* Define the g/G packet format as the contents of each register
771 with a remote protocol number, in order of ascending protocol
772 number. */
773
774 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
775 for (num_remote_regs = 0, regnum = 0;
776 regnum < gdbarch_num_regs (gdbarch);
777 regnum++)
778 if (regs[regnum].pnum != -1)
779 remote_regs[num_remote_regs++] = &regs[regnum];
780
781 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
782 compare_pnums);
783
784 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
785 {
786 remote_regs[regnum]->in_g_packet = 1;
787 remote_regs[regnum]->offset = offset;
788 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
789 }
790
791 return offset;
792 }
793
794 /* Given the architecture described by GDBARCH, return the remote
795 protocol register's number and the register's offset in the g/G
796 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
797 If the target does not have a mapping for REGNUM, return false,
798 otherwise, return true. */
799
800 int
801 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
802 int *pnum, int *poffset)
803 {
804 struct packet_reg *regs;
805 struct cleanup *old_chain;
806
807 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
808
809 regs = XCNEWVEC (struct packet_reg, gdbarch_num_regs (gdbarch));
810 old_chain = make_cleanup (xfree, regs);
811
812 map_regcache_remote_table (gdbarch, regs);
813
814 *pnum = regs[regnum].pnum;
815 *poffset = regs[regnum].offset;
816
817 do_cleanups (old_chain);
818
819 return *pnum != -1;
820 }
821
822 static void *
823 init_remote_state (struct gdbarch *gdbarch)
824 {
825 struct remote_state *rs = get_remote_state_raw ();
826 struct remote_arch_state *rsa;
827
828 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
829
830 /* Use the architecture to build a regnum<->pnum table, which will be
831 1:1 unless a feature set specifies otherwise. */
832 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
833 gdbarch_num_regs (gdbarch),
834 struct packet_reg);
835
836 /* Record the maximum possible size of the g packet - it may turn out
837 to be smaller. */
838 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
839
840 /* Default maximum number of characters in a packet body. Many
841 remote stubs have a hardwired buffer size of 400 bytes
842 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
843 as the maximum packet-size to ensure that the packet and an extra
844 NUL character can always fit in the buffer. This stops GDB
845 trashing stubs that try to squeeze an extra NUL into what is
846 already a full buffer (As of 1999-12-04 that was most stubs). */
847 rsa->remote_packet_size = 400 - 1;
848
849 /* This one is filled in when a ``g'' packet is received. */
850 rsa->actual_register_packet_size = 0;
851
852 /* Should rsa->sizeof_g_packet needs more space than the
853 default, adjust the size accordingly. Remember that each byte is
854 encoded as two characters. 32 is the overhead for the packet
855 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
856 (``$NN:G...#NN'') is a better guess, the below has been padded a
857 little. */
858 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
859 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
860
861 /* Make sure that the packet buffer is plenty big enough for
862 this architecture. */
863 if (rs->buf_size < rsa->remote_packet_size)
864 {
865 rs->buf_size = 2 * rsa->remote_packet_size;
866 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
867 }
868
869 return rsa;
870 }
871
872 /* Return the current allowed size of a remote packet. This is
873 inferred from the current architecture, and should be used to
874 limit the length of outgoing packets. */
875 static long
876 get_remote_packet_size (void)
877 {
878 struct remote_state *rs = get_remote_state ();
879 struct remote_arch_state *rsa = get_remote_arch_state ();
880
881 if (rs->explicit_packet_size)
882 return rs->explicit_packet_size;
883
884 return rsa->remote_packet_size;
885 }
886
887 static struct packet_reg *
888 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
889 {
890 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
891 return NULL;
892 else
893 {
894 struct packet_reg *r = &rsa->regs[regnum];
895
896 gdb_assert (r->regnum == regnum);
897 return r;
898 }
899 }
900
901 static struct packet_reg *
902 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
903 {
904 int i;
905
906 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
907 {
908 struct packet_reg *r = &rsa->regs[i];
909
910 if (r->pnum == pnum)
911 return r;
912 }
913 return NULL;
914 }
915
916 static struct target_ops remote_ops;
917
918 static struct target_ops extended_remote_ops;
919
920 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
921 ``forever'' still use the normal timeout mechanism. This is
922 currently used by the ASYNC code to guarentee that target reads
923 during the initial connect always time-out. Once getpkt has been
924 modified to return a timeout indication and, in turn
925 remote_wait()/wait_for_inferior() have gained a timeout parameter
926 this can go away. */
927 static int wait_forever_enabled_p = 1;
928
929 /* Allow the user to specify what sequence to send to the remote
930 when he requests a program interruption: Although ^C is usually
931 what remote systems expect (this is the default, here), it is
932 sometimes preferable to send a break. On other systems such
933 as the Linux kernel, a break followed by g, which is Magic SysRq g
934 is required in order to interrupt the execution. */
935 const char interrupt_sequence_control_c[] = "Ctrl-C";
936 const char interrupt_sequence_break[] = "BREAK";
937 const char interrupt_sequence_break_g[] = "BREAK-g";
938 static const char *const interrupt_sequence_modes[] =
939 {
940 interrupt_sequence_control_c,
941 interrupt_sequence_break,
942 interrupt_sequence_break_g,
943 NULL
944 };
945 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
946
947 static void
948 show_interrupt_sequence (struct ui_file *file, int from_tty,
949 struct cmd_list_element *c,
950 const char *value)
951 {
952 if (interrupt_sequence_mode == interrupt_sequence_control_c)
953 fprintf_filtered (file,
954 _("Send the ASCII ETX character (Ctrl-c) "
955 "to the remote target to interrupt the "
956 "execution of the program.\n"));
957 else if (interrupt_sequence_mode == interrupt_sequence_break)
958 fprintf_filtered (file,
959 _("send a break signal to the remote target "
960 "to interrupt the execution of the program.\n"));
961 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
962 fprintf_filtered (file,
963 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
964 "the remote target to interrupt the execution "
965 "of Linux kernel.\n"));
966 else
967 internal_error (__FILE__, __LINE__,
968 _("Invalid value for interrupt_sequence_mode: %s."),
969 interrupt_sequence_mode);
970 }
971
972 /* This boolean variable specifies whether interrupt_sequence is sent
973 to the remote target when gdb connects to it.
974 This is mostly needed when you debug the Linux kernel: The Linux kernel
975 expects BREAK g which is Magic SysRq g for connecting gdb. */
976 static int interrupt_on_connect = 0;
977
978 /* This variable is used to implement the "set/show remotebreak" commands.
979 Since these commands are now deprecated in favor of "set/show remote
980 interrupt-sequence", it no longer has any effect on the code. */
981 static int remote_break;
982
983 static void
984 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
985 {
986 if (remote_break)
987 interrupt_sequence_mode = interrupt_sequence_break;
988 else
989 interrupt_sequence_mode = interrupt_sequence_control_c;
990 }
991
992 static void
993 show_remotebreak (struct ui_file *file, int from_tty,
994 struct cmd_list_element *c,
995 const char *value)
996 {
997 }
998
999 /* This variable sets the number of bits in an address that are to be
1000 sent in a memory ("M" or "m") packet. Normally, after stripping
1001 leading zeros, the entire address would be sent. This variable
1002 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1003 initial implementation of remote.c restricted the address sent in
1004 memory packets to ``host::sizeof long'' bytes - (typically 32
1005 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1006 address was never sent. Since fixing this bug may cause a break in
1007 some remote targets this variable is principly provided to
1008 facilitate backward compatibility. */
1009
1010 static unsigned int remote_address_size;
1011
1012 /* Temporary to track who currently owns the terminal. See
1013 remote_terminal_* for more details. */
1014
1015 static int remote_async_terminal_ours_p;
1016
1017 \f
1018 /* User configurable variables for the number of characters in a
1019 memory read/write packet. MIN (rsa->remote_packet_size,
1020 rsa->sizeof_g_packet) is the default. Some targets need smaller
1021 values (fifo overruns, et.al.) and some users need larger values
1022 (speed up transfers). The variables ``preferred_*'' (the user
1023 request), ``current_*'' (what was actually set) and ``forced_*''
1024 (Positive - a soft limit, negative - a hard limit). */
1025
1026 struct memory_packet_config
1027 {
1028 const char *name;
1029 long size;
1030 int fixed_p;
1031 };
1032
1033 /* The default max memory-write-packet-size. The 16k is historical.
1034 (It came from older GDB's using alloca for buffers and the
1035 knowledge (folklore?) that some hosts don't cope very well with
1036 large alloca calls.) */
1037 #define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1038
1039 /* The minimum remote packet size for memory transfers. Ensures we
1040 can write at least one byte. */
1041 #define MIN_MEMORY_PACKET_SIZE 20
1042
1043 /* Compute the current size of a read/write packet. Since this makes
1044 use of ``actual_register_packet_size'' the computation is dynamic. */
1045
1046 static long
1047 get_memory_packet_size (struct memory_packet_config *config)
1048 {
1049 struct remote_state *rs = get_remote_state ();
1050 struct remote_arch_state *rsa = get_remote_arch_state ();
1051
1052 long what_they_get;
1053 if (config->fixed_p)
1054 {
1055 if (config->size <= 0)
1056 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1057 else
1058 what_they_get = config->size;
1059 }
1060 else
1061 {
1062 what_they_get = get_remote_packet_size ();
1063 /* Limit the packet to the size specified by the user. */
1064 if (config->size > 0
1065 && what_they_get > config->size)
1066 what_they_get = config->size;
1067
1068 /* Limit it to the size of the targets ``g'' response unless we have
1069 permission from the stub to use a larger packet size. */
1070 if (rs->explicit_packet_size == 0
1071 && rsa->actual_register_packet_size > 0
1072 && what_they_get > rsa->actual_register_packet_size)
1073 what_they_get = rsa->actual_register_packet_size;
1074 }
1075 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1076 what_they_get = MIN_MEMORY_PACKET_SIZE;
1077
1078 /* Make sure there is room in the global buffer for this packet
1079 (including its trailing NUL byte). */
1080 if (rs->buf_size < what_they_get + 1)
1081 {
1082 rs->buf_size = 2 * what_they_get;
1083 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
1084 }
1085
1086 return what_they_get;
1087 }
1088
1089 /* Update the size of a read/write packet. If they user wants
1090 something really big then do a sanity check. */
1091
1092 static void
1093 set_memory_packet_size (char *args, struct memory_packet_config *config)
1094 {
1095 int fixed_p = config->fixed_p;
1096 long size = config->size;
1097
1098 if (args == NULL)
1099 error (_("Argument required (integer, `fixed' or `limited')."));
1100 else if (strcmp (args, "hard") == 0
1101 || strcmp (args, "fixed") == 0)
1102 fixed_p = 1;
1103 else if (strcmp (args, "soft") == 0
1104 || strcmp (args, "limit") == 0)
1105 fixed_p = 0;
1106 else
1107 {
1108 char *end;
1109
1110 size = strtoul (args, &end, 0);
1111 if (args == end)
1112 error (_("Invalid %s (bad syntax)."), config->name);
1113
1114 /* Instead of explicitly capping the size of a packet to or
1115 disallowing it, the user is allowed to set the size to
1116 something arbitrarily large. */
1117 }
1118
1119 /* So that the query shows the correct value. */
1120 if (size <= 0)
1121 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1122
1123 /* Extra checks? */
1124 if (fixed_p && !config->fixed_p)
1125 {
1126 if (! query (_("The target may not be able to correctly handle a %s\n"
1127 "of %ld bytes. Change the packet size? "),
1128 config->name, size))
1129 error (_("Packet size not changed."));
1130 }
1131 /* Update the config. */
1132 config->fixed_p = fixed_p;
1133 config->size = size;
1134 }
1135
1136 static void
1137 show_memory_packet_size (struct memory_packet_config *config)
1138 {
1139 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1140 if (config->fixed_p)
1141 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1142 get_memory_packet_size (config));
1143 else
1144 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1145 get_memory_packet_size (config));
1146 }
1147
1148 static struct memory_packet_config memory_write_packet_config =
1149 {
1150 "memory-write-packet-size",
1151 };
1152
1153 static void
1154 set_memory_write_packet_size (char *args, int from_tty)
1155 {
1156 set_memory_packet_size (args, &memory_write_packet_config);
1157 }
1158
1159 static void
1160 show_memory_write_packet_size (char *args, int from_tty)
1161 {
1162 show_memory_packet_size (&memory_write_packet_config);
1163 }
1164
1165 static long
1166 get_memory_write_packet_size (void)
1167 {
1168 return get_memory_packet_size (&memory_write_packet_config);
1169 }
1170
1171 static struct memory_packet_config memory_read_packet_config =
1172 {
1173 "memory-read-packet-size",
1174 };
1175
1176 static void
1177 set_memory_read_packet_size (char *args, int from_tty)
1178 {
1179 set_memory_packet_size (args, &memory_read_packet_config);
1180 }
1181
1182 static void
1183 show_memory_read_packet_size (char *args, int from_tty)
1184 {
1185 show_memory_packet_size (&memory_read_packet_config);
1186 }
1187
1188 static long
1189 get_memory_read_packet_size (void)
1190 {
1191 long size = get_memory_packet_size (&memory_read_packet_config);
1192
1193 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1194 extra buffer size argument before the memory read size can be
1195 increased beyond this. */
1196 if (size > get_remote_packet_size ())
1197 size = get_remote_packet_size ();
1198 return size;
1199 }
1200
1201 \f
1202 /* Generic configuration support for packets the stub optionally
1203 supports. Allows the user to specify the use of the packet as well
1204 as allowing GDB to auto-detect support in the remote stub. */
1205
1206 enum packet_support
1207 {
1208 PACKET_SUPPORT_UNKNOWN = 0,
1209 PACKET_ENABLE,
1210 PACKET_DISABLE
1211 };
1212
1213 struct packet_config
1214 {
1215 const char *name;
1216 const char *title;
1217
1218 /* If auto, GDB auto-detects support for this packet or feature,
1219 either through qSupported, or by trying the packet and looking
1220 at the response. If true, GDB assumes the target supports this
1221 packet. If false, the packet is disabled. Configs that don't
1222 have an associated command always have this set to auto. */
1223 enum auto_boolean detect;
1224
1225 /* Does the target support this packet? */
1226 enum packet_support support;
1227 };
1228
1229 /* Analyze a packet's return value and update the packet config
1230 accordingly. */
1231
1232 enum packet_result
1233 {
1234 PACKET_ERROR,
1235 PACKET_OK,
1236 PACKET_UNKNOWN
1237 };
1238
1239 static enum packet_support packet_config_support (struct packet_config *config);
1240 static enum packet_support packet_support (int packet);
1241
1242 static void
1243 show_packet_config_cmd (struct packet_config *config)
1244 {
1245 const char *support = "internal-error";
1246
1247 switch (packet_config_support (config))
1248 {
1249 case PACKET_ENABLE:
1250 support = "enabled";
1251 break;
1252 case PACKET_DISABLE:
1253 support = "disabled";
1254 break;
1255 case PACKET_SUPPORT_UNKNOWN:
1256 support = "unknown";
1257 break;
1258 }
1259 switch (config->detect)
1260 {
1261 case AUTO_BOOLEAN_AUTO:
1262 printf_filtered (_("Support for the `%s' packet "
1263 "is auto-detected, currently %s.\n"),
1264 config->name, support);
1265 break;
1266 case AUTO_BOOLEAN_TRUE:
1267 case AUTO_BOOLEAN_FALSE:
1268 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1269 config->name, support);
1270 break;
1271 }
1272 }
1273
1274 static void
1275 add_packet_config_cmd (struct packet_config *config, const char *name,
1276 const char *title, int legacy)
1277 {
1278 char *set_doc;
1279 char *show_doc;
1280 char *cmd_name;
1281
1282 config->name = name;
1283 config->title = title;
1284 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1285 name, title);
1286 show_doc = xstrprintf ("Show current use of remote "
1287 "protocol `%s' (%s) packet",
1288 name, title);
1289 /* set/show TITLE-packet {auto,on,off} */
1290 cmd_name = xstrprintf ("%s-packet", title);
1291 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1292 &config->detect, set_doc,
1293 show_doc, NULL, /* help_doc */
1294 NULL,
1295 show_remote_protocol_packet_cmd,
1296 &remote_set_cmdlist, &remote_show_cmdlist);
1297 /* The command code copies the documentation strings. */
1298 xfree (set_doc);
1299 xfree (show_doc);
1300 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1301 if (legacy)
1302 {
1303 char *legacy_name;
1304
1305 legacy_name = xstrprintf ("%s-packet", name);
1306 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1307 &remote_set_cmdlist);
1308 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1309 &remote_show_cmdlist);
1310 }
1311 }
1312
1313 static enum packet_result
1314 packet_check_result (const char *buf)
1315 {
1316 if (buf[0] != '\0')
1317 {
1318 /* The stub recognized the packet request. Check that the
1319 operation succeeded. */
1320 if (buf[0] == 'E'
1321 && isxdigit (buf[1]) && isxdigit (buf[2])
1322 && buf[3] == '\0')
1323 /* "Enn" - definitly an error. */
1324 return PACKET_ERROR;
1325
1326 /* Always treat "E." as an error. This will be used for
1327 more verbose error messages, such as E.memtypes. */
1328 if (buf[0] == 'E' && buf[1] == '.')
1329 return PACKET_ERROR;
1330
1331 /* The packet may or may not be OK. Just assume it is. */
1332 return PACKET_OK;
1333 }
1334 else
1335 /* The stub does not support the packet. */
1336 return PACKET_UNKNOWN;
1337 }
1338
1339 static enum packet_result
1340 packet_ok (const char *buf, struct packet_config *config)
1341 {
1342 enum packet_result result;
1343
1344 if (config->detect != AUTO_BOOLEAN_TRUE
1345 && config->support == PACKET_DISABLE)
1346 internal_error (__FILE__, __LINE__,
1347 _("packet_ok: attempt to use a disabled packet"));
1348
1349 result = packet_check_result (buf);
1350 switch (result)
1351 {
1352 case PACKET_OK:
1353 case PACKET_ERROR:
1354 /* The stub recognized the packet request. */
1355 if (config->support == PACKET_SUPPORT_UNKNOWN)
1356 {
1357 if (remote_debug)
1358 fprintf_unfiltered (gdb_stdlog,
1359 "Packet %s (%s) is supported\n",
1360 config->name, config->title);
1361 config->support = PACKET_ENABLE;
1362 }
1363 break;
1364 case PACKET_UNKNOWN:
1365 /* The stub does not support the packet. */
1366 if (config->detect == AUTO_BOOLEAN_AUTO
1367 && config->support == PACKET_ENABLE)
1368 {
1369 /* If the stub previously indicated that the packet was
1370 supported then there is a protocol error. */
1371 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1372 config->name, config->title);
1373 }
1374 else if (config->detect == AUTO_BOOLEAN_TRUE)
1375 {
1376 /* The user set it wrong. */
1377 error (_("Enabled packet %s (%s) not recognized by stub"),
1378 config->name, config->title);
1379 }
1380
1381 if (remote_debug)
1382 fprintf_unfiltered (gdb_stdlog,
1383 "Packet %s (%s) is NOT supported\n",
1384 config->name, config->title);
1385 config->support = PACKET_DISABLE;
1386 break;
1387 }
1388
1389 return result;
1390 }
1391
1392 enum {
1393 PACKET_vCont = 0,
1394 PACKET_X,
1395 PACKET_qSymbol,
1396 PACKET_P,
1397 PACKET_p,
1398 PACKET_Z0,
1399 PACKET_Z1,
1400 PACKET_Z2,
1401 PACKET_Z3,
1402 PACKET_Z4,
1403 PACKET_vFile_setfs,
1404 PACKET_vFile_open,
1405 PACKET_vFile_pread,
1406 PACKET_vFile_pwrite,
1407 PACKET_vFile_close,
1408 PACKET_vFile_unlink,
1409 PACKET_vFile_readlink,
1410 PACKET_vFile_fstat,
1411 PACKET_qXfer_auxv,
1412 PACKET_qXfer_features,
1413 PACKET_qXfer_exec_file,
1414 PACKET_qXfer_libraries,
1415 PACKET_qXfer_libraries_svr4,
1416 PACKET_qXfer_memory_map,
1417 PACKET_qXfer_spu_read,
1418 PACKET_qXfer_spu_write,
1419 PACKET_qXfer_osdata,
1420 PACKET_qXfer_threads,
1421 PACKET_qXfer_statictrace_read,
1422 PACKET_qXfer_traceframe_info,
1423 PACKET_qXfer_uib,
1424 PACKET_qGetTIBAddr,
1425 PACKET_qGetTLSAddr,
1426 PACKET_qSupported,
1427 PACKET_qTStatus,
1428 PACKET_QPassSignals,
1429 PACKET_QCatchSyscalls,
1430 PACKET_QProgramSignals,
1431 PACKET_QStartupWithShell,
1432 PACKET_qCRC,
1433 PACKET_qSearch_memory,
1434 PACKET_vAttach,
1435 PACKET_vRun,
1436 PACKET_QStartNoAckMode,
1437 PACKET_vKill,
1438 PACKET_qXfer_siginfo_read,
1439 PACKET_qXfer_siginfo_write,
1440 PACKET_qAttached,
1441
1442 /* Support for conditional tracepoints. */
1443 PACKET_ConditionalTracepoints,
1444
1445 /* Support for target-side breakpoint conditions. */
1446 PACKET_ConditionalBreakpoints,
1447
1448 /* Support for target-side breakpoint commands. */
1449 PACKET_BreakpointCommands,
1450
1451 /* Support for fast tracepoints. */
1452 PACKET_FastTracepoints,
1453
1454 /* Support for static tracepoints. */
1455 PACKET_StaticTracepoints,
1456
1457 /* Support for installing tracepoints while a trace experiment is
1458 running. */
1459 PACKET_InstallInTrace,
1460
1461 PACKET_bc,
1462 PACKET_bs,
1463 PACKET_TracepointSource,
1464 PACKET_QAllow,
1465 PACKET_qXfer_fdpic,
1466 PACKET_QDisableRandomization,
1467 PACKET_QAgent,
1468 PACKET_QTBuffer_size,
1469 PACKET_Qbtrace_off,
1470 PACKET_Qbtrace_bts,
1471 PACKET_Qbtrace_pt,
1472 PACKET_qXfer_btrace,
1473
1474 /* Support for the QNonStop packet. */
1475 PACKET_QNonStop,
1476
1477 /* Support for the QThreadEvents packet. */
1478 PACKET_QThreadEvents,
1479
1480 /* Support for multi-process extensions. */
1481 PACKET_multiprocess_feature,
1482
1483 /* Support for enabling and disabling tracepoints while a trace
1484 experiment is running. */
1485 PACKET_EnableDisableTracepoints_feature,
1486
1487 /* Support for collecting strings using the tracenz bytecode. */
1488 PACKET_tracenz_feature,
1489
1490 /* Support for continuing to run a trace experiment while GDB is
1491 disconnected. */
1492 PACKET_DisconnectedTracing_feature,
1493
1494 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1495 PACKET_augmented_libraries_svr4_read_feature,
1496
1497 /* Support for the qXfer:btrace-conf:read packet. */
1498 PACKET_qXfer_btrace_conf,
1499
1500 /* Support for the Qbtrace-conf:bts:size packet. */
1501 PACKET_Qbtrace_conf_bts_size,
1502
1503 /* Support for swbreak+ feature. */
1504 PACKET_swbreak_feature,
1505
1506 /* Support for hwbreak+ feature. */
1507 PACKET_hwbreak_feature,
1508
1509 /* Support for fork events. */
1510 PACKET_fork_event_feature,
1511
1512 /* Support for vfork events. */
1513 PACKET_vfork_event_feature,
1514
1515 /* Support for the Qbtrace-conf:pt:size packet. */
1516 PACKET_Qbtrace_conf_pt_size,
1517
1518 /* Support for exec events. */
1519 PACKET_exec_event_feature,
1520
1521 /* Support for query supported vCont actions. */
1522 PACKET_vContSupported,
1523
1524 /* Support remote CTRL-C. */
1525 PACKET_vCtrlC,
1526
1527 /* Support TARGET_WAITKIND_NO_RESUMED. */
1528 PACKET_no_resumed,
1529
1530 PACKET_MAX
1531 };
1532
1533 static struct packet_config remote_protocol_packets[PACKET_MAX];
1534
1535 /* Returns the packet's corresponding "set remote foo-packet" command
1536 state. See struct packet_config for more details. */
1537
1538 static enum auto_boolean
1539 packet_set_cmd_state (int packet)
1540 {
1541 return remote_protocol_packets[packet].detect;
1542 }
1543
1544 /* Returns whether a given packet or feature is supported. This takes
1545 into account the state of the corresponding "set remote foo-packet"
1546 command, which may be used to bypass auto-detection. */
1547
1548 static enum packet_support
1549 packet_config_support (struct packet_config *config)
1550 {
1551 switch (config->detect)
1552 {
1553 case AUTO_BOOLEAN_TRUE:
1554 return PACKET_ENABLE;
1555 case AUTO_BOOLEAN_FALSE:
1556 return PACKET_DISABLE;
1557 case AUTO_BOOLEAN_AUTO:
1558 return config->support;
1559 default:
1560 gdb_assert_not_reached (_("bad switch"));
1561 }
1562 }
1563
1564 /* Same as packet_config_support, but takes the packet's enum value as
1565 argument. */
1566
1567 static enum packet_support
1568 packet_support (int packet)
1569 {
1570 struct packet_config *config = &remote_protocol_packets[packet];
1571
1572 return packet_config_support (config);
1573 }
1574
1575 static void
1576 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1577 struct cmd_list_element *c,
1578 const char *value)
1579 {
1580 struct packet_config *packet;
1581
1582 for (packet = remote_protocol_packets;
1583 packet < &remote_protocol_packets[PACKET_MAX];
1584 packet++)
1585 {
1586 if (&packet->detect == c->var)
1587 {
1588 show_packet_config_cmd (packet);
1589 return;
1590 }
1591 }
1592 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1593 c->name);
1594 }
1595
1596 /* Should we try one of the 'Z' requests? */
1597
1598 enum Z_packet_type
1599 {
1600 Z_PACKET_SOFTWARE_BP,
1601 Z_PACKET_HARDWARE_BP,
1602 Z_PACKET_WRITE_WP,
1603 Z_PACKET_READ_WP,
1604 Z_PACKET_ACCESS_WP,
1605 NR_Z_PACKET_TYPES
1606 };
1607
1608 /* For compatibility with older distributions. Provide a ``set remote
1609 Z-packet ...'' command that updates all the Z packet types. */
1610
1611 static enum auto_boolean remote_Z_packet_detect;
1612
1613 static void
1614 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1615 struct cmd_list_element *c)
1616 {
1617 int i;
1618
1619 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1620 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1621 }
1622
1623 static void
1624 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1625 struct cmd_list_element *c,
1626 const char *value)
1627 {
1628 int i;
1629
1630 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1631 {
1632 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1633 }
1634 }
1635
1636 /* Returns true if the multi-process extensions are in effect. */
1637
1638 static int
1639 remote_multi_process_p (struct remote_state *rs)
1640 {
1641 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1642 }
1643
1644 /* Returns true if fork events are supported. */
1645
1646 static int
1647 remote_fork_event_p (struct remote_state *rs)
1648 {
1649 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1650 }
1651
1652 /* Returns true if vfork events are supported. */
1653
1654 static int
1655 remote_vfork_event_p (struct remote_state *rs)
1656 {
1657 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1658 }
1659
1660 /* Returns true if exec events are supported. */
1661
1662 static int
1663 remote_exec_event_p (struct remote_state *rs)
1664 {
1665 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1666 }
1667
1668 /* Insert fork catchpoint target routine. If fork events are enabled
1669 then return success, nothing more to do. */
1670
1671 static int
1672 remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1673 {
1674 struct remote_state *rs = get_remote_state ();
1675
1676 return !remote_fork_event_p (rs);
1677 }
1678
1679 /* Remove fork catchpoint target routine. Nothing to do, just
1680 return success. */
1681
1682 static int
1683 remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1684 {
1685 return 0;
1686 }
1687
1688 /* Insert vfork catchpoint target routine. If vfork events are enabled
1689 then return success, nothing more to do. */
1690
1691 static int
1692 remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1693 {
1694 struct remote_state *rs = get_remote_state ();
1695
1696 return !remote_vfork_event_p (rs);
1697 }
1698
1699 /* Remove vfork catchpoint target routine. Nothing to do, just
1700 return success. */
1701
1702 static int
1703 remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1704 {
1705 return 0;
1706 }
1707
1708 /* Insert exec catchpoint target routine. If exec events are
1709 enabled, just return success. */
1710
1711 static int
1712 remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1713 {
1714 struct remote_state *rs = get_remote_state ();
1715
1716 return !remote_exec_event_p (rs);
1717 }
1718
1719 /* Remove exec catchpoint target routine. Nothing to do, just
1720 return success. */
1721
1722 static int
1723 remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1724 {
1725 return 0;
1726 }
1727
1728 \f
1729 /* Asynchronous signal handle registered as event loop source for
1730 when we have pending events ready to be passed to the core. */
1731
1732 static struct async_event_handler *remote_async_inferior_event_token;
1733
1734 \f
1735
1736 static ptid_t magic_null_ptid;
1737 static ptid_t not_sent_ptid;
1738 static ptid_t any_thread_ptid;
1739
1740 /* Find out if the stub attached to PID (and hence GDB should offer to
1741 detach instead of killing it when bailing out). */
1742
1743 static int
1744 remote_query_attached (int pid)
1745 {
1746 struct remote_state *rs = get_remote_state ();
1747 size_t size = get_remote_packet_size ();
1748
1749 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
1750 return 0;
1751
1752 if (remote_multi_process_p (rs))
1753 xsnprintf (rs->buf, size, "qAttached:%x", pid);
1754 else
1755 xsnprintf (rs->buf, size, "qAttached");
1756
1757 putpkt (rs->buf);
1758 getpkt (&rs->buf, &rs->buf_size, 0);
1759
1760 switch (packet_ok (rs->buf,
1761 &remote_protocol_packets[PACKET_qAttached]))
1762 {
1763 case PACKET_OK:
1764 if (strcmp (rs->buf, "1") == 0)
1765 return 1;
1766 break;
1767 case PACKET_ERROR:
1768 warning (_("Remote failure reply: %s"), rs->buf);
1769 break;
1770 case PACKET_UNKNOWN:
1771 break;
1772 }
1773
1774 return 0;
1775 }
1776
1777 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1778 has been invented by GDB, instead of reported by the target. Since
1779 we can be connected to a remote system before before knowing about
1780 any inferior, mark the target with execution when we find the first
1781 inferior. If ATTACHED is 1, then we had just attached to this
1782 inferior. If it is 0, then we just created this inferior. If it
1783 is -1, then try querying the remote stub to find out if it had
1784 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1785 attempt to open this inferior's executable as the main executable
1786 if no main executable is open already. */
1787
1788 static struct inferior *
1789 remote_add_inferior (int fake_pid_p, int pid, int attached,
1790 int try_open_exec)
1791 {
1792 struct inferior *inf;
1793
1794 /* Check whether this process we're learning about is to be
1795 considered attached, or if is to be considered to have been
1796 spawned by the stub. */
1797 if (attached == -1)
1798 attached = remote_query_attached (pid);
1799
1800 if (gdbarch_has_global_solist (target_gdbarch ()))
1801 {
1802 /* If the target shares code across all inferiors, then every
1803 attach adds a new inferior. */
1804 inf = add_inferior (pid);
1805
1806 /* ... and every inferior is bound to the same program space.
1807 However, each inferior may still have its own address
1808 space. */
1809 inf->aspace = maybe_new_address_space ();
1810 inf->pspace = current_program_space;
1811 }
1812 else
1813 {
1814 /* In the traditional debugging scenario, there's a 1-1 match
1815 between program/address spaces. We simply bind the inferior
1816 to the program space's address space. */
1817 inf = current_inferior ();
1818 inferior_appeared (inf, pid);
1819 }
1820
1821 inf->attach_flag = attached;
1822 inf->fake_pid_p = fake_pid_p;
1823
1824 /* If no main executable is currently open then attempt to
1825 open the file that was executed to create this inferior. */
1826 if (try_open_exec && get_exec_file (0) == NULL)
1827 exec_file_locate_attach (pid, 0, 1);
1828
1829 return inf;
1830 }
1831
1832 static struct private_thread_info *
1833 get_private_info_thread (struct thread_info *info);
1834
1835 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1836 according to RUNNING. */
1837
1838 static void
1839 remote_add_thread (ptid_t ptid, int running, int executing)
1840 {
1841 struct remote_state *rs = get_remote_state ();
1842 struct thread_info *thread;
1843
1844 /* GDB historically didn't pull threads in the initial connection
1845 setup. If the remote target doesn't even have a concept of
1846 threads (e.g., a bare-metal target), even if internally we
1847 consider that a single-threaded target, mentioning a new thread
1848 might be confusing to the user. Be silent then, preserving the
1849 age old behavior. */
1850 if (rs->starting_up)
1851 thread = add_thread_silent (ptid);
1852 else
1853 thread = add_thread (ptid);
1854
1855 get_private_info_thread (thread)->vcont_resumed = executing;
1856 set_executing (ptid, executing);
1857 set_running (ptid, running);
1858 }
1859
1860 /* Come here when we learn about a thread id from the remote target.
1861 It may be the first time we hear about such thread, so take the
1862 opportunity to add it to GDB's thread list. In case this is the
1863 first time we're noticing its corresponding inferior, add it to
1864 GDB's inferior list as well. EXECUTING indicates whether the
1865 thread is (internally) executing or stopped. */
1866
1867 static void
1868 remote_notice_new_inferior (ptid_t currthread, int executing)
1869 {
1870 /* In non-stop mode, we assume new found threads are (externally)
1871 running until proven otherwise with a stop reply. In all-stop,
1872 we can only get here if all threads are stopped. */
1873 int running = target_is_non_stop_p () ? 1 : 0;
1874
1875 /* If this is a new thread, add it to GDB's thread list.
1876 If we leave it up to WFI to do this, bad things will happen. */
1877
1878 if (in_thread_list (currthread) && is_exited (currthread))
1879 {
1880 /* We're seeing an event on a thread id we knew had exited.
1881 This has to be a new thread reusing the old id. Add it. */
1882 remote_add_thread (currthread, running, executing);
1883 return;
1884 }
1885
1886 if (!in_thread_list (currthread))
1887 {
1888 struct inferior *inf = NULL;
1889 int pid = ptid_get_pid (currthread);
1890
1891 if (ptid_is_pid (inferior_ptid)
1892 && pid == ptid_get_pid (inferior_ptid))
1893 {
1894 /* inferior_ptid has no thread member yet. This can happen
1895 with the vAttach -> remote_wait,"TAAthread:" path if the
1896 stub doesn't support qC. This is the first stop reported
1897 after an attach, so this is the main thread. Update the
1898 ptid in the thread list. */
1899 if (in_thread_list (pid_to_ptid (pid)))
1900 thread_change_ptid (inferior_ptid, currthread);
1901 else
1902 {
1903 remote_add_thread (currthread, running, executing);
1904 inferior_ptid = currthread;
1905 }
1906 return;
1907 }
1908
1909 if (ptid_equal (magic_null_ptid, inferior_ptid))
1910 {
1911 /* inferior_ptid is not set yet. This can happen with the
1912 vRun -> remote_wait,"TAAthread:" path if the stub
1913 doesn't support qC. This is the first stop reported
1914 after an attach, so this is the main thread. Update the
1915 ptid in the thread list. */
1916 thread_change_ptid (inferior_ptid, currthread);
1917 return;
1918 }
1919
1920 /* When connecting to a target remote, or to a target
1921 extended-remote which already was debugging an inferior, we
1922 may not know about it yet. Add it before adding its child
1923 thread, so notifications are emitted in a sensible order. */
1924 if (!in_inferior_list (ptid_get_pid (currthread)))
1925 {
1926 struct remote_state *rs = get_remote_state ();
1927 int fake_pid_p = !remote_multi_process_p (rs);
1928
1929 inf = remote_add_inferior (fake_pid_p,
1930 ptid_get_pid (currthread), -1, 1);
1931 }
1932
1933 /* This is really a new thread. Add it. */
1934 remote_add_thread (currthread, running, executing);
1935
1936 /* If we found a new inferior, let the common code do whatever
1937 it needs to with it (e.g., read shared libraries, insert
1938 breakpoints), unless we're just setting up an all-stop
1939 connection. */
1940 if (inf != NULL)
1941 {
1942 struct remote_state *rs = get_remote_state ();
1943
1944 if (!rs->starting_up)
1945 notice_new_inferior (currthread, executing, 0);
1946 }
1947 }
1948 }
1949
1950 /* Return THREAD's private thread data, creating it if necessary. */
1951
1952 static struct private_thread_info *
1953 get_private_info_thread (struct thread_info *thread)
1954 {
1955 gdb_assert (thread != NULL);
1956
1957 if (thread->priv == NULL)
1958 {
1959 struct private_thread_info *priv = XNEW (struct private_thread_info);
1960
1961 thread->private_dtor = free_private_thread_info;
1962 thread->priv = priv;
1963
1964 priv->core = -1;
1965 priv->extra = NULL;
1966 priv->name = NULL;
1967 priv->name = NULL;
1968 priv->last_resume_step = 0;
1969 priv->last_resume_sig = GDB_SIGNAL_0;
1970 priv->vcont_resumed = 0;
1971 }
1972
1973 return thread->priv;
1974 }
1975
1976 /* Return PTID's private thread data, creating it if necessary. */
1977
1978 static struct private_thread_info *
1979 get_private_info_ptid (ptid_t ptid)
1980 {
1981 struct thread_info *info = find_thread_ptid (ptid);
1982
1983 return get_private_info_thread (info);
1984 }
1985
1986 /* Call this function as a result of
1987 1) A halt indication (T packet) containing a thread id
1988 2) A direct query of currthread
1989 3) Successful execution of set thread */
1990
1991 static void
1992 record_currthread (struct remote_state *rs, ptid_t currthread)
1993 {
1994 rs->general_thread = currthread;
1995 }
1996
1997 /* If 'QPassSignals' is supported, tell the remote stub what signals
1998 it can simply pass through to the inferior without reporting. */
1999
2000 static void
2001 remote_pass_signals (struct target_ops *self,
2002 int numsigs, unsigned char *pass_signals)
2003 {
2004 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
2005 {
2006 char *pass_packet, *p;
2007 int count = 0, i;
2008 struct remote_state *rs = get_remote_state ();
2009
2010 gdb_assert (numsigs < 256);
2011 for (i = 0; i < numsigs; i++)
2012 {
2013 if (pass_signals[i])
2014 count++;
2015 }
2016 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
2017 strcpy (pass_packet, "QPassSignals:");
2018 p = pass_packet + strlen (pass_packet);
2019 for (i = 0; i < numsigs; i++)
2020 {
2021 if (pass_signals[i])
2022 {
2023 if (i >= 16)
2024 *p++ = tohex (i >> 4);
2025 *p++ = tohex (i & 15);
2026 if (count)
2027 *p++ = ';';
2028 else
2029 break;
2030 count--;
2031 }
2032 }
2033 *p = 0;
2034 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
2035 {
2036 putpkt (pass_packet);
2037 getpkt (&rs->buf, &rs->buf_size, 0);
2038 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
2039 if (rs->last_pass_packet)
2040 xfree (rs->last_pass_packet);
2041 rs->last_pass_packet = pass_packet;
2042 }
2043 else
2044 xfree (pass_packet);
2045 }
2046 }
2047
2048 /* If 'QCatchSyscalls' is supported, tell the remote stub
2049 to report syscalls to GDB. */
2050
2051 static int
2052 remote_set_syscall_catchpoint (struct target_ops *self,
2053 int pid, int needed, int any_count,
2054 int table_size, int *table)
2055 {
2056 char *catch_packet;
2057 enum packet_result result;
2058 int n_sysno = 0;
2059
2060 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2061 {
2062 /* Not supported. */
2063 return 1;
2064 }
2065
2066 if (needed && !any_count)
2067 {
2068 int i;
2069
2070 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2071 for (i = 0; i < table_size; i++)
2072 {
2073 if (table[i] != 0)
2074 n_sysno++;
2075 }
2076 }
2077
2078 if (remote_debug)
2079 {
2080 fprintf_unfiltered (gdb_stdlog,
2081 "remote_set_syscall_catchpoint "
2082 "pid %d needed %d any_count %d n_sysno %d\n",
2083 pid, needed, any_count, n_sysno);
2084 }
2085
2086 if (needed)
2087 {
2088 /* Prepare a packet with the sysno list, assuming max 8+1
2089 characters for a sysno. If the resulting packet size is too
2090 big, fallback on the non-selective packet. */
2091 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2092
2093 catch_packet = (char *) xmalloc (maxpktsz);
2094 strcpy (catch_packet, "QCatchSyscalls:1");
2095 if (!any_count)
2096 {
2097 int i;
2098 char *p;
2099
2100 p = catch_packet;
2101 p += strlen (p);
2102
2103 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
2104 for (i = 0; i < table_size; i++)
2105 {
2106 if (table[i] != 0)
2107 p += xsnprintf (p, catch_packet + maxpktsz - p, ";%x", i);
2108 }
2109 }
2110 if (strlen (catch_packet) > get_remote_packet_size ())
2111 {
2112 /* catch_packet too big. Fallback to less efficient
2113 non selective mode, with GDB doing the filtering. */
2114 catch_packet[sizeof ("QCatchSyscalls:1") - 1] = 0;
2115 }
2116 }
2117 else
2118 catch_packet = xstrdup ("QCatchSyscalls:0");
2119
2120 {
2121 struct cleanup *old_chain = make_cleanup (xfree, catch_packet);
2122 struct remote_state *rs = get_remote_state ();
2123
2124 putpkt (catch_packet);
2125 getpkt (&rs->buf, &rs->buf_size, 0);
2126 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2127 do_cleanups (old_chain);
2128 if (result == PACKET_OK)
2129 return 0;
2130 else
2131 return -1;
2132 }
2133 }
2134
2135 /* If 'QProgramSignals' is supported, tell the remote stub what
2136 signals it should pass through to the inferior when detaching. */
2137
2138 static void
2139 remote_program_signals (struct target_ops *self,
2140 int numsigs, unsigned char *signals)
2141 {
2142 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2143 {
2144 char *packet, *p;
2145 int count = 0, i;
2146 struct remote_state *rs = get_remote_state ();
2147
2148 gdb_assert (numsigs < 256);
2149 for (i = 0; i < numsigs; i++)
2150 {
2151 if (signals[i])
2152 count++;
2153 }
2154 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2155 strcpy (packet, "QProgramSignals:");
2156 p = packet + strlen (packet);
2157 for (i = 0; i < numsigs; i++)
2158 {
2159 if (signal_pass_state (i))
2160 {
2161 if (i >= 16)
2162 *p++ = tohex (i >> 4);
2163 *p++ = tohex (i & 15);
2164 if (count)
2165 *p++ = ';';
2166 else
2167 break;
2168 count--;
2169 }
2170 }
2171 *p = 0;
2172 if (!rs->last_program_signals_packet
2173 || strcmp (rs->last_program_signals_packet, packet) != 0)
2174 {
2175 putpkt (packet);
2176 getpkt (&rs->buf, &rs->buf_size, 0);
2177 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2178 xfree (rs->last_program_signals_packet);
2179 rs->last_program_signals_packet = packet;
2180 }
2181 else
2182 xfree (packet);
2183 }
2184 }
2185
2186 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2187 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2188 thread. If GEN is set, set the general thread, if not, then set
2189 the step/continue thread. */
2190 static void
2191 set_thread (ptid_t ptid, int gen)
2192 {
2193 struct remote_state *rs = get_remote_state ();
2194 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2195 char *buf = rs->buf;
2196 char *endbuf = rs->buf + get_remote_packet_size ();
2197
2198 if (ptid_equal (state, ptid))
2199 return;
2200
2201 *buf++ = 'H';
2202 *buf++ = gen ? 'g' : 'c';
2203 if (ptid_equal (ptid, magic_null_ptid))
2204 xsnprintf (buf, endbuf - buf, "0");
2205 else if (ptid_equal (ptid, any_thread_ptid))
2206 xsnprintf (buf, endbuf - buf, "0");
2207 else if (ptid_equal (ptid, minus_one_ptid))
2208 xsnprintf (buf, endbuf - buf, "-1");
2209 else
2210 write_ptid (buf, endbuf, ptid);
2211 putpkt (rs->buf);
2212 getpkt (&rs->buf, &rs->buf_size, 0);
2213 if (gen)
2214 rs->general_thread = ptid;
2215 else
2216 rs->continue_thread = ptid;
2217 }
2218
2219 static void
2220 set_general_thread (ptid_t ptid)
2221 {
2222 set_thread (ptid, 1);
2223 }
2224
2225 static void
2226 set_continue_thread (ptid_t ptid)
2227 {
2228 set_thread (ptid, 0);
2229 }
2230
2231 /* Change the remote current process. Which thread within the process
2232 ends up selected isn't important, as long as it is the same process
2233 as what INFERIOR_PTID points to.
2234
2235 This comes from that fact that there is no explicit notion of
2236 "selected process" in the protocol. The selected process for
2237 general operations is the process the selected general thread
2238 belongs to. */
2239
2240 static void
2241 set_general_process (void)
2242 {
2243 struct remote_state *rs = get_remote_state ();
2244
2245 /* If the remote can't handle multiple processes, don't bother. */
2246 if (!remote_multi_process_p (rs))
2247 return;
2248
2249 /* We only need to change the remote current thread if it's pointing
2250 at some other process. */
2251 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
2252 set_general_thread (inferior_ptid);
2253 }
2254
2255 \f
2256 /* Return nonzero if this is the main thread that we made up ourselves
2257 to model non-threaded targets as single-threaded. */
2258
2259 static int
2260 remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
2261 {
2262 if (ptid_equal (ptid, magic_null_ptid))
2263 /* The main thread is always alive. */
2264 return 1;
2265
2266 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
2267 /* The main thread is always alive. This can happen after a
2268 vAttach, if the remote side doesn't support
2269 multi-threading. */
2270 return 1;
2271
2272 return 0;
2273 }
2274
2275 /* Return nonzero if the thread PTID is still alive on the remote
2276 system. */
2277
2278 static int
2279 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2280 {
2281 struct remote_state *rs = get_remote_state ();
2282 char *p, *endp;
2283
2284 /* Check if this is a thread that we made up ourselves to model
2285 non-threaded targets as single-threaded. */
2286 if (remote_thread_always_alive (ops, ptid))
2287 return 1;
2288
2289 p = rs->buf;
2290 endp = rs->buf + get_remote_packet_size ();
2291
2292 *p++ = 'T';
2293 write_ptid (p, endp, ptid);
2294
2295 putpkt (rs->buf);
2296 getpkt (&rs->buf, &rs->buf_size, 0);
2297 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2298 }
2299
2300 /* Return a pointer to a thread name if we know it and NULL otherwise.
2301 The thread_info object owns the memory for the name. */
2302
2303 static const char *
2304 remote_thread_name (struct target_ops *ops, struct thread_info *info)
2305 {
2306 if (info->priv != NULL)
2307 return info->priv->name;
2308
2309 return NULL;
2310 }
2311
2312 /* About these extended threadlist and threadinfo packets. They are
2313 variable length packets but, the fields within them are often fixed
2314 length. They are redundent enough to send over UDP as is the
2315 remote protocol in general. There is a matching unit test module
2316 in libstub. */
2317
2318 /* WARNING: This threadref data structure comes from the remote O.S.,
2319 libstub protocol encoding, and remote.c. It is not particularly
2320 changable. */
2321
2322 /* Right now, the internal structure is int. We want it to be bigger.
2323 Plan to fix this. */
2324
2325 typedef int gdb_threadref; /* Internal GDB thread reference. */
2326
2327 /* gdb_ext_thread_info is an internal GDB data structure which is
2328 equivalent to the reply of the remote threadinfo packet. */
2329
2330 struct gdb_ext_thread_info
2331 {
2332 threadref threadid; /* External form of thread reference. */
2333 int active; /* Has state interesting to GDB?
2334 regs, stack. */
2335 char display[256]; /* Brief state display, name,
2336 blocked/suspended. */
2337 char shortname[32]; /* To be used to name threads. */
2338 char more_display[256]; /* Long info, statistics, queue depth,
2339 whatever. */
2340 };
2341
2342 /* The volume of remote transfers can be limited by submitting
2343 a mask containing bits specifying the desired information.
2344 Use a union of these values as the 'selection' parameter to
2345 get_thread_info. FIXME: Make these TAG names more thread specific. */
2346
2347 #define TAG_THREADID 1
2348 #define TAG_EXISTS 2
2349 #define TAG_DISPLAY 4
2350 #define TAG_THREADNAME 8
2351 #define TAG_MOREDISPLAY 16
2352
2353 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2354
2355 static char *unpack_nibble (char *buf, int *val);
2356
2357 static char *unpack_byte (char *buf, int *value);
2358
2359 static char *pack_int (char *buf, int value);
2360
2361 static char *unpack_int (char *buf, int *value);
2362
2363 static char *unpack_string (char *src, char *dest, int length);
2364
2365 static char *pack_threadid (char *pkt, threadref *id);
2366
2367 static char *unpack_threadid (char *inbuf, threadref *id);
2368
2369 void int_to_threadref (threadref *id, int value);
2370
2371 static int threadref_to_int (threadref *ref);
2372
2373 static void copy_threadref (threadref *dest, threadref *src);
2374
2375 static int threadmatch (threadref *dest, threadref *src);
2376
2377 static char *pack_threadinfo_request (char *pkt, int mode,
2378 threadref *id);
2379
2380 static int remote_unpack_thread_info_response (char *pkt,
2381 threadref *expectedref,
2382 struct gdb_ext_thread_info
2383 *info);
2384
2385
2386 static int remote_get_threadinfo (threadref *threadid,
2387 int fieldset, /*TAG mask */
2388 struct gdb_ext_thread_info *info);
2389
2390 static char *pack_threadlist_request (char *pkt, int startflag,
2391 int threadcount,
2392 threadref *nextthread);
2393
2394 static int parse_threadlist_response (char *pkt,
2395 int result_limit,
2396 threadref *original_echo,
2397 threadref *resultlist,
2398 int *doneflag);
2399
2400 static int remote_get_threadlist (int startflag,
2401 threadref *nextthread,
2402 int result_limit,
2403 int *done,
2404 int *result_count,
2405 threadref *threadlist);
2406
2407 typedef int (*rmt_thread_action) (threadref *ref, void *context);
2408
2409 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2410 void *context, int looplimit);
2411
2412 static int remote_newthread_step (threadref *ref, void *context);
2413
2414
2415 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2416 buffer we're allowed to write to. Returns
2417 BUF+CHARACTERS_WRITTEN. */
2418
2419 static char *
2420 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2421 {
2422 int pid, tid;
2423 struct remote_state *rs = get_remote_state ();
2424
2425 if (remote_multi_process_p (rs))
2426 {
2427 pid = ptid_get_pid (ptid);
2428 if (pid < 0)
2429 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2430 else
2431 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2432 }
2433 tid = ptid_get_lwp (ptid);
2434 if (tid < 0)
2435 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2436 else
2437 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2438
2439 return buf;
2440 }
2441
2442 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2443 passed the last parsed char. Returns null_ptid on error. */
2444
2445 static ptid_t
2446 read_ptid (char *buf, char **obuf)
2447 {
2448 char *p = buf;
2449 char *pp;
2450 ULONGEST pid = 0, tid = 0;
2451
2452 if (*p == 'p')
2453 {
2454 /* Multi-process ptid. */
2455 pp = unpack_varlen_hex (p + 1, &pid);
2456 if (*pp != '.')
2457 error (_("invalid remote ptid: %s"), p);
2458
2459 p = pp;
2460 pp = unpack_varlen_hex (p + 1, &tid);
2461 if (obuf)
2462 *obuf = pp;
2463 return ptid_build (pid, tid, 0);
2464 }
2465
2466 /* No multi-process. Just a tid. */
2467 pp = unpack_varlen_hex (p, &tid);
2468
2469 /* Return null_ptid when no thread id is found. */
2470 if (p == pp)
2471 {
2472 if (obuf)
2473 *obuf = pp;
2474 return null_ptid;
2475 }
2476
2477 /* Since the stub is not sending a process id, then default to
2478 what's in inferior_ptid, unless it's null at this point. If so,
2479 then since there's no way to know the pid of the reported
2480 threads, use the magic number. */
2481 if (ptid_equal (inferior_ptid, null_ptid))
2482 pid = ptid_get_pid (magic_null_ptid);
2483 else
2484 pid = ptid_get_pid (inferior_ptid);
2485
2486 if (obuf)
2487 *obuf = pp;
2488 return ptid_build (pid, tid, 0);
2489 }
2490
2491 static int
2492 stubhex (int ch)
2493 {
2494 if (ch >= 'a' && ch <= 'f')
2495 return ch - 'a' + 10;
2496 if (ch >= '0' && ch <= '9')
2497 return ch - '0';
2498 if (ch >= 'A' && ch <= 'F')
2499 return ch - 'A' + 10;
2500 return -1;
2501 }
2502
2503 static int
2504 stub_unpack_int (char *buff, int fieldlength)
2505 {
2506 int nibble;
2507 int retval = 0;
2508
2509 while (fieldlength)
2510 {
2511 nibble = stubhex (*buff++);
2512 retval |= nibble;
2513 fieldlength--;
2514 if (fieldlength)
2515 retval = retval << 4;
2516 }
2517 return retval;
2518 }
2519
2520 static char *
2521 unpack_nibble (char *buf, int *val)
2522 {
2523 *val = fromhex (*buf++);
2524 return buf;
2525 }
2526
2527 static char *
2528 unpack_byte (char *buf, int *value)
2529 {
2530 *value = stub_unpack_int (buf, 2);
2531 return buf + 2;
2532 }
2533
2534 static char *
2535 pack_int (char *buf, int value)
2536 {
2537 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2538 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2539 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2540 buf = pack_hex_byte (buf, (value & 0xff));
2541 return buf;
2542 }
2543
2544 static char *
2545 unpack_int (char *buf, int *value)
2546 {
2547 *value = stub_unpack_int (buf, 8);
2548 return buf + 8;
2549 }
2550
2551 #if 0 /* Currently unused, uncomment when needed. */
2552 static char *pack_string (char *pkt, char *string);
2553
2554 static char *
2555 pack_string (char *pkt, char *string)
2556 {
2557 char ch;
2558 int len;
2559
2560 len = strlen (string);
2561 if (len > 200)
2562 len = 200; /* Bigger than most GDB packets, junk??? */
2563 pkt = pack_hex_byte (pkt, len);
2564 while (len-- > 0)
2565 {
2566 ch = *string++;
2567 if ((ch == '\0') || (ch == '#'))
2568 ch = '*'; /* Protect encapsulation. */
2569 *pkt++ = ch;
2570 }
2571 return pkt;
2572 }
2573 #endif /* 0 (unused) */
2574
2575 static char *
2576 unpack_string (char *src, char *dest, int length)
2577 {
2578 while (length--)
2579 *dest++ = *src++;
2580 *dest = '\0';
2581 return src;
2582 }
2583
2584 static char *
2585 pack_threadid (char *pkt, threadref *id)
2586 {
2587 char *limit;
2588 unsigned char *altid;
2589
2590 altid = (unsigned char *) id;
2591 limit = pkt + BUF_THREAD_ID_SIZE;
2592 while (pkt < limit)
2593 pkt = pack_hex_byte (pkt, *altid++);
2594 return pkt;
2595 }
2596
2597
2598 static char *
2599 unpack_threadid (char *inbuf, threadref *id)
2600 {
2601 char *altref;
2602 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2603 int x, y;
2604
2605 altref = (char *) id;
2606
2607 while (inbuf < limit)
2608 {
2609 x = stubhex (*inbuf++);
2610 y = stubhex (*inbuf++);
2611 *altref++ = (x << 4) | y;
2612 }
2613 return inbuf;
2614 }
2615
2616 /* Externally, threadrefs are 64 bits but internally, they are still
2617 ints. This is due to a mismatch of specifications. We would like
2618 to use 64bit thread references internally. This is an adapter
2619 function. */
2620
2621 void
2622 int_to_threadref (threadref *id, int value)
2623 {
2624 unsigned char *scan;
2625
2626 scan = (unsigned char *) id;
2627 {
2628 int i = 4;
2629 while (i--)
2630 *scan++ = 0;
2631 }
2632 *scan++ = (value >> 24) & 0xff;
2633 *scan++ = (value >> 16) & 0xff;
2634 *scan++ = (value >> 8) & 0xff;
2635 *scan++ = (value & 0xff);
2636 }
2637
2638 static int
2639 threadref_to_int (threadref *ref)
2640 {
2641 int i, value = 0;
2642 unsigned char *scan;
2643
2644 scan = *ref;
2645 scan += 4;
2646 i = 4;
2647 while (i-- > 0)
2648 value = (value << 8) | ((*scan++) & 0xff);
2649 return value;
2650 }
2651
2652 static void
2653 copy_threadref (threadref *dest, threadref *src)
2654 {
2655 int i;
2656 unsigned char *csrc, *cdest;
2657
2658 csrc = (unsigned char *) src;
2659 cdest = (unsigned char *) dest;
2660 i = 8;
2661 while (i--)
2662 *cdest++ = *csrc++;
2663 }
2664
2665 static int
2666 threadmatch (threadref *dest, threadref *src)
2667 {
2668 /* Things are broken right now, so just assume we got a match. */
2669 #if 0
2670 unsigned char *srcp, *destp;
2671 int i, result;
2672 srcp = (char *) src;
2673 destp = (char *) dest;
2674
2675 result = 1;
2676 while (i-- > 0)
2677 result &= (*srcp++ == *destp++) ? 1 : 0;
2678 return result;
2679 #endif
2680 return 1;
2681 }
2682
2683 /*
2684 threadid:1, # always request threadid
2685 context_exists:2,
2686 display:4,
2687 unique_name:8,
2688 more_display:16
2689 */
2690
2691 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2692
2693 static char *
2694 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2695 {
2696 *pkt++ = 'q'; /* Info Query */
2697 *pkt++ = 'P'; /* process or thread info */
2698 pkt = pack_int (pkt, mode); /* mode */
2699 pkt = pack_threadid (pkt, id); /* threadid */
2700 *pkt = '\0'; /* terminate */
2701 return pkt;
2702 }
2703
2704 /* These values tag the fields in a thread info response packet. */
2705 /* Tagging the fields allows us to request specific fields and to
2706 add more fields as time goes by. */
2707
2708 #define TAG_THREADID 1 /* Echo the thread identifier. */
2709 #define TAG_EXISTS 2 /* Is this process defined enough to
2710 fetch registers and its stack? */
2711 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2712 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2713 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2714 the process. */
2715
2716 static int
2717 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2718 struct gdb_ext_thread_info *info)
2719 {
2720 struct remote_state *rs = get_remote_state ();
2721 int mask, length;
2722 int tag;
2723 threadref ref;
2724 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2725 int retval = 1;
2726
2727 /* info->threadid = 0; FIXME: implement zero_threadref. */
2728 info->active = 0;
2729 info->display[0] = '\0';
2730 info->shortname[0] = '\0';
2731 info->more_display[0] = '\0';
2732
2733 /* Assume the characters indicating the packet type have been
2734 stripped. */
2735 pkt = unpack_int (pkt, &mask); /* arg mask */
2736 pkt = unpack_threadid (pkt, &ref);
2737
2738 if (mask == 0)
2739 warning (_("Incomplete response to threadinfo request."));
2740 if (!threadmatch (&ref, expectedref))
2741 { /* This is an answer to a different request. */
2742 warning (_("ERROR RMT Thread info mismatch."));
2743 return 0;
2744 }
2745 copy_threadref (&info->threadid, &ref);
2746
2747 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2748
2749 /* Packets are terminated with nulls. */
2750 while ((pkt < limit) && mask && *pkt)
2751 {
2752 pkt = unpack_int (pkt, &tag); /* tag */
2753 pkt = unpack_byte (pkt, &length); /* length */
2754 if (!(tag & mask)) /* Tags out of synch with mask. */
2755 {
2756 warning (_("ERROR RMT: threadinfo tag mismatch."));
2757 retval = 0;
2758 break;
2759 }
2760 if (tag == TAG_THREADID)
2761 {
2762 if (length != 16)
2763 {
2764 warning (_("ERROR RMT: length of threadid is not 16."));
2765 retval = 0;
2766 break;
2767 }
2768 pkt = unpack_threadid (pkt, &ref);
2769 mask = mask & ~TAG_THREADID;
2770 continue;
2771 }
2772 if (tag == TAG_EXISTS)
2773 {
2774 info->active = stub_unpack_int (pkt, length);
2775 pkt += length;
2776 mask = mask & ~(TAG_EXISTS);
2777 if (length > 8)
2778 {
2779 warning (_("ERROR RMT: 'exists' length too long."));
2780 retval = 0;
2781 break;
2782 }
2783 continue;
2784 }
2785 if (tag == TAG_THREADNAME)
2786 {
2787 pkt = unpack_string (pkt, &info->shortname[0], length);
2788 mask = mask & ~TAG_THREADNAME;
2789 continue;
2790 }
2791 if (tag == TAG_DISPLAY)
2792 {
2793 pkt = unpack_string (pkt, &info->display[0], length);
2794 mask = mask & ~TAG_DISPLAY;
2795 continue;
2796 }
2797 if (tag == TAG_MOREDISPLAY)
2798 {
2799 pkt = unpack_string (pkt, &info->more_display[0], length);
2800 mask = mask & ~TAG_MOREDISPLAY;
2801 continue;
2802 }
2803 warning (_("ERROR RMT: unknown thread info tag."));
2804 break; /* Not a tag we know about. */
2805 }
2806 return retval;
2807 }
2808
2809 static int
2810 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2811 struct gdb_ext_thread_info *info)
2812 {
2813 struct remote_state *rs = get_remote_state ();
2814 int result;
2815
2816 pack_threadinfo_request (rs->buf, fieldset, threadid);
2817 putpkt (rs->buf);
2818 getpkt (&rs->buf, &rs->buf_size, 0);
2819
2820 if (rs->buf[0] == '\0')
2821 return 0;
2822
2823 result = remote_unpack_thread_info_response (rs->buf + 2,
2824 threadid, info);
2825 return result;
2826 }
2827
2828 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2829
2830 static char *
2831 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2832 threadref *nextthread)
2833 {
2834 *pkt++ = 'q'; /* info query packet */
2835 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2836 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2837 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2838 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2839 *pkt = '\0';
2840 return pkt;
2841 }
2842
2843 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2844
2845 static int
2846 parse_threadlist_response (char *pkt, int result_limit,
2847 threadref *original_echo, threadref *resultlist,
2848 int *doneflag)
2849 {
2850 struct remote_state *rs = get_remote_state ();
2851 char *limit;
2852 int count, resultcount, done;
2853
2854 resultcount = 0;
2855 /* Assume the 'q' and 'M chars have been stripped. */
2856 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2857 /* done parse past here */
2858 pkt = unpack_byte (pkt, &count); /* count field */
2859 pkt = unpack_nibble (pkt, &done);
2860 /* The first threadid is the argument threadid. */
2861 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2862 while ((count-- > 0) && (pkt < limit))
2863 {
2864 pkt = unpack_threadid (pkt, resultlist++);
2865 if (resultcount++ >= result_limit)
2866 break;
2867 }
2868 if (doneflag)
2869 *doneflag = done;
2870 return resultcount;
2871 }
2872
2873 /* Fetch the next batch of threads from the remote. Returns -1 if the
2874 qL packet is not supported, 0 on error and 1 on success. */
2875
2876 static int
2877 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2878 int *done, int *result_count, threadref *threadlist)
2879 {
2880 struct remote_state *rs = get_remote_state ();
2881 int result = 1;
2882
2883 /* Trancate result limit to be smaller than the packet size. */
2884 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2885 >= get_remote_packet_size ())
2886 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2887
2888 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2889 putpkt (rs->buf);
2890 getpkt (&rs->buf, &rs->buf_size, 0);
2891 if (*rs->buf == '\0')
2892 {
2893 /* Packet not supported. */
2894 return -1;
2895 }
2896
2897 *result_count =
2898 parse_threadlist_response (rs->buf + 2, result_limit,
2899 &rs->echo_nextthread, threadlist, done);
2900
2901 if (!threadmatch (&rs->echo_nextthread, nextthread))
2902 {
2903 /* FIXME: This is a good reason to drop the packet. */
2904 /* Possably, there is a duplicate response. */
2905 /* Possabilities :
2906 retransmit immediatly - race conditions
2907 retransmit after timeout - yes
2908 exit
2909 wait for packet, then exit
2910 */
2911 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2912 return 0; /* I choose simply exiting. */
2913 }
2914 if (*result_count <= 0)
2915 {
2916 if (*done != 1)
2917 {
2918 warning (_("RMT ERROR : failed to get remote thread list."));
2919 result = 0;
2920 }
2921 return result; /* break; */
2922 }
2923 if (*result_count > result_limit)
2924 {
2925 *result_count = 0;
2926 warning (_("RMT ERROR: threadlist response longer than requested."));
2927 return 0;
2928 }
2929 return result;
2930 }
2931
2932 /* Fetch the list of remote threads, with the qL packet, and call
2933 STEPFUNCTION for each thread found. Stops iterating and returns 1
2934 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2935 STEPFUNCTION returns false. If the packet is not supported,
2936 returns -1. */
2937
2938 static int
2939 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2940 int looplimit)
2941 {
2942 struct remote_state *rs = get_remote_state ();
2943 int done, i, result_count;
2944 int startflag = 1;
2945 int result = 1;
2946 int loopcount = 0;
2947
2948 done = 0;
2949 while (!done)
2950 {
2951 if (loopcount++ > looplimit)
2952 {
2953 result = 0;
2954 warning (_("Remote fetch threadlist -infinite loop-."));
2955 break;
2956 }
2957 result = remote_get_threadlist (startflag, &rs->nextthread,
2958 MAXTHREADLISTRESULTS,
2959 &done, &result_count,
2960 rs->resultthreadlist);
2961 if (result <= 0)
2962 break;
2963 /* Clear for later iterations. */
2964 startflag = 0;
2965 /* Setup to resume next batch of thread references, set nextthread. */
2966 if (result_count >= 1)
2967 copy_threadref (&rs->nextthread,
2968 &rs->resultthreadlist[result_count - 1]);
2969 i = 0;
2970 while (result_count--)
2971 {
2972 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2973 {
2974 result = 0;
2975 break;
2976 }
2977 }
2978 }
2979 return result;
2980 }
2981
2982 /* A thread found on the remote target. */
2983
2984 typedef struct thread_item
2985 {
2986 /* The thread's PTID. */
2987 ptid_t ptid;
2988
2989 /* The thread's extra info. May be NULL. */
2990 char *extra;
2991
2992 /* The thread's name. May be NULL. */
2993 char *name;
2994
2995 /* The core the thread was running on. -1 if not known. */
2996 int core;
2997 } thread_item_t;
2998 DEF_VEC_O(thread_item_t);
2999
3000 /* Context passed around to the various methods listing remote
3001 threads. As new threads are found, they're added to the ITEMS
3002 vector. */
3003
3004 struct threads_listing_context
3005 {
3006 /* The threads found on the remote target. */
3007 VEC (thread_item_t) *items;
3008 };
3009
3010 /* Discard the contents of the constructed thread listing context. */
3011
3012 static void
3013 clear_threads_listing_context (void *p)
3014 {
3015 struct threads_listing_context *context
3016 = (struct threads_listing_context *) p;
3017 int i;
3018 struct thread_item *item;
3019
3020 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
3021 {
3022 xfree (item->extra);
3023 xfree (item->name);
3024 }
3025
3026 VEC_free (thread_item_t, context->items);
3027 }
3028
3029 /* Remove the thread specified as the related_pid field of WS
3030 from the CONTEXT list. */
3031
3032 static void
3033 threads_listing_context_remove (struct target_waitstatus *ws,
3034 struct threads_listing_context *context)
3035 {
3036 struct thread_item *item;
3037 int i;
3038 ptid_t child_ptid = ws->value.related_pid;
3039
3040 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
3041 {
3042 if (ptid_equal (item->ptid, child_ptid))
3043 {
3044 VEC_ordered_remove (thread_item_t, context->items, i);
3045 break;
3046 }
3047 }
3048 }
3049
3050 static int
3051 remote_newthread_step (threadref *ref, void *data)
3052 {
3053 struct threads_listing_context *context
3054 = (struct threads_listing_context *) data;
3055 struct thread_item item;
3056 int pid = ptid_get_pid (inferior_ptid);
3057
3058 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
3059 item.core = -1;
3060 item.name = NULL;
3061 item.extra = NULL;
3062
3063 VEC_safe_push (thread_item_t, context->items, &item);
3064
3065 return 1; /* continue iterator */
3066 }
3067
3068 #define CRAZY_MAX_THREADS 1000
3069
3070 static ptid_t
3071 remote_current_thread (ptid_t oldpid)
3072 {
3073 struct remote_state *rs = get_remote_state ();
3074
3075 putpkt ("qC");
3076 getpkt (&rs->buf, &rs->buf_size, 0);
3077 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3078 {
3079 char *obuf;
3080 ptid_t result;
3081
3082 result = read_ptid (&rs->buf[2], &obuf);
3083 if (*obuf != '\0' && remote_debug)
3084 fprintf_unfiltered (gdb_stdlog,
3085 "warning: garbage in qC reply\n");
3086
3087 return result;
3088 }
3089 else
3090 return oldpid;
3091 }
3092
3093 /* List remote threads using the deprecated qL packet. */
3094
3095 static int
3096 remote_get_threads_with_ql (struct target_ops *ops,
3097 struct threads_listing_context *context)
3098 {
3099 if (remote_threadlist_iterator (remote_newthread_step, context,
3100 CRAZY_MAX_THREADS) >= 0)
3101 return 1;
3102
3103 return 0;
3104 }
3105
3106 #if defined(HAVE_LIBEXPAT)
3107
3108 static void
3109 start_thread (struct gdb_xml_parser *parser,
3110 const struct gdb_xml_element *element,
3111 void *user_data, VEC(gdb_xml_value_s) *attributes)
3112 {
3113 struct threads_listing_context *data
3114 = (struct threads_listing_context *) user_data;
3115
3116 struct thread_item item;
3117 char *id;
3118 struct gdb_xml_value *attr;
3119
3120 id = (char *) xml_find_attribute (attributes, "id")->value;
3121 item.ptid = read_ptid (id, NULL);
3122
3123 attr = xml_find_attribute (attributes, "core");
3124 if (attr != NULL)
3125 item.core = *(ULONGEST *) attr->value;
3126 else
3127 item.core = -1;
3128
3129 attr = xml_find_attribute (attributes, "name");
3130 item.name = attr != NULL ? xstrdup ((const char *) attr->value) : NULL;
3131
3132 item.extra = 0;
3133
3134 VEC_safe_push (thread_item_t, data->items, &item);
3135 }
3136
3137 static void
3138 end_thread (struct gdb_xml_parser *parser,
3139 const struct gdb_xml_element *element,
3140 void *user_data, const char *body_text)
3141 {
3142 struct threads_listing_context *data
3143 = (struct threads_listing_context *) user_data;
3144
3145 if (body_text && *body_text)
3146 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
3147 }
3148
3149 const struct gdb_xml_attribute thread_attributes[] = {
3150 { "id", GDB_XML_AF_NONE, NULL, NULL },
3151 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3152 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3153 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3154 };
3155
3156 const struct gdb_xml_element thread_children[] = {
3157 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3158 };
3159
3160 const struct gdb_xml_element threads_children[] = {
3161 { "thread", thread_attributes, thread_children,
3162 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3163 start_thread, end_thread },
3164 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3165 };
3166
3167 const struct gdb_xml_element threads_elements[] = {
3168 { "threads", NULL, threads_children,
3169 GDB_XML_EF_NONE, NULL, NULL },
3170 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3171 };
3172
3173 #endif
3174
3175 /* List remote threads using qXfer:threads:read. */
3176
3177 static int
3178 remote_get_threads_with_qxfer (struct target_ops *ops,
3179 struct threads_listing_context *context)
3180 {
3181 #if defined(HAVE_LIBEXPAT)
3182 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3183 {
3184 char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
3185 struct cleanup *back_to = make_cleanup (xfree, xml);
3186
3187 if (xml != NULL && *xml != '\0')
3188 {
3189 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3190 threads_elements, xml, context);
3191 }
3192
3193 do_cleanups (back_to);
3194 return 1;
3195 }
3196 #endif
3197
3198 return 0;
3199 }
3200
3201 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3202
3203 static int
3204 remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3205 struct threads_listing_context *context)
3206 {
3207 struct remote_state *rs = get_remote_state ();
3208
3209 if (rs->use_threadinfo_query)
3210 {
3211 char *bufp;
3212
3213 putpkt ("qfThreadInfo");
3214 getpkt (&rs->buf, &rs->buf_size, 0);
3215 bufp = rs->buf;
3216 if (bufp[0] != '\0') /* q packet recognized */
3217 {
3218 while (*bufp++ == 'm') /* reply contains one or more TID */
3219 {
3220 do
3221 {
3222 struct thread_item item;
3223
3224 item.ptid = read_ptid (bufp, &bufp);
3225 item.core = -1;
3226 item.name = NULL;
3227 item.extra = NULL;
3228
3229 VEC_safe_push (thread_item_t, context->items, &item);
3230 }
3231 while (*bufp++ == ','); /* comma-separated list */
3232 putpkt ("qsThreadInfo");
3233 getpkt (&rs->buf, &rs->buf_size, 0);
3234 bufp = rs->buf;
3235 }
3236 return 1;
3237 }
3238 else
3239 {
3240 /* Packet not recognized. */
3241 rs->use_threadinfo_query = 0;
3242 }
3243 }
3244
3245 return 0;
3246 }
3247
3248 /* Implement the to_update_thread_list function for the remote
3249 targets. */
3250
3251 static void
3252 remote_update_thread_list (struct target_ops *ops)
3253 {
3254 struct threads_listing_context context;
3255 struct cleanup *old_chain;
3256 int got_list = 0;
3257
3258 context.items = NULL;
3259 old_chain = make_cleanup (clear_threads_listing_context, &context);
3260
3261 /* We have a few different mechanisms to fetch the thread list. Try
3262 them all, starting with the most preferred one first, falling
3263 back to older methods. */
3264 if (remote_get_threads_with_qxfer (ops, &context)
3265 || remote_get_threads_with_qthreadinfo (ops, &context)
3266 || remote_get_threads_with_ql (ops, &context))
3267 {
3268 int i;
3269 struct thread_item *item;
3270 struct thread_info *tp, *tmp;
3271
3272 got_list = 1;
3273
3274 if (VEC_empty (thread_item_t, context.items)
3275 && remote_thread_always_alive (ops, inferior_ptid))
3276 {
3277 /* Some targets don't really support threads, but still
3278 reply an (empty) thread list in response to the thread
3279 listing packets, instead of replying "packet not
3280 supported". Exit early so we don't delete the main
3281 thread. */
3282 do_cleanups (old_chain);
3283 return;
3284 }
3285
3286 /* CONTEXT now holds the current thread list on the remote
3287 target end. Delete GDB-side threads no longer found on the
3288 target. */
3289 ALL_THREADS_SAFE (tp, tmp)
3290 {
3291 for (i = 0;
3292 VEC_iterate (thread_item_t, context.items, i, item);
3293 ++i)
3294 {
3295 if (ptid_equal (item->ptid, tp->ptid))
3296 break;
3297 }
3298
3299 if (i == VEC_length (thread_item_t, context.items))
3300 {
3301 /* Not found. */
3302 delete_thread (tp->ptid);
3303 }
3304 }
3305
3306 /* Remove any unreported fork child threads from CONTEXT so
3307 that we don't interfere with follow fork, which is where
3308 creation of such threads is handled. */
3309 remove_new_fork_children (&context);
3310
3311 /* And now add threads we don't know about yet to our list. */
3312 for (i = 0;
3313 VEC_iterate (thread_item_t, context.items, i, item);
3314 ++i)
3315 {
3316 if (!ptid_equal (item->ptid, null_ptid))
3317 {
3318 struct private_thread_info *info;
3319 /* In non-stop mode, we assume new found threads are
3320 executing until proven otherwise with a stop reply.
3321 In all-stop, we can only get here if all threads are
3322 stopped. */
3323 int executing = target_is_non_stop_p () ? 1 : 0;
3324
3325 remote_notice_new_inferior (item->ptid, executing);
3326
3327 info = get_private_info_ptid (item->ptid);
3328 info->core = item->core;
3329 info->extra = item->extra;
3330 item->extra = NULL;
3331 info->name = item->name;
3332 item->name = NULL;
3333 }
3334 }
3335 }
3336
3337 if (!got_list)
3338 {
3339 /* If no thread listing method is supported, then query whether
3340 each known thread is alive, one by one, with the T packet.
3341 If the target doesn't support threads at all, then this is a
3342 no-op. See remote_thread_alive. */
3343 prune_threads ();
3344 }
3345
3346 do_cleanups (old_chain);
3347 }
3348
3349 /*
3350 * Collect a descriptive string about the given thread.
3351 * The target may say anything it wants to about the thread
3352 * (typically info about its blocked / runnable state, name, etc.).
3353 * This string will appear in the info threads display.
3354 *
3355 * Optional: targets are not required to implement this function.
3356 */
3357
3358 static const char *
3359 remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
3360 {
3361 struct remote_state *rs = get_remote_state ();
3362 int result;
3363 int set;
3364 threadref id;
3365 struct gdb_ext_thread_info threadinfo;
3366 static char display_buf[100]; /* arbitrary... */
3367 int n = 0; /* position in display_buf */
3368
3369 if (rs->remote_desc == 0) /* paranoia */
3370 internal_error (__FILE__, __LINE__,
3371 _("remote_threads_extra_info"));
3372
3373 if (ptid_equal (tp->ptid, magic_null_ptid)
3374 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
3375 /* This is the main thread which was added by GDB. The remote
3376 server doesn't know about it. */
3377 return NULL;
3378
3379 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3380 {
3381 struct thread_info *info = find_thread_ptid (tp->ptid);
3382
3383 if (info && info->priv)
3384 return info->priv->extra;
3385 else
3386 return NULL;
3387 }
3388
3389 if (rs->use_threadextra_query)
3390 {
3391 char *b = rs->buf;
3392 char *endb = rs->buf + get_remote_packet_size ();
3393
3394 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3395 b += strlen (b);
3396 write_ptid (b, endb, tp->ptid);
3397
3398 putpkt (rs->buf);
3399 getpkt (&rs->buf, &rs->buf_size, 0);
3400 if (rs->buf[0] != 0)
3401 {
3402 n = std::min (strlen (rs->buf) / 2, sizeof (display_buf));
3403 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
3404 display_buf [result] = '\0';
3405 return display_buf;
3406 }
3407 }
3408
3409 /* If the above query fails, fall back to the old method. */
3410 rs->use_threadextra_query = 0;
3411 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3412 | TAG_MOREDISPLAY | TAG_DISPLAY;
3413 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
3414 if (remote_get_threadinfo (&id, set, &threadinfo))
3415 if (threadinfo.active)
3416 {
3417 if (*threadinfo.shortname)
3418 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
3419 " Name: %s,", threadinfo.shortname);
3420 if (*threadinfo.display)
3421 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3422 " State: %s,", threadinfo.display);
3423 if (*threadinfo.more_display)
3424 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3425 " Priority: %s", threadinfo.more_display);
3426
3427 if (n > 0)
3428 {
3429 /* For purely cosmetic reasons, clear up trailing commas. */
3430 if (',' == display_buf[n-1])
3431 display_buf[n-1] = ' ';
3432 return display_buf;
3433 }
3434 }
3435 return NULL;
3436 }
3437 \f
3438
3439 static int
3440 remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
3441 struct static_tracepoint_marker *marker)
3442 {
3443 struct remote_state *rs = get_remote_state ();
3444 char *p = rs->buf;
3445
3446 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3447 p += strlen (p);
3448 p += hexnumstr (p, addr);
3449 putpkt (rs->buf);
3450 getpkt (&rs->buf, &rs->buf_size, 0);
3451 p = rs->buf;
3452
3453 if (*p == 'E')
3454 error (_("Remote failure reply: %s"), p);
3455
3456 if (*p++ == 'm')
3457 {
3458 parse_static_tracepoint_marker_definition (p, &p, marker);
3459 return 1;
3460 }
3461
3462 return 0;
3463 }
3464
3465 static VEC(static_tracepoint_marker_p) *
3466 remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3467 const char *strid)
3468 {
3469 struct remote_state *rs = get_remote_state ();
3470 VEC(static_tracepoint_marker_p) *markers = NULL;
3471 struct static_tracepoint_marker *marker = NULL;
3472 struct cleanup *old_chain;
3473 char *p;
3474
3475 /* Ask for a first packet of static tracepoint marker
3476 definition. */
3477 putpkt ("qTfSTM");
3478 getpkt (&rs->buf, &rs->buf_size, 0);
3479 p = rs->buf;
3480 if (*p == 'E')
3481 error (_("Remote failure reply: %s"), p);
3482
3483 old_chain = make_cleanup (free_current_marker, &marker);
3484
3485 while (*p++ == 'm')
3486 {
3487 if (marker == NULL)
3488 marker = XCNEW (struct static_tracepoint_marker);
3489
3490 do
3491 {
3492 parse_static_tracepoint_marker_definition (p, &p, marker);
3493
3494 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3495 {
3496 VEC_safe_push (static_tracepoint_marker_p,
3497 markers, marker);
3498 marker = NULL;
3499 }
3500 else
3501 {
3502 release_static_tracepoint_marker (marker);
3503 memset (marker, 0, sizeof (*marker));
3504 }
3505 }
3506 while (*p++ == ','); /* comma-separated list */
3507 /* Ask for another packet of static tracepoint definition. */
3508 putpkt ("qTsSTM");
3509 getpkt (&rs->buf, &rs->buf_size, 0);
3510 p = rs->buf;
3511 }
3512
3513 do_cleanups (old_chain);
3514 return markers;
3515 }
3516
3517 \f
3518 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3519
3520 static ptid_t
3521 remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
3522 {
3523 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
3524 }
3525 \f
3526
3527 /* Restart the remote side; this is an extended protocol operation. */
3528
3529 static void
3530 extended_remote_restart (void)
3531 {
3532 struct remote_state *rs = get_remote_state ();
3533
3534 /* Send the restart command; for reasons I don't understand the
3535 remote side really expects a number after the "R". */
3536 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
3537 putpkt (rs->buf);
3538
3539 remote_fileio_reset ();
3540 }
3541 \f
3542 /* Clean up connection to a remote debugger. */
3543
3544 static void
3545 remote_close (struct target_ops *self)
3546 {
3547 struct remote_state *rs = get_remote_state ();
3548
3549 if (rs->remote_desc == NULL)
3550 return; /* already closed */
3551
3552 /* Make sure we leave stdin registered in the event loop. */
3553 remote_terminal_ours (self);
3554
3555 serial_close (rs->remote_desc);
3556 rs->remote_desc = NULL;
3557
3558 /* We don't have a connection to the remote stub anymore. Get rid
3559 of all the inferiors and their threads we were controlling.
3560 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3561 will be unable to find the thread corresponding to (pid, 0, 0). */
3562 inferior_ptid = null_ptid;
3563 discard_all_inferiors ();
3564
3565 /* We are closing the remote target, so we should discard
3566 everything of this target. */
3567 discard_pending_stop_replies_in_queue (rs);
3568
3569 if (remote_async_inferior_event_token)
3570 delete_async_event_handler (&remote_async_inferior_event_token);
3571
3572 remote_notif_state_xfree (rs->notif_state);
3573
3574 trace_reset_local_state ();
3575 }
3576
3577 /* Query the remote side for the text, data and bss offsets. */
3578
3579 static void
3580 get_offsets (void)
3581 {
3582 struct remote_state *rs = get_remote_state ();
3583 char *buf;
3584 char *ptr;
3585 int lose, num_segments = 0, do_sections, do_segments;
3586 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
3587 struct section_offsets *offs;
3588 struct symfile_segment_data *data;
3589
3590 if (symfile_objfile == NULL)
3591 return;
3592
3593 putpkt ("qOffsets");
3594 getpkt (&rs->buf, &rs->buf_size, 0);
3595 buf = rs->buf;
3596
3597 if (buf[0] == '\000')
3598 return; /* Return silently. Stub doesn't support
3599 this command. */
3600 if (buf[0] == 'E')
3601 {
3602 warning (_("Remote failure reply: %s"), buf);
3603 return;
3604 }
3605
3606 /* Pick up each field in turn. This used to be done with scanf, but
3607 scanf will make trouble if CORE_ADDR size doesn't match
3608 conversion directives correctly. The following code will work
3609 with any size of CORE_ADDR. */
3610 text_addr = data_addr = bss_addr = 0;
3611 ptr = buf;
3612 lose = 0;
3613
3614 if (startswith (ptr, "Text="))
3615 {
3616 ptr += 5;
3617 /* Don't use strtol, could lose on big values. */
3618 while (*ptr && *ptr != ';')
3619 text_addr = (text_addr << 4) + fromhex (*ptr++);
3620
3621 if (startswith (ptr, ";Data="))
3622 {
3623 ptr += 6;
3624 while (*ptr && *ptr != ';')
3625 data_addr = (data_addr << 4) + fromhex (*ptr++);
3626 }
3627 else
3628 lose = 1;
3629
3630 if (!lose && startswith (ptr, ";Bss="))
3631 {
3632 ptr += 5;
3633 while (*ptr && *ptr != ';')
3634 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3635
3636 if (bss_addr != data_addr)
3637 warning (_("Target reported unsupported offsets: %s"), buf);
3638 }
3639 else
3640 lose = 1;
3641 }
3642 else if (startswith (ptr, "TextSeg="))
3643 {
3644 ptr += 8;
3645 /* Don't use strtol, could lose on big values. */
3646 while (*ptr && *ptr != ';')
3647 text_addr = (text_addr << 4) + fromhex (*ptr++);
3648 num_segments = 1;
3649
3650 if (startswith (ptr, ";DataSeg="))
3651 {
3652 ptr += 9;
3653 while (*ptr && *ptr != ';')
3654 data_addr = (data_addr << 4) + fromhex (*ptr++);
3655 num_segments++;
3656 }
3657 }
3658 else
3659 lose = 1;
3660
3661 if (lose)
3662 error (_("Malformed response to offset query, %s"), buf);
3663 else if (*ptr != '\0')
3664 warning (_("Target reported unsupported offsets: %s"), buf);
3665
3666 offs = ((struct section_offsets *)
3667 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3668 memcpy (offs, symfile_objfile->section_offsets,
3669 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3670
3671 data = get_symfile_segment_data (symfile_objfile->obfd);
3672 do_segments = (data != NULL);
3673 do_sections = num_segments == 0;
3674
3675 if (num_segments > 0)
3676 {
3677 segments[0] = text_addr;
3678 segments[1] = data_addr;
3679 }
3680 /* If we have two segments, we can still try to relocate everything
3681 by assuming that the .text and .data offsets apply to the whole
3682 text and data segments. Convert the offsets given in the packet
3683 to base addresses for symfile_map_offsets_to_segments. */
3684 else if (data && data->num_segments == 2)
3685 {
3686 segments[0] = data->segment_bases[0] + text_addr;
3687 segments[1] = data->segment_bases[1] + data_addr;
3688 num_segments = 2;
3689 }
3690 /* If the object file has only one segment, assume that it is text
3691 rather than data; main programs with no writable data are rare,
3692 but programs with no code are useless. Of course the code might
3693 have ended up in the data segment... to detect that we would need
3694 the permissions here. */
3695 else if (data && data->num_segments == 1)
3696 {
3697 segments[0] = data->segment_bases[0] + text_addr;
3698 num_segments = 1;
3699 }
3700 /* There's no way to relocate by segment. */
3701 else
3702 do_segments = 0;
3703
3704 if (do_segments)
3705 {
3706 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3707 offs, num_segments, segments);
3708
3709 if (ret == 0 && !do_sections)
3710 error (_("Can not handle qOffsets TextSeg "
3711 "response with this symbol file"));
3712
3713 if (ret > 0)
3714 do_sections = 0;
3715 }
3716
3717 if (data)
3718 free_symfile_segment_data (data);
3719
3720 if (do_sections)
3721 {
3722 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3723
3724 /* This is a temporary kludge to force data and bss to use the
3725 same offsets because that's what nlmconv does now. The real
3726 solution requires changes to the stub and remote.c that I
3727 don't have time to do right now. */
3728
3729 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3730 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3731 }
3732
3733 objfile_relocate (symfile_objfile, offs);
3734 }
3735
3736 /* Send interrupt_sequence to remote target. */
3737 static void
3738 send_interrupt_sequence (void)
3739 {
3740 struct remote_state *rs = get_remote_state ();
3741
3742 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3743 remote_serial_write ("\x03", 1);
3744 else if (interrupt_sequence_mode == interrupt_sequence_break)
3745 serial_send_break (rs->remote_desc);
3746 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3747 {
3748 serial_send_break (rs->remote_desc);
3749 remote_serial_write ("g", 1);
3750 }
3751 else
3752 internal_error (__FILE__, __LINE__,
3753 _("Invalid value for interrupt_sequence_mode: %s."),
3754 interrupt_sequence_mode);
3755 }
3756
3757
3758 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3759 and extract the PTID. Returns NULL_PTID if not found. */
3760
3761 static ptid_t
3762 stop_reply_extract_thread (char *stop_reply)
3763 {
3764 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3765 {
3766 char *p;
3767
3768 /* Txx r:val ; r:val (...) */
3769 p = &stop_reply[3];
3770
3771 /* Look for "register" named "thread". */
3772 while (*p != '\0')
3773 {
3774 char *p1;
3775
3776 p1 = strchr (p, ':');
3777 if (p1 == NULL)
3778 return null_ptid;
3779
3780 if (strncmp (p, "thread", p1 - p) == 0)
3781 return read_ptid (++p1, &p);
3782
3783 p1 = strchr (p, ';');
3784 if (p1 == NULL)
3785 return null_ptid;
3786 p1++;
3787
3788 p = p1;
3789 }
3790 }
3791
3792 return null_ptid;
3793 }
3794
3795 /* Determine the remote side's current thread. If we have a stop
3796 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3797 "thread" register we can extract the current thread from. If not,
3798 ask the remote which is the current thread with qC. The former
3799 method avoids a roundtrip. */
3800
3801 static ptid_t
3802 get_current_thread (char *wait_status)
3803 {
3804 ptid_t ptid = null_ptid;
3805
3806 /* Note we don't use remote_parse_stop_reply as that makes use of
3807 the target architecture, which we haven't yet fully determined at
3808 this point. */
3809 if (wait_status != NULL)
3810 ptid = stop_reply_extract_thread (wait_status);
3811 if (ptid_equal (ptid, null_ptid))
3812 ptid = remote_current_thread (inferior_ptid);
3813
3814 return ptid;
3815 }
3816
3817 /* Query the remote target for which is the current thread/process,
3818 add it to our tables, and update INFERIOR_PTID. The caller is
3819 responsible for setting the state such that the remote end is ready
3820 to return the current thread.
3821
3822 This function is called after handling the '?' or 'vRun' packets,
3823 whose response is a stop reply from which we can also try
3824 extracting the thread. If the target doesn't support the explicit
3825 qC query, we infer the current thread from that stop reply, passed
3826 in in WAIT_STATUS, which may be NULL. */
3827
3828 static void
3829 add_current_inferior_and_thread (char *wait_status)
3830 {
3831 struct remote_state *rs = get_remote_state ();
3832 int fake_pid_p = 0;
3833 ptid_t ptid;
3834
3835 inferior_ptid = null_ptid;
3836
3837 /* Now, if we have thread information, update inferior_ptid. */
3838 ptid = get_current_thread (wait_status);
3839
3840 if (!ptid_equal (ptid, null_ptid))
3841 {
3842 if (!remote_multi_process_p (rs))
3843 fake_pid_p = 1;
3844
3845 inferior_ptid = ptid;
3846 }
3847 else
3848 {
3849 /* Without this, some commands which require an active target
3850 (such as kill) won't work. This variable serves (at least)
3851 double duty as both the pid of the target process (if it has
3852 such), and as a flag indicating that a target is active. */
3853 inferior_ptid = magic_null_ptid;
3854 fake_pid_p = 1;
3855 }
3856
3857 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1, 1);
3858
3859 /* Add the main thread. */
3860 add_thread_silent (inferior_ptid);
3861 }
3862
3863 /* Print info about a thread that was found already stopped on
3864 connection. */
3865
3866 static void
3867 print_one_stopped_thread (struct thread_info *thread)
3868 {
3869 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3870
3871 switch_to_thread (thread->ptid);
3872 stop_pc = get_frame_pc (get_current_frame ());
3873 set_current_sal_from_frame (get_current_frame ());
3874
3875 thread->suspend.waitstatus_pending_p = 0;
3876
3877 if (ws->kind == TARGET_WAITKIND_STOPPED)
3878 {
3879 enum gdb_signal sig = ws->value.sig;
3880
3881 if (signal_print_state (sig))
3882 observer_notify_signal_received (sig);
3883 }
3884 observer_notify_normal_stop (NULL, 1);
3885 }
3886
3887 /* Process all initial stop replies the remote side sent in response
3888 to the ? packet. These indicate threads that were already stopped
3889 on initial connection. We mark these threads as stopped and print
3890 their current frame before giving the user the prompt. */
3891
3892 static void
3893 process_initial_stop_replies (int from_tty)
3894 {
3895 int pending_stop_replies = stop_reply_queue_length ();
3896 struct inferior *inf;
3897 struct thread_info *thread;
3898 struct thread_info *selected = NULL;
3899 struct thread_info *lowest_stopped = NULL;
3900 struct thread_info *first = NULL;
3901
3902 /* Consume the initial pending events. */
3903 while (pending_stop_replies-- > 0)
3904 {
3905 ptid_t waiton_ptid = minus_one_ptid;
3906 ptid_t event_ptid;
3907 struct target_waitstatus ws;
3908 int ignore_event = 0;
3909 struct thread_info *thread;
3910
3911 memset (&ws, 0, sizeof (ws));
3912 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3913 if (remote_debug)
3914 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3915
3916 switch (ws.kind)
3917 {
3918 case TARGET_WAITKIND_IGNORE:
3919 case TARGET_WAITKIND_NO_RESUMED:
3920 case TARGET_WAITKIND_SIGNALLED:
3921 case TARGET_WAITKIND_EXITED:
3922 /* We shouldn't see these, but if we do, just ignore. */
3923 if (remote_debug)
3924 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3925 ignore_event = 1;
3926 break;
3927
3928 case TARGET_WAITKIND_EXECD:
3929 xfree (ws.value.execd_pathname);
3930 break;
3931 default:
3932 break;
3933 }
3934
3935 if (ignore_event)
3936 continue;
3937
3938 thread = find_thread_ptid (event_ptid);
3939
3940 if (ws.kind == TARGET_WAITKIND_STOPPED)
3941 {
3942 enum gdb_signal sig = ws.value.sig;
3943
3944 /* Stubs traditionally report SIGTRAP as initial signal,
3945 instead of signal 0. Suppress it. */
3946 if (sig == GDB_SIGNAL_TRAP)
3947 sig = GDB_SIGNAL_0;
3948 thread->suspend.stop_signal = sig;
3949 ws.value.sig = sig;
3950 }
3951
3952 thread->suspend.waitstatus = ws;
3953
3954 if (ws.kind != TARGET_WAITKIND_STOPPED
3955 || ws.value.sig != GDB_SIGNAL_0)
3956 thread->suspend.waitstatus_pending_p = 1;
3957
3958 set_executing (event_ptid, 0);
3959 set_running (event_ptid, 0);
3960 thread->priv->vcont_resumed = 0;
3961 }
3962
3963 /* "Notice" the new inferiors before anything related to
3964 registers/memory. */
3965 ALL_INFERIORS (inf)
3966 {
3967 if (inf->pid == 0)
3968 continue;
3969
3970 inf->needs_setup = 1;
3971
3972 if (non_stop)
3973 {
3974 thread = any_live_thread_of_process (inf->pid);
3975 notice_new_inferior (thread->ptid,
3976 thread->state == THREAD_RUNNING,
3977 from_tty);
3978 }
3979 }
3980
3981 /* If all-stop on top of non-stop, pause all threads. Note this
3982 records the threads' stop pc, so must be done after "noticing"
3983 the inferiors. */
3984 if (!non_stop)
3985 {
3986 stop_all_threads ();
3987
3988 /* If all threads of an inferior were already stopped, we
3989 haven't setup the inferior yet. */
3990 ALL_INFERIORS (inf)
3991 {
3992 if (inf->pid == 0)
3993 continue;
3994
3995 if (inf->needs_setup)
3996 {
3997 thread = any_live_thread_of_process (inf->pid);
3998 switch_to_thread_no_regs (thread);
3999 setup_inferior (0);
4000 }
4001 }
4002 }
4003
4004 /* Now go over all threads that are stopped, and print their current
4005 frame. If all-stop, then if there's a signalled thread, pick
4006 that as current. */
4007 ALL_NON_EXITED_THREADS (thread)
4008 {
4009 if (first == NULL)
4010 first = thread;
4011
4012 if (!non_stop)
4013 set_running (thread->ptid, 0);
4014 else if (thread->state != THREAD_STOPPED)
4015 continue;
4016
4017 if (selected == NULL
4018 && thread->suspend.waitstatus_pending_p)
4019 selected = thread;
4020
4021 if (lowest_stopped == NULL
4022 || thread->inf->num < lowest_stopped->inf->num
4023 || thread->per_inf_num < lowest_stopped->per_inf_num)
4024 lowest_stopped = thread;
4025
4026 if (non_stop)
4027 print_one_stopped_thread (thread);
4028 }
4029
4030 /* In all-stop, we only print the status of one thread, and leave
4031 others with their status pending. */
4032 if (!non_stop)
4033 {
4034 thread = selected;
4035 if (thread == NULL)
4036 thread = lowest_stopped;
4037 if (thread == NULL)
4038 thread = first;
4039
4040 print_one_stopped_thread (thread);
4041 }
4042
4043 /* For "info program". */
4044 thread = inferior_thread ();
4045 if (thread->state == THREAD_STOPPED)
4046 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
4047 }
4048
4049 /* Start the remote connection and sync state. */
4050
4051 static void
4052 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
4053 {
4054 struct remote_state *rs = get_remote_state ();
4055 struct packet_config *noack_config;
4056 char *wait_status = NULL;
4057
4058 /* Signal other parts that we're going through the initial setup,
4059 and so things may not be stable yet. E.g., we don't try to
4060 install tracepoints until we've relocated symbols. Also, a
4061 Ctrl-C before we're connected and synced up can't interrupt the
4062 target. Instead, it offers to drop the (potentially wedged)
4063 connection. */
4064 rs->starting_up = 1;
4065
4066 QUIT;
4067
4068 if (interrupt_on_connect)
4069 send_interrupt_sequence ();
4070
4071 /* Ack any packet which the remote side has already sent. */
4072 remote_serial_write ("+", 1);
4073
4074 /* The first packet we send to the target is the optional "supported
4075 packets" request. If the target can answer this, it will tell us
4076 which later probes to skip. */
4077 remote_query_supported ();
4078
4079 /* If the stub wants to get a QAllow, compose one and send it. */
4080 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4081 remote_set_permissions (target);
4082
4083 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4084 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4085 as a reply to known packet. For packet "vFile:setfs:" it is an
4086 invalid reply and GDB would return error in
4087 remote_hostio_set_filesystem, making remote files access impossible.
4088 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4089 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4090 {
4091 const char v_mustreplyempty[] = "vMustReplyEmpty";
4092
4093 putpkt (v_mustreplyempty);
4094 getpkt (&rs->buf, &rs->buf_size, 0);
4095 if (strcmp (rs->buf, "OK") == 0)
4096 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4097 else if (strcmp (rs->buf, "") != 0)
4098 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4099 rs->buf);
4100 }
4101
4102 /* Next, we possibly activate noack mode.
4103
4104 If the QStartNoAckMode packet configuration is set to AUTO,
4105 enable noack mode if the stub reported a wish for it with
4106 qSupported.
4107
4108 If set to TRUE, then enable noack mode even if the stub didn't
4109 report it in qSupported. If the stub doesn't reply OK, the
4110 session ends with an error.
4111
4112 If FALSE, then don't activate noack mode, regardless of what the
4113 stub claimed should be the default with qSupported. */
4114
4115 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4116 if (packet_config_support (noack_config) != PACKET_DISABLE)
4117 {
4118 putpkt ("QStartNoAckMode");
4119 getpkt (&rs->buf, &rs->buf_size, 0);
4120 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4121 rs->noack_mode = 1;
4122 }
4123
4124 if (extended_p)
4125 {
4126 /* Tell the remote that we are using the extended protocol. */
4127 putpkt ("!");
4128 getpkt (&rs->buf, &rs->buf_size, 0);
4129 }
4130
4131 /* Let the target know which signals it is allowed to pass down to
4132 the program. */
4133 update_signals_program_target ();
4134
4135 /* Next, if the target can specify a description, read it. We do
4136 this before anything involving memory or registers. */
4137 target_find_description ();
4138
4139 /* Next, now that we know something about the target, update the
4140 address spaces in the program spaces. */
4141 update_address_spaces ();
4142
4143 /* On OSs where the list of libraries is global to all
4144 processes, we fetch them early. */
4145 if (gdbarch_has_global_solist (target_gdbarch ()))
4146 solib_add (NULL, from_tty, auto_solib_add);
4147
4148 if (target_is_non_stop_p ())
4149 {
4150 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4151 error (_("Non-stop mode requested, but remote "
4152 "does not support non-stop"));
4153
4154 putpkt ("QNonStop:1");
4155 getpkt (&rs->buf, &rs->buf_size, 0);
4156
4157 if (strcmp (rs->buf, "OK") != 0)
4158 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
4159
4160 /* Find about threads and processes the stub is already
4161 controlling. We default to adding them in the running state.
4162 The '?' query below will then tell us about which threads are
4163 stopped. */
4164 remote_update_thread_list (target);
4165 }
4166 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4167 {
4168 /* Don't assume that the stub can operate in all-stop mode.
4169 Request it explicitly. */
4170 putpkt ("QNonStop:0");
4171 getpkt (&rs->buf, &rs->buf_size, 0);
4172
4173 if (strcmp (rs->buf, "OK") != 0)
4174 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
4175 }
4176
4177 /* Upload TSVs regardless of whether the target is running or not. The
4178 remote stub, such as GDBserver, may have some predefined or builtin
4179 TSVs, even if the target is not running. */
4180 if (remote_get_trace_status (target, current_trace_status ()) != -1)
4181 {
4182 struct uploaded_tsv *uploaded_tsvs = NULL;
4183
4184 remote_upload_trace_state_variables (target, &uploaded_tsvs);
4185 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4186 }
4187
4188 /* Check whether the target is running now. */
4189 putpkt ("?");
4190 getpkt (&rs->buf, &rs->buf_size, 0);
4191
4192 if (!target_is_non_stop_p ())
4193 {
4194 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4195 {
4196 if (!extended_p)
4197 error (_("The target is not running (try extended-remote?)"));
4198
4199 /* We're connected, but not running. Drop out before we
4200 call start_remote. */
4201 rs->starting_up = 0;
4202 return;
4203 }
4204 else
4205 {
4206 /* Save the reply for later. */
4207 wait_status = (char *) alloca (strlen (rs->buf) + 1);
4208 strcpy (wait_status, rs->buf);
4209 }
4210
4211 /* Fetch thread list. */
4212 target_update_thread_list ();
4213
4214 /* Let the stub know that we want it to return the thread. */
4215 set_continue_thread (minus_one_ptid);
4216
4217 if (thread_count () == 0)
4218 {
4219 /* Target has no concept of threads at all. GDB treats
4220 non-threaded target as single-threaded; add a main
4221 thread. */
4222 add_current_inferior_and_thread (wait_status);
4223 }
4224 else
4225 {
4226 /* We have thread information; select the thread the target
4227 says should be current. If we're reconnecting to a
4228 multi-threaded program, this will ideally be the thread
4229 that last reported an event before GDB disconnected. */
4230 inferior_ptid = get_current_thread (wait_status);
4231 if (ptid_equal (inferior_ptid, null_ptid))
4232 {
4233 /* Odd... The target was able to list threads, but not
4234 tell us which thread was current (no "thread"
4235 register in T stop reply?). Just pick the first
4236 thread in the thread list then. */
4237
4238 if (remote_debug)
4239 fprintf_unfiltered (gdb_stdlog,
4240 "warning: couldn't determine remote "
4241 "current thread; picking first in list.\n");
4242
4243 inferior_ptid = thread_list->ptid;
4244 }
4245 }
4246
4247 /* init_wait_for_inferior should be called before get_offsets in order
4248 to manage `inserted' flag in bp loc in a correct state.
4249 breakpoint_init_inferior, called from init_wait_for_inferior, set
4250 `inserted' flag to 0, while before breakpoint_re_set, called from
4251 start_remote, set `inserted' flag to 1. In the initialization of
4252 inferior, breakpoint_init_inferior should be called first, and then
4253 breakpoint_re_set can be called. If this order is broken, state of
4254 `inserted' flag is wrong, and cause some problems on breakpoint
4255 manipulation. */
4256 init_wait_for_inferior ();
4257
4258 get_offsets (); /* Get text, data & bss offsets. */
4259
4260 /* If we could not find a description using qXfer, and we know
4261 how to do it some other way, try again. This is not
4262 supported for non-stop; it could be, but it is tricky if
4263 there are no stopped threads when we connect. */
4264 if (remote_read_description_p (target)
4265 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4266 {
4267 target_clear_description ();
4268 target_find_description ();
4269 }
4270
4271 /* Use the previously fetched status. */
4272 gdb_assert (wait_status != NULL);
4273 strcpy (rs->buf, wait_status);
4274 rs->cached_wait_status = 1;
4275
4276 start_remote (from_tty); /* Initialize gdb process mechanisms. */
4277 }
4278 else
4279 {
4280 /* Clear WFI global state. Do this before finding about new
4281 threads and inferiors, and setting the current inferior.
4282 Otherwise we would clear the proceed status of the current
4283 inferior when we want its stop_soon state to be preserved
4284 (see notice_new_inferior). */
4285 init_wait_for_inferior ();
4286
4287 /* In non-stop, we will either get an "OK", meaning that there
4288 are no stopped threads at this time; or, a regular stop
4289 reply. In the latter case, there may be more than one thread
4290 stopped --- we pull them all out using the vStopped
4291 mechanism. */
4292 if (strcmp (rs->buf, "OK") != 0)
4293 {
4294 struct notif_client *notif = &notif_client_stop;
4295
4296 /* remote_notif_get_pending_replies acks this one, and gets
4297 the rest out. */
4298 rs->notif_state->pending_event[notif_client_stop.id]
4299 = remote_notif_parse (notif, rs->buf);
4300 remote_notif_get_pending_events (notif);
4301 }
4302
4303 if (thread_count () == 0)
4304 {
4305 if (!extended_p)
4306 error (_("The target is not running (try extended-remote?)"));
4307
4308 /* We're connected, but not running. Drop out before we
4309 call start_remote. */
4310 rs->starting_up = 0;
4311 return;
4312 }
4313
4314 /* In non-stop mode, any cached wait status will be stored in
4315 the stop reply queue. */
4316 gdb_assert (wait_status == NULL);
4317
4318 /* Report all signals during attach/startup. */
4319 remote_pass_signals (target, 0, NULL);
4320
4321 /* If there are already stopped threads, mark them stopped and
4322 report their stops before giving the prompt to the user. */
4323 process_initial_stop_replies (from_tty);
4324
4325 if (target_can_async_p ())
4326 target_async (1);
4327 }
4328
4329 /* If we connected to a live target, do some additional setup. */
4330 if (target_has_execution)
4331 {
4332 if (symfile_objfile) /* No use without a symbol-file. */
4333 remote_check_symbols ();
4334 }
4335
4336 /* Possibly the target has been engaged in a trace run started
4337 previously; find out where things are at. */
4338 if (remote_get_trace_status (target, current_trace_status ()) != -1)
4339 {
4340 struct uploaded_tp *uploaded_tps = NULL;
4341
4342 if (current_trace_status ()->running)
4343 printf_filtered (_("Trace is already running on the target.\n"));
4344
4345 remote_upload_tracepoints (target, &uploaded_tps);
4346
4347 merge_uploaded_tracepoints (&uploaded_tps);
4348 }
4349
4350 /* Possibly the target has been engaged in a btrace record started
4351 previously; find out where things are at. */
4352 remote_btrace_maybe_reopen ();
4353
4354 /* The thread and inferior lists are now synchronized with the
4355 target, our symbols have been relocated, and we're merged the
4356 target's tracepoints with ours. We're done with basic start
4357 up. */
4358 rs->starting_up = 0;
4359
4360 /* Maybe breakpoints are global and need to be inserted now. */
4361 if (breakpoints_should_be_inserted_now ())
4362 insert_breakpoints ();
4363 }
4364
4365 /* Open a connection to a remote debugger.
4366 NAME is the filename used for communication. */
4367
4368 static void
4369 remote_open (const char *name, int from_tty)
4370 {
4371 remote_open_1 (name, from_tty, &remote_ops, 0);
4372 }
4373
4374 /* Open a connection to a remote debugger using the extended
4375 remote gdb protocol. NAME is the filename used for communication. */
4376
4377 static void
4378 extended_remote_open (const char *name, int from_tty)
4379 {
4380 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
4381 }
4382
4383 /* Reset all packets back to "unknown support". Called when opening a
4384 new connection to a remote target. */
4385
4386 static void
4387 reset_all_packet_configs_support (void)
4388 {
4389 int i;
4390
4391 for (i = 0; i < PACKET_MAX; i++)
4392 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4393 }
4394
4395 /* Initialize all packet configs. */
4396
4397 static void
4398 init_all_packet_configs (void)
4399 {
4400 int i;
4401
4402 for (i = 0; i < PACKET_MAX; i++)
4403 {
4404 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4405 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4406 }
4407 }
4408
4409 /* Symbol look-up. */
4410
4411 static void
4412 remote_check_symbols (void)
4413 {
4414 struct remote_state *rs = get_remote_state ();
4415 char *msg, *reply, *tmp;
4416 int end;
4417 long reply_size;
4418 struct cleanup *old_chain;
4419
4420 /* The remote side has no concept of inferiors that aren't running
4421 yet, it only knows about running processes. If we're connected
4422 but our current inferior is not running, we should not invite the
4423 remote target to request symbol lookups related to its
4424 (unrelated) current process. */
4425 if (!target_has_execution)
4426 return;
4427
4428 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4429 return;
4430
4431 /* Make sure the remote is pointing at the right process. Note
4432 there's no way to select "no process". */
4433 set_general_process ();
4434
4435 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4436 because we need both at the same time. */
4437 msg = (char *) xmalloc (get_remote_packet_size ());
4438 old_chain = make_cleanup (xfree, msg);
4439 reply = (char *) xmalloc (get_remote_packet_size ());
4440 make_cleanup (free_current_contents, &reply);
4441 reply_size = get_remote_packet_size ();
4442
4443 /* Invite target to request symbol lookups. */
4444
4445 putpkt ("qSymbol::");
4446 getpkt (&reply, &reply_size, 0);
4447 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
4448
4449 while (startswith (reply, "qSymbol:"))
4450 {
4451 struct bound_minimal_symbol sym;
4452
4453 tmp = &reply[8];
4454 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
4455 msg[end] = '\0';
4456 sym = lookup_minimal_symbol (msg, NULL, NULL);
4457 if (sym.minsym == NULL)
4458 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
4459 else
4460 {
4461 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4462 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4463
4464 /* If this is a function address, return the start of code
4465 instead of any data function descriptor. */
4466 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4467 sym_addr,
4468 &current_target);
4469
4470 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
4471 phex_nz (sym_addr, addr_size), &reply[8]);
4472 }
4473
4474 putpkt (msg);
4475 getpkt (&reply, &reply_size, 0);
4476 }
4477
4478 do_cleanups (old_chain);
4479 }
4480
4481 static struct serial *
4482 remote_serial_open (const char *name)
4483 {
4484 static int udp_warning = 0;
4485
4486 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4487 of in ser-tcp.c, because it is the remote protocol assuming that the
4488 serial connection is reliable and not the serial connection promising
4489 to be. */
4490 if (!udp_warning && startswith (name, "udp:"))
4491 {
4492 warning (_("The remote protocol may be unreliable over UDP.\n"
4493 "Some events may be lost, rendering further debugging "
4494 "impossible."));
4495 udp_warning = 1;
4496 }
4497
4498 return serial_open (name);
4499 }
4500
4501 /* Inform the target of our permission settings. The permission flags
4502 work without this, but if the target knows the settings, it can do
4503 a couple things. First, it can add its own check, to catch cases
4504 that somehow manage to get by the permissions checks in target
4505 methods. Second, if the target is wired to disallow particular
4506 settings (for instance, a system in the field that is not set up to
4507 be able to stop at a breakpoint), it can object to any unavailable
4508 permissions. */
4509
4510 void
4511 remote_set_permissions (struct target_ops *self)
4512 {
4513 struct remote_state *rs = get_remote_state ();
4514
4515 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4516 "WriteReg:%x;WriteMem:%x;"
4517 "InsertBreak:%x;InsertTrace:%x;"
4518 "InsertFastTrace:%x;Stop:%x",
4519 may_write_registers, may_write_memory,
4520 may_insert_breakpoints, may_insert_tracepoints,
4521 may_insert_fast_tracepoints, may_stop);
4522 putpkt (rs->buf);
4523 getpkt (&rs->buf, &rs->buf_size, 0);
4524
4525 /* If the target didn't like the packet, warn the user. Do not try
4526 to undo the user's settings, that would just be maddening. */
4527 if (strcmp (rs->buf, "OK") != 0)
4528 warning (_("Remote refused setting permissions with: %s"), rs->buf);
4529 }
4530
4531 /* This type describes each known response to the qSupported
4532 packet. */
4533 struct protocol_feature
4534 {
4535 /* The name of this protocol feature. */
4536 const char *name;
4537
4538 /* The default for this protocol feature. */
4539 enum packet_support default_support;
4540
4541 /* The function to call when this feature is reported, or after
4542 qSupported processing if the feature is not supported.
4543 The first argument points to this structure. The second
4544 argument indicates whether the packet requested support be
4545 enabled, disabled, or probed (or the default, if this function
4546 is being called at the end of processing and this feature was
4547 not reported). The third argument may be NULL; if not NULL, it
4548 is a NUL-terminated string taken from the packet following
4549 this feature's name and an equals sign. */
4550 void (*func) (const struct protocol_feature *, enum packet_support,
4551 const char *);
4552
4553 /* The corresponding packet for this feature. Only used if
4554 FUNC is remote_supported_packet. */
4555 int packet;
4556 };
4557
4558 static void
4559 remote_supported_packet (const struct protocol_feature *feature,
4560 enum packet_support support,
4561 const char *argument)
4562 {
4563 if (argument)
4564 {
4565 warning (_("Remote qSupported response supplied an unexpected value for"
4566 " \"%s\"."), feature->name);
4567 return;
4568 }
4569
4570 remote_protocol_packets[feature->packet].support = support;
4571 }
4572
4573 static void
4574 remote_packet_size (const struct protocol_feature *feature,
4575 enum packet_support support, const char *value)
4576 {
4577 struct remote_state *rs = get_remote_state ();
4578
4579 int packet_size;
4580 char *value_end;
4581
4582 if (support != PACKET_ENABLE)
4583 return;
4584
4585 if (value == NULL || *value == '\0')
4586 {
4587 warning (_("Remote target reported \"%s\" without a size."),
4588 feature->name);
4589 return;
4590 }
4591
4592 errno = 0;
4593 packet_size = strtol (value, &value_end, 16);
4594 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4595 {
4596 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4597 feature->name, value);
4598 return;
4599 }
4600
4601 /* Record the new maximum packet size. */
4602 rs->explicit_packet_size = packet_size;
4603 }
4604
4605 static const struct protocol_feature remote_protocol_features[] = {
4606 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
4607 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
4608 PACKET_qXfer_auxv },
4609 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4610 PACKET_qXfer_exec_file },
4611 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4612 PACKET_qXfer_features },
4613 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4614 PACKET_qXfer_libraries },
4615 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4616 PACKET_qXfer_libraries_svr4 },
4617 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4618 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
4619 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
4620 PACKET_qXfer_memory_map },
4621 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4622 PACKET_qXfer_spu_read },
4623 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4624 PACKET_qXfer_spu_write },
4625 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4626 PACKET_qXfer_osdata },
4627 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4628 PACKET_qXfer_threads },
4629 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4630 PACKET_qXfer_traceframe_info },
4631 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4632 PACKET_QPassSignals },
4633 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4634 PACKET_QCatchSyscalls },
4635 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4636 PACKET_QProgramSignals },
4637 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
4638 PACKET_QStartupWithShell },
4639 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4640 PACKET_QStartNoAckMode },
4641 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4642 PACKET_multiprocess_feature },
4643 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4644 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4645 PACKET_qXfer_siginfo_read },
4646 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4647 PACKET_qXfer_siginfo_write },
4648 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
4649 PACKET_ConditionalTracepoints },
4650 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
4651 PACKET_ConditionalBreakpoints },
4652 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
4653 PACKET_BreakpointCommands },
4654 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
4655 PACKET_FastTracepoints },
4656 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
4657 PACKET_StaticTracepoints },
4658 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
4659 PACKET_InstallInTrace},
4660 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4661 PACKET_DisconnectedTracing_feature },
4662 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4663 PACKET_bc },
4664 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4665 PACKET_bs },
4666 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4667 PACKET_TracepointSource },
4668 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4669 PACKET_QAllow },
4670 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4671 PACKET_EnableDisableTracepoints_feature },
4672 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4673 PACKET_qXfer_fdpic },
4674 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4675 PACKET_qXfer_uib },
4676 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4677 PACKET_QDisableRandomization },
4678 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
4679 { "QTBuffer:size", PACKET_DISABLE,
4680 remote_supported_packet, PACKET_QTBuffer_size},
4681 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
4682 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4683 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4684 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
4685 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4686 PACKET_qXfer_btrace },
4687 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
4688 PACKET_qXfer_btrace_conf },
4689 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
4690 PACKET_Qbtrace_conf_bts_size },
4691 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
4692 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
4693 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4694 PACKET_fork_event_feature },
4695 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4696 PACKET_vfork_event_feature },
4697 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4698 PACKET_exec_event_feature },
4699 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
4700 PACKET_Qbtrace_conf_pt_size },
4701 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4702 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
4703 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
4704 };
4705
4706 static char *remote_support_xml;
4707
4708 /* Register string appended to "xmlRegisters=" in qSupported query. */
4709
4710 void
4711 register_remote_support_xml (const char *xml)
4712 {
4713 #if defined(HAVE_LIBEXPAT)
4714 if (remote_support_xml == NULL)
4715 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
4716 else
4717 {
4718 char *copy = xstrdup (remote_support_xml + 13);
4719 char *p = strtok (copy, ",");
4720
4721 do
4722 {
4723 if (strcmp (p, xml) == 0)
4724 {
4725 /* already there */
4726 xfree (copy);
4727 return;
4728 }
4729 }
4730 while ((p = strtok (NULL, ",")) != NULL);
4731 xfree (copy);
4732
4733 remote_support_xml = reconcat (remote_support_xml,
4734 remote_support_xml, ",", xml,
4735 (char *) NULL);
4736 }
4737 #endif
4738 }
4739
4740 static char *
4741 remote_query_supported_append (char *msg, const char *append)
4742 {
4743 if (msg)
4744 return reconcat (msg, msg, ";", append, (char *) NULL);
4745 else
4746 return xstrdup (append);
4747 }
4748
4749 static void
4750 remote_query_supported (void)
4751 {
4752 struct remote_state *rs = get_remote_state ();
4753 char *next;
4754 int i;
4755 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4756
4757 /* The packet support flags are handled differently for this packet
4758 than for most others. We treat an error, a disabled packet, and
4759 an empty response identically: any features which must be reported
4760 to be used will be automatically disabled. An empty buffer
4761 accomplishes this, since that is also the representation for a list
4762 containing no features. */
4763
4764 rs->buf[0] = 0;
4765 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
4766 {
4767 char *q = NULL;
4768 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
4769
4770 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4771 q = remote_query_supported_append (q, "multiprocess+");
4772
4773 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4774 q = remote_query_supported_append (q, "swbreak+");
4775 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4776 q = remote_query_supported_append (q, "hwbreak+");
4777
4778 q = remote_query_supported_append (q, "qRelocInsn+");
4779
4780 if (packet_set_cmd_state (PACKET_fork_event_feature)
4781 != AUTO_BOOLEAN_FALSE)
4782 q = remote_query_supported_append (q, "fork-events+");
4783 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4784 != AUTO_BOOLEAN_FALSE)
4785 q = remote_query_supported_append (q, "vfork-events+");
4786 if (packet_set_cmd_state (PACKET_exec_event_feature)
4787 != AUTO_BOOLEAN_FALSE)
4788 q = remote_query_supported_append (q, "exec-events+");
4789
4790 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4791 q = remote_query_supported_append (q, "vContSupported+");
4792
4793 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4794 q = remote_query_supported_append (q, "QThreadEvents+");
4795
4796 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4797 q = remote_query_supported_append (q, "no-resumed+");
4798
4799 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4800 the qSupported:xmlRegisters=i386 handling. */
4801 if (remote_support_xml != NULL)
4802 q = remote_query_supported_append (q, remote_support_xml);
4803
4804 q = reconcat (q, "qSupported:", q, (char *) NULL);
4805 putpkt (q);
4806
4807 do_cleanups (old_chain);
4808
4809 getpkt (&rs->buf, &rs->buf_size, 0);
4810
4811 /* If an error occured, warn, but do not return - just reset the
4812 buffer to empty and go on to disable features. */
4813 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4814 == PACKET_ERROR)
4815 {
4816 warning (_("Remote failure reply: %s"), rs->buf);
4817 rs->buf[0] = 0;
4818 }
4819 }
4820
4821 memset (seen, 0, sizeof (seen));
4822
4823 next = rs->buf;
4824 while (*next)
4825 {
4826 enum packet_support is_supported;
4827 char *p, *end, *name_end, *value;
4828
4829 /* First separate out this item from the rest of the packet. If
4830 there's another item after this, we overwrite the separator
4831 (terminated strings are much easier to work with). */
4832 p = next;
4833 end = strchr (p, ';');
4834 if (end == NULL)
4835 {
4836 end = p + strlen (p);
4837 next = end;
4838 }
4839 else
4840 {
4841 *end = '\0';
4842 next = end + 1;
4843
4844 if (end == p)
4845 {
4846 warning (_("empty item in \"qSupported\" response"));
4847 continue;
4848 }
4849 }
4850
4851 name_end = strchr (p, '=');
4852 if (name_end)
4853 {
4854 /* This is a name=value entry. */
4855 is_supported = PACKET_ENABLE;
4856 value = name_end + 1;
4857 *name_end = '\0';
4858 }
4859 else
4860 {
4861 value = NULL;
4862 switch (end[-1])
4863 {
4864 case '+':
4865 is_supported = PACKET_ENABLE;
4866 break;
4867
4868 case '-':
4869 is_supported = PACKET_DISABLE;
4870 break;
4871
4872 case '?':
4873 is_supported = PACKET_SUPPORT_UNKNOWN;
4874 break;
4875
4876 default:
4877 warning (_("unrecognized item \"%s\" "
4878 "in \"qSupported\" response"), p);
4879 continue;
4880 }
4881 end[-1] = '\0';
4882 }
4883
4884 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4885 if (strcmp (remote_protocol_features[i].name, p) == 0)
4886 {
4887 const struct protocol_feature *feature;
4888
4889 seen[i] = 1;
4890 feature = &remote_protocol_features[i];
4891 feature->func (feature, is_supported, value);
4892 break;
4893 }
4894 }
4895
4896 /* If we increased the packet size, make sure to increase the global
4897 buffer size also. We delay this until after parsing the entire
4898 qSupported packet, because this is the same buffer we were
4899 parsing. */
4900 if (rs->buf_size < rs->explicit_packet_size)
4901 {
4902 rs->buf_size = rs->explicit_packet_size;
4903 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
4904 }
4905
4906 /* Handle the defaults for unmentioned features. */
4907 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4908 if (!seen[i])
4909 {
4910 const struct protocol_feature *feature;
4911
4912 feature = &remote_protocol_features[i];
4913 feature->func (feature, feature->default_support, NULL);
4914 }
4915 }
4916
4917 /* Serial QUIT handler for the remote serial descriptor.
4918
4919 Defers handling a Ctrl-C until we're done with the current
4920 command/response packet sequence, unless:
4921
4922 - We're setting up the connection. Don't send a remote interrupt
4923 request, as we're not fully synced yet. Quit immediately
4924 instead.
4925
4926 - The target has been resumed in the foreground
4927 (target_terminal_is_ours is false) with a synchronous resume
4928 packet, and we're blocked waiting for the stop reply, thus a
4929 Ctrl-C should be immediately sent to the target.
4930
4931 - We get a second Ctrl-C while still within the same serial read or
4932 write. In that case the serial is seemingly wedged --- offer to
4933 quit/disconnect.
4934
4935 - We see a second Ctrl-C without target response, after having
4936 previously interrupted the target. In that case the target/stub
4937 is probably wedged --- offer to quit/disconnect.
4938 */
4939
4940 static void
4941 remote_serial_quit_handler (void)
4942 {
4943 struct remote_state *rs = get_remote_state ();
4944
4945 if (check_quit_flag ())
4946 {
4947 /* If we're starting up, we're not fully synced yet. Quit
4948 immediately. */
4949 if (rs->starting_up)
4950 quit ();
4951 else if (rs->got_ctrlc_during_io)
4952 {
4953 if (query (_("The target is not responding to GDB commands.\n"
4954 "Stop debugging it? ")))
4955 remote_unpush_and_throw ();
4956 }
4957 /* If ^C has already been sent once, offer to disconnect. */
4958 else if (!target_terminal_is_ours () && rs->ctrlc_pending_p)
4959 interrupt_query ();
4960 /* All-stop protocol, and blocked waiting for stop reply. Send
4961 an interrupt request. */
4962 else if (!target_terminal_is_ours () && rs->waiting_for_stop_reply)
4963 target_interrupt (inferior_ptid);
4964 else
4965 rs->got_ctrlc_during_io = 1;
4966 }
4967 }
4968
4969 /* Remove any of the remote.c targets from target stack. Upper targets depend
4970 on it so remove them first. */
4971
4972 static void
4973 remote_unpush_target (void)
4974 {
4975 pop_all_targets_at_and_above (process_stratum);
4976 }
4977
4978 static void
4979 remote_unpush_and_throw (void)
4980 {
4981 remote_unpush_target ();
4982 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
4983 }
4984
4985 static void
4986 remote_open_1 (const char *name, int from_tty,
4987 struct target_ops *target, int extended_p)
4988 {
4989 struct remote_state *rs = get_remote_state ();
4990
4991 if (name == 0)
4992 error (_("To open a remote debug connection, you need to specify what\n"
4993 "serial device is attached to the remote system\n"
4994 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4995
4996 /* See FIXME above. */
4997 if (!target_async_permitted)
4998 wait_forever_enabled_p = 1;
4999
5000 /* If we're connected to a running target, target_preopen will kill it.
5001 Ask this question first, before target_preopen has a chance to kill
5002 anything. */
5003 if (rs->remote_desc != NULL && !have_inferiors ())
5004 {
5005 if (from_tty
5006 && !query (_("Already connected to a remote target. Disconnect? ")))
5007 error (_("Still connected."));
5008 }
5009
5010 /* Here the possibly existing remote target gets unpushed. */
5011 target_preopen (from_tty);
5012
5013 /* Make sure we send the passed signals list the next time we resume. */
5014 xfree (rs->last_pass_packet);
5015 rs->last_pass_packet = NULL;
5016
5017 /* Make sure we send the program signals list the next time we
5018 resume. */
5019 xfree (rs->last_program_signals_packet);
5020 rs->last_program_signals_packet = NULL;
5021
5022 remote_fileio_reset ();
5023 reopen_exec_file ();
5024 reread_symbols ();
5025
5026 rs->remote_desc = remote_serial_open (name);
5027 if (!rs->remote_desc)
5028 perror_with_name (name);
5029
5030 if (baud_rate != -1)
5031 {
5032 if (serial_setbaudrate (rs->remote_desc, baud_rate))
5033 {
5034 /* The requested speed could not be set. Error out to
5035 top level after closing remote_desc. Take care to
5036 set remote_desc to NULL to avoid closing remote_desc
5037 more than once. */
5038 serial_close (rs->remote_desc);
5039 rs->remote_desc = NULL;
5040 perror_with_name (name);
5041 }
5042 }
5043
5044 serial_setparity (rs->remote_desc, serial_parity);
5045 serial_raw (rs->remote_desc);
5046
5047 /* If there is something sitting in the buffer we might take it as a
5048 response to a command, which would be bad. */
5049 serial_flush_input (rs->remote_desc);
5050
5051 if (from_tty)
5052 {
5053 puts_filtered ("Remote debugging using ");
5054 puts_filtered (name);
5055 puts_filtered ("\n");
5056 }
5057 push_target (target); /* Switch to using remote target now. */
5058
5059 /* Register extra event sources in the event loop. */
5060 remote_async_inferior_event_token
5061 = create_async_event_handler (remote_async_inferior_event_handler,
5062 NULL);
5063 rs->notif_state = remote_notif_state_allocate ();
5064
5065 /* Reset the target state; these things will be queried either by
5066 remote_query_supported or as they are needed. */
5067 reset_all_packet_configs_support ();
5068 rs->cached_wait_status = 0;
5069 rs->explicit_packet_size = 0;
5070 rs->noack_mode = 0;
5071 rs->extended = extended_p;
5072 rs->waiting_for_stop_reply = 0;
5073 rs->ctrlc_pending_p = 0;
5074 rs->got_ctrlc_during_io = 0;
5075
5076 rs->general_thread = not_sent_ptid;
5077 rs->continue_thread = not_sent_ptid;
5078 rs->remote_traceframe_number = -1;
5079
5080 rs->last_resume_exec_dir = EXEC_FORWARD;
5081
5082 /* Probe for ability to use "ThreadInfo" query, as required. */
5083 rs->use_threadinfo_query = 1;
5084 rs->use_threadextra_query = 1;
5085
5086 readahead_cache_invalidate ();
5087
5088 /* Start out by owning the terminal. */
5089 remote_async_terminal_ours_p = 1;
5090
5091 if (target_async_permitted)
5092 {
5093 /* FIXME: cagney/1999-09-23: During the initial connection it is
5094 assumed that the target is already ready and able to respond to
5095 requests. Unfortunately remote_start_remote() eventually calls
5096 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5097 around this. Eventually a mechanism that allows
5098 wait_for_inferior() to expect/get timeouts will be
5099 implemented. */
5100 wait_forever_enabled_p = 0;
5101 }
5102
5103 /* First delete any symbols previously loaded from shared libraries. */
5104 no_shared_libraries (NULL, 0);
5105
5106 /* Start afresh. */
5107 init_thread_list ();
5108
5109 /* Start the remote connection. If error() or QUIT, discard this
5110 target (we'd otherwise be in an inconsistent state) and then
5111 propogate the error on up the exception chain. This ensures that
5112 the caller doesn't stumble along blindly assuming that the
5113 function succeeded. The CLI doesn't have this problem but other
5114 UI's, such as MI do.
5115
5116 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5117 this function should return an error indication letting the
5118 caller restore the previous state. Unfortunately the command
5119 ``target remote'' is directly wired to this function making that
5120 impossible. On a positive note, the CLI side of this problem has
5121 been fixed - the function set_cmd_context() makes it possible for
5122 all the ``target ....'' commands to share a common callback
5123 function. See cli-dump.c. */
5124 {
5125
5126 TRY
5127 {
5128 remote_start_remote (from_tty, target, extended_p);
5129 }
5130 CATCH (ex, RETURN_MASK_ALL)
5131 {
5132 /* Pop the partially set up target - unless something else did
5133 already before throwing the exception. */
5134 if (rs->remote_desc != NULL)
5135 remote_unpush_target ();
5136 if (target_async_permitted)
5137 wait_forever_enabled_p = 1;
5138 throw_exception (ex);
5139 }
5140 END_CATCH
5141 }
5142
5143 remote_btrace_reset ();
5144
5145 if (target_async_permitted)
5146 wait_forever_enabled_p = 1;
5147 }
5148
5149 /* Detach the specified process. */
5150
5151 static void
5152 remote_detach_pid (int pid)
5153 {
5154 struct remote_state *rs = get_remote_state ();
5155
5156 if (remote_multi_process_p (rs))
5157 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5158 else
5159 strcpy (rs->buf, "D");
5160
5161 putpkt (rs->buf);
5162 getpkt (&rs->buf, &rs->buf_size, 0);
5163
5164 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5165 ;
5166 else if (rs->buf[0] == '\0')
5167 error (_("Remote doesn't know how to detach"));
5168 else
5169 error (_("Can't detach process."));
5170 }
5171
5172 /* This detaches a program to which we previously attached, using
5173 inferior_ptid to identify the process. After this is done, GDB
5174 can be used to debug some other program. We better not have left
5175 any breakpoints in the target program or it'll die when it hits
5176 one. */
5177
5178 static void
5179 remote_detach_1 (const char *args, int from_tty)
5180 {
5181 int pid = ptid_get_pid (inferior_ptid);
5182 struct remote_state *rs = get_remote_state ();
5183 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5184 int is_fork_parent;
5185
5186 if (args)
5187 error (_("Argument given to \"detach\" when remotely debugging."));
5188
5189 if (!target_has_execution)
5190 error (_("No process to detach from."));
5191
5192 target_announce_detach (from_tty);
5193
5194 /* Tell the remote target to detach. */
5195 remote_detach_pid (pid);
5196
5197 /* Exit only if this is the only active inferior. */
5198 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
5199 puts_filtered (_("Ending remote debugging.\n"));
5200
5201 /* Check to see if we are detaching a fork parent. Note that if we
5202 are detaching a fork child, tp == NULL. */
5203 is_fork_parent = (tp != NULL
5204 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5205
5206 /* If doing detach-on-fork, we don't mourn, because that will delete
5207 breakpoints that should be available for the followed inferior. */
5208 if (!is_fork_parent)
5209 target_mourn_inferior (inferior_ptid);
5210 else
5211 {
5212 inferior_ptid = null_ptid;
5213 detach_inferior (pid);
5214 }
5215 }
5216
5217 static void
5218 remote_detach (struct target_ops *ops, const char *args, int from_tty)
5219 {
5220 remote_detach_1 (args, from_tty);
5221 }
5222
5223 static void
5224 extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
5225 {
5226 remote_detach_1 (args, from_tty);
5227 }
5228
5229 /* Target follow-fork function for remote targets. On entry, and
5230 at return, the current inferior is the fork parent.
5231
5232 Note that although this is currently only used for extended-remote,
5233 it is named remote_follow_fork in anticipation of using it for the
5234 remote target as well. */
5235
5236 static int
5237 remote_follow_fork (struct target_ops *ops, int follow_child,
5238 int detach_fork)
5239 {
5240 struct remote_state *rs = get_remote_state ();
5241 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5242
5243 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5244 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5245 {
5246 /* When following the parent and detaching the child, we detach
5247 the child here. For the case of following the child and
5248 detaching the parent, the detach is done in the target-
5249 independent follow fork code in infrun.c. We can't use
5250 target_detach when detaching an unfollowed child because
5251 the client side doesn't know anything about the child. */
5252 if (detach_fork && !follow_child)
5253 {
5254 /* Detach the fork child. */
5255 ptid_t child_ptid;
5256 pid_t child_pid;
5257
5258 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5259 child_pid = ptid_get_pid (child_ptid);
5260
5261 remote_detach_pid (child_pid);
5262 detach_inferior (child_pid);
5263 }
5264 }
5265 return 0;
5266 }
5267
5268 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5269 in the program space of the new inferior. On entry and at return the
5270 current inferior is the exec'ing inferior. INF is the new exec'd
5271 inferior, which may be the same as the exec'ing inferior unless
5272 follow-exec-mode is "new". */
5273
5274 static void
5275 remote_follow_exec (struct target_ops *ops,
5276 struct inferior *inf, char *execd_pathname)
5277 {
5278 /* We know that this is a target file name, so if it has the "target:"
5279 prefix we strip it off before saving it in the program space. */
5280 if (is_target_filename (execd_pathname))
5281 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5282
5283 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5284 }
5285
5286 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5287
5288 static void
5289 remote_disconnect (struct target_ops *target, const char *args, int from_tty)
5290 {
5291 if (args)
5292 error (_("Argument given to \"disconnect\" when remotely debugging."));
5293
5294 /* Make sure we unpush even the extended remote targets. Calling
5295 target_mourn_inferior won't unpush, and remote_mourn won't
5296 unpush if there is more than one inferior left. */
5297 unpush_target (target);
5298 generic_mourn_inferior ();
5299
5300 if (from_tty)
5301 puts_filtered ("Ending remote debugging.\n");
5302 }
5303
5304 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5305 be chatty about it. */
5306
5307 static void
5308 extended_remote_attach (struct target_ops *target, const char *args,
5309 int from_tty)
5310 {
5311 struct remote_state *rs = get_remote_state ();
5312 int pid;
5313 char *wait_status = NULL;
5314
5315 pid = parse_pid_to_attach (args);
5316
5317 /* Remote PID can be freely equal to getpid, do not check it here the same
5318 way as in other targets. */
5319
5320 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5321 error (_("This target does not support attaching to a process"));
5322
5323 if (from_tty)
5324 {
5325 char *exec_file = get_exec_file (0);
5326
5327 if (exec_file)
5328 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5329 target_pid_to_str (pid_to_ptid (pid)));
5330 else
5331 printf_unfiltered (_("Attaching to %s\n"),
5332 target_pid_to_str (pid_to_ptid (pid)));
5333
5334 gdb_flush (gdb_stdout);
5335 }
5336
5337 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
5338 putpkt (rs->buf);
5339 getpkt (&rs->buf, &rs->buf_size, 0);
5340
5341 switch (packet_ok (rs->buf,
5342 &remote_protocol_packets[PACKET_vAttach]))
5343 {
5344 case PACKET_OK:
5345 if (!target_is_non_stop_p ())
5346 {
5347 /* Save the reply for later. */
5348 wait_status = (char *) alloca (strlen (rs->buf) + 1);
5349 strcpy (wait_status, rs->buf);
5350 }
5351 else if (strcmp (rs->buf, "OK") != 0)
5352 error (_("Attaching to %s failed with: %s"),
5353 target_pid_to_str (pid_to_ptid (pid)),
5354 rs->buf);
5355 break;
5356 case PACKET_UNKNOWN:
5357 error (_("This target does not support attaching to a process"));
5358 default:
5359 error (_("Attaching to %s failed"),
5360 target_pid_to_str (pid_to_ptid (pid)));
5361 }
5362
5363 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
5364
5365 inferior_ptid = pid_to_ptid (pid);
5366
5367 if (target_is_non_stop_p ())
5368 {
5369 struct thread_info *thread;
5370
5371 /* Get list of threads. */
5372 remote_update_thread_list (target);
5373
5374 thread = first_thread_of_process (pid);
5375 if (thread)
5376 inferior_ptid = thread->ptid;
5377 else
5378 inferior_ptid = pid_to_ptid (pid);
5379
5380 /* Invalidate our notion of the remote current thread. */
5381 record_currthread (rs, minus_one_ptid);
5382 }
5383 else
5384 {
5385 /* Now, if we have thread information, update inferior_ptid. */
5386 inferior_ptid = remote_current_thread (inferior_ptid);
5387
5388 /* Add the main thread to the thread list. */
5389 add_thread_silent (inferior_ptid);
5390 }
5391
5392 /* Next, if the target can specify a description, read it. We do
5393 this before anything involving memory or registers. */
5394 target_find_description ();
5395
5396 if (!target_is_non_stop_p ())
5397 {
5398 /* Use the previously fetched status. */
5399 gdb_assert (wait_status != NULL);
5400
5401 if (target_can_async_p ())
5402 {
5403 struct notif_event *reply
5404 = remote_notif_parse (&notif_client_stop, wait_status);
5405
5406 push_stop_reply ((struct stop_reply *) reply);
5407
5408 target_async (1);
5409 }
5410 else
5411 {
5412 gdb_assert (wait_status != NULL);
5413 strcpy (rs->buf, wait_status);
5414 rs->cached_wait_status = 1;
5415 }
5416 }
5417 else
5418 gdb_assert (wait_status == NULL);
5419 }
5420
5421 /* Implementation of the to_post_attach method. */
5422
5423 static void
5424 extended_remote_post_attach (struct target_ops *ops, int pid)
5425 {
5426 /* Get text, data & bss offsets. */
5427 get_offsets ();
5428
5429 /* In certain cases GDB might not have had the chance to start
5430 symbol lookup up until now. This could happen if the debugged
5431 binary is not using shared libraries, the vsyscall page is not
5432 present (on Linux) and the binary itself hadn't changed since the
5433 debugging process was started. */
5434 if (symfile_objfile != NULL)
5435 remote_check_symbols();
5436 }
5437
5438 \f
5439 /* Check for the availability of vCont. This function should also check
5440 the response. */
5441
5442 static void
5443 remote_vcont_probe (struct remote_state *rs)
5444 {
5445 char *buf;
5446
5447 strcpy (rs->buf, "vCont?");
5448 putpkt (rs->buf);
5449 getpkt (&rs->buf, &rs->buf_size, 0);
5450 buf = rs->buf;
5451
5452 /* Make sure that the features we assume are supported. */
5453 if (startswith (buf, "vCont"))
5454 {
5455 char *p = &buf[5];
5456 int support_c, support_C;
5457
5458 rs->supports_vCont.s = 0;
5459 rs->supports_vCont.S = 0;
5460 support_c = 0;
5461 support_C = 0;
5462 rs->supports_vCont.t = 0;
5463 rs->supports_vCont.r = 0;
5464 while (p && *p == ';')
5465 {
5466 p++;
5467 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
5468 rs->supports_vCont.s = 1;
5469 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
5470 rs->supports_vCont.S = 1;
5471 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5472 support_c = 1;
5473 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5474 support_C = 1;
5475 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
5476 rs->supports_vCont.t = 1;
5477 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5478 rs->supports_vCont.r = 1;
5479
5480 p = strchr (p, ';');
5481 }
5482
5483 /* If c, and C are not all supported, we can't use vCont. Clearing
5484 BUF will make packet_ok disable the packet. */
5485 if (!support_c || !support_C)
5486 buf[0] = 0;
5487 }
5488
5489 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
5490 }
5491
5492 /* Helper function for building "vCont" resumptions. Write a
5493 resumption to P. ENDP points to one-passed-the-end of the buffer
5494 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5495 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5496 resumed thread should be single-stepped and/or signalled. If PTID
5497 equals minus_one_ptid, then all threads are resumed; if PTID
5498 represents a process, then all threads of the process are resumed;
5499 the thread to be stepped and/or signalled is given in the global
5500 INFERIOR_PTID. */
5501
5502 static char *
5503 append_resumption (char *p, char *endp,
5504 ptid_t ptid, int step, enum gdb_signal siggnal)
5505 {
5506 struct remote_state *rs = get_remote_state ();
5507
5508 if (step && siggnal != GDB_SIGNAL_0)
5509 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
5510 else if (step
5511 /* GDB is willing to range step. */
5512 && use_range_stepping
5513 /* Target supports range stepping. */
5514 && rs->supports_vCont.r
5515 /* We don't currently support range stepping multiple
5516 threads with a wildcard (though the protocol allows it,
5517 so stubs shouldn't make an active effort to forbid
5518 it). */
5519 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5520 {
5521 struct thread_info *tp;
5522
5523 if (ptid_equal (ptid, minus_one_ptid))
5524 {
5525 /* If we don't know about the target thread's tid, then
5526 we're resuming magic_null_ptid (see caller). */
5527 tp = find_thread_ptid (magic_null_ptid);
5528 }
5529 else
5530 tp = find_thread_ptid (ptid);
5531 gdb_assert (tp != NULL);
5532
5533 if (tp->control.may_range_step)
5534 {
5535 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5536
5537 p += xsnprintf (p, endp - p, ";r%s,%s",
5538 phex_nz (tp->control.step_range_start,
5539 addr_size),
5540 phex_nz (tp->control.step_range_end,
5541 addr_size));
5542 }
5543 else
5544 p += xsnprintf (p, endp - p, ";s");
5545 }
5546 else if (step)
5547 p += xsnprintf (p, endp - p, ";s");
5548 else if (siggnal != GDB_SIGNAL_0)
5549 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5550 else
5551 p += xsnprintf (p, endp - p, ";c");
5552
5553 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5554 {
5555 ptid_t nptid;
5556
5557 /* All (-1) threads of process. */
5558 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5559
5560 p += xsnprintf (p, endp - p, ":");
5561 p = write_ptid (p, endp, nptid);
5562 }
5563 else if (!ptid_equal (ptid, minus_one_ptid))
5564 {
5565 p += xsnprintf (p, endp - p, ":");
5566 p = write_ptid (p, endp, ptid);
5567 }
5568
5569 return p;
5570 }
5571
5572 /* Clear the thread's private info on resume. */
5573
5574 static void
5575 resume_clear_thread_private_info (struct thread_info *thread)
5576 {
5577 if (thread->priv != NULL)
5578 {
5579 thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5580 thread->priv->watch_data_address = 0;
5581 }
5582 }
5583
5584 /* Append a vCont continue-with-signal action for threads that have a
5585 non-zero stop signal. */
5586
5587 static char *
5588 append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5589 {
5590 struct thread_info *thread;
5591
5592 ALL_NON_EXITED_THREADS (thread)
5593 if (ptid_match (thread->ptid, ptid)
5594 && !ptid_equal (inferior_ptid, thread->ptid)
5595 && thread->suspend.stop_signal != GDB_SIGNAL_0)
5596 {
5597 p = append_resumption (p, endp, thread->ptid,
5598 0, thread->suspend.stop_signal);
5599 thread->suspend.stop_signal = GDB_SIGNAL_0;
5600 resume_clear_thread_private_info (thread);
5601 }
5602
5603 return p;
5604 }
5605
5606 /* Set the target running, using the packets that use Hc
5607 (c/s/C/S). */
5608
5609 static void
5610 remote_resume_with_hc (struct target_ops *ops,
5611 ptid_t ptid, int step, enum gdb_signal siggnal)
5612 {
5613 struct remote_state *rs = get_remote_state ();
5614 struct thread_info *thread;
5615 char *buf;
5616
5617 rs->last_sent_signal = siggnal;
5618 rs->last_sent_step = step;
5619
5620 /* The c/s/C/S resume packets use Hc, so set the continue
5621 thread. */
5622 if (ptid_equal (ptid, minus_one_ptid))
5623 set_continue_thread (any_thread_ptid);
5624 else
5625 set_continue_thread (ptid);
5626
5627 ALL_NON_EXITED_THREADS (thread)
5628 resume_clear_thread_private_info (thread);
5629
5630 buf = rs->buf;
5631 if (execution_direction == EXEC_REVERSE)
5632 {
5633 /* We don't pass signals to the target in reverse exec mode. */
5634 if (info_verbose && siggnal != GDB_SIGNAL_0)
5635 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5636 siggnal);
5637
5638 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5639 error (_("Remote reverse-step not supported."));
5640 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5641 error (_("Remote reverse-continue not supported."));
5642
5643 strcpy (buf, step ? "bs" : "bc");
5644 }
5645 else if (siggnal != GDB_SIGNAL_0)
5646 {
5647 buf[0] = step ? 'S' : 'C';
5648 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5649 buf[2] = tohex (((int) siggnal) & 0xf);
5650 buf[3] = '\0';
5651 }
5652 else
5653 strcpy (buf, step ? "s" : "c");
5654
5655 putpkt (buf);
5656 }
5657
5658 /* Resume the remote inferior by using a "vCont" packet. The thread
5659 to be resumed is PTID; STEP and SIGGNAL indicate whether the
5660 resumed thread should be single-stepped and/or signalled. If PTID
5661 equals minus_one_ptid, then all threads are resumed; the thread to
5662 be stepped and/or signalled is given in the global INFERIOR_PTID.
5663 This function returns non-zero iff it resumes the inferior.
5664
5665 This function issues a strict subset of all possible vCont commands
5666 at the moment. */
5667
5668 static int
5669 remote_resume_with_vcont (ptid_t ptid, int step, enum gdb_signal siggnal)
5670 {
5671 struct remote_state *rs = get_remote_state ();
5672 char *p;
5673 char *endp;
5674
5675 /* No reverse execution actions defined for vCont. */
5676 if (execution_direction == EXEC_REVERSE)
5677 return 0;
5678
5679 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5680 remote_vcont_probe (rs);
5681
5682 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
5683 return 0;
5684
5685 p = rs->buf;
5686 endp = rs->buf + get_remote_packet_size ();
5687
5688 /* If we could generate a wider range of packets, we'd have to worry
5689 about overflowing BUF. Should there be a generic
5690 "multi-part-packet" packet? */
5691
5692 p += xsnprintf (p, endp - p, "vCont");
5693
5694 if (ptid_equal (ptid, magic_null_ptid))
5695 {
5696 /* MAGIC_NULL_PTID means that we don't have any active threads,
5697 so we don't have any TID numbers the inferior will
5698 understand. Make sure to only send forms that do not specify
5699 a TID. */
5700 append_resumption (p, endp, minus_one_ptid, step, siggnal);
5701 }
5702 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
5703 {
5704 /* Resume all threads (of all processes, or of a single
5705 process), with preference for INFERIOR_PTID. This assumes
5706 inferior_ptid belongs to the set of all threads we are about
5707 to resume. */
5708 if (step || siggnal != GDB_SIGNAL_0)
5709 {
5710 /* Step inferior_ptid, with or without signal. */
5711 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
5712 }
5713
5714 /* Also pass down any pending signaled resumption for other
5715 threads not the current. */
5716 p = append_pending_thread_resumptions (p, endp, ptid);
5717
5718 /* And continue others without a signal. */
5719 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
5720 }
5721 else
5722 {
5723 /* Scheduler locking; resume only PTID. */
5724 append_resumption (p, endp, ptid, step, siggnal);
5725 }
5726
5727 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5728 putpkt (rs->buf);
5729
5730 if (target_is_non_stop_p ())
5731 {
5732 /* In non-stop, the stub replies to vCont with "OK". The stop
5733 reply will be reported asynchronously by means of a `%Stop'
5734 notification. */
5735 getpkt (&rs->buf, &rs->buf_size, 0);
5736 if (strcmp (rs->buf, "OK") != 0)
5737 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5738 }
5739
5740 return 1;
5741 }
5742
5743 /* Tell the remote machine to resume. */
5744
5745 static void
5746 remote_resume (struct target_ops *ops,
5747 ptid_t ptid, int step, enum gdb_signal siggnal)
5748 {
5749 struct remote_state *rs = get_remote_state ();
5750
5751 /* When connected in non-stop mode, the core resumes threads
5752 individually. Resuming remote threads directly in target_resume
5753 would thus result in sending one packet per thread. Instead, to
5754 minimize roundtrip latency, here we just store the resume
5755 request; the actual remote resumption will be done in
5756 target_commit_resume / remote_commit_resume, where we'll be able
5757 to do vCont action coalescing. */
5758 if (target_is_non_stop_p () && execution_direction != EXEC_REVERSE)
5759 {
5760 struct private_thread_info *remote_thr;
5761
5762 if (ptid_equal (minus_one_ptid, ptid) || ptid_is_pid (ptid))
5763 remote_thr = get_private_info_ptid (inferior_ptid);
5764 else
5765 remote_thr = get_private_info_ptid (ptid);
5766 remote_thr->last_resume_step = step;
5767 remote_thr->last_resume_sig = siggnal;
5768 return;
5769 }
5770
5771 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5772 (explained in remote-notif.c:handle_notification) so
5773 remote_notif_process is not called. We need find a place where
5774 it is safe to start a 'vNotif' sequence. It is good to do it
5775 before resuming inferior, because inferior was stopped and no RSP
5776 traffic at that moment. */
5777 if (!target_is_non_stop_p ())
5778 remote_notif_process (rs->notif_state, &notif_client_stop);
5779
5780 rs->last_resume_exec_dir = execution_direction;
5781
5782 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
5783 if (!remote_resume_with_vcont (ptid, step, siggnal))
5784 remote_resume_with_hc (ops, ptid, step, siggnal);
5785
5786 /* We are about to start executing the inferior, let's register it
5787 with the event loop. NOTE: this is the one place where all the
5788 execution commands end up. We could alternatively do this in each
5789 of the execution commands in infcmd.c. */
5790 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5791 into infcmd.c in order to allow inferior function calls to work
5792 NOT asynchronously. */
5793 if (target_can_async_p ())
5794 target_async (1);
5795
5796 /* We've just told the target to resume. The remote server will
5797 wait for the inferior to stop, and then send a stop reply. In
5798 the mean time, we can't start another command/query ourselves
5799 because the stub wouldn't be ready to process it. This applies
5800 only to the base all-stop protocol, however. In non-stop (which
5801 only supports vCont), the stub replies with an "OK", and is
5802 immediate able to process further serial input. */
5803 if (!target_is_non_stop_p ())
5804 rs->waiting_for_stop_reply = 1;
5805 }
5806
5807 static void check_pending_events_prevent_wildcard_vcont
5808 (int *may_global_wildcard_vcont);
5809 static int is_pending_fork_parent_thread (struct thread_info *thread);
5810
5811 /* Private per-inferior info for target remote processes. */
5812
5813 struct private_inferior
5814 {
5815 /* Whether we can send a wildcard vCont for this process. */
5816 int may_wildcard_vcont;
5817 };
5818
5819 /* Structure used to track the construction of a vCont packet in the
5820 outgoing packet buffer. This is used to send multiple vCont
5821 packets if we have more actions than would fit a single packet. */
5822
5823 struct vcont_builder
5824 {
5825 /* Pointer to the first action. P points here if no action has been
5826 appended yet. */
5827 char *first_action;
5828
5829 /* Where the next action will be appended. */
5830 char *p;
5831
5832 /* The end of the buffer. Must never write past this. */
5833 char *endp;
5834 };
5835
5836 /* Prepare the outgoing buffer for a new vCont packet. */
5837
5838 static void
5839 vcont_builder_restart (struct vcont_builder *builder)
5840 {
5841 struct remote_state *rs = get_remote_state ();
5842
5843 builder->p = rs->buf;
5844 builder->endp = rs->buf + get_remote_packet_size ();
5845 builder->p += xsnprintf (builder->p, builder->endp - builder->p, "vCont");
5846 builder->first_action = builder->p;
5847 }
5848
5849 /* If the vCont packet being built has any action, send it to the
5850 remote end. */
5851
5852 static void
5853 vcont_builder_flush (struct vcont_builder *builder)
5854 {
5855 struct remote_state *rs;
5856
5857 if (builder->p == builder->first_action)
5858 return;
5859
5860 rs = get_remote_state ();
5861 putpkt (rs->buf);
5862 getpkt (&rs->buf, &rs->buf_size, 0);
5863 if (strcmp (rs->buf, "OK") != 0)
5864 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5865 }
5866
5867 /* The largest action is range-stepping, with its two addresses. This
5868 is more than sufficient. If a new, bigger action is created, it'll
5869 quickly trigger a failed assertion in append_resumption (and we'll
5870 just bump this). */
5871 #define MAX_ACTION_SIZE 200
5872
5873 /* Append a new vCont action in the outgoing packet being built. If
5874 the action doesn't fit the packet along with previous actions, push
5875 what we've got so far to the remote end and start over a new vCont
5876 packet (with the new action). */
5877
5878 static void
5879 vcont_builder_push_action (struct vcont_builder *builder,
5880 ptid_t ptid, int step, enum gdb_signal siggnal)
5881 {
5882 char buf[MAX_ACTION_SIZE + 1];
5883 char *endp;
5884 size_t rsize;
5885
5886 endp = append_resumption (buf, buf + sizeof (buf),
5887 ptid, step, siggnal);
5888
5889 /* Check whether this new action would fit in the vCont packet along
5890 with previous actions. If not, send what we've got so far and
5891 start a new vCont packet. */
5892 rsize = endp - buf;
5893 if (rsize > builder->endp - builder->p)
5894 {
5895 vcont_builder_flush (builder);
5896 vcont_builder_restart (builder);
5897
5898 /* Should now fit. */
5899 gdb_assert (rsize <= builder->endp - builder->p);
5900 }
5901
5902 memcpy (builder->p, buf, rsize);
5903 builder->p += rsize;
5904 *builder->p = '\0';
5905 }
5906
5907 /* to_commit_resume implementation. */
5908
5909 static void
5910 remote_commit_resume (struct target_ops *ops)
5911 {
5912 struct remote_state *rs = get_remote_state ();
5913 struct inferior *inf;
5914 struct thread_info *tp;
5915 int any_process_wildcard;
5916 int may_global_wildcard_vcont;
5917 struct vcont_builder vcont_builder;
5918
5919 /* If connected in all-stop mode, we'd send the remote resume
5920 request directly from remote_resume. Likewise if
5921 reverse-debugging, as there are no defined vCont actions for
5922 reverse execution. */
5923 if (!target_is_non_stop_p () || execution_direction == EXEC_REVERSE)
5924 return;
5925
5926 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
5927 instead of resuming all threads of each process individually.
5928 However, if any thread of a process must remain halted, we can't
5929 send wildcard resumes and must send one action per thread.
5930
5931 Care must be taken to not resume threads/processes the server
5932 side already told us are stopped, but the core doesn't know about
5933 yet, because the events are still in the vStopped notification
5934 queue. For example:
5935
5936 #1 => vCont s:p1.1;c
5937 #2 <= OK
5938 #3 <= %Stopped T05 p1.1
5939 #4 => vStopped
5940 #5 <= T05 p1.2
5941 #6 => vStopped
5942 #7 <= OK
5943 #8 (infrun handles the stop for p1.1 and continues stepping)
5944 #9 => vCont s:p1.1;c
5945
5946 The last vCont above would resume thread p1.2 by mistake, because
5947 the server has no idea that the event for p1.2 had not been
5948 handled yet.
5949
5950 The server side must similarly ignore resume actions for the
5951 thread that has a pending %Stopped notification (and any other
5952 threads with events pending), until GDB acks the notification
5953 with vStopped. Otherwise, e.g., the following case is
5954 mishandled:
5955
5956 #1 => g (or any other packet)
5957 #2 <= [registers]
5958 #3 <= %Stopped T05 p1.2
5959 #4 => vCont s:p1.1;c
5960 #5 <= OK
5961
5962 Above, the server must not resume thread p1.2. GDB can't know
5963 that p1.2 stopped until it acks the %Stopped notification, and
5964 since from GDB's perspective all threads should be running, it
5965 sends a "c" action.
5966
5967 Finally, special care must also be given to handling fork/vfork
5968 events. A (v)fork event actually tells us that two processes
5969 stopped -- the parent and the child. Until we follow the fork,
5970 we must not resume the child. Therefore, if we have a pending
5971 fork follow, we must not send a global wildcard resume action
5972 (vCont;c). We can still send process-wide wildcards though. */
5973
5974 /* Start by assuming a global wildcard (vCont;c) is possible. */
5975 may_global_wildcard_vcont = 1;
5976
5977 /* And assume every process is individually wildcard-able too. */
5978 ALL_NON_EXITED_INFERIORS (inf)
5979 {
5980 if (inf->priv == NULL)
5981 inf->priv = XNEW (struct private_inferior);
5982 inf->priv->may_wildcard_vcont = 1;
5983 }
5984
5985 /* Check for any pending events (not reported or processed yet) and
5986 disable process and global wildcard resumes appropriately. */
5987 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
5988
5989 ALL_NON_EXITED_THREADS (tp)
5990 {
5991 /* If a thread of a process is not meant to be resumed, then we
5992 can't wildcard that process. */
5993 if (!tp->executing)
5994 {
5995 tp->inf->priv->may_wildcard_vcont = 0;
5996
5997 /* And if we can't wildcard a process, we can't wildcard
5998 everything either. */
5999 may_global_wildcard_vcont = 0;
6000 continue;
6001 }
6002
6003 /* If a thread is the parent of an unfollowed fork, then we
6004 can't do a global wildcard, as that would resume the fork
6005 child. */
6006 if (is_pending_fork_parent_thread (tp))
6007 may_global_wildcard_vcont = 0;
6008 }
6009
6010 /* Now let's build the vCont packet(s). Actions must be appended
6011 from narrower to wider scopes (thread -> process -> global). If
6012 we end up with too many actions for a single packet vcont_builder
6013 flushes the current vCont packet to the remote side and starts a
6014 new one. */
6015 vcont_builder_restart (&vcont_builder);
6016
6017 /* Threads first. */
6018 ALL_NON_EXITED_THREADS (tp)
6019 {
6020 struct private_thread_info *remote_thr = tp->priv;
6021
6022 if (!tp->executing || remote_thr->vcont_resumed)
6023 continue;
6024
6025 gdb_assert (!thread_is_in_step_over_chain (tp));
6026
6027 if (!remote_thr->last_resume_step
6028 && remote_thr->last_resume_sig == GDB_SIGNAL_0
6029 && tp->inf->priv->may_wildcard_vcont)
6030 {
6031 /* We'll send a wildcard resume instead. */
6032 remote_thr->vcont_resumed = 1;
6033 continue;
6034 }
6035
6036 vcont_builder_push_action (&vcont_builder, tp->ptid,
6037 remote_thr->last_resume_step,
6038 remote_thr->last_resume_sig);
6039 remote_thr->vcont_resumed = 1;
6040 }
6041
6042 /* Now check whether we can send any process-wide wildcard. This is
6043 to avoid sending a global wildcard in the case nothing is
6044 supposed to be resumed. */
6045 any_process_wildcard = 0;
6046
6047 ALL_NON_EXITED_INFERIORS (inf)
6048 {
6049 if (inf->priv->may_wildcard_vcont)
6050 {
6051 any_process_wildcard = 1;
6052 break;
6053 }
6054 }
6055
6056 if (any_process_wildcard)
6057 {
6058 /* If all processes are wildcard-able, then send a single "c"
6059 action, otherwise, send an "all (-1) threads of process"
6060 continue action for each running process, if any. */
6061 if (may_global_wildcard_vcont)
6062 {
6063 vcont_builder_push_action (&vcont_builder, minus_one_ptid,
6064 0, GDB_SIGNAL_0);
6065 }
6066 else
6067 {
6068 ALL_NON_EXITED_INFERIORS (inf)
6069 {
6070 if (inf->priv->may_wildcard_vcont)
6071 {
6072 vcont_builder_push_action (&vcont_builder,
6073 pid_to_ptid (inf->pid),
6074 0, GDB_SIGNAL_0);
6075 }
6076 }
6077 }
6078 }
6079
6080 vcont_builder_flush (&vcont_builder);
6081 }
6082
6083 \f
6084
6085 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6086 thread, all threads of a remote process, or all threads of all
6087 processes. */
6088
6089 static void
6090 remote_stop_ns (ptid_t ptid)
6091 {
6092 struct remote_state *rs = get_remote_state ();
6093 char *p = rs->buf;
6094 char *endp = rs->buf + get_remote_packet_size ();
6095
6096 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6097 remote_vcont_probe (rs);
6098
6099 if (!rs->supports_vCont.t)
6100 error (_("Remote server does not support stopping threads"));
6101
6102 if (ptid_equal (ptid, minus_one_ptid)
6103 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
6104 p += xsnprintf (p, endp - p, "vCont;t");
6105 else
6106 {
6107 ptid_t nptid;
6108
6109 p += xsnprintf (p, endp - p, "vCont;t:");
6110
6111 if (ptid_is_pid (ptid))
6112 /* All (-1) threads of process. */
6113 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
6114 else
6115 {
6116 /* Small optimization: if we already have a stop reply for
6117 this thread, no use in telling the stub we want this
6118 stopped. */
6119 if (peek_stop_reply (ptid))
6120 return;
6121
6122 nptid = ptid;
6123 }
6124
6125 write_ptid (p, endp, nptid);
6126 }
6127
6128 /* In non-stop, we get an immediate OK reply. The stop reply will
6129 come in asynchronously by notification. */
6130 putpkt (rs->buf);
6131 getpkt (&rs->buf, &rs->buf_size, 0);
6132 if (strcmp (rs->buf, "OK") != 0)
6133 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6134 }
6135
6136 /* All-stop version of target_interrupt. Sends a break or a ^C to
6137 interrupt the remote target. It is undefined which thread of which
6138 process reports the interrupt. */
6139
6140 static void
6141 remote_interrupt_as (void)
6142 {
6143 struct remote_state *rs = get_remote_state ();
6144
6145 rs->ctrlc_pending_p = 1;
6146
6147 /* If the inferior is stopped already, but the core didn't know
6148 about it yet, just ignore the request. The cached wait status
6149 will be collected in remote_wait. */
6150 if (rs->cached_wait_status)
6151 return;
6152
6153 /* Send interrupt_sequence to remote target. */
6154 send_interrupt_sequence ();
6155 }
6156
6157 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6158 the remote target. It is undefined which thread of which process
6159 reports the interrupt. Throws an error if the packet is not
6160 supported by the server. */
6161
6162 static void
6163 remote_interrupt_ns (void)
6164 {
6165 struct remote_state *rs = get_remote_state ();
6166 char *p = rs->buf;
6167 char *endp = rs->buf + get_remote_packet_size ();
6168
6169 xsnprintf (p, endp - p, "vCtrlC");
6170
6171 /* In non-stop, we get an immediate OK reply. The stop reply will
6172 come in asynchronously by notification. */
6173 putpkt (rs->buf);
6174 getpkt (&rs->buf, &rs->buf_size, 0);
6175
6176 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6177 {
6178 case PACKET_OK:
6179 break;
6180 case PACKET_UNKNOWN:
6181 error (_("No support for interrupting the remote target."));
6182 case PACKET_ERROR:
6183 error (_("Interrupting target failed: %s"), rs->buf);
6184 }
6185 }
6186
6187 /* Implement the to_stop function for the remote targets. */
6188
6189 static void
6190 remote_stop (struct target_ops *self, ptid_t ptid)
6191 {
6192 if (remote_debug)
6193 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
6194
6195 if (target_is_non_stop_p ())
6196 remote_stop_ns (ptid);
6197 else
6198 {
6199 /* We don't currently have a way to transparently pause the
6200 remote target in all-stop mode. Interrupt it instead. */
6201 remote_interrupt_as ();
6202 }
6203 }
6204
6205 /* Implement the to_interrupt function for the remote targets. */
6206
6207 static void
6208 remote_interrupt (struct target_ops *self, ptid_t ptid)
6209 {
6210 struct remote_state *rs = get_remote_state ();
6211
6212 if (remote_debug)
6213 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6214
6215 if (target_is_non_stop_p ())
6216 remote_interrupt_ns ();
6217 else
6218 remote_interrupt_as ();
6219 }
6220
6221 /* Implement the to_pass_ctrlc function for the remote targets. */
6222
6223 static void
6224 remote_pass_ctrlc (struct target_ops *self)
6225 {
6226 struct remote_state *rs = get_remote_state ();
6227
6228 if (remote_debug)
6229 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6230
6231 /* If we're starting up, we're not fully synced yet. Quit
6232 immediately. */
6233 if (rs->starting_up)
6234 quit ();
6235 /* If ^C has already been sent once, offer to disconnect. */
6236 else if (rs->ctrlc_pending_p)
6237 interrupt_query ();
6238 else
6239 target_interrupt (inferior_ptid);
6240 }
6241
6242 /* Ask the user what to do when an interrupt is received. */
6243
6244 static void
6245 interrupt_query (void)
6246 {
6247 struct remote_state *rs = get_remote_state ();
6248
6249 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
6250 {
6251 if (query (_("The target is not responding to interrupt requests.\n"
6252 "Stop debugging it? ")))
6253 {
6254 remote_unpush_target ();
6255 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
6256 }
6257 }
6258 else
6259 {
6260 if (query (_("Interrupted while waiting for the program.\n"
6261 "Give up waiting? ")))
6262 quit ();
6263 }
6264 }
6265
6266 /* Enable/disable target terminal ownership. Most targets can use
6267 terminal groups to control terminal ownership. Remote targets are
6268 different in that explicit transfer of ownership to/from GDB/target
6269 is required. */
6270
6271 static void
6272 remote_terminal_inferior (struct target_ops *self)
6273 {
6274 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
6275 idempotent. The event-loop GDB talking to an asynchronous target
6276 with a synchronous command calls this function from both
6277 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
6278 transfer the terminal to the target when it shouldn't this guard
6279 can go away. */
6280 if (!remote_async_terminal_ours_p)
6281 return;
6282 remote_async_terminal_ours_p = 0;
6283 /* NOTE: At this point we could also register our selves as the
6284 recipient of all input. Any characters typed could then be
6285 passed on down to the target. */
6286 }
6287
6288 static void
6289 remote_terminal_ours (struct target_ops *self)
6290 {
6291 /* See FIXME in remote_terminal_inferior. */
6292 if (remote_async_terminal_ours_p)
6293 return;
6294 remote_async_terminal_ours_p = 1;
6295 }
6296
6297 static void
6298 remote_console_output (char *msg)
6299 {
6300 char *p;
6301
6302 for (p = msg; p[0] && p[1]; p += 2)
6303 {
6304 char tb[2];
6305 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
6306
6307 tb[0] = c;
6308 tb[1] = 0;
6309 fputs_unfiltered (tb, gdb_stdtarg);
6310 }
6311 gdb_flush (gdb_stdtarg);
6312 }
6313
6314 typedef struct cached_reg
6315 {
6316 int num;
6317 gdb_byte *data;
6318 } cached_reg_t;
6319
6320 DEF_VEC_O(cached_reg_t);
6321
6322 typedef struct stop_reply
6323 {
6324 struct notif_event base;
6325
6326 /* The identifier of the thread about this event */
6327 ptid_t ptid;
6328
6329 /* The remote state this event is associated with. When the remote
6330 connection, represented by a remote_state object, is closed,
6331 all the associated stop_reply events should be released. */
6332 struct remote_state *rs;
6333
6334 struct target_waitstatus ws;
6335
6336 /* Expedited registers. This makes remote debugging a bit more
6337 efficient for those targets that provide critical registers as
6338 part of their normal status mechanism (as another roundtrip to
6339 fetch them is avoided). */
6340 VEC(cached_reg_t) *regcache;
6341
6342 enum target_stop_reason stop_reason;
6343
6344 CORE_ADDR watch_data_address;
6345
6346 int core;
6347 } *stop_reply_p;
6348
6349 DECLARE_QUEUE_P (stop_reply_p);
6350 DEFINE_QUEUE_P (stop_reply_p);
6351 /* The list of already fetched and acknowledged stop events. This
6352 queue is used for notification Stop, and other notifications
6353 don't need queue for their events, because the notification events
6354 of Stop can't be consumed immediately, so that events should be
6355 queued first, and be consumed by remote_wait_{ns,as} one per
6356 time. Other notifications can consume their events immediately,
6357 so queue is not needed for them. */
6358 static QUEUE (stop_reply_p) *stop_reply_queue;
6359
6360 static void
6361 stop_reply_xfree (struct stop_reply *r)
6362 {
6363 notif_event_xfree ((struct notif_event *) r);
6364 }
6365
6366 /* Return the length of the stop reply queue. */
6367
6368 static int
6369 stop_reply_queue_length (void)
6370 {
6371 return QUEUE_length (stop_reply_p, stop_reply_queue);
6372 }
6373
6374 static void
6375 remote_notif_stop_parse (struct notif_client *self, char *buf,
6376 struct notif_event *event)
6377 {
6378 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6379 }
6380
6381 static void
6382 remote_notif_stop_ack (struct notif_client *self, char *buf,
6383 struct notif_event *event)
6384 {
6385 struct stop_reply *stop_reply = (struct stop_reply *) event;
6386
6387 /* acknowledge */
6388 putpkt (self->ack_command);
6389
6390 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6391 /* We got an unknown stop reply. */
6392 error (_("Unknown stop reply"));
6393
6394 push_stop_reply (stop_reply);
6395 }
6396
6397 static int
6398 remote_notif_stop_can_get_pending_events (struct notif_client *self)
6399 {
6400 /* We can't get pending events in remote_notif_process for
6401 notification stop, and we have to do this in remote_wait_ns
6402 instead. If we fetch all queued events from stub, remote stub
6403 may exit and we have no chance to process them back in
6404 remote_wait_ns. */
6405 mark_async_event_handler (remote_async_inferior_event_token);
6406 return 0;
6407 }
6408
6409 static void
6410 stop_reply_dtr (struct notif_event *event)
6411 {
6412 struct stop_reply *r = (struct stop_reply *) event;
6413 cached_reg_t *reg;
6414 int ix;
6415
6416 for (ix = 0;
6417 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6418 ix++)
6419 xfree (reg->data);
6420
6421 VEC_free (cached_reg_t, r->regcache);
6422 }
6423
6424 static struct notif_event *
6425 remote_notif_stop_alloc_reply (void)
6426 {
6427 /* We cast to a pointer to the "base class". */
6428 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
6429
6430 r->dtr = stop_reply_dtr;
6431
6432 return r;
6433 }
6434
6435 /* A client of notification Stop. */
6436
6437 struct notif_client notif_client_stop =
6438 {
6439 "Stop",
6440 "vStopped",
6441 remote_notif_stop_parse,
6442 remote_notif_stop_ack,
6443 remote_notif_stop_can_get_pending_events,
6444 remote_notif_stop_alloc_reply,
6445 REMOTE_NOTIF_STOP,
6446 };
6447
6448 /* A parameter to pass data in and out. */
6449
6450 struct queue_iter_param
6451 {
6452 void *input;
6453 struct stop_reply *output;
6454 };
6455
6456 /* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
6457 the pid of the process that owns the threads we want to check, or
6458 -1 if we want to check all threads. */
6459
6460 static int
6461 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6462 ptid_t thread_ptid)
6463 {
6464 if (ws->kind == TARGET_WAITKIND_FORKED
6465 || ws->kind == TARGET_WAITKIND_VFORKED)
6466 {
6467 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6468 return 1;
6469 }
6470
6471 return 0;
6472 }
6473
6474 /* Return the thread's pending status used to determine whether the
6475 thread is a fork parent stopped at a fork event. */
6476
6477 static struct target_waitstatus *
6478 thread_pending_fork_status (struct thread_info *thread)
6479 {
6480 if (thread->suspend.waitstatus_pending_p)
6481 return &thread->suspend.waitstatus;
6482 else
6483 return &thread->pending_follow;
6484 }
6485
6486 /* Determine if THREAD is a pending fork parent thread. */
6487
6488 static int
6489 is_pending_fork_parent_thread (struct thread_info *thread)
6490 {
6491 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6492 int pid = -1;
6493
6494 return is_pending_fork_parent (ws, pid, thread->ptid);
6495 }
6496
6497 /* Check whether EVENT is a fork event, and if it is, remove the
6498 fork child from the context list passed in DATA. */
6499
6500 static int
6501 remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6502 QUEUE_ITER (stop_reply_p) *iter,
6503 stop_reply_p event,
6504 void *data)
6505 {
6506 struct queue_iter_param *param = (struct queue_iter_param *) data;
6507 struct threads_listing_context *context
6508 = (struct threads_listing_context *) param->input;
6509
6510 if (event->ws.kind == TARGET_WAITKIND_FORKED
6511 || event->ws.kind == TARGET_WAITKIND_VFORKED
6512 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6513 threads_listing_context_remove (&event->ws, context);
6514
6515 return 1;
6516 }
6517
6518 /* If CONTEXT contains any fork child threads that have not been
6519 reported yet, remove them from the CONTEXT list. If such a
6520 thread exists it is because we are stopped at a fork catchpoint
6521 and have not yet called follow_fork, which will set up the
6522 host-side data structures for the new process. */
6523
6524 static void
6525 remove_new_fork_children (struct threads_listing_context *context)
6526 {
6527 struct thread_info * thread;
6528 int pid = -1;
6529 struct notif_client *notif = &notif_client_stop;
6530 struct queue_iter_param param;
6531
6532 /* For any threads stopped at a fork event, remove the corresponding
6533 fork child threads from the CONTEXT list. */
6534 ALL_NON_EXITED_THREADS (thread)
6535 {
6536 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6537
6538 if (is_pending_fork_parent (ws, pid, thread->ptid))
6539 {
6540 threads_listing_context_remove (ws, context);
6541 }
6542 }
6543
6544 /* Check for any pending fork events (not reported or processed yet)
6545 in process PID and remove those fork child threads from the
6546 CONTEXT list as well. */
6547 remote_notif_get_pending_events (notif);
6548 param.input = context;
6549 param.output = NULL;
6550 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6551 remove_child_of_pending_fork, &param);
6552 }
6553
6554 /* Check whether EVENT would prevent a global or process wildcard
6555 vCont action. */
6556
6557 static int
6558 check_pending_event_prevents_wildcard_vcont_callback
6559 (QUEUE (stop_reply_p) *q,
6560 QUEUE_ITER (stop_reply_p) *iter,
6561 stop_reply_p event,
6562 void *data)
6563 {
6564 struct inferior *inf;
6565 int *may_global_wildcard_vcont = (int *) data;
6566
6567 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6568 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6569 return 1;
6570
6571 if (event->ws.kind == TARGET_WAITKIND_FORKED
6572 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6573 *may_global_wildcard_vcont = 0;
6574
6575 inf = find_inferior_ptid (event->ptid);
6576
6577 /* This may be the first time we heard about this process.
6578 Regardless, we must not do a global wildcard resume, otherwise
6579 we'd resume this process too. */
6580 *may_global_wildcard_vcont = 0;
6581 if (inf != NULL)
6582 inf->priv->may_wildcard_vcont = 0;
6583
6584 return 1;
6585 }
6586
6587 /* Check whether any event pending in the vStopped queue would prevent
6588 a global or process wildcard vCont action. Clear
6589 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6590 and clear the event inferior's may_wildcard_vcont flag if we can't
6591 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6592
6593 static void
6594 check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard)
6595 {
6596 struct notif_client *notif = &notif_client_stop;
6597
6598 remote_notif_get_pending_events (notif);
6599 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6600 check_pending_event_prevents_wildcard_vcont_callback,
6601 may_global_wildcard);
6602 }
6603
6604 /* Remove stop replies in the queue if its pid is equal to the given
6605 inferior's pid. */
6606
6607 static int
6608 remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6609 QUEUE_ITER (stop_reply_p) *iter,
6610 stop_reply_p event,
6611 void *data)
6612 {
6613 struct queue_iter_param *param = (struct queue_iter_param *) data;
6614 struct inferior *inf = (struct inferior *) param->input;
6615
6616 if (ptid_get_pid (event->ptid) == inf->pid)
6617 {
6618 stop_reply_xfree (event);
6619 QUEUE_remove_elem (stop_reply_p, q, iter);
6620 }
6621
6622 return 1;
6623 }
6624
6625 /* Discard all pending stop replies of inferior INF. */
6626
6627 static void
6628 discard_pending_stop_replies (struct inferior *inf)
6629 {
6630 struct queue_iter_param param;
6631 struct stop_reply *reply;
6632 struct remote_state *rs = get_remote_state ();
6633 struct remote_notif_state *rns = rs->notif_state;
6634
6635 /* This function can be notified when an inferior exists. When the
6636 target is not remote, the notification state is NULL. */
6637 if (rs->remote_desc == NULL)
6638 return;
6639
6640 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
6641
6642 /* Discard the in-flight notification. */
6643 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
6644 {
6645 stop_reply_xfree (reply);
6646 rns->pending_event[notif_client_stop.id] = NULL;
6647 }
6648
6649 param.input = inf;
6650 param.output = NULL;
6651 /* Discard the stop replies we have already pulled with
6652 vStopped. */
6653 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6654 remove_stop_reply_for_inferior, &param);
6655 }
6656
6657 /* If its remote state is equal to the given remote state,
6658 remove EVENT from the stop reply queue. */
6659
6660 static int
6661 remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6662 QUEUE_ITER (stop_reply_p) *iter,
6663 stop_reply_p event,
6664 void *data)
6665 {
6666 struct queue_iter_param *param = (struct queue_iter_param *) data;
6667 struct remote_state *rs = (struct remote_state *) param->input;
6668
6669 if (event->rs == rs)
6670 {
6671 stop_reply_xfree (event);
6672 QUEUE_remove_elem (stop_reply_p, q, iter);
6673 }
6674
6675 return 1;
6676 }
6677
6678 /* Discard the stop replies for RS in stop_reply_queue. */
6679
6680 static void
6681 discard_pending_stop_replies_in_queue (struct remote_state *rs)
6682 {
6683 struct queue_iter_param param;
6684
6685 param.input = rs;
6686 param.output = NULL;
6687 /* Discard the stop replies we have already pulled with
6688 vStopped. */
6689 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6690 remove_stop_reply_of_remote_state, &param);
6691 }
6692
6693 /* A parameter to pass data in and out. */
6694
6695 static int
6696 remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6697 QUEUE_ITER (stop_reply_p) *iter,
6698 stop_reply_p event,
6699 void *data)
6700 {
6701 struct queue_iter_param *param = (struct queue_iter_param *) data;
6702 ptid_t *ptid = (ptid_t *) param->input;
6703
6704 if (ptid_match (event->ptid, *ptid))
6705 {
6706 param->output = event;
6707 QUEUE_remove_elem (stop_reply_p, q, iter);
6708 return 0;
6709 }
6710
6711 return 1;
6712 }
6713
6714 /* Remove the first reply in 'stop_reply_queue' which matches
6715 PTID. */
6716
6717 static struct stop_reply *
6718 remote_notif_remove_queued_reply (ptid_t ptid)
6719 {
6720 struct queue_iter_param param;
6721
6722 param.input = &ptid;
6723 param.output = NULL;
6724
6725 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6726 remote_notif_remove_once_on_match, &param);
6727 if (notif_debug)
6728 fprintf_unfiltered (gdb_stdlog,
6729 "notif: discard queued event: 'Stop' in %s\n",
6730 target_pid_to_str (ptid));
6731
6732 return param.output;
6733 }
6734
6735 /* Look for a queued stop reply belonging to PTID. If one is found,
6736 remove it from the queue, and return it. Returns NULL if none is
6737 found. If there are still queued events left to process, tell the
6738 event loop to get back to target_wait soon. */
6739
6740 static struct stop_reply *
6741 queued_stop_reply (ptid_t ptid)
6742 {
6743 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
6744
6745 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
6746 /* There's still at least an event left. */
6747 mark_async_event_handler (remote_async_inferior_event_token);
6748
6749 return r;
6750 }
6751
6752 /* Push a fully parsed stop reply in the stop reply queue. Since we
6753 know that we now have at least one queued event left to pass to the
6754 core side, tell the event loop to get back to target_wait soon. */
6755
6756 static void
6757 push_stop_reply (struct stop_reply *new_event)
6758 {
6759 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
6760
6761 if (notif_debug)
6762 fprintf_unfiltered (gdb_stdlog,
6763 "notif: push 'Stop' %s to queue %d\n",
6764 target_pid_to_str (new_event->ptid),
6765 QUEUE_length (stop_reply_p,
6766 stop_reply_queue));
6767
6768 mark_async_event_handler (remote_async_inferior_event_token);
6769 }
6770
6771 static int
6772 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6773 QUEUE_ITER (stop_reply_p) *iter,
6774 struct stop_reply *event,
6775 void *data)
6776 {
6777 ptid_t *ptid = (ptid_t *) data;
6778
6779 return !(ptid_equal (*ptid, event->ptid)
6780 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6781 }
6782
6783 /* Returns true if we have a stop reply for PTID. */
6784
6785 static int
6786 peek_stop_reply (ptid_t ptid)
6787 {
6788 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6789 stop_reply_match_ptid_and_ws, &ptid);
6790 }
6791
6792 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
6793 starting with P and ending with PEND matches PREFIX. */
6794
6795 static int
6796 strprefix (const char *p, const char *pend, const char *prefix)
6797 {
6798 for ( ; p < pend; p++, prefix++)
6799 if (*p != *prefix)
6800 return 0;
6801 return *prefix == '\0';
6802 }
6803
6804 /* Parse the stop reply in BUF. Either the function succeeds, and the
6805 result is stored in EVENT, or throws an error. */
6806
6807 static void
6808 remote_parse_stop_reply (char *buf, struct stop_reply *event)
6809 {
6810 struct remote_arch_state *rsa = get_remote_arch_state ();
6811 ULONGEST addr;
6812 char *p;
6813 int skipregs = 0;
6814
6815 event->ptid = null_ptid;
6816 event->rs = get_remote_state ();
6817 event->ws.kind = TARGET_WAITKIND_IGNORE;
6818 event->ws.value.integer = 0;
6819 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6820 event->regcache = NULL;
6821 event->core = -1;
6822
6823 switch (buf[0])
6824 {
6825 case 'T': /* Status with PC, SP, FP, ... */
6826 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6827 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6828 ss = signal number
6829 n... = register number
6830 r... = register contents
6831 */
6832
6833 p = &buf[3]; /* after Txx */
6834 while (*p)
6835 {
6836 char *p1;
6837 int fieldsize;
6838
6839 p1 = strchr (p, ':');
6840 if (p1 == NULL)
6841 error (_("Malformed packet(a) (missing colon): %s\n\
6842 Packet: '%s'\n"),
6843 p, buf);
6844 if (p == p1)
6845 error (_("Malformed packet(a) (missing register number): %s\n\
6846 Packet: '%s'\n"),
6847 p, buf);
6848
6849 /* Some "registers" are actually extended stop information.
6850 Note if you're adding a new entry here: GDB 7.9 and
6851 earlier assume that all register "numbers" that start
6852 with an hex digit are real register numbers. Make sure
6853 the server only sends such a packet if it knows the
6854 client understands it. */
6855
6856 if (strprefix (p, p1, "thread"))
6857 event->ptid = read_ptid (++p1, &p);
6858 else if (strprefix (p, p1, "syscall_entry"))
6859 {
6860 ULONGEST sysno;
6861
6862 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6863 p = unpack_varlen_hex (++p1, &sysno);
6864 event->ws.value.syscall_number = (int) sysno;
6865 }
6866 else if (strprefix (p, p1, "syscall_return"))
6867 {
6868 ULONGEST sysno;
6869
6870 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6871 p = unpack_varlen_hex (++p1, &sysno);
6872 event->ws.value.syscall_number = (int) sysno;
6873 }
6874 else if (strprefix (p, p1, "watch")
6875 || strprefix (p, p1, "rwatch")
6876 || strprefix (p, p1, "awatch"))
6877 {
6878 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
6879 p = unpack_varlen_hex (++p1, &addr);
6880 event->watch_data_address = (CORE_ADDR) addr;
6881 }
6882 else if (strprefix (p, p1, "swbreak"))
6883 {
6884 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6885
6886 /* Make sure the stub doesn't forget to indicate support
6887 with qSupported. */
6888 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6889 error (_("Unexpected swbreak stop reason"));
6890
6891 /* The value part is documented as "must be empty",
6892 though we ignore it, in case we ever decide to make
6893 use of it in a backward compatible way. */
6894 p = strchrnul (p1 + 1, ';');
6895 }
6896 else if (strprefix (p, p1, "hwbreak"))
6897 {
6898 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6899
6900 /* Make sure the stub doesn't forget to indicate support
6901 with qSupported. */
6902 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6903 error (_("Unexpected hwbreak stop reason"));
6904
6905 /* See above. */
6906 p = strchrnul (p1 + 1, ';');
6907 }
6908 else if (strprefix (p, p1, "library"))
6909 {
6910 event->ws.kind = TARGET_WAITKIND_LOADED;
6911 p = strchrnul (p1 + 1, ';');
6912 }
6913 else if (strprefix (p, p1, "replaylog"))
6914 {
6915 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6916 /* p1 will indicate "begin" or "end", but it makes
6917 no difference for now, so ignore it. */
6918 p = strchrnul (p1 + 1, ';');
6919 }
6920 else if (strprefix (p, p1, "core"))
6921 {
6922 ULONGEST c;
6923
6924 p = unpack_varlen_hex (++p1, &c);
6925 event->core = c;
6926 }
6927 else if (strprefix (p, p1, "fork"))
6928 {
6929 event->ws.value.related_pid = read_ptid (++p1, &p);
6930 event->ws.kind = TARGET_WAITKIND_FORKED;
6931 }
6932 else if (strprefix (p, p1, "vfork"))
6933 {
6934 event->ws.value.related_pid = read_ptid (++p1, &p);
6935 event->ws.kind = TARGET_WAITKIND_VFORKED;
6936 }
6937 else if (strprefix (p, p1, "vforkdone"))
6938 {
6939 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
6940 p = strchrnul (p1 + 1, ';');
6941 }
6942 else if (strprefix (p, p1, "exec"))
6943 {
6944 ULONGEST ignored;
6945 char pathname[PATH_MAX];
6946 int pathlen;
6947
6948 /* Determine the length of the execd pathname. */
6949 p = unpack_varlen_hex (++p1, &ignored);
6950 pathlen = (p - p1) / 2;
6951
6952 /* Save the pathname for event reporting and for
6953 the next run command. */
6954 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6955 pathname[pathlen] = '\0';
6956
6957 /* This is freed during event handling. */
6958 event->ws.value.execd_pathname = xstrdup (pathname);
6959 event->ws.kind = TARGET_WAITKIND_EXECD;
6960
6961 /* Skip the registers included in this packet, since
6962 they may be for an architecture different from the
6963 one used by the original program. */
6964 skipregs = 1;
6965 }
6966 else if (strprefix (p, p1, "create"))
6967 {
6968 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
6969 p = strchrnul (p1 + 1, ';');
6970 }
6971 else
6972 {
6973 ULONGEST pnum;
6974 char *p_temp;
6975
6976 if (skipregs)
6977 {
6978 p = strchrnul (p1 + 1, ';');
6979 p++;
6980 continue;
6981 }
6982
6983 /* Maybe a real ``P'' register number. */
6984 p_temp = unpack_varlen_hex (p, &pnum);
6985 /* If the first invalid character is the colon, we got a
6986 register number. Otherwise, it's an unknown stop
6987 reason. */
6988 if (p_temp == p1)
6989 {
6990 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
6991 cached_reg_t cached_reg;
6992 struct gdbarch *gdbarch = target_gdbarch ();
6993
6994 if (reg == NULL)
6995 error (_("Remote sent bad register number %s: %s\n\
6996 Packet: '%s'\n"),
6997 hex_string (pnum), p, buf);
6998
6999 cached_reg.num = reg->regnum;
7000 cached_reg.data = (gdb_byte *)
7001 xmalloc (register_size (gdbarch, reg->regnum));
7002
7003 p = p1 + 1;
7004 fieldsize = hex2bin (p, cached_reg.data,
7005 register_size (gdbarch, reg->regnum));
7006 p += 2 * fieldsize;
7007 if (fieldsize < register_size (gdbarch, reg->regnum))
7008 warning (_("Remote reply is too short: %s"), buf);
7009
7010 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7011 }
7012 else
7013 {
7014 /* Not a number. Silently skip unknown optional
7015 info. */
7016 p = strchrnul (p1 + 1, ';');
7017 }
7018 }
7019
7020 if (*p != ';')
7021 error (_("Remote register badly formatted: %s\nhere: %s"),
7022 buf, p);
7023 ++p;
7024 }
7025
7026 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7027 break;
7028
7029 /* fall through */
7030 case 'S': /* Old style status, just signal only. */
7031 {
7032 int sig;
7033
7034 event->ws.kind = TARGET_WAITKIND_STOPPED;
7035 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7036 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7037 event->ws.value.sig = (enum gdb_signal) sig;
7038 else
7039 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7040 }
7041 break;
7042 case 'w': /* Thread exited. */
7043 {
7044 char *p;
7045 ULONGEST value;
7046
7047 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7048 p = unpack_varlen_hex (&buf[1], &value);
7049 event->ws.value.integer = value;
7050 if (*p != ';')
7051 error (_("stop reply packet badly formatted: %s"), buf);
7052 event->ptid = read_ptid (++p, NULL);
7053 break;
7054 }
7055 case 'W': /* Target exited. */
7056 case 'X':
7057 {
7058 char *p;
7059 int pid;
7060 ULONGEST value;
7061
7062 /* GDB used to accept only 2 hex chars here. Stubs should
7063 only send more if they detect GDB supports multi-process
7064 support. */
7065 p = unpack_varlen_hex (&buf[1], &value);
7066
7067 if (buf[0] == 'W')
7068 {
7069 /* The remote process exited. */
7070 event->ws.kind = TARGET_WAITKIND_EXITED;
7071 event->ws.value.integer = value;
7072 }
7073 else
7074 {
7075 /* The remote process exited with a signal. */
7076 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
7077 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7078 event->ws.value.sig = (enum gdb_signal) value;
7079 else
7080 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7081 }
7082
7083 /* If no process is specified, assume inferior_ptid. */
7084 pid = ptid_get_pid (inferior_ptid);
7085 if (*p == '\0')
7086 ;
7087 else if (*p == ';')
7088 {
7089 p++;
7090
7091 if (*p == '\0')
7092 ;
7093 else if (startswith (p, "process:"))
7094 {
7095 ULONGEST upid;
7096
7097 p += sizeof ("process:") - 1;
7098 unpack_varlen_hex (p, &upid);
7099 pid = upid;
7100 }
7101 else
7102 error (_("unknown stop reply packet: %s"), buf);
7103 }
7104 else
7105 error (_("unknown stop reply packet: %s"), buf);
7106 event->ptid = pid_to_ptid (pid);
7107 }
7108 break;
7109 case 'N':
7110 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7111 event->ptid = minus_one_ptid;
7112 break;
7113 }
7114
7115 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
7116 error (_("No process or thread specified in stop reply: %s"), buf);
7117 }
7118
7119 /* When the stub wants to tell GDB about a new notification reply, it
7120 sends a notification (%Stop, for example). Those can come it at
7121 any time, hence, we have to make sure that any pending
7122 putpkt/getpkt sequence we're making is finished, before querying
7123 the stub for more events with the corresponding ack command
7124 (vStopped, for example). E.g., if we started a vStopped sequence
7125 immediately upon receiving the notification, something like this
7126 could happen:
7127
7128 1.1) --> Hg 1
7129 1.2) <-- OK
7130 1.3) --> g
7131 1.4) <-- %Stop
7132 1.5) --> vStopped
7133 1.6) <-- (registers reply to step #1.3)
7134
7135 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7136 query.
7137
7138 To solve this, whenever we parse a %Stop notification successfully,
7139 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7140 doing whatever we were doing:
7141
7142 2.1) --> Hg 1
7143 2.2) <-- OK
7144 2.3) --> g
7145 2.4) <-- %Stop
7146 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7147 2.5) <-- (registers reply to step #2.3)
7148
7149 Eventualy after step #2.5, we return to the event loop, which
7150 notices there's an event on the
7151 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7152 associated callback --- the function below. At this point, we're
7153 always safe to start a vStopped sequence. :
7154
7155 2.6) --> vStopped
7156 2.7) <-- T05 thread:2
7157 2.8) --> vStopped
7158 2.9) --> OK
7159 */
7160
7161 void
7162 remote_notif_get_pending_events (struct notif_client *nc)
7163 {
7164 struct remote_state *rs = get_remote_state ();
7165
7166 if (rs->notif_state->pending_event[nc->id] != NULL)
7167 {
7168 if (notif_debug)
7169 fprintf_unfiltered (gdb_stdlog,
7170 "notif: process: '%s' ack pending event\n",
7171 nc->name);
7172
7173 /* acknowledge */
7174 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7175 rs->notif_state->pending_event[nc->id] = NULL;
7176
7177 while (1)
7178 {
7179 getpkt (&rs->buf, &rs->buf_size, 0);
7180 if (strcmp (rs->buf, "OK") == 0)
7181 break;
7182 else
7183 remote_notif_ack (nc, rs->buf);
7184 }
7185 }
7186 else
7187 {
7188 if (notif_debug)
7189 fprintf_unfiltered (gdb_stdlog,
7190 "notif: process: '%s' no pending reply\n",
7191 nc->name);
7192 }
7193 }
7194
7195 /* Called when it is decided that STOP_REPLY holds the info of the
7196 event that is to be returned to the core. This function always
7197 destroys STOP_REPLY. */
7198
7199 static ptid_t
7200 process_stop_reply (struct stop_reply *stop_reply,
7201 struct target_waitstatus *status)
7202 {
7203 ptid_t ptid;
7204
7205 *status = stop_reply->ws;
7206 ptid = stop_reply->ptid;
7207
7208 /* If no thread/process was reported by the stub, assume the current
7209 inferior. */
7210 if (ptid_equal (ptid, null_ptid))
7211 ptid = inferior_ptid;
7212
7213 if (status->kind != TARGET_WAITKIND_EXITED
7214 && status->kind != TARGET_WAITKIND_SIGNALLED
7215 && status->kind != TARGET_WAITKIND_NO_RESUMED)
7216 {
7217 struct private_thread_info *remote_thr;
7218
7219 /* Expedited registers. */
7220 if (stop_reply->regcache)
7221 {
7222 struct regcache *regcache
7223 = get_thread_arch_regcache (ptid, target_gdbarch ());
7224 cached_reg_t *reg;
7225 int ix;
7226
7227 for (ix = 0;
7228 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
7229 ix++)
7230 {
7231 regcache_raw_supply (regcache, reg->num, reg->data);
7232 xfree (reg->data);
7233 }
7234
7235 VEC_free (cached_reg_t, stop_reply->regcache);
7236 }
7237
7238 remote_notice_new_inferior (ptid, 0);
7239 remote_thr = get_private_info_ptid (ptid);
7240 remote_thr->core = stop_reply->core;
7241 remote_thr->stop_reason = stop_reply->stop_reason;
7242 remote_thr->watch_data_address = stop_reply->watch_data_address;
7243 remote_thr->vcont_resumed = 0;
7244 }
7245
7246 stop_reply_xfree (stop_reply);
7247 return ptid;
7248 }
7249
7250 /* The non-stop mode version of target_wait. */
7251
7252 static ptid_t
7253 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
7254 {
7255 struct remote_state *rs = get_remote_state ();
7256 struct stop_reply *stop_reply;
7257 int ret;
7258 int is_notif = 0;
7259
7260 /* If in non-stop mode, get out of getpkt even if a
7261 notification is received. */
7262
7263 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
7264 0 /* forever */, &is_notif);
7265 while (1)
7266 {
7267 if (ret != -1 && !is_notif)
7268 switch (rs->buf[0])
7269 {
7270 case 'E': /* Error of some sort. */
7271 /* We're out of sync with the target now. Did it continue
7272 or not? We can't tell which thread it was in non-stop,
7273 so just ignore this. */
7274 warning (_("Remote failure reply: %s"), rs->buf);
7275 break;
7276 case 'O': /* Console output. */
7277 remote_console_output (rs->buf + 1);
7278 break;
7279 default:
7280 warning (_("Invalid remote reply: %s"), rs->buf);
7281 break;
7282 }
7283
7284 /* Acknowledge a pending stop reply that may have arrived in the
7285 mean time. */
7286 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
7287 remote_notif_get_pending_events (&notif_client_stop);
7288
7289 /* If indeed we noticed a stop reply, we're done. */
7290 stop_reply = queued_stop_reply (ptid);
7291 if (stop_reply != NULL)
7292 return process_stop_reply (stop_reply, status);
7293
7294 /* Still no event. If we're just polling for an event, then
7295 return to the event loop. */
7296 if (options & TARGET_WNOHANG)
7297 {
7298 status->kind = TARGET_WAITKIND_IGNORE;
7299 return minus_one_ptid;
7300 }
7301
7302 /* Otherwise do a blocking wait. */
7303 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
7304 1 /* forever */, &is_notif);
7305 }
7306 }
7307
7308 /* Wait until the remote machine stops, then return, storing status in
7309 STATUS just as `wait' would. */
7310
7311 static ptid_t
7312 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
7313 {
7314 struct remote_state *rs = get_remote_state ();
7315 ptid_t event_ptid = null_ptid;
7316 char *buf;
7317 struct stop_reply *stop_reply;
7318
7319 again:
7320
7321 status->kind = TARGET_WAITKIND_IGNORE;
7322 status->value.integer = 0;
7323
7324 stop_reply = queued_stop_reply (ptid);
7325 if (stop_reply != NULL)
7326 return process_stop_reply (stop_reply, status);
7327
7328 if (rs->cached_wait_status)
7329 /* Use the cached wait status, but only once. */
7330 rs->cached_wait_status = 0;
7331 else
7332 {
7333 int ret;
7334 int is_notif;
7335 int forever = ((options & TARGET_WNOHANG) == 0
7336 && wait_forever_enabled_p);
7337
7338 if (!rs->waiting_for_stop_reply)
7339 {
7340 status->kind = TARGET_WAITKIND_NO_RESUMED;
7341 return minus_one_ptid;
7342 }
7343
7344 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7345 _never_ wait for ever -> test on target_is_async_p().
7346 However, before we do that we need to ensure that the caller
7347 knows how to take the target into/out of async mode. */
7348 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
7349 forever, &is_notif);
7350
7351 /* GDB gets a notification. Return to core as this event is
7352 not interesting. */
7353 if (ret != -1 && is_notif)
7354 return minus_one_ptid;
7355
7356 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7357 return minus_one_ptid;
7358 }
7359
7360 buf = rs->buf;
7361
7362 /* Assume that the target has acknowledged Ctrl-C unless we receive
7363 an 'F' or 'O' packet. */
7364 if (buf[0] != 'F' && buf[0] != 'O')
7365 rs->ctrlc_pending_p = 0;
7366
7367 switch (buf[0])
7368 {
7369 case 'E': /* Error of some sort. */
7370 /* We're out of sync with the target now. Did it continue or
7371 not? Not is more likely, so report a stop. */
7372 rs->waiting_for_stop_reply = 0;
7373
7374 warning (_("Remote failure reply: %s"), buf);
7375 status->kind = TARGET_WAITKIND_STOPPED;
7376 status->value.sig = GDB_SIGNAL_0;
7377 break;
7378 case 'F': /* File-I/O request. */
7379 /* GDB may access the inferior memory while handling the File-I/O
7380 request, but we don't want GDB accessing memory while waiting
7381 for a stop reply. See the comments in putpkt_binary. Set
7382 waiting_for_stop_reply to 0 temporarily. */
7383 rs->waiting_for_stop_reply = 0;
7384 remote_fileio_request (buf, rs->ctrlc_pending_p);
7385 rs->ctrlc_pending_p = 0;
7386 /* GDB handled the File-I/O request, and the target is running
7387 again. Keep waiting for events. */
7388 rs->waiting_for_stop_reply = 1;
7389 break;
7390 case 'N': case 'T': case 'S': case 'X': case 'W':
7391 {
7392 struct stop_reply *stop_reply;
7393
7394 /* There is a stop reply to handle. */
7395 rs->waiting_for_stop_reply = 0;
7396
7397 stop_reply
7398 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7399 rs->buf);
7400
7401 event_ptid = process_stop_reply (stop_reply, status);
7402 break;
7403 }
7404 case 'O': /* Console output. */
7405 remote_console_output (buf + 1);
7406 break;
7407 case '\0':
7408 if (rs->last_sent_signal != GDB_SIGNAL_0)
7409 {
7410 /* Zero length reply means that we tried 'S' or 'C' and the
7411 remote system doesn't support it. */
7412 target_terminal_ours_for_output ();
7413 printf_filtered
7414 ("Can't send signals to this remote system. %s not sent.\n",
7415 gdb_signal_to_name (rs->last_sent_signal));
7416 rs->last_sent_signal = GDB_SIGNAL_0;
7417 target_terminal_inferior ();
7418
7419 strcpy (buf, rs->last_sent_step ? "s" : "c");
7420 putpkt (buf);
7421 break;
7422 }
7423 /* else fallthrough */
7424 default:
7425 warning (_("Invalid remote reply: %s"), buf);
7426 break;
7427 }
7428
7429 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7430 return minus_one_ptid;
7431 else if (status->kind == TARGET_WAITKIND_IGNORE)
7432 {
7433 /* Nothing interesting happened. If we're doing a non-blocking
7434 poll, we're done. Otherwise, go back to waiting. */
7435 if (options & TARGET_WNOHANG)
7436 return minus_one_ptid;
7437 else
7438 goto again;
7439 }
7440 else if (status->kind != TARGET_WAITKIND_EXITED
7441 && status->kind != TARGET_WAITKIND_SIGNALLED)
7442 {
7443 if (!ptid_equal (event_ptid, null_ptid))
7444 record_currthread (rs, event_ptid);
7445 else
7446 event_ptid = inferior_ptid;
7447 }
7448 else
7449 /* A process exit. Invalidate our notion of current thread. */
7450 record_currthread (rs, minus_one_ptid);
7451
7452 return event_ptid;
7453 }
7454
7455 /* Wait until the remote machine stops, then return, storing status in
7456 STATUS just as `wait' would. */
7457
7458 static ptid_t
7459 remote_wait (struct target_ops *ops,
7460 ptid_t ptid, struct target_waitstatus *status, int options)
7461 {
7462 ptid_t event_ptid;
7463
7464 if (target_is_non_stop_p ())
7465 event_ptid = remote_wait_ns (ptid, status, options);
7466 else
7467 event_ptid = remote_wait_as (ptid, status, options);
7468
7469 if (target_is_async_p ())
7470 {
7471 /* If there are are events left in the queue tell the event loop
7472 to return here. */
7473 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
7474 mark_async_event_handler (remote_async_inferior_event_token);
7475 }
7476
7477 return event_ptid;
7478 }
7479
7480 /* Fetch a single register using a 'p' packet. */
7481
7482 static int
7483 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
7484 {
7485 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7486 struct remote_state *rs = get_remote_state ();
7487 char *buf, *p;
7488 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
7489 int i;
7490
7491 if (packet_support (PACKET_p) == PACKET_DISABLE)
7492 return 0;
7493
7494 if (reg->pnum == -1)
7495 return 0;
7496
7497 p = rs->buf;
7498 *p++ = 'p';
7499 p += hexnumstr (p, reg->pnum);
7500 *p++ = '\0';
7501 putpkt (rs->buf);
7502 getpkt (&rs->buf, &rs->buf_size, 0);
7503
7504 buf = rs->buf;
7505
7506 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7507 {
7508 case PACKET_OK:
7509 break;
7510 case PACKET_UNKNOWN:
7511 return 0;
7512 case PACKET_ERROR:
7513 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7514 gdbarch_register_name (get_regcache_arch (regcache),
7515 reg->regnum),
7516 buf);
7517 }
7518
7519 /* If this register is unfetchable, tell the regcache. */
7520 if (buf[0] == 'x')
7521 {
7522 regcache_raw_supply (regcache, reg->regnum, NULL);
7523 return 1;
7524 }
7525
7526 /* Otherwise, parse and supply the value. */
7527 p = buf;
7528 i = 0;
7529 while (p[0] != 0)
7530 {
7531 if (p[1] == 0)
7532 error (_("fetch_register_using_p: early buf termination"));
7533
7534 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7535 p += 2;
7536 }
7537 regcache_raw_supply (regcache, reg->regnum, regp);
7538 return 1;
7539 }
7540
7541 /* Fetch the registers included in the target's 'g' packet. */
7542
7543 static int
7544 send_g_packet (void)
7545 {
7546 struct remote_state *rs = get_remote_state ();
7547 int buf_len;
7548
7549 xsnprintf (rs->buf, get_remote_packet_size (), "g");
7550 remote_send (&rs->buf, &rs->buf_size);
7551
7552 /* We can get out of synch in various cases. If the first character
7553 in the buffer is not a hex character, assume that has happened
7554 and try to fetch another packet to read. */
7555 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7556 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7557 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7558 && rs->buf[0] != 'x') /* New: unavailable register value. */
7559 {
7560 if (remote_debug)
7561 fprintf_unfiltered (gdb_stdlog,
7562 "Bad register packet; fetching a new packet\n");
7563 getpkt (&rs->buf, &rs->buf_size, 0);
7564 }
7565
7566 buf_len = strlen (rs->buf);
7567
7568 /* Sanity check the received packet. */
7569 if (buf_len % 2 != 0)
7570 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
7571
7572 return buf_len / 2;
7573 }
7574
7575 static void
7576 process_g_packet (struct regcache *regcache)
7577 {
7578 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7579 struct remote_state *rs = get_remote_state ();
7580 struct remote_arch_state *rsa = get_remote_arch_state ();
7581 int i, buf_len;
7582 char *p;
7583 char *regs;
7584
7585 buf_len = strlen (rs->buf);
7586
7587 /* Further sanity checks, with knowledge of the architecture. */
7588 if (buf_len > 2 * rsa->sizeof_g_packet)
7589 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
7590
7591 /* Save the size of the packet sent to us by the target. It is used
7592 as a heuristic when determining the max size of packets that the
7593 target can safely receive. */
7594 if (rsa->actual_register_packet_size == 0)
7595 rsa->actual_register_packet_size = buf_len;
7596
7597 /* If this is smaller than we guessed the 'g' packet would be,
7598 update our records. A 'g' reply that doesn't include a register's
7599 value implies either that the register is not available, or that
7600 the 'p' packet must be used. */
7601 if (buf_len < 2 * rsa->sizeof_g_packet)
7602 {
7603 long sizeof_g_packet = buf_len / 2;
7604
7605 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7606 {
7607 long offset = rsa->regs[i].offset;
7608 long reg_size = register_size (gdbarch, i);
7609
7610 if (rsa->regs[i].pnum == -1)
7611 continue;
7612
7613 if (offset >= sizeof_g_packet)
7614 rsa->regs[i].in_g_packet = 0;
7615 else if (offset + reg_size > sizeof_g_packet)
7616 error (_("Truncated register %d in remote 'g' packet"), i);
7617 else
7618 rsa->regs[i].in_g_packet = 1;
7619 }
7620
7621 /* Looks valid enough, we can assume this is the correct length
7622 for a 'g' packet. It's important not to adjust
7623 rsa->sizeof_g_packet if we have truncated registers otherwise
7624 this "if" won't be run the next time the method is called
7625 with a packet of the same size and one of the internal errors
7626 below will trigger instead. */
7627 rsa->sizeof_g_packet = sizeof_g_packet;
7628 }
7629
7630 regs = (char *) alloca (rsa->sizeof_g_packet);
7631
7632 /* Unimplemented registers read as all bits zero. */
7633 memset (regs, 0, rsa->sizeof_g_packet);
7634
7635 /* Reply describes registers byte by byte, each byte encoded as two
7636 hex characters. Suck them all up, then supply them to the
7637 register cacheing/storage mechanism. */
7638
7639 p = rs->buf;
7640 for (i = 0; i < rsa->sizeof_g_packet; i++)
7641 {
7642 if (p[0] == 0 || p[1] == 0)
7643 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7644 internal_error (__FILE__, __LINE__,
7645 _("unexpected end of 'g' packet reply"));
7646
7647 if (p[0] == 'x' && p[1] == 'x')
7648 regs[i] = 0; /* 'x' */
7649 else
7650 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7651 p += 2;
7652 }
7653
7654 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7655 {
7656 struct packet_reg *r = &rsa->regs[i];
7657 long reg_size = register_size (gdbarch, i);
7658
7659 if (r->in_g_packet)
7660 {
7661 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
7662 /* This shouldn't happen - we adjusted in_g_packet above. */
7663 internal_error (__FILE__, __LINE__,
7664 _("unexpected end of 'g' packet reply"));
7665 else if (rs->buf[r->offset * 2] == 'x')
7666 {
7667 gdb_assert (r->offset * 2 < strlen (rs->buf));
7668 /* The register isn't available, mark it as such (at
7669 the same time setting the value to zero). */
7670 regcache_raw_supply (regcache, r->regnum, NULL);
7671 }
7672 else
7673 regcache_raw_supply (regcache, r->regnum,
7674 regs + r->offset);
7675 }
7676 }
7677 }
7678
7679 static void
7680 fetch_registers_using_g (struct regcache *regcache)
7681 {
7682 send_g_packet ();
7683 process_g_packet (regcache);
7684 }
7685
7686 /* Make the remote selected traceframe match GDB's selected
7687 traceframe. */
7688
7689 static void
7690 set_remote_traceframe (void)
7691 {
7692 int newnum;
7693 struct remote_state *rs = get_remote_state ();
7694
7695 if (rs->remote_traceframe_number == get_traceframe_number ())
7696 return;
7697
7698 /* Avoid recursion, remote_trace_find calls us again. */
7699 rs->remote_traceframe_number = get_traceframe_number ();
7700
7701 newnum = target_trace_find (tfind_number,
7702 get_traceframe_number (), 0, 0, NULL);
7703
7704 /* Should not happen. If it does, all bets are off. */
7705 if (newnum != get_traceframe_number ())
7706 warning (_("could not set remote traceframe"));
7707 }
7708
7709 static void
7710 remote_fetch_registers (struct target_ops *ops,
7711 struct regcache *regcache, int regnum)
7712 {
7713 struct remote_arch_state *rsa = get_remote_arch_state ();
7714 int i;
7715
7716 set_remote_traceframe ();
7717 set_general_thread (regcache_get_ptid (regcache));
7718
7719 if (regnum >= 0)
7720 {
7721 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
7722
7723 gdb_assert (reg != NULL);
7724
7725 /* If this register might be in the 'g' packet, try that first -
7726 we are likely to read more than one register. If this is the
7727 first 'g' packet, we might be overly optimistic about its
7728 contents, so fall back to 'p'. */
7729 if (reg->in_g_packet)
7730 {
7731 fetch_registers_using_g (regcache);
7732 if (reg->in_g_packet)
7733 return;
7734 }
7735
7736 if (fetch_register_using_p (regcache, reg))
7737 return;
7738
7739 /* This register is not available. */
7740 regcache_raw_supply (regcache, reg->regnum, NULL);
7741
7742 return;
7743 }
7744
7745 fetch_registers_using_g (regcache);
7746
7747 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7748 if (!rsa->regs[i].in_g_packet)
7749 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
7750 {
7751 /* This register is not available. */
7752 regcache_raw_supply (regcache, i, NULL);
7753 }
7754 }
7755
7756 /* Prepare to store registers. Since we may send them all (using a
7757 'G' request), we have to read out the ones we don't want to change
7758 first. */
7759
7760 static void
7761 remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
7762 {
7763 struct remote_arch_state *rsa = get_remote_arch_state ();
7764 int i;
7765
7766 /* Make sure the entire registers array is valid. */
7767 switch (packet_support (PACKET_P))
7768 {
7769 case PACKET_DISABLE:
7770 case PACKET_SUPPORT_UNKNOWN:
7771 /* Make sure all the necessary registers are cached. */
7772 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7773 if (rsa->regs[i].in_g_packet)
7774 regcache_raw_update (regcache, rsa->regs[i].regnum);
7775 break;
7776 case PACKET_ENABLE:
7777 break;
7778 }
7779 }
7780
7781 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
7782 packet was not recognized. */
7783
7784 static int
7785 store_register_using_P (const struct regcache *regcache,
7786 struct packet_reg *reg)
7787 {
7788 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7789 struct remote_state *rs = get_remote_state ();
7790 /* Try storing a single register. */
7791 char *buf = rs->buf;
7792 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
7793 char *p;
7794
7795 if (packet_support (PACKET_P) == PACKET_DISABLE)
7796 return 0;
7797
7798 if (reg->pnum == -1)
7799 return 0;
7800
7801 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
7802 p = buf + strlen (buf);
7803 regcache_raw_collect (regcache, reg->regnum, regp);
7804 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
7805 putpkt (rs->buf);
7806 getpkt (&rs->buf, &rs->buf_size, 0);
7807
7808 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7809 {
7810 case PACKET_OK:
7811 return 1;
7812 case PACKET_ERROR:
7813 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7814 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
7815 case PACKET_UNKNOWN:
7816 return 0;
7817 default:
7818 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7819 }
7820 }
7821
7822 /* Store register REGNUM, or all registers if REGNUM == -1, from the
7823 contents of the register cache buffer. FIXME: ignores errors. */
7824
7825 static void
7826 store_registers_using_G (const struct regcache *regcache)
7827 {
7828 struct remote_state *rs = get_remote_state ();
7829 struct remote_arch_state *rsa = get_remote_arch_state ();
7830 gdb_byte *regs;
7831 char *p;
7832
7833 /* Extract all the registers in the regcache copying them into a
7834 local buffer. */
7835 {
7836 int i;
7837
7838 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
7839 memset (regs, 0, rsa->sizeof_g_packet);
7840 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7841 {
7842 struct packet_reg *r = &rsa->regs[i];
7843
7844 if (r->in_g_packet)
7845 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
7846 }
7847 }
7848
7849 /* Command describes registers byte by byte,
7850 each byte encoded as two hex characters. */
7851 p = rs->buf;
7852 *p++ = 'G';
7853 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
7854 updated. */
7855 bin2hex (regs, p, rsa->sizeof_g_packet);
7856 putpkt (rs->buf);
7857 getpkt (&rs->buf, &rs->buf_size, 0);
7858 if (packet_check_result (rs->buf) == PACKET_ERROR)
7859 error (_("Could not write registers; remote failure reply '%s'"),
7860 rs->buf);
7861 }
7862
7863 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7864 of the register cache buffer. FIXME: ignores errors. */
7865
7866 static void
7867 remote_store_registers (struct target_ops *ops,
7868 struct regcache *regcache, int regnum)
7869 {
7870 struct remote_arch_state *rsa = get_remote_arch_state ();
7871 int i;
7872
7873 set_remote_traceframe ();
7874 set_general_thread (regcache_get_ptid (regcache));
7875
7876 if (regnum >= 0)
7877 {
7878 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
7879
7880 gdb_assert (reg != NULL);
7881
7882 /* Always prefer to store registers using the 'P' packet if
7883 possible; we often change only a small number of registers.
7884 Sometimes we change a larger number; we'd need help from a
7885 higher layer to know to use 'G'. */
7886 if (store_register_using_P (regcache, reg))
7887 return;
7888
7889 /* For now, don't complain if we have no way to write the
7890 register. GDB loses track of unavailable registers too
7891 easily. Some day, this may be an error. We don't have
7892 any way to read the register, either... */
7893 if (!reg->in_g_packet)
7894 return;
7895
7896 store_registers_using_G (regcache);
7897 return;
7898 }
7899
7900 store_registers_using_G (regcache);
7901
7902 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7903 if (!rsa->regs[i].in_g_packet)
7904 if (!store_register_using_P (regcache, &rsa->regs[i]))
7905 /* See above for why we do not issue an error here. */
7906 continue;
7907 }
7908 \f
7909
7910 /* Return the number of hex digits in num. */
7911
7912 static int
7913 hexnumlen (ULONGEST num)
7914 {
7915 int i;
7916
7917 for (i = 0; num != 0; i++)
7918 num >>= 4;
7919
7920 return std::max (i, 1);
7921 }
7922
7923 /* Set BUF to the minimum number of hex digits representing NUM. */
7924
7925 static int
7926 hexnumstr (char *buf, ULONGEST num)
7927 {
7928 int len = hexnumlen (num);
7929
7930 return hexnumnstr (buf, num, len);
7931 }
7932
7933
7934 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
7935
7936 static int
7937 hexnumnstr (char *buf, ULONGEST num, int width)
7938 {
7939 int i;
7940
7941 buf[width] = '\0';
7942
7943 for (i = width - 1; i >= 0; i--)
7944 {
7945 buf[i] = "0123456789abcdef"[(num & 0xf)];
7946 num >>= 4;
7947 }
7948
7949 return width;
7950 }
7951
7952 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
7953
7954 static CORE_ADDR
7955 remote_address_masked (CORE_ADDR addr)
7956 {
7957 unsigned int address_size = remote_address_size;
7958
7959 /* If "remoteaddresssize" was not set, default to target address size. */
7960 if (!address_size)
7961 address_size = gdbarch_addr_bit (target_gdbarch ());
7962
7963 if (address_size > 0
7964 && address_size < (sizeof (ULONGEST) * 8))
7965 {
7966 /* Only create a mask when that mask can safely be constructed
7967 in a ULONGEST variable. */
7968 ULONGEST mask = 1;
7969
7970 mask = (mask << address_size) - 1;
7971 addr &= mask;
7972 }
7973 return addr;
7974 }
7975
7976 /* Determine whether the remote target supports binary downloading.
7977 This is accomplished by sending a no-op memory write of zero length
7978 to the target at the specified address. It does not suffice to send
7979 the whole packet, since many stubs strip the eighth bit and
7980 subsequently compute a wrong checksum, which causes real havoc with
7981 remote_write_bytes.
7982
7983 NOTE: This can still lose if the serial line is not eight-bit
7984 clean. In cases like this, the user should clear "remote
7985 X-packet". */
7986
7987 static void
7988 check_binary_download (CORE_ADDR addr)
7989 {
7990 struct remote_state *rs = get_remote_state ();
7991
7992 switch (packet_support (PACKET_X))
7993 {
7994 case PACKET_DISABLE:
7995 break;
7996 case PACKET_ENABLE:
7997 break;
7998 case PACKET_SUPPORT_UNKNOWN:
7999 {
8000 char *p;
8001
8002 p = rs->buf;
8003 *p++ = 'X';
8004 p += hexnumstr (p, (ULONGEST) addr);
8005 *p++ = ',';
8006 p += hexnumstr (p, (ULONGEST) 0);
8007 *p++ = ':';
8008 *p = '\0';
8009
8010 putpkt_binary (rs->buf, (int) (p - rs->buf));
8011 getpkt (&rs->buf, &rs->buf_size, 0);
8012
8013 if (rs->buf[0] == '\0')
8014 {
8015 if (remote_debug)
8016 fprintf_unfiltered (gdb_stdlog,
8017 "binary downloading NOT "
8018 "supported by target\n");
8019 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
8020 }
8021 else
8022 {
8023 if (remote_debug)
8024 fprintf_unfiltered (gdb_stdlog,
8025 "binary downloading supported by target\n");
8026 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
8027 }
8028 break;
8029 }
8030 }
8031 }
8032
8033 /* Helper function to resize the payload in order to try to get a good
8034 alignment. We try to write an amount of data such that the next write will
8035 start on an address aligned on REMOTE_ALIGN_WRITES. */
8036
8037 static int
8038 align_for_efficient_write (int todo, CORE_ADDR memaddr)
8039 {
8040 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8041 }
8042
8043 /* Write memory data directly to the remote machine.
8044 This does not inform the data cache; the data cache uses this.
8045 HEADER is the starting part of the packet.
8046 MEMADDR is the address in the remote memory space.
8047 MYADDR is the address of the buffer in our space.
8048 LEN_UNITS is the number of addressable units to write.
8049 UNIT_SIZE is the length in bytes of an addressable unit.
8050 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8051 should send data as binary ('X'), or hex-encoded ('M').
8052
8053 The function creates packet of the form
8054 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8055
8056 where encoding of <DATA> is terminated by PACKET_FORMAT.
8057
8058 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8059 are omitted.
8060
8061 Return the transferred status, error or OK (an
8062 'enum target_xfer_status' value). Save the number of addressable units
8063 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8064
8065 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8066 exchange between gdb and the stub could look like (?? in place of the
8067 checksum):
8068
8069 -> $m1000,4#??
8070 <- aaaabbbbccccdddd
8071
8072 -> $M1000,3:eeeeffffeeee#??
8073 <- OK
8074
8075 -> $m1000,4#??
8076 <- eeeeffffeeeedddd */
8077
8078 static enum target_xfer_status
8079 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
8080 const gdb_byte *myaddr, ULONGEST len_units,
8081 int unit_size, ULONGEST *xfered_len_units,
8082 char packet_format, int use_length)
8083 {
8084 struct remote_state *rs = get_remote_state ();
8085 char *p;
8086 char *plen = NULL;
8087 int plenlen = 0;
8088 int todo_units;
8089 int units_written;
8090 int payload_capacity_bytes;
8091 int payload_length_bytes;
8092
8093 if (packet_format != 'X' && packet_format != 'M')
8094 internal_error (__FILE__, __LINE__,
8095 _("remote_write_bytes_aux: bad packet format"));
8096
8097 if (len_units == 0)
8098 return TARGET_XFER_EOF;
8099
8100 payload_capacity_bytes = get_memory_write_packet_size ();
8101
8102 /* The packet buffer will be large enough for the payload;
8103 get_memory_packet_size ensures this. */
8104 rs->buf[0] = '\0';
8105
8106 /* Compute the size of the actual payload by subtracting out the
8107 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8108
8109 payload_capacity_bytes -= strlen ("$,:#NN");
8110 if (!use_length)
8111 /* The comma won't be used. */
8112 payload_capacity_bytes += 1;
8113 payload_capacity_bytes -= strlen (header);
8114 payload_capacity_bytes -= hexnumlen (memaddr);
8115
8116 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
8117
8118 strcat (rs->buf, header);
8119 p = rs->buf + strlen (header);
8120
8121 /* Compute a best guess of the number of bytes actually transfered. */
8122 if (packet_format == 'X')
8123 {
8124 /* Best guess at number of bytes that will fit. */
8125 todo_units = std::min (len_units,
8126 (ULONGEST) payload_capacity_bytes / unit_size);
8127 if (use_length)
8128 payload_capacity_bytes -= hexnumlen (todo_units);
8129 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
8130 }
8131 else
8132 {
8133 /* Number of bytes that will fit. */
8134 todo_units
8135 = std::min (len_units,
8136 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
8137 if (use_length)
8138 payload_capacity_bytes -= hexnumlen (todo_units);
8139 todo_units = std::min (todo_units,
8140 (payload_capacity_bytes / unit_size) / 2);
8141 }
8142
8143 if (todo_units <= 0)
8144 internal_error (__FILE__, __LINE__,
8145 _("minimum packet size too small to write data"));
8146
8147 /* If we already need another packet, then try to align the end
8148 of this packet to a useful boundary. */
8149 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8150 todo_units = align_for_efficient_write (todo_units, memaddr);
8151
8152 /* Append "<memaddr>". */
8153 memaddr = remote_address_masked (memaddr);
8154 p += hexnumstr (p, (ULONGEST) memaddr);
8155
8156 if (use_length)
8157 {
8158 /* Append ",". */
8159 *p++ = ',';
8160
8161 /* Append the length and retain its location and size. It may need to be
8162 adjusted once the packet body has been created. */
8163 plen = p;
8164 plenlen = hexnumstr (p, (ULONGEST) todo_units);
8165 p += plenlen;
8166 }
8167
8168 /* Append ":". */
8169 *p++ = ':';
8170 *p = '\0';
8171
8172 /* Append the packet body. */
8173 if (packet_format == 'X')
8174 {
8175 /* Binary mode. Send target system values byte by byte, in
8176 increasing byte addresses. Only escape certain critical
8177 characters. */
8178 payload_length_bytes =
8179 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8180 &units_written, payload_capacity_bytes);
8181
8182 /* If not all TODO units fit, then we'll need another packet. Make
8183 a second try to keep the end of the packet aligned. Don't do
8184 this if the packet is tiny. */
8185 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
8186 {
8187 int new_todo_units;
8188
8189 new_todo_units = align_for_efficient_write (units_written, memaddr);
8190
8191 if (new_todo_units != units_written)
8192 payload_length_bytes =
8193 remote_escape_output (myaddr, new_todo_units, unit_size,
8194 (gdb_byte *) p, &units_written,
8195 payload_capacity_bytes);
8196 }
8197
8198 p += payload_length_bytes;
8199 if (use_length && units_written < todo_units)
8200 {
8201 /* Escape chars have filled up the buffer prematurely,
8202 and we have actually sent fewer units than planned.
8203 Fix-up the length field of the packet. Use the same
8204 number of characters as before. */
8205 plen += hexnumnstr (plen, (ULONGEST) units_written,
8206 plenlen);
8207 *plen = ':'; /* overwrite \0 from hexnumnstr() */
8208 }
8209 }
8210 else
8211 {
8212 /* Normal mode: Send target system values byte by byte, in
8213 increasing byte addresses. Each byte is encoded as a two hex
8214 value. */
8215 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8216 units_written = todo_units;
8217 }
8218
8219 putpkt_binary (rs->buf, (int) (p - rs->buf));
8220 getpkt (&rs->buf, &rs->buf_size, 0);
8221
8222 if (rs->buf[0] == 'E')
8223 return TARGET_XFER_E_IO;
8224
8225 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8226 send fewer units than we'd planned. */
8227 *xfered_len_units = (ULONGEST) units_written;
8228 return TARGET_XFER_OK;
8229 }
8230
8231 /* Write memory data directly to the remote machine.
8232 This does not inform the data cache; the data cache uses this.
8233 MEMADDR is the address in the remote memory space.
8234 MYADDR is the address of the buffer in our space.
8235 LEN is the number of bytes.
8236
8237 Return the transferred status, error or OK (an
8238 'enum target_xfer_status' value). Save the number of bytes
8239 transferred in *XFERED_LEN. Only transfer a single packet. */
8240
8241 static enum target_xfer_status
8242 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
8243 int unit_size, ULONGEST *xfered_len)
8244 {
8245 const char *packet_format = NULL;
8246
8247 /* Check whether the target supports binary download. */
8248 check_binary_download (memaddr);
8249
8250 switch (packet_support (PACKET_X))
8251 {
8252 case PACKET_ENABLE:
8253 packet_format = "X";
8254 break;
8255 case PACKET_DISABLE:
8256 packet_format = "M";
8257 break;
8258 case PACKET_SUPPORT_UNKNOWN:
8259 internal_error (__FILE__, __LINE__,
8260 _("remote_write_bytes: bad internal state"));
8261 default:
8262 internal_error (__FILE__, __LINE__, _("bad switch"));
8263 }
8264
8265 return remote_write_bytes_aux (packet_format,
8266 memaddr, myaddr, len, unit_size, xfered_len,
8267 packet_format[0], 1);
8268 }
8269
8270 /* Read memory data directly from the remote machine.
8271 This does not use the data cache; the data cache uses this.
8272 MEMADDR is the address in the remote memory space.
8273 MYADDR is the address of the buffer in our space.
8274 LEN_UNITS is the number of addressable memory units to read..
8275 UNIT_SIZE is the length in bytes of an addressable unit.
8276
8277 Return the transferred status, error or OK (an
8278 'enum target_xfer_status' value). Save the number of bytes
8279 transferred in *XFERED_LEN_UNITS.
8280
8281 See the comment of remote_write_bytes_aux for an example of
8282 memory read/write exchange between gdb and the stub. */
8283
8284 static enum target_xfer_status
8285 remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
8286 int unit_size, ULONGEST *xfered_len_units)
8287 {
8288 struct remote_state *rs = get_remote_state ();
8289 int buf_size_bytes; /* Max size of packet output buffer. */
8290 char *p;
8291 int todo_units;
8292 int decoded_bytes;
8293
8294 buf_size_bytes = get_memory_read_packet_size ();
8295 /* The packet buffer will be large enough for the payload;
8296 get_memory_packet_size ensures this. */
8297
8298 /* Number of units that will fit. */
8299 todo_units = std::min (len_units,
8300 (ULONGEST) (buf_size_bytes / unit_size) / 2);
8301
8302 /* Construct "m"<memaddr>","<len>". */
8303 memaddr = remote_address_masked (memaddr);
8304 p = rs->buf;
8305 *p++ = 'm';
8306 p += hexnumstr (p, (ULONGEST) memaddr);
8307 *p++ = ',';
8308 p += hexnumstr (p, (ULONGEST) todo_units);
8309 *p = '\0';
8310 putpkt (rs->buf);
8311 getpkt (&rs->buf, &rs->buf_size, 0);
8312 if (rs->buf[0] == 'E'
8313 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8314 && rs->buf[3] == '\0')
8315 return TARGET_XFER_E_IO;
8316 /* Reply describes memory byte by byte, each byte encoded as two hex
8317 characters. */
8318 p = rs->buf;
8319 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
8320 /* Return what we have. Let higher layers handle partial reads. */
8321 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
8322 return TARGET_XFER_OK;
8323 }
8324
8325 /* Using the set of read-only target sections of remote, read live
8326 read-only memory.
8327
8328 For interface/parameters/return description see target.h,
8329 to_xfer_partial. */
8330
8331 static enum target_xfer_status
8332 remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
8333 ULONGEST memaddr, ULONGEST len,
8334 int unit_size, ULONGEST *xfered_len)
8335 {
8336 struct target_section *secp;
8337 struct target_section_table *table;
8338
8339 secp = target_section_by_addr (ops, memaddr);
8340 if (secp != NULL
8341 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8342 secp->the_bfd_section)
8343 & SEC_READONLY))
8344 {
8345 struct target_section *p;
8346 ULONGEST memend = memaddr + len;
8347
8348 table = target_get_section_table (ops);
8349
8350 for (p = table->sections; p < table->sections_end; p++)
8351 {
8352 if (memaddr >= p->addr)
8353 {
8354 if (memend <= p->endaddr)
8355 {
8356 /* Entire transfer is within this section. */
8357 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8358 xfered_len);
8359 }
8360 else if (memaddr >= p->endaddr)
8361 {
8362 /* This section ends before the transfer starts. */
8363 continue;
8364 }
8365 else
8366 {
8367 /* This section overlaps the transfer. Just do half. */
8368 len = p->endaddr - memaddr;
8369 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
8370 xfered_len);
8371 }
8372 }
8373 }
8374 }
8375
8376 return TARGET_XFER_EOF;
8377 }
8378
8379 /* Similar to remote_read_bytes_1, but it reads from the remote stub
8380 first if the requested memory is unavailable in traceframe.
8381 Otherwise, fall back to remote_read_bytes_1. */
8382
8383 static enum target_xfer_status
8384 remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
8385 gdb_byte *myaddr, ULONGEST len, int unit_size,
8386 ULONGEST *xfered_len)
8387 {
8388 if (len == 0)
8389 return TARGET_XFER_EOF;
8390
8391 if (get_traceframe_number () != -1)
8392 {
8393 VEC(mem_range_s) *available;
8394
8395 /* If we fail to get the set of available memory, then the
8396 target does not support querying traceframe info, and so we
8397 attempt reading from the traceframe anyway (assuming the
8398 target implements the old QTro packet then). */
8399 if (traceframe_available_memory (&available, memaddr, len))
8400 {
8401 struct cleanup *old_chain;
8402
8403 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
8404
8405 if (VEC_empty (mem_range_s, available)
8406 || VEC_index (mem_range_s, available, 0)->start != memaddr)
8407 {
8408 enum target_xfer_status res;
8409
8410 /* Don't read into the traceframe's available
8411 memory. */
8412 if (!VEC_empty (mem_range_s, available))
8413 {
8414 LONGEST oldlen = len;
8415
8416 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
8417 gdb_assert (len <= oldlen);
8418 }
8419
8420 do_cleanups (old_chain);
8421
8422 /* This goes through the topmost target again. */
8423 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
8424 len, unit_size, xfered_len);
8425 if (res == TARGET_XFER_OK)
8426 return TARGET_XFER_OK;
8427 else
8428 {
8429 /* No use trying further, we know some memory starting
8430 at MEMADDR isn't available. */
8431 *xfered_len = len;
8432 return TARGET_XFER_UNAVAILABLE;
8433 }
8434 }
8435
8436 /* Don't try to read more than how much is available, in
8437 case the target implements the deprecated QTro packet to
8438 cater for older GDBs (the target's knowledge of read-only
8439 sections may be outdated by now). */
8440 len = VEC_index (mem_range_s, available, 0)->length;
8441
8442 do_cleanups (old_chain);
8443 }
8444 }
8445
8446 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
8447 }
8448
8449 \f
8450
8451 /* Sends a packet with content determined by the printf format string
8452 FORMAT and the remaining arguments, then gets the reply. Returns
8453 whether the packet was a success, a failure, or unknown. */
8454
8455 static enum packet_result remote_send_printf (const char *format, ...)
8456 ATTRIBUTE_PRINTF (1, 2);
8457
8458 static enum packet_result
8459 remote_send_printf (const char *format, ...)
8460 {
8461 struct remote_state *rs = get_remote_state ();
8462 int max_size = get_remote_packet_size ();
8463 va_list ap;
8464
8465 va_start (ap, format);
8466
8467 rs->buf[0] = '\0';
8468 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
8469 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
8470
8471 if (putpkt (rs->buf) < 0)
8472 error (_("Communication problem with target."));
8473
8474 rs->buf[0] = '\0';
8475 getpkt (&rs->buf, &rs->buf_size, 0);
8476
8477 return packet_check_result (rs->buf);
8478 }
8479
8480 static void
8481 restore_remote_timeout (void *p)
8482 {
8483 int value = *(int *)p;
8484
8485 remote_timeout = value;
8486 }
8487
8488 /* Flash writing can take quite some time. We'll set
8489 effectively infinite timeout for flash operations.
8490 In future, we'll need to decide on a better approach. */
8491 static const int remote_flash_timeout = 1000;
8492
8493 static void
8494 remote_flash_erase (struct target_ops *ops,
8495 ULONGEST address, LONGEST length)
8496 {
8497 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8498 int saved_remote_timeout = remote_timeout;
8499 enum packet_result ret;
8500 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8501 &saved_remote_timeout);
8502
8503 remote_timeout = remote_flash_timeout;
8504
8505 ret = remote_send_printf ("vFlashErase:%s,%s",
8506 phex (address, addr_size),
8507 phex (length, 4));
8508 switch (ret)
8509 {
8510 case PACKET_UNKNOWN:
8511 error (_("Remote target does not support flash erase"));
8512 case PACKET_ERROR:
8513 error (_("Error erasing flash with vFlashErase packet"));
8514 default:
8515 break;
8516 }
8517
8518 do_cleanups (back_to);
8519 }
8520
8521 static enum target_xfer_status
8522 remote_flash_write (struct target_ops *ops, ULONGEST address,
8523 ULONGEST length, ULONGEST *xfered_len,
8524 const gdb_byte *data)
8525 {
8526 int saved_remote_timeout = remote_timeout;
8527 enum target_xfer_status ret;
8528 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8529 &saved_remote_timeout);
8530
8531 remote_timeout = remote_flash_timeout;
8532 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8533 xfered_len,'X', 0);
8534 do_cleanups (back_to);
8535
8536 return ret;
8537 }
8538
8539 static void
8540 remote_flash_done (struct target_ops *ops)
8541 {
8542 int saved_remote_timeout = remote_timeout;
8543 int ret;
8544 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8545 &saved_remote_timeout);
8546
8547 remote_timeout = remote_flash_timeout;
8548 ret = remote_send_printf ("vFlashDone");
8549 do_cleanups (back_to);
8550
8551 switch (ret)
8552 {
8553 case PACKET_UNKNOWN:
8554 error (_("Remote target does not support vFlashDone"));
8555 case PACKET_ERROR:
8556 error (_("Error finishing flash operation"));
8557 default:
8558 break;
8559 }
8560 }
8561
8562 static void
8563 remote_files_info (struct target_ops *ignore)
8564 {
8565 puts_filtered ("Debugging a target over a serial line.\n");
8566 }
8567 \f
8568 /* Stuff for dealing with the packets which are part of this protocol.
8569 See comment at top of file for details. */
8570
8571 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8572 error to higher layers. Called when a serial error is detected.
8573 The exception message is STRING, followed by a colon and a blank,
8574 the system error message for errno at function entry and final dot
8575 for output compatibility with throw_perror_with_name. */
8576
8577 static void
8578 unpush_and_perror (const char *string)
8579 {
8580 int saved_errno = errno;
8581
8582 remote_unpush_target ();
8583 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8584 safe_strerror (saved_errno));
8585 }
8586
8587 /* Read a single character from the remote end. The current quit
8588 handler is overridden to avoid quitting in the middle of packet
8589 sequence, as that would break communication with the remote server.
8590 See remote_serial_quit_handler for more detail. */
8591
8592 static int
8593 readchar (int timeout)
8594 {
8595 int ch;
8596 struct remote_state *rs = get_remote_state ();
8597 struct cleanup *old_chain;
8598
8599 old_chain = make_cleanup_override_quit_handler (remote_serial_quit_handler);
8600
8601 rs->got_ctrlc_during_io = 0;
8602
8603 ch = serial_readchar (rs->remote_desc, timeout);
8604
8605 if (rs->got_ctrlc_during_io)
8606 set_quit_flag ();
8607
8608 do_cleanups (old_chain);
8609
8610 if (ch >= 0)
8611 return ch;
8612
8613 switch ((enum serial_rc) ch)
8614 {
8615 case SERIAL_EOF:
8616 remote_unpush_target ();
8617 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
8618 /* no return */
8619 case SERIAL_ERROR:
8620 unpush_and_perror (_("Remote communication error. "
8621 "Target disconnected."));
8622 /* no return */
8623 case SERIAL_TIMEOUT:
8624 break;
8625 }
8626 return ch;
8627 }
8628
8629 /* Wrapper for serial_write that closes the target and throws if
8630 writing fails. The current quit handler is overridden to avoid
8631 quitting in the middle of packet sequence, as that would break
8632 communication with the remote server. See
8633 remote_serial_quit_handler for more detail. */
8634
8635 static void
8636 remote_serial_write (const char *str, int len)
8637 {
8638 struct remote_state *rs = get_remote_state ();
8639 struct cleanup *old_chain;
8640
8641 old_chain = make_cleanup_override_quit_handler (remote_serial_quit_handler);
8642
8643 rs->got_ctrlc_during_io = 0;
8644
8645 if (serial_write (rs->remote_desc, str, len))
8646 {
8647 unpush_and_perror (_("Remote communication error. "
8648 "Target disconnected."));
8649 }
8650
8651 if (rs->got_ctrlc_during_io)
8652 set_quit_flag ();
8653
8654 do_cleanups (old_chain);
8655 }
8656
8657 /* Send the command in *BUF to the remote machine, and read the reply
8658 into *BUF. Report an error if we get an error reply. Resize
8659 *BUF using xrealloc if necessary to hold the result, and update
8660 *SIZEOF_BUF. */
8661
8662 static void
8663 remote_send (char **buf,
8664 long *sizeof_buf)
8665 {
8666 putpkt (*buf);
8667 getpkt (buf, sizeof_buf, 0);
8668
8669 if ((*buf)[0] == 'E')
8670 error (_("Remote failure reply: %s"), *buf);
8671 }
8672
8673 /* Return a string representing an escaped version of BUF, of len N.
8674 E.g. \n is converted to \\n, \t to \\t, etc. */
8675
8676 static std::string
8677 escape_buffer (const char *buf, int n)
8678 {
8679 string_file stb;
8680
8681 stb.putstrn (buf, n, '\\');
8682 return std::move (stb.string ());
8683 }
8684
8685 /* Display a null-terminated packet on stdout, for debugging, using C
8686 string notation. */
8687
8688 static void
8689 print_packet (const char *buf)
8690 {
8691 puts_filtered ("\"");
8692 fputstr_filtered (buf, '"', gdb_stdout);
8693 puts_filtered ("\"");
8694 }
8695
8696 int
8697 putpkt (const char *buf)
8698 {
8699 return putpkt_binary (buf, strlen (buf));
8700 }
8701
8702 /* Send a packet to the remote machine, with error checking. The data
8703 of the packet is in BUF. The string in BUF can be at most
8704 get_remote_packet_size () - 5 to account for the $, # and checksum,
8705 and for a possible /0 if we are debugging (remote_debug) and want
8706 to print the sent packet as a string. */
8707
8708 static int
8709 putpkt_binary (const char *buf, int cnt)
8710 {
8711 struct remote_state *rs = get_remote_state ();
8712 int i;
8713 unsigned char csum = 0;
8714 char *buf2 = (char *) xmalloc (cnt + 6);
8715 struct cleanup *old_chain = make_cleanup (xfree, buf2);
8716
8717 int ch;
8718 int tcount = 0;
8719 char *p;
8720
8721 /* Catch cases like trying to read memory or listing threads while
8722 we're waiting for a stop reply. The remote server wouldn't be
8723 ready to handle this request, so we'd hang and timeout. We don't
8724 have to worry about this in synchronous mode, because in that
8725 case it's not possible to issue a command while the target is
8726 running. This is not a problem in non-stop mode, because in that
8727 case, the stub is always ready to process serial input. */
8728 if (!target_is_non_stop_p ()
8729 && target_is_async_p ()
8730 && rs->waiting_for_stop_reply)
8731 {
8732 error (_("Cannot execute this command while the target is running.\n"
8733 "Use the \"interrupt\" command to stop the target\n"
8734 "and then try again."));
8735 }
8736
8737 /* We're sending out a new packet. Make sure we don't look at a
8738 stale cached response. */
8739 rs->cached_wait_status = 0;
8740
8741 /* Copy the packet into buffer BUF2, encapsulating it
8742 and giving it a checksum. */
8743
8744 p = buf2;
8745 *p++ = '$';
8746
8747 for (i = 0; i < cnt; i++)
8748 {
8749 csum += buf[i];
8750 *p++ = buf[i];
8751 }
8752 *p++ = '#';
8753 *p++ = tohex ((csum >> 4) & 0xf);
8754 *p++ = tohex (csum & 0xf);
8755
8756 /* Send it over and over until we get a positive ack. */
8757
8758 while (1)
8759 {
8760 int started_error_output = 0;
8761
8762 if (remote_debug)
8763 {
8764 *p = '\0';
8765
8766 int len = (int) (p - buf2);
8767
8768 std::string str
8769 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
8770
8771 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
8772
8773 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
8774 {
8775 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
8776 str.length () - REMOTE_DEBUG_MAX_CHAR);
8777 }
8778
8779 fprintf_unfiltered (gdb_stdlog, "...");
8780
8781 gdb_flush (gdb_stdlog);
8782 }
8783 remote_serial_write (buf2, p - buf2);
8784
8785 /* If this is a no acks version of the remote protocol, send the
8786 packet and move on. */
8787 if (rs->noack_mode)
8788 break;
8789
8790 /* Read until either a timeout occurs (-2) or '+' is read.
8791 Handle any notification that arrives in the mean time. */
8792 while (1)
8793 {
8794 ch = readchar (remote_timeout);
8795
8796 if (remote_debug)
8797 {
8798 switch (ch)
8799 {
8800 case '+':
8801 case '-':
8802 case SERIAL_TIMEOUT:
8803 case '$':
8804 case '%':
8805 if (started_error_output)
8806 {
8807 putchar_unfiltered ('\n');
8808 started_error_output = 0;
8809 }
8810 }
8811 }
8812
8813 switch (ch)
8814 {
8815 case '+':
8816 if (remote_debug)
8817 fprintf_unfiltered (gdb_stdlog, "Ack\n");
8818 do_cleanups (old_chain);
8819 return 1;
8820 case '-':
8821 if (remote_debug)
8822 fprintf_unfiltered (gdb_stdlog, "Nak\n");
8823 /* FALLTHROUGH */
8824 case SERIAL_TIMEOUT:
8825 tcount++;
8826 if (tcount > 3)
8827 {
8828 do_cleanups (old_chain);
8829 return 0;
8830 }
8831 break; /* Retransmit buffer. */
8832 case '$':
8833 {
8834 if (remote_debug)
8835 fprintf_unfiltered (gdb_stdlog,
8836 "Packet instead of Ack, ignoring it\n");
8837 /* It's probably an old response sent because an ACK
8838 was lost. Gobble up the packet and ack it so it
8839 doesn't get retransmitted when we resend this
8840 packet. */
8841 skip_frame ();
8842 remote_serial_write ("+", 1);
8843 continue; /* Now, go look for +. */
8844 }
8845
8846 case '%':
8847 {
8848 int val;
8849
8850 /* If we got a notification, handle it, and go back to looking
8851 for an ack. */
8852 /* We've found the start of a notification. Now
8853 collect the data. */
8854 val = read_frame (&rs->buf, &rs->buf_size);
8855 if (val >= 0)
8856 {
8857 if (remote_debug)
8858 {
8859 std::string str = escape_buffer (rs->buf, val);
8860
8861 fprintf_unfiltered (gdb_stdlog,
8862 " Notification received: %s\n",
8863 str.c_str ());
8864 }
8865 handle_notification (rs->notif_state, rs->buf);
8866 /* We're in sync now, rewait for the ack. */
8867 tcount = 0;
8868 }
8869 else
8870 {
8871 if (remote_debug)
8872 {
8873 if (!started_error_output)
8874 {
8875 started_error_output = 1;
8876 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8877 }
8878 fputc_unfiltered (ch & 0177, gdb_stdlog);
8879 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8880 }
8881 }
8882 continue;
8883 }
8884 /* fall-through */
8885 default:
8886 if (remote_debug)
8887 {
8888 if (!started_error_output)
8889 {
8890 started_error_output = 1;
8891 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8892 }
8893 fputc_unfiltered (ch & 0177, gdb_stdlog);
8894 }
8895 continue;
8896 }
8897 break; /* Here to retransmit. */
8898 }
8899
8900 #if 0
8901 /* This is wrong. If doing a long backtrace, the user should be
8902 able to get out next time we call QUIT, without anything as
8903 violent as interrupt_query. If we want to provide a way out of
8904 here without getting to the next QUIT, it should be based on
8905 hitting ^C twice as in remote_wait. */
8906 if (quit_flag)
8907 {
8908 quit_flag = 0;
8909 interrupt_query ();
8910 }
8911 #endif
8912 }
8913
8914 do_cleanups (old_chain);
8915 return 0;
8916 }
8917
8918 /* Come here after finding the start of a frame when we expected an
8919 ack. Do our best to discard the rest of this packet. */
8920
8921 static void
8922 skip_frame (void)
8923 {
8924 int c;
8925
8926 while (1)
8927 {
8928 c = readchar (remote_timeout);
8929 switch (c)
8930 {
8931 case SERIAL_TIMEOUT:
8932 /* Nothing we can do. */
8933 return;
8934 case '#':
8935 /* Discard the two bytes of checksum and stop. */
8936 c = readchar (remote_timeout);
8937 if (c >= 0)
8938 c = readchar (remote_timeout);
8939
8940 return;
8941 case '*': /* Run length encoding. */
8942 /* Discard the repeat count. */
8943 c = readchar (remote_timeout);
8944 if (c < 0)
8945 return;
8946 break;
8947 default:
8948 /* A regular character. */
8949 break;
8950 }
8951 }
8952 }
8953
8954 /* Come here after finding the start of the frame. Collect the rest
8955 into *BUF, verifying the checksum, length, and handling run-length
8956 compression. NUL terminate the buffer. If there is not enough room,
8957 expand *BUF using xrealloc.
8958
8959 Returns -1 on error, number of characters in buffer (ignoring the
8960 trailing NULL) on success. (could be extended to return one of the
8961 SERIAL status indications). */
8962
8963 static long
8964 read_frame (char **buf_p,
8965 long *sizeof_buf)
8966 {
8967 unsigned char csum;
8968 long bc;
8969 int c;
8970 char *buf = *buf_p;
8971 struct remote_state *rs = get_remote_state ();
8972
8973 csum = 0;
8974 bc = 0;
8975
8976 while (1)
8977 {
8978 c = readchar (remote_timeout);
8979 switch (c)
8980 {
8981 case SERIAL_TIMEOUT:
8982 if (remote_debug)
8983 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
8984 return -1;
8985 case '$':
8986 if (remote_debug)
8987 fputs_filtered ("Saw new packet start in middle of old one\n",
8988 gdb_stdlog);
8989 return -1; /* Start a new packet, count retries. */
8990 case '#':
8991 {
8992 unsigned char pktcsum;
8993 int check_0 = 0;
8994 int check_1 = 0;
8995
8996 buf[bc] = '\0';
8997
8998 check_0 = readchar (remote_timeout);
8999 if (check_0 >= 0)
9000 check_1 = readchar (remote_timeout);
9001
9002 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9003 {
9004 if (remote_debug)
9005 fputs_filtered ("Timeout in checksum, retrying\n",
9006 gdb_stdlog);
9007 return -1;
9008 }
9009 else if (check_0 < 0 || check_1 < 0)
9010 {
9011 if (remote_debug)
9012 fputs_filtered ("Communication error in checksum\n",
9013 gdb_stdlog);
9014 return -1;
9015 }
9016
9017 /* Don't recompute the checksum; with no ack packets we
9018 don't have any way to indicate a packet retransmission
9019 is necessary. */
9020 if (rs->noack_mode)
9021 return bc;
9022
9023 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
9024 if (csum == pktcsum)
9025 return bc;
9026
9027 if (remote_debug)
9028 {
9029 std::string str = escape_buffer (buf, bc);
9030
9031 fprintf_unfiltered (gdb_stdlog,
9032 "Bad checksum, sentsum=0x%x, "
9033 "csum=0x%x, buf=%s\n",
9034 pktcsum, csum, str.c_str ());
9035 }
9036 /* Number of characters in buffer ignoring trailing
9037 NULL. */
9038 return -1;
9039 }
9040 case '*': /* Run length encoding. */
9041 {
9042 int repeat;
9043
9044 csum += c;
9045 c = readchar (remote_timeout);
9046 csum += c;
9047 repeat = c - ' ' + 3; /* Compute repeat count. */
9048
9049 /* The character before ``*'' is repeated. */
9050
9051 if (repeat > 0 && repeat <= 255 && bc > 0)
9052 {
9053 if (bc + repeat - 1 >= *sizeof_buf - 1)
9054 {
9055 /* Make some more room in the buffer. */
9056 *sizeof_buf += repeat;
9057 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
9058 buf = *buf_p;
9059 }
9060
9061 memset (&buf[bc], buf[bc - 1], repeat);
9062 bc += repeat;
9063 continue;
9064 }
9065
9066 buf[bc] = '\0';
9067 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
9068 return -1;
9069 }
9070 default:
9071 if (bc >= *sizeof_buf - 1)
9072 {
9073 /* Make some more room in the buffer. */
9074 *sizeof_buf *= 2;
9075 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
9076 buf = *buf_p;
9077 }
9078
9079 buf[bc++] = c;
9080 csum += c;
9081 continue;
9082 }
9083 }
9084 }
9085
9086 /* Read a packet from the remote machine, with error checking, and
9087 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9088 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9089 rather than timing out; this is used (in synchronous mode) to wait
9090 for a target that is is executing user code to stop. */
9091 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9092 don't have to change all the calls to getpkt to deal with the
9093 return value, because at the moment I don't know what the right
9094 thing to do it for those. */
9095 void
9096 getpkt (char **buf,
9097 long *sizeof_buf,
9098 int forever)
9099 {
9100 getpkt_sane (buf, sizeof_buf, forever);
9101 }
9102
9103
9104 /* Read a packet from the remote machine, with error checking, and
9105 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9106 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9107 rather than timing out; this is used (in synchronous mode) to wait
9108 for a target that is is executing user code to stop. If FOREVER ==
9109 0, this function is allowed to time out gracefully and return an
9110 indication of this to the caller. Otherwise return the number of
9111 bytes read. If EXPECTING_NOTIF, consider receiving a notification
9112 enough reason to return to the caller. *IS_NOTIF is an output
9113 boolean that indicates whether *BUF holds a notification or not
9114 (a regular packet). */
9115
9116 static int
9117 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
9118 int expecting_notif, int *is_notif)
9119 {
9120 struct remote_state *rs = get_remote_state ();
9121 int c;
9122 int tries;
9123 int timeout;
9124 int val = -1;
9125
9126 /* We're reading a new response. Make sure we don't look at a
9127 previously cached response. */
9128 rs->cached_wait_status = 0;
9129
9130 strcpy (*buf, "timeout");
9131
9132 if (forever)
9133 timeout = watchdog > 0 ? watchdog : -1;
9134 else if (expecting_notif)
9135 timeout = 0; /* There should already be a char in the buffer. If
9136 not, bail out. */
9137 else
9138 timeout = remote_timeout;
9139
9140 #define MAX_TRIES 3
9141
9142 /* Process any number of notifications, and then return when
9143 we get a packet. */
9144 for (;;)
9145 {
9146 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
9147 times. */
9148 for (tries = 1; tries <= MAX_TRIES; tries++)
9149 {
9150 /* This can loop forever if the remote side sends us
9151 characters continuously, but if it pauses, we'll get
9152 SERIAL_TIMEOUT from readchar because of timeout. Then
9153 we'll count that as a retry.
9154
9155 Note that even when forever is set, we will only wait
9156 forever prior to the start of a packet. After that, we
9157 expect characters to arrive at a brisk pace. They should
9158 show up within remote_timeout intervals. */
9159 do
9160 c = readchar (timeout);
9161 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
9162
9163 if (c == SERIAL_TIMEOUT)
9164 {
9165 if (expecting_notif)
9166 return -1; /* Don't complain, it's normal to not get
9167 anything in this case. */
9168
9169 if (forever) /* Watchdog went off? Kill the target. */
9170 {
9171 remote_unpush_target ();
9172 throw_error (TARGET_CLOSE_ERROR,
9173 _("Watchdog timeout has expired. "
9174 "Target detached."));
9175 }
9176 if (remote_debug)
9177 fputs_filtered ("Timed out.\n", gdb_stdlog);
9178 }
9179 else
9180 {
9181 /* We've found the start of a packet or notification.
9182 Now collect the data. */
9183 val = read_frame (buf, sizeof_buf);
9184 if (val >= 0)
9185 break;
9186 }
9187
9188 remote_serial_write ("-", 1);
9189 }
9190
9191 if (tries > MAX_TRIES)
9192 {
9193 /* We have tried hard enough, and just can't receive the
9194 packet/notification. Give up. */
9195 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
9196
9197 /* Skip the ack char if we're in no-ack mode. */
9198 if (!rs->noack_mode)
9199 remote_serial_write ("+", 1);
9200 return -1;
9201 }
9202
9203 /* If we got an ordinary packet, return that to our caller. */
9204 if (c == '$')
9205 {
9206 if (remote_debug)
9207 {
9208 std::string str
9209 = escape_buffer (*buf,
9210 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9211
9212 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9213 str.c_str ());
9214
9215 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
9216 {
9217 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
9218 str.length () - REMOTE_DEBUG_MAX_CHAR);
9219 }
9220
9221 fprintf_unfiltered (gdb_stdlog, "\n");
9222 }
9223
9224 /* Skip the ack char if we're in no-ack mode. */
9225 if (!rs->noack_mode)
9226 remote_serial_write ("+", 1);
9227 if (is_notif != NULL)
9228 *is_notif = 0;
9229 return val;
9230 }
9231
9232 /* If we got a notification, handle it, and go back to looking
9233 for a packet. */
9234 else
9235 {
9236 gdb_assert (c == '%');
9237
9238 if (remote_debug)
9239 {
9240 std::string str = escape_buffer (*buf, val);
9241
9242 fprintf_unfiltered (gdb_stdlog,
9243 " Notification received: %s\n",
9244 str.c_str ());
9245 }
9246 if (is_notif != NULL)
9247 *is_notif = 1;
9248
9249 handle_notification (rs->notif_state, *buf);
9250
9251 /* Notifications require no acknowledgement. */
9252
9253 if (expecting_notif)
9254 return val;
9255 }
9256 }
9257 }
9258
9259 static int
9260 getpkt_sane (char **buf, long *sizeof_buf, int forever)
9261 {
9262 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
9263 }
9264
9265 static int
9266 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9267 int *is_notif)
9268 {
9269 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9270 is_notif);
9271 }
9272
9273 /* Check whether EVENT is a fork event for the process specified
9274 by the pid passed in DATA, and if it is, kill the fork child. */
9275
9276 static int
9277 kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
9278 QUEUE_ITER (stop_reply_p) *iter,
9279 stop_reply_p event,
9280 void *data)
9281 {
9282 struct queue_iter_param *param = (struct queue_iter_param *) data;
9283 int parent_pid = *(int *) param->input;
9284
9285 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
9286 {
9287 struct remote_state *rs = get_remote_state ();
9288 int child_pid = ptid_get_pid (event->ws.value.related_pid);
9289 int res;
9290
9291 res = remote_vkill (child_pid, rs);
9292 if (res != 0)
9293 error (_("Can't kill fork child process %d"), child_pid);
9294 }
9295
9296 return 1;
9297 }
9298
9299 /* Kill any new fork children of process PID that haven't been
9300 processed by follow_fork. */
9301
9302 static void
9303 kill_new_fork_children (int pid, struct remote_state *rs)
9304 {
9305 struct thread_info *thread;
9306 struct notif_client *notif = &notif_client_stop;
9307 struct queue_iter_param param;
9308
9309 /* Kill the fork child threads of any threads in process PID
9310 that are stopped at a fork event. */
9311 ALL_NON_EXITED_THREADS (thread)
9312 {
9313 struct target_waitstatus *ws = &thread->pending_follow;
9314
9315 if (is_pending_fork_parent (ws, pid, thread->ptid))
9316 {
9317 struct remote_state *rs = get_remote_state ();
9318 int child_pid = ptid_get_pid (ws->value.related_pid);
9319 int res;
9320
9321 res = remote_vkill (child_pid, rs);
9322 if (res != 0)
9323 error (_("Can't kill fork child process %d"), child_pid);
9324 }
9325 }
9326
9327 /* Check for any pending fork events (not reported or processed yet)
9328 in process PID and kill those fork child threads as well. */
9329 remote_notif_get_pending_events (notif);
9330 param.input = &pid;
9331 param.output = NULL;
9332 QUEUE_iterate (stop_reply_p, stop_reply_queue,
9333 kill_child_of_pending_fork, &param);
9334 }
9335
9336 \f
9337 /* Target hook to kill the current inferior. */
9338
9339 static void
9340 remote_kill (struct target_ops *ops)
9341 {
9342 int res = -1;
9343 int pid = ptid_get_pid (inferior_ptid);
9344 struct remote_state *rs = get_remote_state ();
9345
9346 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
9347 {
9348 /* If we're stopped while forking and we haven't followed yet,
9349 kill the child task. We need to do this before killing the
9350 parent task because if this is a vfork then the parent will
9351 be sleeping. */
9352 kill_new_fork_children (pid, rs);
9353
9354 res = remote_vkill (pid, rs);
9355 if (res == 0)
9356 {
9357 target_mourn_inferior (inferior_ptid);
9358 return;
9359 }
9360 }
9361
9362 /* If we are in 'target remote' mode and we are killing the only
9363 inferior, then we will tell gdbserver to exit and unpush the
9364 target. */
9365 if (res == -1 && !remote_multi_process_p (rs)
9366 && number_of_live_inferiors () == 1)
9367 {
9368 remote_kill_k ();
9369
9370 /* We've killed the remote end, we get to mourn it. If we are
9371 not in extended mode, mourning the inferior also unpushes
9372 remote_ops from the target stack, which closes the remote
9373 connection. */
9374 target_mourn_inferior (inferior_ptid);
9375
9376 return;
9377 }
9378
9379 error (_("Can't kill process"));
9380 }
9381
9382 /* Send a kill request to the target using the 'vKill' packet. */
9383
9384 static int
9385 remote_vkill (int pid, struct remote_state *rs)
9386 {
9387 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
9388 return -1;
9389
9390 /* Tell the remote target to detach. */
9391 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
9392 putpkt (rs->buf);
9393 getpkt (&rs->buf, &rs->buf_size, 0);
9394
9395 switch (packet_ok (rs->buf,
9396 &remote_protocol_packets[PACKET_vKill]))
9397 {
9398 case PACKET_OK:
9399 return 0;
9400 case PACKET_ERROR:
9401 return 1;
9402 case PACKET_UNKNOWN:
9403 return -1;
9404 default:
9405 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9406 }
9407 }
9408
9409 /* Send a kill request to the target using the 'k' packet. */
9410
9411 static void
9412 remote_kill_k (void)
9413 {
9414 /* Catch errors so the user can quit from gdb even when we
9415 aren't on speaking terms with the remote system. */
9416 TRY
9417 {
9418 putpkt ("k");
9419 }
9420 CATCH (ex, RETURN_MASK_ERROR)
9421 {
9422 if (ex.error == TARGET_CLOSE_ERROR)
9423 {
9424 /* If we got an (EOF) error that caused the target
9425 to go away, then we're done, that's what we wanted.
9426 "k" is susceptible to cause a premature EOF, given
9427 that the remote server isn't actually required to
9428 reply to "k", and it can happen that it doesn't
9429 even get to reply ACK to the "k". */
9430 return;
9431 }
9432
9433 /* Otherwise, something went wrong. We didn't actually kill
9434 the target. Just propagate the exception, and let the
9435 user or higher layers decide what to do. */
9436 throw_exception (ex);
9437 }
9438 END_CATCH
9439 }
9440
9441 static void
9442 remote_mourn (struct target_ops *target)
9443 {
9444 struct remote_state *rs = get_remote_state ();
9445
9446 /* In 'target remote' mode with one inferior, we close the connection. */
9447 if (!rs->extended && number_of_live_inferiors () <= 1)
9448 {
9449 unpush_target (target);
9450
9451 /* remote_close takes care of doing most of the clean up. */
9452 generic_mourn_inferior ();
9453 return;
9454 }
9455
9456 /* In case we got here due to an error, but we're going to stay
9457 connected. */
9458 rs->waiting_for_stop_reply = 0;
9459
9460 /* If the current general thread belonged to the process we just
9461 detached from or has exited, the remote side current general
9462 thread becomes undefined. Considering a case like this:
9463
9464 - We just got here due to a detach.
9465 - The process that we're detaching from happens to immediately
9466 report a global breakpoint being hit in non-stop mode, in the
9467 same thread we had selected before.
9468 - GDB attaches to this process again.
9469 - This event happens to be the next event we handle.
9470
9471 GDB would consider that the current general thread didn't need to
9472 be set on the stub side (with Hg), since for all it knew,
9473 GENERAL_THREAD hadn't changed.
9474
9475 Notice that although in all-stop mode, the remote server always
9476 sets the current thread to the thread reporting the stop event,
9477 that doesn't happen in non-stop mode; in non-stop, the stub *must
9478 not* change the current thread when reporting a breakpoint hit,
9479 due to the decoupling of event reporting and event handling.
9480
9481 To keep things simple, we always invalidate our notion of the
9482 current thread. */
9483 record_currthread (rs, minus_one_ptid);
9484
9485 /* Call common code to mark the inferior as not running. */
9486 generic_mourn_inferior ();
9487
9488 if (!have_inferiors ())
9489 {
9490 if (!remote_multi_process_p (rs))
9491 {
9492 /* Check whether the target is running now - some remote stubs
9493 automatically restart after kill. */
9494 putpkt ("?");
9495 getpkt (&rs->buf, &rs->buf_size, 0);
9496
9497 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9498 {
9499 /* Assume that the target has been restarted. Set
9500 inferior_ptid so that bits of core GDB realizes
9501 there's something here, e.g., so that the user can
9502 say "kill" again. */
9503 inferior_ptid = magic_null_ptid;
9504 }
9505 }
9506 }
9507 }
9508
9509 static int
9510 extended_remote_supports_disable_randomization (struct target_ops *self)
9511 {
9512 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
9513 }
9514
9515 static void
9516 extended_remote_disable_randomization (int val)
9517 {
9518 struct remote_state *rs = get_remote_state ();
9519 char *reply;
9520
9521 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9522 val);
9523 putpkt (rs->buf);
9524 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
9525 if (*reply == '\0')
9526 error (_("Target does not support QDisableRandomization."));
9527 if (strcmp (reply, "OK") != 0)
9528 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9529 }
9530
9531 static int
9532 extended_remote_run (const std::string &args)
9533 {
9534 struct remote_state *rs = get_remote_state ();
9535 int len;
9536 const char *remote_exec_file = get_remote_exec_file ();
9537
9538 /* If the user has disabled vRun support, or we have detected that
9539 support is not available, do not try it. */
9540 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
9541 return -1;
9542
9543 strcpy (rs->buf, "vRun;");
9544 len = strlen (rs->buf);
9545
9546 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9547 error (_("Remote file name too long for run packet"));
9548 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9549 strlen (remote_exec_file));
9550
9551 if (!args.empty ())
9552 {
9553 struct cleanup *back_to;
9554 int i;
9555 char **argv;
9556
9557 argv = gdb_buildargv (args.c_str ());
9558 back_to = make_cleanup_freeargv (argv);
9559 for (i = 0; argv[i] != NULL; i++)
9560 {
9561 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9562 error (_("Argument list too long for run packet"));
9563 rs->buf[len++] = ';';
9564 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9565 strlen (argv[i]));
9566 }
9567 do_cleanups (back_to);
9568 }
9569
9570 rs->buf[len++] = '\0';
9571
9572 putpkt (rs->buf);
9573 getpkt (&rs->buf, &rs->buf_size, 0);
9574
9575 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
9576 {
9577 case PACKET_OK:
9578 /* We have a wait response. All is well. */
9579 return 0;
9580 case PACKET_UNKNOWN:
9581 return -1;
9582 case PACKET_ERROR:
9583 if (remote_exec_file[0] == '\0')
9584 error (_("Running the default executable on the remote target failed; "
9585 "try \"set remote exec-file\"?"));
9586 else
9587 error (_("Running \"%s\" on the remote target failed"),
9588 remote_exec_file);
9589 default:
9590 gdb_assert_not_reached (_("bad switch"));
9591 }
9592 }
9593
9594 /* In the extended protocol we want to be able to do things like
9595 "run" and have them basically work as expected. So we need
9596 a special create_inferior function. We support changing the
9597 executable file and the command line arguments, but not the
9598 environment. */
9599
9600 static void
9601 extended_remote_create_inferior (struct target_ops *ops,
9602 const char *exec_file,
9603 const std::string &args,
9604 char **env, int from_tty)
9605 {
9606 int run_worked;
9607 char *stop_reply;
9608 struct remote_state *rs = get_remote_state ();
9609 const char *remote_exec_file = get_remote_exec_file ();
9610
9611 /* If running asynchronously, register the target file descriptor
9612 with the event loop. */
9613 if (target_can_async_p ())
9614 target_async (1);
9615
9616 /* Disable address space randomization if requested (and supported). */
9617 if (extended_remote_supports_disable_randomization (ops))
9618 extended_remote_disable_randomization (disable_randomization);
9619
9620 /* If startup-with-shell is on, we inform gdbserver to start the
9621 remote inferior using a shell. */
9622 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
9623 {
9624 xsnprintf (rs->buf, get_remote_packet_size (),
9625 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
9626 putpkt (rs->buf);
9627 getpkt (&rs->buf, &rs->buf_size, 0);
9628 if (strcmp (rs->buf, "OK") != 0)
9629 error (_("\
9630 Remote replied unexpectedly while setting startup-with-shell: %s"),
9631 rs->buf);
9632 }
9633
9634 /* Now restart the remote server. */
9635 run_worked = extended_remote_run (args) != -1;
9636 if (!run_worked)
9637 {
9638 /* vRun was not supported. Fail if we need it to do what the
9639 user requested. */
9640 if (remote_exec_file[0])
9641 error (_("Remote target does not support \"set remote exec-file\""));
9642 if (!args.empty ())
9643 error (_("Remote target does not support \"set args\" or run <ARGS>"));
9644
9645 /* Fall back to "R". */
9646 extended_remote_restart ();
9647 }
9648
9649 if (!have_inferiors ())
9650 {
9651 /* Clean up from the last time we ran, before we mark the target
9652 running again. This will mark breakpoints uninserted, and
9653 get_offsets may insert breakpoints. */
9654 init_thread_list ();
9655 init_wait_for_inferior ();
9656 }
9657
9658 /* vRun's success return is a stop reply. */
9659 stop_reply = run_worked ? rs->buf : NULL;
9660 add_current_inferior_and_thread (stop_reply);
9661
9662 /* Get updated offsets, if the stub uses qOffsets. */
9663 get_offsets ();
9664 }
9665 \f
9666
9667 /* Given a location's target info BP_TGT and the packet buffer BUF, output
9668 the list of conditions (in agent expression bytecode format), if any, the
9669 target needs to evaluate. The output is placed into the packet buffer
9670 started from BUF and ended at BUF_END. */
9671
9672 static int
9673 remote_add_target_side_condition (struct gdbarch *gdbarch,
9674 struct bp_target_info *bp_tgt, char *buf,
9675 char *buf_end)
9676 {
9677 if (bp_tgt->conditions.empty ())
9678 return 0;
9679
9680 buf += strlen (buf);
9681 xsnprintf (buf, buf_end - buf, "%s", ";");
9682 buf++;
9683
9684 /* Send conditions to the target. */
9685 for (agent_expr *aexpr : bp_tgt->conditions)
9686 {
9687 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
9688 buf += strlen (buf);
9689 for (int i = 0; i < aexpr->len; ++i)
9690 buf = pack_hex_byte (buf, aexpr->buf[i]);
9691 *buf = '\0';
9692 }
9693 return 0;
9694 }
9695
9696 static void
9697 remote_add_target_side_commands (struct gdbarch *gdbarch,
9698 struct bp_target_info *bp_tgt, char *buf)
9699 {
9700 if (bp_tgt->tcommands.empty ())
9701 return;
9702
9703 buf += strlen (buf);
9704
9705 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9706 buf += strlen (buf);
9707
9708 /* Concatenate all the agent expressions that are commands into the
9709 cmds parameter. */
9710 for (agent_expr *aexpr : bp_tgt->tcommands)
9711 {
9712 sprintf (buf, "X%x,", aexpr->len);
9713 buf += strlen (buf);
9714 for (int i = 0; i < aexpr->len; ++i)
9715 buf = pack_hex_byte (buf, aexpr->buf[i]);
9716 *buf = '\0';
9717 }
9718 }
9719
9720 /* Insert a breakpoint. On targets that have software breakpoint
9721 support, we ask the remote target to do the work; on targets
9722 which don't, we insert a traditional memory breakpoint. */
9723
9724 static int
9725 remote_insert_breakpoint (struct target_ops *ops,
9726 struct gdbarch *gdbarch,
9727 struct bp_target_info *bp_tgt)
9728 {
9729 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9730 If it succeeds, then set the support to PACKET_ENABLE. If it
9731 fails, and the user has explicitly requested the Z support then
9732 report an error, otherwise, mark it disabled and go on. */
9733
9734 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
9735 {
9736 CORE_ADDR addr = bp_tgt->reqstd_address;
9737 struct remote_state *rs;
9738 char *p, *endbuf;
9739 int bpsize;
9740
9741 /* Make sure the remote is pointing at the right process, if
9742 necessary. */
9743 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9744 set_general_process ();
9745
9746 rs = get_remote_state ();
9747 p = rs->buf;
9748 endbuf = rs->buf + get_remote_packet_size ();
9749
9750 *(p++) = 'Z';
9751 *(p++) = '0';
9752 *(p++) = ',';
9753 addr = (ULONGEST) remote_address_masked (addr);
9754 p += hexnumstr (p, addr);
9755 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
9756
9757 if (remote_supports_cond_breakpoints (ops))
9758 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
9759
9760 if (remote_can_run_breakpoint_commands (ops))
9761 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9762
9763 putpkt (rs->buf);
9764 getpkt (&rs->buf, &rs->buf_size, 0);
9765
9766 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
9767 {
9768 case PACKET_ERROR:
9769 return -1;
9770 case PACKET_OK:
9771 return 0;
9772 case PACKET_UNKNOWN:
9773 break;
9774 }
9775 }
9776
9777 /* If this breakpoint has target-side commands but this stub doesn't
9778 support Z0 packets, throw error. */
9779 if (!bp_tgt->tcommands.empty ())
9780 throw_error (NOT_SUPPORTED_ERROR, _("\
9781 Target doesn't support breakpoints that have target side commands."));
9782
9783 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
9784 }
9785
9786 static int
9787 remote_remove_breakpoint (struct target_ops *ops,
9788 struct gdbarch *gdbarch,
9789 struct bp_target_info *bp_tgt,
9790 enum remove_bp_reason reason)
9791 {
9792 CORE_ADDR addr = bp_tgt->placed_address;
9793 struct remote_state *rs = get_remote_state ();
9794
9795 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
9796 {
9797 char *p = rs->buf;
9798 char *endbuf = rs->buf + get_remote_packet_size ();
9799
9800 /* Make sure the remote is pointing at the right process, if
9801 necessary. */
9802 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9803 set_general_process ();
9804
9805 *(p++) = 'z';
9806 *(p++) = '0';
9807 *(p++) = ',';
9808
9809 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9810 p += hexnumstr (p, addr);
9811 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
9812
9813 putpkt (rs->buf);
9814 getpkt (&rs->buf, &rs->buf_size, 0);
9815
9816 return (rs->buf[0] == 'E');
9817 }
9818
9819 return memory_remove_breakpoint (ops, gdbarch, bp_tgt, reason);
9820 }
9821
9822 static enum Z_packet_type
9823 watchpoint_to_Z_packet (int type)
9824 {
9825 switch (type)
9826 {
9827 case hw_write:
9828 return Z_PACKET_WRITE_WP;
9829 break;
9830 case hw_read:
9831 return Z_PACKET_READ_WP;
9832 break;
9833 case hw_access:
9834 return Z_PACKET_ACCESS_WP;
9835 break;
9836 default:
9837 internal_error (__FILE__, __LINE__,
9838 _("hw_bp_to_z: bad watchpoint type %d"), type);
9839 }
9840 }
9841
9842 static int
9843 remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9844 enum target_hw_bp_type type, struct expression *cond)
9845 {
9846 struct remote_state *rs = get_remote_state ();
9847 char *endbuf = rs->buf + get_remote_packet_size ();
9848 char *p;
9849 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9850
9851 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
9852 return 1;
9853
9854 /* Make sure the remote is pointing at the right process, if
9855 necessary. */
9856 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9857 set_general_process ();
9858
9859 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
9860 p = strchr (rs->buf, '\0');
9861 addr = remote_address_masked (addr);
9862 p += hexnumstr (p, (ULONGEST) addr);
9863 xsnprintf (p, endbuf - p, ",%x", len);
9864
9865 putpkt (rs->buf);
9866 getpkt (&rs->buf, &rs->buf_size, 0);
9867
9868 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
9869 {
9870 case PACKET_ERROR:
9871 return -1;
9872 case PACKET_UNKNOWN:
9873 return 1;
9874 case PACKET_OK:
9875 return 0;
9876 }
9877 internal_error (__FILE__, __LINE__,
9878 _("remote_insert_watchpoint: reached end of function"));
9879 }
9880
9881 static int
9882 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9883 CORE_ADDR start, int length)
9884 {
9885 CORE_ADDR diff = remote_address_masked (addr - start);
9886
9887 return diff < length;
9888 }
9889
9890
9891 static int
9892 remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9893 enum target_hw_bp_type type, struct expression *cond)
9894 {
9895 struct remote_state *rs = get_remote_state ();
9896 char *endbuf = rs->buf + get_remote_packet_size ();
9897 char *p;
9898 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9899
9900 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
9901 return -1;
9902
9903 /* Make sure the remote is pointing at the right process, if
9904 necessary. */
9905 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9906 set_general_process ();
9907
9908 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
9909 p = strchr (rs->buf, '\0');
9910 addr = remote_address_masked (addr);
9911 p += hexnumstr (p, (ULONGEST) addr);
9912 xsnprintf (p, endbuf - p, ",%x", len);
9913 putpkt (rs->buf);
9914 getpkt (&rs->buf, &rs->buf_size, 0);
9915
9916 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
9917 {
9918 case PACKET_ERROR:
9919 case PACKET_UNKNOWN:
9920 return -1;
9921 case PACKET_OK:
9922 return 0;
9923 }
9924 internal_error (__FILE__, __LINE__,
9925 _("remote_remove_watchpoint: reached end of function"));
9926 }
9927
9928
9929 int remote_hw_watchpoint_limit = -1;
9930 int remote_hw_watchpoint_length_limit = -1;
9931 int remote_hw_breakpoint_limit = -1;
9932
9933 static int
9934 remote_region_ok_for_hw_watchpoint (struct target_ops *self,
9935 CORE_ADDR addr, int len)
9936 {
9937 if (remote_hw_watchpoint_length_limit == 0)
9938 return 0;
9939 else if (remote_hw_watchpoint_length_limit < 0)
9940 return 1;
9941 else if (len <= remote_hw_watchpoint_length_limit)
9942 return 1;
9943 else
9944 return 0;
9945 }
9946
9947 static int
9948 remote_check_watch_resources (struct target_ops *self,
9949 enum bptype type, int cnt, int ot)
9950 {
9951 if (type == bp_hardware_breakpoint)
9952 {
9953 if (remote_hw_breakpoint_limit == 0)
9954 return 0;
9955 else if (remote_hw_breakpoint_limit < 0)
9956 return 1;
9957 else if (cnt <= remote_hw_breakpoint_limit)
9958 return 1;
9959 }
9960 else
9961 {
9962 if (remote_hw_watchpoint_limit == 0)
9963 return 0;
9964 else if (remote_hw_watchpoint_limit < 0)
9965 return 1;
9966 else if (ot)
9967 return -1;
9968 else if (cnt <= remote_hw_watchpoint_limit)
9969 return 1;
9970 }
9971 return -1;
9972 }
9973
9974 /* The to_stopped_by_sw_breakpoint method of target remote. */
9975
9976 static int
9977 remote_stopped_by_sw_breakpoint (struct target_ops *ops)
9978 {
9979 struct thread_info *thread = inferior_thread ();
9980
9981 return (thread->priv != NULL
9982 && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT);
9983 }
9984
9985 /* The to_supports_stopped_by_sw_breakpoint method of target
9986 remote. */
9987
9988 static int
9989 remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
9990 {
9991 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
9992 }
9993
9994 /* The to_stopped_by_hw_breakpoint method of target remote. */
9995
9996 static int
9997 remote_stopped_by_hw_breakpoint (struct target_ops *ops)
9998 {
9999 struct thread_info *thread = inferior_thread ();
10000
10001 return (thread->priv != NULL
10002 && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT);
10003 }
10004
10005 /* The to_supports_stopped_by_hw_breakpoint method of target
10006 remote. */
10007
10008 static int
10009 remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
10010 {
10011 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10012 }
10013
10014 static int
10015 remote_stopped_by_watchpoint (struct target_ops *ops)
10016 {
10017 struct thread_info *thread = inferior_thread ();
10018
10019 return (thread->priv != NULL
10020 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT);
10021 }
10022
10023 static int
10024 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
10025 {
10026 struct thread_info *thread = inferior_thread ();
10027
10028 if (thread->priv != NULL
10029 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
10030 {
10031 *addr_p = thread->priv->watch_data_address;
10032 return 1;
10033 }
10034
10035 return 0;
10036 }
10037
10038
10039 static int
10040 remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
10041 struct bp_target_info *bp_tgt)
10042 {
10043 CORE_ADDR addr = bp_tgt->reqstd_address;
10044 struct remote_state *rs;
10045 char *p, *endbuf;
10046 char *message;
10047
10048 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10049 return -1;
10050
10051 /* Make sure the remote is pointing at the right process, if
10052 necessary. */
10053 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10054 set_general_process ();
10055
10056 rs = get_remote_state ();
10057 p = rs->buf;
10058 endbuf = rs->buf + get_remote_packet_size ();
10059
10060 *(p++) = 'Z';
10061 *(p++) = '1';
10062 *(p++) = ',';
10063
10064 addr = remote_address_masked (addr);
10065 p += hexnumstr (p, (ULONGEST) addr);
10066 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10067
10068 if (remote_supports_cond_breakpoints (self))
10069 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
10070
10071 if (remote_can_run_breakpoint_commands (self))
10072 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10073
10074 putpkt (rs->buf);
10075 getpkt (&rs->buf, &rs->buf_size, 0);
10076
10077 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10078 {
10079 case PACKET_ERROR:
10080 if (rs->buf[1] == '.')
10081 {
10082 message = strchr (rs->buf + 2, '.');
10083 if (message)
10084 error (_("Remote failure reply: %s"), message + 1);
10085 }
10086 return -1;
10087 case PACKET_UNKNOWN:
10088 return -1;
10089 case PACKET_OK:
10090 return 0;
10091 }
10092 internal_error (__FILE__, __LINE__,
10093 _("remote_insert_hw_breakpoint: reached end of function"));
10094 }
10095
10096
10097 static int
10098 remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
10099 struct bp_target_info *bp_tgt)
10100 {
10101 CORE_ADDR addr;
10102 struct remote_state *rs = get_remote_state ();
10103 char *p = rs->buf;
10104 char *endbuf = rs->buf + get_remote_packet_size ();
10105
10106 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
10107 return -1;
10108
10109 /* Make sure the remote is pointing at the right process, if
10110 necessary. */
10111 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10112 set_general_process ();
10113
10114 *(p++) = 'z';
10115 *(p++) = '1';
10116 *(p++) = ',';
10117
10118 addr = remote_address_masked (bp_tgt->placed_address);
10119 p += hexnumstr (p, (ULONGEST) addr);
10120 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
10121
10122 putpkt (rs->buf);
10123 getpkt (&rs->buf, &rs->buf_size, 0);
10124
10125 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
10126 {
10127 case PACKET_ERROR:
10128 case PACKET_UNKNOWN:
10129 return -1;
10130 case PACKET_OK:
10131 return 0;
10132 }
10133 internal_error (__FILE__, __LINE__,
10134 _("remote_remove_hw_breakpoint: reached end of function"));
10135 }
10136
10137 /* Verify memory using the "qCRC:" request. */
10138
10139 static int
10140 remote_verify_memory (struct target_ops *ops,
10141 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10142 {
10143 struct remote_state *rs = get_remote_state ();
10144 unsigned long host_crc, target_crc;
10145 char *tmp;
10146
10147 /* It doesn't make sense to use qCRC if the remote target is
10148 connected but not running. */
10149 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10150 {
10151 enum packet_result result;
10152
10153 /* Make sure the remote is pointing at the right process. */
10154 set_general_process ();
10155
10156 /* FIXME: assumes lma can fit into long. */
10157 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10158 (long) lma, (long) size);
10159 putpkt (rs->buf);
10160
10161 /* Be clever; compute the host_crc before waiting for target
10162 reply. */
10163 host_crc = xcrc32 (data, size, 0xffffffff);
10164
10165 getpkt (&rs->buf, &rs->buf_size, 0);
10166
10167 result = packet_ok (rs->buf,
10168 &remote_protocol_packets[PACKET_qCRC]);
10169 if (result == PACKET_ERROR)
10170 return -1;
10171 else if (result == PACKET_OK)
10172 {
10173 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10174 target_crc = target_crc * 16 + fromhex (*tmp);
10175
10176 return (host_crc == target_crc);
10177 }
10178 }
10179
10180 return simple_verify_memory (ops, data, lma, size);
10181 }
10182
10183 /* compare-sections command
10184
10185 With no arguments, compares each loadable section in the exec bfd
10186 with the same memory range on the target, and reports mismatches.
10187 Useful for verifying the image on the target against the exec file. */
10188
10189 static void
10190 compare_sections_command (char *args, int from_tty)
10191 {
10192 asection *s;
10193 struct cleanup *old_chain;
10194 gdb_byte *sectdata;
10195 const char *sectname;
10196 bfd_size_type size;
10197 bfd_vma lma;
10198 int matched = 0;
10199 int mismatched = 0;
10200 int res;
10201 int read_only = 0;
10202
10203 if (!exec_bfd)
10204 error (_("command cannot be used without an exec file"));
10205
10206 /* Make sure the remote is pointing at the right process. */
10207 set_general_process ();
10208
10209 if (args != NULL && strcmp (args, "-r") == 0)
10210 {
10211 read_only = 1;
10212 args = NULL;
10213 }
10214
10215 for (s = exec_bfd->sections; s; s = s->next)
10216 {
10217 if (!(s->flags & SEC_LOAD))
10218 continue; /* Skip non-loadable section. */
10219
10220 if (read_only && (s->flags & SEC_READONLY) == 0)
10221 continue; /* Skip writeable sections */
10222
10223 size = bfd_get_section_size (s);
10224 if (size == 0)
10225 continue; /* Skip zero-length section. */
10226
10227 sectname = bfd_get_section_name (exec_bfd, s);
10228 if (args && strcmp (args, sectname) != 0)
10229 continue; /* Not the section selected by user. */
10230
10231 matched = 1; /* Do this section. */
10232 lma = s->lma;
10233
10234 sectdata = (gdb_byte *) xmalloc (size);
10235 old_chain = make_cleanup (xfree, sectdata);
10236 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
10237
10238 res = target_verify_memory (sectdata, lma, size);
10239
10240 if (res == -1)
10241 error (_("target memory fault, section %s, range %s -- %s"), sectname,
10242 paddress (target_gdbarch (), lma),
10243 paddress (target_gdbarch (), lma + size));
10244
10245 printf_filtered ("Section %s, range %s -- %s: ", sectname,
10246 paddress (target_gdbarch (), lma),
10247 paddress (target_gdbarch (), lma + size));
10248 if (res)
10249 printf_filtered ("matched.\n");
10250 else
10251 {
10252 printf_filtered ("MIS-MATCHED!\n");
10253 mismatched++;
10254 }
10255
10256 do_cleanups (old_chain);
10257 }
10258 if (mismatched > 0)
10259 warning (_("One or more sections of the target image does not match\n\
10260 the loaded file\n"));
10261 if (args && !matched)
10262 printf_filtered (_("No loaded section named '%s'.\n"), args);
10263 }
10264
10265 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10266 into remote target. The number of bytes written to the remote
10267 target is returned, or -1 for error. */
10268
10269 static enum target_xfer_status
10270 remote_write_qxfer (struct target_ops *ops, const char *object_name,
10271 const char *annex, const gdb_byte *writebuf,
10272 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
10273 struct packet_config *packet)
10274 {
10275 int i, buf_len;
10276 ULONGEST n;
10277 struct remote_state *rs = get_remote_state ();
10278 int max_size = get_memory_write_packet_size ();
10279
10280 if (packet->support == PACKET_DISABLE)
10281 return TARGET_XFER_E_IO;
10282
10283 /* Insert header. */
10284 i = snprintf (rs->buf, max_size,
10285 "qXfer:%s:write:%s:%s:",
10286 object_name, annex ? annex : "",
10287 phex_nz (offset, sizeof offset));
10288 max_size -= (i + 1);
10289
10290 /* Escape as much data as fits into rs->buf. */
10291 buf_len = remote_escape_output
10292 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
10293
10294 if (putpkt_binary (rs->buf, i + buf_len) < 0
10295 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10296 || packet_ok (rs->buf, packet) != PACKET_OK)
10297 return TARGET_XFER_E_IO;
10298
10299 unpack_varlen_hex (rs->buf, &n);
10300
10301 *xfered_len = n;
10302 return TARGET_XFER_OK;
10303 }
10304
10305 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10306 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10307 number of bytes read is returned, or 0 for EOF, or -1 for error.
10308 The number of bytes read may be less than LEN without indicating an
10309 EOF. PACKET is checked and updated to indicate whether the remote
10310 target supports this object. */
10311
10312 static enum target_xfer_status
10313 remote_read_qxfer (struct target_ops *ops, const char *object_name,
10314 const char *annex,
10315 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
10316 ULONGEST *xfered_len,
10317 struct packet_config *packet)
10318 {
10319 struct remote_state *rs = get_remote_state ();
10320 LONGEST i, n, packet_len;
10321
10322 if (packet->support == PACKET_DISABLE)
10323 return TARGET_XFER_E_IO;
10324
10325 /* Check whether we've cached an end-of-object packet that matches
10326 this request. */
10327 if (rs->finished_object)
10328 {
10329 if (strcmp (object_name, rs->finished_object) == 0
10330 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10331 && offset == rs->finished_offset)
10332 return TARGET_XFER_EOF;
10333
10334
10335 /* Otherwise, we're now reading something different. Discard
10336 the cache. */
10337 xfree (rs->finished_object);
10338 xfree (rs->finished_annex);
10339 rs->finished_object = NULL;
10340 rs->finished_annex = NULL;
10341 }
10342
10343 /* Request only enough to fit in a single packet. The actual data
10344 may not, since we don't know how much of it will need to be escaped;
10345 the target is free to respond with slightly less data. We subtract
10346 five to account for the response type and the protocol frame. */
10347 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
10348 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10349 object_name, annex ? annex : "",
10350 phex_nz (offset, sizeof offset),
10351 phex_nz (n, sizeof n));
10352 i = putpkt (rs->buf);
10353 if (i < 0)
10354 return TARGET_XFER_E_IO;
10355
10356 rs->buf[0] = '\0';
10357 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10358 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
10359 return TARGET_XFER_E_IO;
10360
10361 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10362 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10363
10364 /* 'm' means there is (or at least might be) more data after this
10365 batch. That does not make sense unless there's at least one byte
10366 of data in this reply. */
10367 if (rs->buf[0] == 'm' && packet_len == 1)
10368 error (_("Remote qXfer reply contained no data."));
10369
10370 /* Got some data. */
10371 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10372 packet_len - 1, readbuf, n);
10373
10374 /* 'l' is an EOF marker, possibly including a final block of data,
10375 or possibly empty. If we have the final block of a non-empty
10376 object, record this fact to bypass a subsequent partial read. */
10377 if (rs->buf[0] == 'l' && offset + i > 0)
10378 {
10379 rs->finished_object = xstrdup (object_name);
10380 rs->finished_annex = xstrdup (annex ? annex : "");
10381 rs->finished_offset = offset + i;
10382 }
10383
10384 if (i == 0)
10385 return TARGET_XFER_EOF;
10386 else
10387 {
10388 *xfered_len = i;
10389 return TARGET_XFER_OK;
10390 }
10391 }
10392
10393 static enum target_xfer_status
10394 remote_xfer_partial (struct target_ops *ops, enum target_object object,
10395 const char *annex, gdb_byte *readbuf,
10396 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10397 ULONGEST *xfered_len)
10398 {
10399 struct remote_state *rs;
10400 int i;
10401 char *p2;
10402 char query_type;
10403 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
10404
10405 set_remote_traceframe ();
10406 set_general_thread (inferior_ptid);
10407
10408 rs = get_remote_state ();
10409
10410 /* Handle memory using the standard memory routines. */
10411 if (object == TARGET_OBJECT_MEMORY)
10412 {
10413 /* If the remote target is connected but not running, we should
10414 pass this request down to a lower stratum (e.g. the executable
10415 file). */
10416 if (!target_has_execution)
10417 return TARGET_XFER_EOF;
10418
10419 if (writebuf != NULL)
10420 return remote_write_bytes (offset, writebuf, len, unit_size,
10421 xfered_len);
10422 else
10423 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
10424 xfered_len);
10425 }
10426
10427 /* Handle SPU memory using qxfer packets. */
10428 if (object == TARGET_OBJECT_SPU)
10429 {
10430 if (readbuf)
10431 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
10432 xfered_len, &remote_protocol_packets
10433 [PACKET_qXfer_spu_read]);
10434 else
10435 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
10436 xfered_len, &remote_protocol_packets
10437 [PACKET_qXfer_spu_write]);
10438 }
10439
10440 /* Handle extra signal info using qxfer packets. */
10441 if (object == TARGET_OBJECT_SIGNAL_INFO)
10442 {
10443 if (readbuf)
10444 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
10445 xfered_len, &remote_protocol_packets
10446 [PACKET_qXfer_siginfo_read]);
10447 else
10448 return remote_write_qxfer (ops, "siginfo", annex,
10449 writebuf, offset, len, xfered_len,
10450 &remote_protocol_packets
10451 [PACKET_qXfer_siginfo_write]);
10452 }
10453
10454 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10455 {
10456 if (readbuf)
10457 return remote_read_qxfer (ops, "statictrace", annex,
10458 readbuf, offset, len, xfered_len,
10459 &remote_protocol_packets
10460 [PACKET_qXfer_statictrace_read]);
10461 else
10462 return TARGET_XFER_E_IO;
10463 }
10464
10465 /* Only handle flash writes. */
10466 if (writebuf != NULL)
10467 {
10468 switch (object)
10469 {
10470 case TARGET_OBJECT_FLASH:
10471 return remote_flash_write (ops, offset, len, xfered_len,
10472 writebuf);
10473
10474 default:
10475 return TARGET_XFER_E_IO;
10476 }
10477 }
10478
10479 /* Map pre-existing objects onto letters. DO NOT do this for new
10480 objects!!! Instead specify new query packets. */
10481 switch (object)
10482 {
10483 case TARGET_OBJECT_AVR:
10484 query_type = 'R';
10485 break;
10486
10487 case TARGET_OBJECT_AUXV:
10488 gdb_assert (annex == NULL);
10489 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
10490 xfered_len,
10491 &remote_protocol_packets[PACKET_qXfer_auxv]);
10492
10493 case TARGET_OBJECT_AVAILABLE_FEATURES:
10494 return remote_read_qxfer
10495 (ops, "features", annex, readbuf, offset, len, xfered_len,
10496 &remote_protocol_packets[PACKET_qXfer_features]);
10497
10498 case TARGET_OBJECT_LIBRARIES:
10499 return remote_read_qxfer
10500 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
10501 &remote_protocol_packets[PACKET_qXfer_libraries]);
10502
10503 case TARGET_OBJECT_LIBRARIES_SVR4:
10504 return remote_read_qxfer
10505 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
10506 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10507
10508 case TARGET_OBJECT_MEMORY_MAP:
10509 gdb_assert (annex == NULL);
10510 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
10511 xfered_len,
10512 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10513
10514 case TARGET_OBJECT_OSDATA:
10515 /* Should only get here if we're connected. */
10516 gdb_assert (rs->remote_desc);
10517 return remote_read_qxfer
10518 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
10519 &remote_protocol_packets[PACKET_qXfer_osdata]);
10520
10521 case TARGET_OBJECT_THREADS:
10522 gdb_assert (annex == NULL);
10523 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
10524 xfered_len,
10525 &remote_protocol_packets[PACKET_qXfer_threads]);
10526
10527 case TARGET_OBJECT_TRACEFRAME_INFO:
10528 gdb_assert (annex == NULL);
10529 return remote_read_qxfer
10530 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
10531 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
10532
10533 case TARGET_OBJECT_FDPIC:
10534 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
10535 xfered_len,
10536 &remote_protocol_packets[PACKET_qXfer_fdpic]);
10537
10538 case TARGET_OBJECT_OPENVMS_UIB:
10539 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
10540 xfered_len,
10541 &remote_protocol_packets[PACKET_qXfer_uib]);
10542
10543 case TARGET_OBJECT_BTRACE:
10544 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
10545 xfered_len,
10546 &remote_protocol_packets[PACKET_qXfer_btrace]);
10547
10548 case TARGET_OBJECT_BTRACE_CONF:
10549 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10550 len, xfered_len,
10551 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10552
10553 case TARGET_OBJECT_EXEC_FILE:
10554 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10555 len, xfered_len,
10556 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10557
10558 default:
10559 return TARGET_XFER_E_IO;
10560 }
10561
10562 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
10563 large enough let the caller deal with it. */
10564 if (len < get_remote_packet_size ())
10565 return TARGET_XFER_E_IO;
10566 len = get_remote_packet_size ();
10567
10568 /* Except for querying the minimum buffer size, target must be open. */
10569 if (!rs->remote_desc)
10570 error (_("remote query is only available after target open"));
10571
10572 gdb_assert (annex != NULL);
10573 gdb_assert (readbuf != NULL);
10574
10575 p2 = rs->buf;
10576 *p2++ = 'q';
10577 *p2++ = query_type;
10578
10579 /* We used one buffer char for the remote protocol q command and
10580 another for the query type. As the remote protocol encapsulation
10581 uses 4 chars plus one extra in case we are debugging
10582 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10583 string. */
10584 i = 0;
10585 while (annex[i] && (i < (get_remote_packet_size () - 8)))
10586 {
10587 /* Bad caller may have sent forbidden characters. */
10588 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10589 *p2++ = annex[i];
10590 i++;
10591 }
10592 *p2 = '\0';
10593 gdb_assert (annex[i] == '\0');
10594
10595 i = putpkt (rs->buf);
10596 if (i < 0)
10597 return TARGET_XFER_E_IO;
10598
10599 getpkt (&rs->buf, &rs->buf_size, 0);
10600 strcpy ((char *) readbuf, rs->buf);
10601
10602 *xfered_len = strlen ((char *) readbuf);
10603 return TARGET_XFER_OK;
10604 }
10605
10606 /* Implementation of to_get_memory_xfer_limit. */
10607
10608 static ULONGEST
10609 remote_get_memory_xfer_limit (struct target_ops *ops)
10610 {
10611 return get_memory_write_packet_size ();
10612 }
10613
10614 static int
10615 remote_search_memory (struct target_ops* ops,
10616 CORE_ADDR start_addr, ULONGEST search_space_len,
10617 const gdb_byte *pattern, ULONGEST pattern_len,
10618 CORE_ADDR *found_addrp)
10619 {
10620 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
10621 struct remote_state *rs = get_remote_state ();
10622 int max_size = get_memory_write_packet_size ();
10623 struct packet_config *packet =
10624 &remote_protocol_packets[PACKET_qSearch_memory];
10625 /* Number of packet bytes used to encode the pattern;
10626 this could be more than PATTERN_LEN due to escape characters. */
10627 int escaped_pattern_len;
10628 /* Amount of pattern that was encodable in the packet. */
10629 int used_pattern_len;
10630 int i;
10631 int found;
10632 ULONGEST found_addr;
10633
10634 /* Don't go to the target if we don't have to.
10635 This is done before checking packet->support to avoid the possibility that
10636 a success for this edge case means the facility works in general. */
10637 if (pattern_len > search_space_len)
10638 return 0;
10639 if (pattern_len == 0)
10640 {
10641 *found_addrp = start_addr;
10642 return 1;
10643 }
10644
10645 /* If we already know the packet isn't supported, fall back to the simple
10646 way of searching memory. */
10647
10648 if (packet_config_support (packet) == PACKET_DISABLE)
10649 {
10650 /* Target doesn't provided special support, fall back and use the
10651 standard support (copy memory and do the search here). */
10652 return simple_search_memory (ops, start_addr, search_space_len,
10653 pattern, pattern_len, found_addrp);
10654 }
10655
10656 /* Make sure the remote is pointing at the right process. */
10657 set_general_process ();
10658
10659 /* Insert header. */
10660 i = snprintf (rs->buf, max_size,
10661 "qSearch:memory:%s;%s;",
10662 phex_nz (start_addr, addr_size),
10663 phex_nz (search_space_len, sizeof (search_space_len)));
10664 max_size -= (i + 1);
10665
10666 /* Escape as much data as fits into rs->buf. */
10667 escaped_pattern_len =
10668 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
10669 &used_pattern_len, max_size);
10670
10671 /* Bail if the pattern is too large. */
10672 if (used_pattern_len != pattern_len)
10673 error (_("Pattern is too large to transmit to remote target."));
10674
10675 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10676 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10677 || packet_ok (rs->buf, packet) != PACKET_OK)
10678 {
10679 /* The request may not have worked because the command is not
10680 supported. If so, fall back to the simple way. */
10681 if (packet->support == PACKET_DISABLE)
10682 {
10683 return simple_search_memory (ops, start_addr, search_space_len,
10684 pattern, pattern_len, found_addrp);
10685 }
10686 return -1;
10687 }
10688
10689 if (rs->buf[0] == '0')
10690 found = 0;
10691 else if (rs->buf[0] == '1')
10692 {
10693 found = 1;
10694 if (rs->buf[1] != ',')
10695 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
10696 unpack_varlen_hex (rs->buf + 2, &found_addr);
10697 *found_addrp = found_addr;
10698 }
10699 else
10700 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
10701
10702 return found;
10703 }
10704
10705 static void
10706 remote_rcmd (struct target_ops *self, const char *command,
10707 struct ui_file *outbuf)
10708 {
10709 struct remote_state *rs = get_remote_state ();
10710 char *p = rs->buf;
10711
10712 if (!rs->remote_desc)
10713 error (_("remote rcmd is only available after target open"));
10714
10715 /* Send a NULL command across as an empty command. */
10716 if (command == NULL)
10717 command = "";
10718
10719 /* The query prefix. */
10720 strcpy (rs->buf, "qRcmd,");
10721 p = strchr (rs->buf, '\0');
10722
10723 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10724 > get_remote_packet_size ())
10725 error (_("\"monitor\" command ``%s'' is too long."), command);
10726
10727 /* Encode the actual command. */
10728 bin2hex ((const gdb_byte *) command, p, strlen (command));
10729
10730 if (putpkt (rs->buf) < 0)
10731 error (_("Communication problem with target."));
10732
10733 /* get/display the response */
10734 while (1)
10735 {
10736 char *buf;
10737
10738 /* XXX - see also remote_get_noisy_reply(). */
10739 QUIT; /* Allow user to bail out with ^C. */
10740 rs->buf[0] = '\0';
10741 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10742 {
10743 /* Timeout. Continue to (try to) read responses.
10744 This is better than stopping with an error, assuming the stub
10745 is still executing the (long) monitor command.
10746 If needed, the user can interrupt gdb using C-c, obtaining
10747 an effect similar to stop on timeout. */
10748 continue;
10749 }
10750 buf = rs->buf;
10751 if (buf[0] == '\0')
10752 error (_("Target does not support this command."));
10753 if (buf[0] == 'O' && buf[1] != 'K')
10754 {
10755 remote_console_output (buf + 1); /* 'O' message from stub. */
10756 continue;
10757 }
10758 if (strcmp (buf, "OK") == 0)
10759 break;
10760 if (strlen (buf) == 3 && buf[0] == 'E'
10761 && isdigit (buf[1]) && isdigit (buf[2]))
10762 {
10763 error (_("Protocol error with Rcmd"));
10764 }
10765 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10766 {
10767 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
10768
10769 fputc_unfiltered (c, outbuf);
10770 }
10771 break;
10772 }
10773 }
10774
10775 static VEC(mem_region_s) *
10776 remote_memory_map (struct target_ops *ops)
10777 {
10778 VEC(mem_region_s) *result = NULL;
10779 char *text = target_read_stralloc (&current_target,
10780 TARGET_OBJECT_MEMORY_MAP, NULL);
10781
10782 if (text)
10783 {
10784 struct cleanup *back_to = make_cleanup (xfree, text);
10785
10786 result = parse_memory_map (text);
10787 do_cleanups (back_to);
10788 }
10789
10790 return result;
10791 }
10792
10793 static void
10794 packet_command (char *args, int from_tty)
10795 {
10796 struct remote_state *rs = get_remote_state ();
10797
10798 if (!rs->remote_desc)
10799 error (_("command can only be used with remote target"));
10800
10801 if (!args)
10802 error (_("remote-packet command requires packet text as argument"));
10803
10804 puts_filtered ("sending: ");
10805 print_packet (args);
10806 puts_filtered ("\n");
10807 putpkt (args);
10808
10809 getpkt (&rs->buf, &rs->buf_size, 0);
10810 puts_filtered ("received: ");
10811 print_packet (rs->buf);
10812 puts_filtered ("\n");
10813 }
10814
10815 #if 0
10816 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
10817
10818 static void display_thread_info (struct gdb_ext_thread_info *info);
10819
10820 static void threadset_test_cmd (char *cmd, int tty);
10821
10822 static void threadalive_test (char *cmd, int tty);
10823
10824 static void threadlist_test_cmd (char *cmd, int tty);
10825
10826 int get_and_display_threadinfo (threadref *ref);
10827
10828 static void threadinfo_test_cmd (char *cmd, int tty);
10829
10830 static int thread_display_step (threadref *ref, void *context);
10831
10832 static void threadlist_update_test_cmd (char *cmd, int tty);
10833
10834 static void init_remote_threadtests (void);
10835
10836 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
10837
10838 static void
10839 threadset_test_cmd (char *cmd, int tty)
10840 {
10841 int sample_thread = SAMPLE_THREAD;
10842
10843 printf_filtered (_("Remote threadset test\n"));
10844 set_general_thread (sample_thread);
10845 }
10846
10847
10848 static void
10849 threadalive_test (char *cmd, int tty)
10850 {
10851 int sample_thread = SAMPLE_THREAD;
10852 int pid = ptid_get_pid (inferior_ptid);
10853 ptid_t ptid = ptid_build (pid, sample_thread, 0);
10854
10855 if (remote_thread_alive (ptid))
10856 printf_filtered ("PASS: Thread alive test\n");
10857 else
10858 printf_filtered ("FAIL: Thread alive test\n");
10859 }
10860
10861 void output_threadid (char *title, threadref *ref);
10862
10863 void
10864 output_threadid (char *title, threadref *ref)
10865 {
10866 char hexid[20];
10867
10868 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
10869 hexid[16] = 0;
10870 printf_filtered ("%s %s\n", title, (&hexid[0]));
10871 }
10872
10873 static void
10874 threadlist_test_cmd (char *cmd, int tty)
10875 {
10876 int startflag = 1;
10877 threadref nextthread;
10878 int done, result_count;
10879 threadref threadlist[3];
10880
10881 printf_filtered ("Remote Threadlist test\n");
10882 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10883 &result_count, &threadlist[0]))
10884 printf_filtered ("FAIL: threadlist test\n");
10885 else
10886 {
10887 threadref *scan = threadlist;
10888 threadref *limit = scan + result_count;
10889
10890 while (scan < limit)
10891 output_threadid (" thread ", scan++);
10892 }
10893 }
10894
10895 void
10896 display_thread_info (struct gdb_ext_thread_info *info)
10897 {
10898 output_threadid ("Threadid: ", &info->threadid);
10899 printf_filtered ("Name: %s\n ", info->shortname);
10900 printf_filtered ("State: %s\n", info->display);
10901 printf_filtered ("other: %s\n\n", info->more_display);
10902 }
10903
10904 int
10905 get_and_display_threadinfo (threadref *ref)
10906 {
10907 int result;
10908 int set;
10909 struct gdb_ext_thread_info threadinfo;
10910
10911 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10912 | TAG_MOREDISPLAY | TAG_DISPLAY;
10913 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10914 display_thread_info (&threadinfo);
10915 return result;
10916 }
10917
10918 static void
10919 threadinfo_test_cmd (char *cmd, int tty)
10920 {
10921 int athread = SAMPLE_THREAD;
10922 threadref thread;
10923 int set;
10924
10925 int_to_threadref (&thread, athread);
10926 printf_filtered ("Remote Threadinfo test\n");
10927 if (!get_and_display_threadinfo (&thread))
10928 printf_filtered ("FAIL cannot get thread info\n");
10929 }
10930
10931 static int
10932 thread_display_step (threadref *ref, void *context)
10933 {
10934 /* output_threadid(" threadstep ",ref); *//* simple test */
10935 return get_and_display_threadinfo (ref);
10936 }
10937
10938 static void
10939 threadlist_update_test_cmd (char *cmd, int tty)
10940 {
10941 printf_filtered ("Remote Threadlist update test\n");
10942 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10943 }
10944
10945 static void
10946 init_remote_threadtests (void)
10947 {
10948 add_com ("tlist", class_obscure, threadlist_test_cmd,
10949 _("Fetch and print the remote list of "
10950 "thread identifiers, one pkt only"));
10951 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
10952 _("Fetch and display info about one thread"));
10953 add_com ("tset", class_obscure, threadset_test_cmd,
10954 _("Test setting to a different thread"));
10955 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
10956 _("Iterate through updating all remote thread info"));
10957 add_com ("talive", class_obscure, threadalive_test,
10958 _(" Remote thread alive test "));
10959 }
10960
10961 #endif /* 0 */
10962
10963 /* Convert a thread ID to a string. Returns the string in a static
10964 buffer. */
10965
10966 static const char *
10967 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
10968 {
10969 static char buf[64];
10970 struct remote_state *rs = get_remote_state ();
10971
10972 if (ptid_equal (ptid, null_ptid))
10973 return normal_pid_to_str (ptid);
10974 else if (ptid_is_pid (ptid))
10975 {
10976 /* Printing an inferior target id. */
10977
10978 /* When multi-process extensions are off, there's no way in the
10979 remote protocol to know the remote process id, if there's any
10980 at all. There's one exception --- when we're connected with
10981 target extended-remote, and we manually attached to a process
10982 with "attach PID". We don't record anywhere a flag that
10983 allows us to distinguish that case from the case of
10984 connecting with extended-remote and the stub already being
10985 attached to a process, and reporting yes to qAttached, hence
10986 no smart special casing here. */
10987 if (!remote_multi_process_p (rs))
10988 {
10989 xsnprintf (buf, sizeof buf, "Remote target");
10990 return buf;
10991 }
10992
10993 return normal_pid_to_str (ptid);
10994 }
10995 else
10996 {
10997 if (ptid_equal (magic_null_ptid, ptid))
10998 xsnprintf (buf, sizeof buf, "Thread <main>");
10999 else if (remote_multi_process_p (rs))
11000 if (ptid_get_lwp (ptid) == 0)
11001 return normal_pid_to_str (ptid);
11002 else
11003 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11004 ptid_get_pid (ptid), ptid_get_lwp (ptid));
11005 else
11006 xsnprintf (buf, sizeof buf, "Thread %ld",
11007 ptid_get_lwp (ptid));
11008 return buf;
11009 }
11010 }
11011
11012 /* Get the address of the thread local variable in OBJFILE which is
11013 stored at OFFSET within the thread local storage for thread PTID. */
11014
11015 static CORE_ADDR
11016 remote_get_thread_local_address (struct target_ops *ops,
11017 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
11018 {
11019 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
11020 {
11021 struct remote_state *rs = get_remote_state ();
11022 char *p = rs->buf;
11023 char *endp = rs->buf + get_remote_packet_size ();
11024 enum packet_result result;
11025
11026 strcpy (p, "qGetTLSAddr:");
11027 p += strlen (p);
11028 p = write_ptid (p, endp, ptid);
11029 *p++ = ',';
11030 p += hexnumstr (p, offset);
11031 *p++ = ',';
11032 p += hexnumstr (p, lm);
11033 *p++ = '\0';
11034
11035 putpkt (rs->buf);
11036 getpkt (&rs->buf, &rs->buf_size, 0);
11037 result = packet_ok (rs->buf,
11038 &remote_protocol_packets[PACKET_qGetTLSAddr]);
11039 if (result == PACKET_OK)
11040 {
11041 ULONGEST result;
11042
11043 unpack_varlen_hex (rs->buf, &result);
11044 return result;
11045 }
11046 else if (result == PACKET_UNKNOWN)
11047 throw_error (TLS_GENERIC_ERROR,
11048 _("Remote target doesn't support qGetTLSAddr packet"));
11049 else
11050 throw_error (TLS_GENERIC_ERROR,
11051 _("Remote target failed to process qGetTLSAddr request"));
11052 }
11053 else
11054 throw_error (TLS_GENERIC_ERROR,
11055 _("TLS not supported or disabled on this target"));
11056 /* Not reached. */
11057 return 0;
11058 }
11059
11060 /* Provide thread local base, i.e. Thread Information Block address.
11061 Returns 1 if ptid is found and thread_local_base is non zero. */
11062
11063 static int
11064 remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
11065 {
11066 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
11067 {
11068 struct remote_state *rs = get_remote_state ();
11069 char *p = rs->buf;
11070 char *endp = rs->buf + get_remote_packet_size ();
11071 enum packet_result result;
11072
11073 strcpy (p, "qGetTIBAddr:");
11074 p += strlen (p);
11075 p = write_ptid (p, endp, ptid);
11076 *p++ = '\0';
11077
11078 putpkt (rs->buf);
11079 getpkt (&rs->buf, &rs->buf_size, 0);
11080 result = packet_ok (rs->buf,
11081 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11082 if (result == PACKET_OK)
11083 {
11084 ULONGEST result;
11085
11086 unpack_varlen_hex (rs->buf, &result);
11087 if (addr)
11088 *addr = (CORE_ADDR) result;
11089 return 1;
11090 }
11091 else if (result == PACKET_UNKNOWN)
11092 error (_("Remote target doesn't support qGetTIBAddr packet"));
11093 else
11094 error (_("Remote target failed to process qGetTIBAddr request"));
11095 }
11096 else
11097 error (_("qGetTIBAddr not supported or disabled on this target"));
11098 /* Not reached. */
11099 return 0;
11100 }
11101
11102 /* Support for inferring a target description based on the current
11103 architecture and the size of a 'g' packet. While the 'g' packet
11104 can have any size (since optional registers can be left off the
11105 end), some sizes are easily recognizable given knowledge of the
11106 approximate architecture. */
11107
11108 struct remote_g_packet_guess
11109 {
11110 int bytes;
11111 const struct target_desc *tdesc;
11112 };
11113 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
11114 DEF_VEC_O(remote_g_packet_guess_s);
11115
11116 struct remote_g_packet_data
11117 {
11118 VEC(remote_g_packet_guess_s) *guesses;
11119 };
11120
11121 static struct gdbarch_data *remote_g_packet_data_handle;
11122
11123 static void *
11124 remote_g_packet_data_init (struct obstack *obstack)
11125 {
11126 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
11127 }
11128
11129 void
11130 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11131 const struct target_desc *tdesc)
11132 {
11133 struct remote_g_packet_data *data
11134 = ((struct remote_g_packet_data *)
11135 gdbarch_data (gdbarch, remote_g_packet_data_handle));
11136 struct remote_g_packet_guess new_guess, *guess;
11137 int ix;
11138
11139 gdb_assert (tdesc != NULL);
11140
11141 for (ix = 0;
11142 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11143 ix++)
11144 if (guess->bytes == bytes)
11145 internal_error (__FILE__, __LINE__,
11146 _("Duplicate g packet description added for size %d"),
11147 bytes);
11148
11149 new_guess.bytes = bytes;
11150 new_guess.tdesc = tdesc;
11151 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
11152 }
11153
11154 /* Return 1 if remote_read_description would do anything on this target
11155 and architecture, 0 otherwise. */
11156
11157 static int
11158 remote_read_description_p (struct target_ops *target)
11159 {
11160 struct remote_g_packet_data *data
11161 = ((struct remote_g_packet_data *)
11162 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11163
11164 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11165 return 1;
11166
11167 return 0;
11168 }
11169
11170 static const struct target_desc *
11171 remote_read_description (struct target_ops *target)
11172 {
11173 struct remote_g_packet_data *data
11174 = ((struct remote_g_packet_data *)
11175 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
11176
11177 /* Do not try this during initial connection, when we do not know
11178 whether there is a running but stopped thread. */
11179 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
11180 return target->beneath->to_read_description (target->beneath);
11181
11182 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11183 {
11184 struct remote_g_packet_guess *guess;
11185 int ix;
11186 int bytes = send_g_packet ();
11187
11188 for (ix = 0;
11189 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11190 ix++)
11191 if (guess->bytes == bytes)
11192 return guess->tdesc;
11193
11194 /* We discard the g packet. A minor optimization would be to
11195 hold on to it, and fill the register cache once we have selected
11196 an architecture, but it's too tricky to do safely. */
11197 }
11198
11199 return target->beneath->to_read_description (target->beneath);
11200 }
11201
11202 /* Remote file transfer support. This is host-initiated I/O, not
11203 target-initiated; for target-initiated, see remote-fileio.c. */
11204
11205 /* If *LEFT is at least the length of STRING, copy STRING to
11206 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11207 decrease *LEFT. Otherwise raise an error. */
11208
11209 static void
11210 remote_buffer_add_string (char **buffer, int *left, const char *string)
11211 {
11212 int len = strlen (string);
11213
11214 if (len > *left)
11215 error (_("Packet too long for target."));
11216
11217 memcpy (*buffer, string, len);
11218 *buffer += len;
11219 *left -= len;
11220
11221 /* NUL-terminate the buffer as a convenience, if there is
11222 room. */
11223 if (*left)
11224 **buffer = '\0';
11225 }
11226
11227 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11228 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11229 decrease *LEFT. Otherwise raise an error. */
11230
11231 static void
11232 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11233 int len)
11234 {
11235 if (2 * len > *left)
11236 error (_("Packet too long for target."));
11237
11238 bin2hex (bytes, *buffer, len);
11239 *buffer += 2 * len;
11240 *left -= 2 * len;
11241
11242 /* NUL-terminate the buffer as a convenience, if there is
11243 room. */
11244 if (*left)
11245 **buffer = '\0';
11246 }
11247
11248 /* If *LEFT is large enough, convert VALUE to hex and add it to
11249 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11250 decrease *LEFT. Otherwise raise an error. */
11251
11252 static void
11253 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11254 {
11255 int len = hexnumlen (value);
11256
11257 if (len > *left)
11258 error (_("Packet too long for target."));
11259
11260 hexnumstr (*buffer, value);
11261 *buffer += len;
11262 *left -= len;
11263
11264 /* NUL-terminate the buffer as a convenience, if there is
11265 room. */
11266 if (*left)
11267 **buffer = '\0';
11268 }
11269
11270 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11271 value, *REMOTE_ERRNO to the remote error number or zero if none
11272 was included, and *ATTACHMENT to point to the start of the annex
11273 if any. The length of the packet isn't needed here; there may
11274 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11275
11276 Return 0 if the packet could be parsed, -1 if it could not. If
11277 -1 is returned, the other variables may not be initialized. */
11278
11279 static int
11280 remote_hostio_parse_result (char *buffer, int *retcode,
11281 int *remote_errno, char **attachment)
11282 {
11283 char *p, *p2;
11284
11285 *remote_errno = 0;
11286 *attachment = NULL;
11287
11288 if (buffer[0] != 'F')
11289 return -1;
11290
11291 errno = 0;
11292 *retcode = strtol (&buffer[1], &p, 16);
11293 if (errno != 0 || p == &buffer[1])
11294 return -1;
11295
11296 /* Check for ",errno". */
11297 if (*p == ',')
11298 {
11299 errno = 0;
11300 *remote_errno = strtol (p + 1, &p2, 16);
11301 if (errno != 0 || p + 1 == p2)
11302 return -1;
11303 p = p2;
11304 }
11305
11306 /* Check for ";attachment". If there is no attachment, the
11307 packet should end here. */
11308 if (*p == ';')
11309 {
11310 *attachment = p + 1;
11311 return 0;
11312 }
11313 else if (*p == '\0')
11314 return 0;
11315 else
11316 return -1;
11317 }
11318
11319 /* Send a prepared I/O packet to the target and read its response.
11320 The prepared packet is in the global RS->BUF before this function
11321 is called, and the answer is there when we return.
11322
11323 COMMAND_BYTES is the length of the request to send, which may include
11324 binary data. WHICH_PACKET is the packet configuration to check
11325 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11326 is set to the error number and -1 is returned. Otherwise the value
11327 returned by the function is returned.
11328
11329 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11330 attachment is expected; an error will be reported if there's a
11331 mismatch. If one is found, *ATTACHMENT will be set to point into
11332 the packet buffer and *ATTACHMENT_LEN will be set to the
11333 attachment's length. */
11334
11335 static int
11336 remote_hostio_send_command (int command_bytes, int which_packet,
11337 int *remote_errno, char **attachment,
11338 int *attachment_len)
11339 {
11340 struct remote_state *rs = get_remote_state ();
11341 int ret, bytes_read;
11342 char *attachment_tmp;
11343
11344 if (!rs->remote_desc
11345 || packet_support (which_packet) == PACKET_DISABLE)
11346 {
11347 *remote_errno = FILEIO_ENOSYS;
11348 return -1;
11349 }
11350
11351 putpkt_binary (rs->buf, command_bytes);
11352 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11353
11354 /* If it timed out, something is wrong. Don't try to parse the
11355 buffer. */
11356 if (bytes_read < 0)
11357 {
11358 *remote_errno = FILEIO_EINVAL;
11359 return -1;
11360 }
11361
11362 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11363 {
11364 case PACKET_ERROR:
11365 *remote_errno = FILEIO_EINVAL;
11366 return -1;
11367 case PACKET_UNKNOWN:
11368 *remote_errno = FILEIO_ENOSYS;
11369 return -1;
11370 case PACKET_OK:
11371 break;
11372 }
11373
11374 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11375 &attachment_tmp))
11376 {
11377 *remote_errno = FILEIO_EINVAL;
11378 return -1;
11379 }
11380
11381 /* Make sure we saw an attachment if and only if we expected one. */
11382 if ((attachment_tmp == NULL && attachment != NULL)
11383 || (attachment_tmp != NULL && attachment == NULL))
11384 {
11385 *remote_errno = FILEIO_EINVAL;
11386 return -1;
11387 }
11388
11389 /* If an attachment was found, it must point into the packet buffer;
11390 work out how many bytes there were. */
11391 if (attachment_tmp != NULL)
11392 {
11393 *attachment = attachment_tmp;
11394 *attachment_len = bytes_read - (*attachment - rs->buf);
11395 }
11396
11397 return ret;
11398 }
11399
11400 /* Invalidate the readahead cache. */
11401
11402 static void
11403 readahead_cache_invalidate (void)
11404 {
11405 struct remote_state *rs = get_remote_state ();
11406
11407 rs->readahead_cache.fd = -1;
11408 }
11409
11410 /* Invalidate the readahead cache if it is holding data for FD. */
11411
11412 static void
11413 readahead_cache_invalidate_fd (int fd)
11414 {
11415 struct remote_state *rs = get_remote_state ();
11416
11417 if (rs->readahead_cache.fd == fd)
11418 rs->readahead_cache.fd = -1;
11419 }
11420
11421 /* Set the filesystem remote_hostio functions that take FILENAME
11422 arguments will use. Return 0 on success, or -1 if an error
11423 occurs (and set *REMOTE_ERRNO). */
11424
11425 static int
11426 remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11427 {
11428 struct remote_state *rs = get_remote_state ();
11429 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11430 char *p = rs->buf;
11431 int left = get_remote_packet_size () - 1;
11432 char arg[9];
11433 int ret;
11434
11435 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11436 return 0;
11437
11438 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11439 return 0;
11440
11441 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11442
11443 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11444 remote_buffer_add_string (&p, &left, arg);
11445
11446 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11447 remote_errno, NULL, NULL);
11448
11449 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11450 return 0;
11451
11452 if (ret == 0)
11453 rs->fs_pid = required_pid;
11454
11455 return ret;
11456 }
11457
11458 /* Implementation of to_fileio_open. */
11459
11460 static int
11461 remote_hostio_open (struct target_ops *self,
11462 struct inferior *inf, const char *filename,
11463 int flags, int mode, int warn_if_slow,
11464 int *remote_errno)
11465 {
11466 struct remote_state *rs = get_remote_state ();
11467 char *p = rs->buf;
11468 int left = get_remote_packet_size () - 1;
11469
11470 if (warn_if_slow)
11471 {
11472 static int warning_issued = 0;
11473
11474 printf_unfiltered (_("Reading %s from remote target...\n"),
11475 filename);
11476
11477 if (!warning_issued)
11478 {
11479 warning (_("File transfers from remote targets can be slow."
11480 " Use \"set sysroot\" to access files locally"
11481 " instead."));
11482 warning_issued = 1;
11483 }
11484 }
11485
11486 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11487 return -1;
11488
11489 remote_buffer_add_string (&p, &left, "vFile:open:");
11490
11491 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11492 strlen (filename));
11493 remote_buffer_add_string (&p, &left, ",");
11494
11495 remote_buffer_add_int (&p, &left, flags);
11496 remote_buffer_add_string (&p, &left, ",");
11497
11498 remote_buffer_add_int (&p, &left, mode);
11499
11500 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11501 remote_errno, NULL, NULL);
11502 }
11503
11504 /* Implementation of to_fileio_pwrite. */
11505
11506 static int
11507 remote_hostio_pwrite (struct target_ops *self,
11508 int fd, const gdb_byte *write_buf, int len,
11509 ULONGEST offset, int *remote_errno)
11510 {
11511 struct remote_state *rs = get_remote_state ();
11512 char *p = rs->buf;
11513 int left = get_remote_packet_size ();
11514 int out_len;
11515
11516 readahead_cache_invalidate_fd (fd);
11517
11518 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11519
11520 remote_buffer_add_int (&p, &left, fd);
11521 remote_buffer_add_string (&p, &left, ",");
11522
11523 remote_buffer_add_int (&p, &left, offset);
11524 remote_buffer_add_string (&p, &left, ",");
11525
11526 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
11527 get_remote_packet_size () - (p - rs->buf));
11528
11529 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11530 remote_errno, NULL, NULL);
11531 }
11532
11533 /* Helper for the implementation of to_fileio_pread. Read the file
11534 from the remote side with vFile:pread. */
11535
11536 static int
11537 remote_hostio_pread_vFile (struct target_ops *self,
11538 int fd, gdb_byte *read_buf, int len,
11539 ULONGEST offset, int *remote_errno)
11540 {
11541 struct remote_state *rs = get_remote_state ();
11542 char *p = rs->buf;
11543 char *attachment;
11544 int left = get_remote_packet_size ();
11545 int ret, attachment_len;
11546 int read_len;
11547
11548 remote_buffer_add_string (&p, &left, "vFile:pread:");
11549
11550 remote_buffer_add_int (&p, &left, fd);
11551 remote_buffer_add_string (&p, &left, ",");
11552
11553 remote_buffer_add_int (&p, &left, len);
11554 remote_buffer_add_string (&p, &left, ",");
11555
11556 remote_buffer_add_int (&p, &left, offset);
11557
11558 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11559 remote_errno, &attachment,
11560 &attachment_len);
11561
11562 if (ret < 0)
11563 return ret;
11564
11565 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11566 read_buf, len);
11567 if (read_len != ret)
11568 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11569
11570 return ret;
11571 }
11572
11573 /* Serve pread from the readahead cache. Returns number of bytes
11574 read, or 0 if the request can't be served from the cache. */
11575
11576 static int
11577 remote_hostio_pread_from_cache (struct remote_state *rs,
11578 int fd, gdb_byte *read_buf, size_t len,
11579 ULONGEST offset)
11580 {
11581 struct readahead_cache *cache = &rs->readahead_cache;
11582
11583 if (cache->fd == fd
11584 && cache->offset <= offset
11585 && offset < cache->offset + cache->bufsize)
11586 {
11587 ULONGEST max = cache->offset + cache->bufsize;
11588
11589 if (offset + len > max)
11590 len = max - offset;
11591
11592 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11593 return len;
11594 }
11595
11596 return 0;
11597 }
11598
11599 /* Implementation of to_fileio_pread. */
11600
11601 static int
11602 remote_hostio_pread (struct target_ops *self,
11603 int fd, gdb_byte *read_buf, int len,
11604 ULONGEST offset, int *remote_errno)
11605 {
11606 int ret;
11607 struct remote_state *rs = get_remote_state ();
11608 struct readahead_cache *cache = &rs->readahead_cache;
11609
11610 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11611 if (ret > 0)
11612 {
11613 cache->hit_count++;
11614
11615 if (remote_debug)
11616 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11617 pulongest (cache->hit_count));
11618 return ret;
11619 }
11620
11621 cache->miss_count++;
11622 if (remote_debug)
11623 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11624 pulongest (cache->miss_count));
11625
11626 cache->fd = fd;
11627 cache->offset = offset;
11628 cache->bufsize = get_remote_packet_size ();
11629 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
11630
11631 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11632 cache->offset, remote_errno);
11633 if (ret <= 0)
11634 {
11635 readahead_cache_invalidate_fd (fd);
11636 return ret;
11637 }
11638
11639 cache->bufsize = ret;
11640 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11641 }
11642
11643 /* Implementation of to_fileio_close. */
11644
11645 static int
11646 remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
11647 {
11648 struct remote_state *rs = get_remote_state ();
11649 char *p = rs->buf;
11650 int left = get_remote_packet_size () - 1;
11651
11652 readahead_cache_invalidate_fd (fd);
11653
11654 remote_buffer_add_string (&p, &left, "vFile:close:");
11655
11656 remote_buffer_add_int (&p, &left, fd);
11657
11658 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11659 remote_errno, NULL, NULL);
11660 }
11661
11662 /* Implementation of to_fileio_unlink. */
11663
11664 static int
11665 remote_hostio_unlink (struct target_ops *self,
11666 struct inferior *inf, const char *filename,
11667 int *remote_errno)
11668 {
11669 struct remote_state *rs = get_remote_state ();
11670 char *p = rs->buf;
11671 int left = get_remote_packet_size () - 1;
11672
11673 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11674 return -1;
11675
11676 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11677
11678 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11679 strlen (filename));
11680
11681 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11682 remote_errno, NULL, NULL);
11683 }
11684
11685 /* Implementation of to_fileio_readlink. */
11686
11687 static char *
11688 remote_hostio_readlink (struct target_ops *self,
11689 struct inferior *inf, const char *filename,
11690 int *remote_errno)
11691 {
11692 struct remote_state *rs = get_remote_state ();
11693 char *p = rs->buf;
11694 char *attachment;
11695 int left = get_remote_packet_size ();
11696 int len, attachment_len;
11697 int read_len;
11698 char *ret;
11699
11700 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11701 return NULL;
11702
11703 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11704
11705 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11706 strlen (filename));
11707
11708 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11709 remote_errno, &attachment,
11710 &attachment_len);
11711
11712 if (len < 0)
11713 return NULL;
11714
11715 ret = (char *) xmalloc (len + 1);
11716
11717 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11718 (gdb_byte *) ret, len);
11719 if (read_len != len)
11720 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11721
11722 ret[len] = '\0';
11723 return ret;
11724 }
11725
11726 /* Implementation of to_fileio_fstat. */
11727
11728 static int
11729 remote_hostio_fstat (struct target_ops *self,
11730 int fd, struct stat *st,
11731 int *remote_errno)
11732 {
11733 struct remote_state *rs = get_remote_state ();
11734 char *p = rs->buf;
11735 int left = get_remote_packet_size ();
11736 int attachment_len, ret;
11737 char *attachment;
11738 struct fio_stat fst;
11739 int read_len;
11740
11741 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11742
11743 remote_buffer_add_int (&p, &left, fd);
11744
11745 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11746 remote_errno, &attachment,
11747 &attachment_len);
11748 if (ret < 0)
11749 {
11750 if (*remote_errno != FILEIO_ENOSYS)
11751 return ret;
11752
11753 /* Strictly we should return -1, ENOSYS here, but when
11754 "set sysroot remote:" was implemented in August 2008
11755 BFD's need for a stat function was sidestepped with
11756 this hack. This was not remedied until March 2015
11757 so we retain the previous behavior to avoid breaking
11758 compatibility.
11759
11760 Note that the memset is a March 2015 addition; older
11761 GDBs set st_size *and nothing else* so the structure
11762 would have garbage in all other fields. This might
11763 break something but retaining the previous behavior
11764 here would be just too wrong. */
11765
11766 memset (st, 0, sizeof (struct stat));
11767 st->st_size = INT_MAX;
11768 return 0;
11769 }
11770
11771 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11772 (gdb_byte *) &fst, sizeof (fst));
11773
11774 if (read_len != ret)
11775 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11776
11777 if (read_len != sizeof (fst))
11778 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11779 read_len, (int) sizeof (fst));
11780
11781 remote_fileio_to_host_stat (&fst, st);
11782
11783 return 0;
11784 }
11785
11786 /* Implementation of to_filesystem_is_local. */
11787
11788 static int
11789 remote_filesystem_is_local (struct target_ops *self)
11790 {
11791 /* Valgrind GDB presents itself as a remote target but works
11792 on the local filesystem: it does not implement remote get
11793 and users are not expected to set a sysroot. To handle
11794 this case we treat the remote filesystem as local if the
11795 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11796 does not support vFile:open. */
11797 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
11798 {
11799 enum packet_support ps = packet_support (PACKET_vFile_open);
11800
11801 if (ps == PACKET_SUPPORT_UNKNOWN)
11802 {
11803 int fd, remote_errno;
11804
11805 /* Try opening a file to probe support. The supplied
11806 filename is irrelevant, we only care about whether
11807 the stub recognizes the packet or not. */
11808 fd = remote_hostio_open (self, NULL, "just probing",
11809 FILEIO_O_RDONLY, 0700, 0,
11810 &remote_errno);
11811
11812 if (fd >= 0)
11813 remote_hostio_close (self, fd, &remote_errno);
11814
11815 ps = packet_support (PACKET_vFile_open);
11816 }
11817
11818 if (ps == PACKET_DISABLE)
11819 {
11820 static int warning_issued = 0;
11821
11822 if (!warning_issued)
11823 {
11824 warning (_("remote target does not support file"
11825 " transfer, attempting to access files"
11826 " from local filesystem."));
11827 warning_issued = 1;
11828 }
11829
11830 return 1;
11831 }
11832 }
11833
11834 return 0;
11835 }
11836
11837 static int
11838 remote_fileio_errno_to_host (int errnum)
11839 {
11840 switch (errnum)
11841 {
11842 case FILEIO_EPERM:
11843 return EPERM;
11844 case FILEIO_ENOENT:
11845 return ENOENT;
11846 case FILEIO_EINTR:
11847 return EINTR;
11848 case FILEIO_EIO:
11849 return EIO;
11850 case FILEIO_EBADF:
11851 return EBADF;
11852 case FILEIO_EACCES:
11853 return EACCES;
11854 case FILEIO_EFAULT:
11855 return EFAULT;
11856 case FILEIO_EBUSY:
11857 return EBUSY;
11858 case FILEIO_EEXIST:
11859 return EEXIST;
11860 case FILEIO_ENODEV:
11861 return ENODEV;
11862 case FILEIO_ENOTDIR:
11863 return ENOTDIR;
11864 case FILEIO_EISDIR:
11865 return EISDIR;
11866 case FILEIO_EINVAL:
11867 return EINVAL;
11868 case FILEIO_ENFILE:
11869 return ENFILE;
11870 case FILEIO_EMFILE:
11871 return EMFILE;
11872 case FILEIO_EFBIG:
11873 return EFBIG;
11874 case FILEIO_ENOSPC:
11875 return ENOSPC;
11876 case FILEIO_ESPIPE:
11877 return ESPIPE;
11878 case FILEIO_EROFS:
11879 return EROFS;
11880 case FILEIO_ENOSYS:
11881 return ENOSYS;
11882 case FILEIO_ENAMETOOLONG:
11883 return ENAMETOOLONG;
11884 }
11885 return -1;
11886 }
11887
11888 static char *
11889 remote_hostio_error (int errnum)
11890 {
11891 int host_error = remote_fileio_errno_to_host (errnum);
11892
11893 if (host_error == -1)
11894 error (_("Unknown remote I/O error %d"), errnum);
11895 else
11896 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11897 }
11898
11899 static void
11900 remote_hostio_close_cleanup (void *opaque)
11901 {
11902 int fd = *(int *) opaque;
11903 int remote_errno;
11904
11905 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
11906 }
11907
11908 void
11909 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11910 {
11911 struct cleanup *back_to, *close_cleanup;
11912 int retcode, fd, remote_errno, bytes, io_size;
11913 FILE *file;
11914 gdb_byte *buffer;
11915 int bytes_in_buffer;
11916 int saw_eof;
11917 ULONGEST offset;
11918 struct remote_state *rs = get_remote_state ();
11919
11920 if (!rs->remote_desc)
11921 error (_("command can only be used with remote target"));
11922
11923 file = gdb_fopen_cloexec (local_file, "rb");
11924 if (file == NULL)
11925 perror_with_name (local_file);
11926 back_to = make_cleanup_fclose (file);
11927
11928 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
11929 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
11930 | FILEIO_O_TRUNC),
11931 0700, 0, &remote_errno);
11932 if (fd == -1)
11933 remote_hostio_error (remote_errno);
11934
11935 /* Send up to this many bytes at once. They won't all fit in the
11936 remote packet limit, so we'll transfer slightly fewer. */
11937 io_size = get_remote_packet_size ();
11938 buffer = (gdb_byte *) xmalloc (io_size);
11939 make_cleanup (xfree, buffer);
11940
11941 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11942
11943 bytes_in_buffer = 0;
11944 saw_eof = 0;
11945 offset = 0;
11946 while (bytes_in_buffer || !saw_eof)
11947 {
11948 if (!saw_eof)
11949 {
11950 bytes = fread (buffer + bytes_in_buffer, 1,
11951 io_size - bytes_in_buffer,
11952 file);
11953 if (bytes == 0)
11954 {
11955 if (ferror (file))
11956 error (_("Error reading %s."), local_file);
11957 else
11958 {
11959 /* EOF. Unless there is something still in the
11960 buffer from the last iteration, we are done. */
11961 saw_eof = 1;
11962 if (bytes_in_buffer == 0)
11963 break;
11964 }
11965 }
11966 }
11967 else
11968 bytes = 0;
11969
11970 bytes += bytes_in_buffer;
11971 bytes_in_buffer = 0;
11972
11973 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11974 fd, buffer, bytes,
11975 offset, &remote_errno);
11976
11977 if (retcode < 0)
11978 remote_hostio_error (remote_errno);
11979 else if (retcode == 0)
11980 error (_("Remote write of %d bytes returned 0!"), bytes);
11981 else if (retcode < bytes)
11982 {
11983 /* Short write. Save the rest of the read data for the next
11984 write. */
11985 bytes_in_buffer = bytes - retcode;
11986 memmove (buffer, buffer + retcode, bytes_in_buffer);
11987 }
11988
11989 offset += retcode;
11990 }
11991
11992 discard_cleanups (close_cleanup);
11993 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11994 remote_hostio_error (remote_errno);
11995
11996 if (from_tty)
11997 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
11998 do_cleanups (back_to);
11999 }
12000
12001 void
12002 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12003 {
12004 struct cleanup *back_to, *close_cleanup;
12005 int fd, remote_errno, bytes, io_size;
12006 FILE *file;
12007 gdb_byte *buffer;
12008 ULONGEST offset;
12009 struct remote_state *rs = get_remote_state ();
12010
12011 if (!rs->remote_desc)
12012 error (_("command can only be used with remote target"));
12013
12014 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
12015 remote_file, FILEIO_O_RDONLY, 0, 0,
12016 &remote_errno);
12017 if (fd == -1)
12018 remote_hostio_error (remote_errno);
12019
12020 file = gdb_fopen_cloexec (local_file, "wb");
12021 if (file == NULL)
12022 perror_with_name (local_file);
12023 back_to = make_cleanup_fclose (file);
12024
12025 /* Send up to this many bytes at once. They won't all fit in the
12026 remote packet limit, so we'll transfer slightly fewer. */
12027 io_size = get_remote_packet_size ();
12028 buffer = (gdb_byte *) xmalloc (io_size);
12029 make_cleanup (xfree, buffer);
12030
12031 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
12032
12033 offset = 0;
12034 while (1)
12035 {
12036 bytes = remote_hostio_pread (find_target_at (process_stratum),
12037 fd, buffer, io_size, offset, &remote_errno);
12038 if (bytes == 0)
12039 /* Success, but no bytes, means end-of-file. */
12040 break;
12041 if (bytes == -1)
12042 remote_hostio_error (remote_errno);
12043
12044 offset += bytes;
12045
12046 bytes = fwrite (buffer, 1, bytes, file);
12047 if (bytes == 0)
12048 perror_with_name (local_file);
12049 }
12050
12051 discard_cleanups (close_cleanup);
12052 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
12053 remote_hostio_error (remote_errno);
12054
12055 if (from_tty)
12056 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12057 do_cleanups (back_to);
12058 }
12059
12060 void
12061 remote_file_delete (const char *remote_file, int from_tty)
12062 {
12063 int retcode, remote_errno;
12064 struct remote_state *rs = get_remote_state ();
12065
12066 if (!rs->remote_desc)
12067 error (_("command can only be used with remote target"));
12068
12069 retcode = remote_hostio_unlink (find_target_at (process_stratum),
12070 NULL, remote_file, &remote_errno);
12071 if (retcode == -1)
12072 remote_hostio_error (remote_errno);
12073
12074 if (from_tty)
12075 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12076 }
12077
12078 static void
12079 remote_put_command (char *args, int from_tty)
12080 {
12081 struct cleanup *back_to;
12082 char **argv;
12083
12084 if (args == NULL)
12085 error_no_arg (_("file to put"));
12086
12087 argv = gdb_buildargv (args);
12088 back_to = make_cleanup_freeargv (argv);
12089 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12090 error (_("Invalid parameters to remote put"));
12091
12092 remote_file_put (argv[0], argv[1], from_tty);
12093
12094 do_cleanups (back_to);
12095 }
12096
12097 static void
12098 remote_get_command (char *args, int from_tty)
12099 {
12100 struct cleanup *back_to;
12101 char **argv;
12102
12103 if (args == NULL)
12104 error_no_arg (_("file to get"));
12105
12106 argv = gdb_buildargv (args);
12107 back_to = make_cleanup_freeargv (argv);
12108 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12109 error (_("Invalid parameters to remote get"));
12110
12111 remote_file_get (argv[0], argv[1], from_tty);
12112
12113 do_cleanups (back_to);
12114 }
12115
12116 static void
12117 remote_delete_command (char *args, int from_tty)
12118 {
12119 struct cleanup *back_to;
12120 char **argv;
12121
12122 if (args == NULL)
12123 error_no_arg (_("file to delete"));
12124
12125 argv = gdb_buildargv (args);
12126 back_to = make_cleanup_freeargv (argv);
12127 if (argv[0] == NULL || argv[1] != NULL)
12128 error (_("Invalid parameters to remote delete"));
12129
12130 remote_file_delete (argv[0], from_tty);
12131
12132 do_cleanups (back_to);
12133 }
12134
12135 static void
12136 remote_command (char *args, int from_tty)
12137 {
12138 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
12139 }
12140
12141 static int
12142 remote_can_execute_reverse (struct target_ops *self)
12143 {
12144 if (packet_support (PACKET_bs) == PACKET_ENABLE
12145 || packet_support (PACKET_bc) == PACKET_ENABLE)
12146 return 1;
12147 else
12148 return 0;
12149 }
12150
12151 static int
12152 remote_supports_non_stop (struct target_ops *self)
12153 {
12154 return 1;
12155 }
12156
12157 static int
12158 remote_supports_disable_randomization (struct target_ops *self)
12159 {
12160 /* Only supported in extended mode. */
12161 return 0;
12162 }
12163
12164 static int
12165 remote_supports_multi_process (struct target_ops *self)
12166 {
12167 struct remote_state *rs = get_remote_state ();
12168
12169 return remote_multi_process_p (rs);
12170 }
12171
12172 static int
12173 remote_supports_cond_tracepoints (void)
12174 {
12175 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
12176 }
12177
12178 static int
12179 remote_supports_cond_breakpoints (struct target_ops *self)
12180 {
12181 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
12182 }
12183
12184 static int
12185 remote_supports_fast_tracepoints (void)
12186 {
12187 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
12188 }
12189
12190 static int
12191 remote_supports_static_tracepoints (void)
12192 {
12193 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
12194 }
12195
12196 static int
12197 remote_supports_install_in_trace (void)
12198 {
12199 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
12200 }
12201
12202 static int
12203 remote_supports_enable_disable_tracepoint (struct target_ops *self)
12204 {
12205 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12206 == PACKET_ENABLE);
12207 }
12208
12209 static int
12210 remote_supports_string_tracing (struct target_ops *self)
12211 {
12212 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
12213 }
12214
12215 static int
12216 remote_can_run_breakpoint_commands (struct target_ops *self)
12217 {
12218 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
12219 }
12220
12221 static void
12222 remote_trace_init (struct target_ops *self)
12223 {
12224 putpkt ("QTinit");
12225 remote_get_noisy_reply (&target_buf, &target_buf_size);
12226 if (strcmp (target_buf, "OK") != 0)
12227 error (_("Target does not support this command."));
12228 }
12229
12230 static void free_actions_list (char **actions_list);
12231 static void free_actions_list_cleanup_wrapper (void *);
12232 static void
12233 free_actions_list_cleanup_wrapper (void *al)
12234 {
12235 free_actions_list ((char **) al);
12236 }
12237
12238 static void
12239 free_actions_list (char **actions_list)
12240 {
12241 int ndx;
12242
12243 if (actions_list == 0)
12244 return;
12245
12246 for (ndx = 0; actions_list[ndx]; ndx++)
12247 xfree (actions_list[ndx]);
12248
12249 xfree (actions_list);
12250 }
12251
12252 /* Recursive routine to walk through command list including loops, and
12253 download packets for each command. */
12254
12255 static void
12256 remote_download_command_source (int num, ULONGEST addr,
12257 struct command_line *cmds)
12258 {
12259 struct remote_state *rs = get_remote_state ();
12260 struct command_line *cmd;
12261
12262 for (cmd = cmds; cmd; cmd = cmd->next)
12263 {
12264 QUIT; /* Allow user to bail out with ^C. */
12265 strcpy (rs->buf, "QTDPsrc:");
12266 encode_source_string (num, addr, "cmd", cmd->line,
12267 rs->buf + strlen (rs->buf),
12268 rs->buf_size - strlen (rs->buf));
12269 putpkt (rs->buf);
12270 remote_get_noisy_reply (&target_buf, &target_buf_size);
12271 if (strcmp (target_buf, "OK"))
12272 warning (_("Target does not support source download."));
12273
12274 if (cmd->control_type == while_control
12275 || cmd->control_type == while_stepping_control)
12276 {
12277 remote_download_command_source (num, addr, *cmd->body_list);
12278
12279 QUIT; /* Allow user to bail out with ^C. */
12280 strcpy (rs->buf, "QTDPsrc:");
12281 encode_source_string (num, addr, "cmd", "end",
12282 rs->buf + strlen (rs->buf),
12283 rs->buf_size - strlen (rs->buf));
12284 putpkt (rs->buf);
12285 remote_get_noisy_reply (&target_buf, &target_buf_size);
12286 if (strcmp (target_buf, "OK"))
12287 warning (_("Target does not support source download."));
12288 }
12289 }
12290 }
12291
12292 static void
12293 remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
12294 {
12295 #define BUF_SIZE 2048
12296
12297 CORE_ADDR tpaddr;
12298 char addrbuf[40];
12299 char buf[BUF_SIZE];
12300 char **tdp_actions;
12301 char **stepping_actions;
12302 int ndx;
12303 struct cleanup *old_chain = NULL;
12304 char *pkt;
12305 struct breakpoint *b = loc->owner;
12306 struct tracepoint *t = (struct tracepoint *) b;
12307
12308 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
12309 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
12310 tdp_actions);
12311 (void) make_cleanup (free_actions_list_cleanup_wrapper,
12312 stepping_actions);
12313
12314 tpaddr = loc->address;
12315 sprintf_vma (addrbuf, tpaddr);
12316 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
12317 addrbuf, /* address */
12318 (b->enable_state == bp_enabled ? 'E' : 'D'),
12319 t->step_count, t->pass_count);
12320 /* Fast tracepoints are mostly handled by the target, but we can
12321 tell the target how big of an instruction block should be moved
12322 around. */
12323 if (b->type == bp_fast_tracepoint)
12324 {
12325 /* Only test for support at download time; we may not know
12326 target capabilities at definition time. */
12327 if (remote_supports_fast_tracepoints ())
12328 {
12329 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12330 NULL))
12331 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
12332 gdb_insn_length (loc->gdbarch, tpaddr));
12333 else
12334 /* If it passed validation at definition but fails now,
12335 something is very wrong. */
12336 internal_error (__FILE__, __LINE__,
12337 _("Fast tracepoint not "
12338 "valid during download"));
12339 }
12340 else
12341 /* Fast tracepoints are functionally identical to regular
12342 tracepoints, so don't take lack of support as a reason to
12343 give up on the trace run. */
12344 warning (_("Target does not support fast tracepoints, "
12345 "downloading %d as regular tracepoint"), b->number);
12346 }
12347 else if (b->type == bp_static_tracepoint)
12348 {
12349 /* Only test for support at download time; we may not know
12350 target capabilities at definition time. */
12351 if (remote_supports_static_tracepoints ())
12352 {
12353 struct static_tracepoint_marker marker;
12354
12355 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12356 strcat (buf, ":S");
12357 else
12358 error (_("Static tracepoint not valid during download"));
12359 }
12360 else
12361 /* Fast tracepoints are functionally identical to regular
12362 tracepoints, so don't take lack of support as a reason
12363 to give up on the trace run. */
12364 error (_("Target does not support static tracepoints"));
12365 }
12366 /* If the tracepoint has a conditional, make it into an agent
12367 expression and append to the definition. */
12368 if (loc->cond)
12369 {
12370 /* Only test support at download time, we may not know target
12371 capabilities at definition time. */
12372 if (remote_supports_cond_tracepoints ())
12373 {
12374 agent_expr_up aexpr = gen_eval_for_expr (tpaddr, loc->cond.get ());
12375 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
12376 aexpr->len);
12377 pkt = buf + strlen (buf);
12378 for (ndx = 0; ndx < aexpr->len; ++ndx)
12379 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12380 *pkt = '\0';
12381 }
12382 else
12383 warning (_("Target does not support conditional tracepoints, "
12384 "ignoring tp %d cond"), b->number);
12385 }
12386
12387 if (b->commands || *default_collect)
12388 strcat (buf, "-");
12389 putpkt (buf);
12390 remote_get_noisy_reply (&target_buf, &target_buf_size);
12391 if (strcmp (target_buf, "OK"))
12392 error (_("Target does not support tracepoints."));
12393
12394 /* do_single_steps (t); */
12395 if (tdp_actions)
12396 {
12397 for (ndx = 0; tdp_actions[ndx]; ndx++)
12398 {
12399 QUIT; /* Allow user to bail out with ^C. */
12400 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
12401 b->number, addrbuf, /* address */
12402 tdp_actions[ndx],
12403 ((tdp_actions[ndx + 1] || stepping_actions)
12404 ? '-' : 0));
12405 putpkt (buf);
12406 remote_get_noisy_reply (&target_buf,
12407 &target_buf_size);
12408 if (strcmp (target_buf, "OK"))
12409 error (_("Error on target while setting tracepoints."));
12410 }
12411 }
12412 if (stepping_actions)
12413 {
12414 for (ndx = 0; stepping_actions[ndx]; ndx++)
12415 {
12416 QUIT; /* Allow user to bail out with ^C. */
12417 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12418 b->number, addrbuf, /* address */
12419 ((ndx == 0) ? "S" : ""),
12420 stepping_actions[ndx],
12421 (stepping_actions[ndx + 1] ? "-" : ""));
12422 putpkt (buf);
12423 remote_get_noisy_reply (&target_buf,
12424 &target_buf_size);
12425 if (strcmp (target_buf, "OK"))
12426 error (_("Error on target while setting tracepoints."));
12427 }
12428 }
12429
12430 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
12431 {
12432 if (b->location != NULL)
12433 {
12434 strcpy (buf, "QTDPsrc:");
12435 encode_source_string (b->number, loc->address, "at",
12436 event_location_to_string (b->location.get ()),
12437 buf + strlen (buf), 2048 - strlen (buf));
12438 putpkt (buf);
12439 remote_get_noisy_reply (&target_buf, &target_buf_size);
12440 if (strcmp (target_buf, "OK"))
12441 warning (_("Target does not support source download."));
12442 }
12443 if (b->cond_string)
12444 {
12445 strcpy (buf, "QTDPsrc:");
12446 encode_source_string (b->number, loc->address,
12447 "cond", b->cond_string, buf + strlen (buf),
12448 2048 - strlen (buf));
12449 putpkt (buf);
12450 remote_get_noisy_reply (&target_buf, &target_buf_size);
12451 if (strcmp (target_buf, "OK"))
12452 warning (_("Target does not support source download."));
12453 }
12454 remote_download_command_source (b->number, loc->address,
12455 breakpoint_commands (b));
12456 }
12457
12458 do_cleanups (old_chain);
12459 }
12460
12461 static int
12462 remote_can_download_tracepoint (struct target_ops *self)
12463 {
12464 struct remote_state *rs = get_remote_state ();
12465 struct trace_status *ts;
12466 int status;
12467
12468 /* Don't try to install tracepoints until we've relocated our
12469 symbols, and fetched and merged the target's tracepoint list with
12470 ours. */
12471 if (rs->starting_up)
12472 return 0;
12473
12474 ts = current_trace_status ();
12475 status = remote_get_trace_status (self, ts);
12476
12477 if (status == -1 || !ts->running_known || !ts->running)
12478 return 0;
12479
12480 /* If we are in a tracing experiment, but remote stub doesn't support
12481 installing tracepoint in trace, we have to return. */
12482 if (!remote_supports_install_in_trace ())
12483 return 0;
12484
12485 return 1;
12486 }
12487
12488
12489 static void
12490 remote_download_trace_state_variable (struct target_ops *self,
12491 struct trace_state_variable *tsv)
12492 {
12493 struct remote_state *rs = get_remote_state ();
12494 char *p;
12495
12496 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12497 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12498 tsv->builtin);
12499 p = rs->buf + strlen (rs->buf);
12500 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12501 error (_("Trace state variable name too long for tsv definition packet"));
12502 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
12503 *p++ = '\0';
12504 putpkt (rs->buf);
12505 remote_get_noisy_reply (&target_buf, &target_buf_size);
12506 if (*target_buf == '\0')
12507 error (_("Target does not support this command."));
12508 if (strcmp (target_buf, "OK") != 0)
12509 error (_("Error on target while downloading trace state variable."));
12510 }
12511
12512 static void
12513 remote_enable_tracepoint (struct target_ops *self,
12514 struct bp_location *location)
12515 {
12516 struct remote_state *rs = get_remote_state ();
12517 char addr_buf[40];
12518
12519 sprintf_vma (addr_buf, location->address);
12520 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12521 location->owner->number, addr_buf);
12522 putpkt (rs->buf);
12523 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12524 if (*rs->buf == '\0')
12525 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12526 if (strcmp (rs->buf, "OK") != 0)
12527 error (_("Error on target while enabling tracepoint."));
12528 }
12529
12530 static void
12531 remote_disable_tracepoint (struct target_ops *self,
12532 struct bp_location *location)
12533 {
12534 struct remote_state *rs = get_remote_state ();
12535 char addr_buf[40];
12536
12537 sprintf_vma (addr_buf, location->address);
12538 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12539 location->owner->number, addr_buf);
12540 putpkt (rs->buf);
12541 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12542 if (*rs->buf == '\0')
12543 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12544 if (strcmp (rs->buf, "OK") != 0)
12545 error (_("Error on target while disabling tracepoint."));
12546 }
12547
12548 static void
12549 remote_trace_set_readonly_regions (struct target_ops *self)
12550 {
12551 asection *s;
12552 bfd *abfd = NULL;
12553 bfd_size_type size;
12554 bfd_vma vma;
12555 int anysecs = 0;
12556 int offset = 0;
12557
12558 if (!exec_bfd)
12559 return; /* No information to give. */
12560
12561 strcpy (target_buf, "QTro");
12562 offset = strlen (target_buf);
12563 for (s = exec_bfd->sections; s; s = s->next)
12564 {
12565 char tmp1[40], tmp2[40];
12566 int sec_length;
12567
12568 if ((s->flags & SEC_LOAD) == 0 ||
12569 /* (s->flags & SEC_CODE) == 0 || */
12570 (s->flags & SEC_READONLY) == 0)
12571 continue;
12572
12573 anysecs = 1;
12574 vma = bfd_get_section_vma (abfd, s);
12575 size = bfd_get_section_size (s);
12576 sprintf_vma (tmp1, vma);
12577 sprintf_vma (tmp2, vma + size);
12578 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
12579 if (offset + sec_length + 1 > target_buf_size)
12580 {
12581 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
12582 warning (_("\
12583 Too many sections for read-only sections definition packet."));
12584 break;
12585 }
12586 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
12587 tmp1, tmp2);
12588 offset += sec_length;
12589 }
12590 if (anysecs)
12591 {
12592 putpkt (target_buf);
12593 getpkt (&target_buf, &target_buf_size, 0);
12594 }
12595 }
12596
12597 static void
12598 remote_trace_start (struct target_ops *self)
12599 {
12600 putpkt ("QTStart");
12601 remote_get_noisy_reply (&target_buf, &target_buf_size);
12602 if (*target_buf == '\0')
12603 error (_("Target does not support this command."));
12604 if (strcmp (target_buf, "OK") != 0)
12605 error (_("Bogus reply from target: %s"), target_buf);
12606 }
12607
12608 static int
12609 remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
12610 {
12611 /* Initialize it just to avoid a GCC false warning. */
12612 char *p = NULL;
12613 /* FIXME we need to get register block size some other way. */
12614 extern int trace_regblock_size;
12615 enum packet_result result;
12616
12617 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
12618 return -1;
12619
12620 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
12621
12622 putpkt ("qTStatus");
12623
12624 TRY
12625 {
12626 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
12627 }
12628 CATCH (ex, RETURN_MASK_ERROR)
12629 {
12630 if (ex.error != TARGET_CLOSE_ERROR)
12631 {
12632 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12633 return -1;
12634 }
12635 throw_exception (ex);
12636 }
12637 END_CATCH
12638
12639 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12640
12641 /* If the remote target doesn't do tracing, flag it. */
12642 if (result == PACKET_UNKNOWN)
12643 return -1;
12644
12645 /* We're working with a live target. */
12646 ts->filename = NULL;
12647
12648 if (*p++ != 'T')
12649 error (_("Bogus trace status reply from target: %s"), target_buf);
12650
12651 /* Function 'parse_trace_status' sets default value of each field of
12652 'ts' at first, so we don't have to do it here. */
12653 parse_trace_status (p, ts);
12654
12655 return ts->running;
12656 }
12657
12658 static void
12659 remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
12660 struct uploaded_tp *utp)
12661 {
12662 struct remote_state *rs = get_remote_state ();
12663 char *reply;
12664 struct bp_location *loc;
12665 struct tracepoint *tp = (struct tracepoint *) bp;
12666 size_t size = get_remote_packet_size ();
12667
12668 if (tp)
12669 {
12670 tp->hit_count = 0;
12671 tp->traceframe_usage = 0;
12672 for (loc = tp->loc; loc; loc = loc->next)
12673 {
12674 /* If the tracepoint was never downloaded, don't go asking for
12675 any status. */
12676 if (tp->number_on_target == 0)
12677 continue;
12678 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12679 phex_nz (loc->address, 0));
12680 putpkt (rs->buf);
12681 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12682 if (reply && *reply)
12683 {
12684 if (*reply == 'V')
12685 parse_tracepoint_status (reply + 1, bp, utp);
12686 }
12687 }
12688 }
12689 else if (utp)
12690 {
12691 utp->hit_count = 0;
12692 utp->traceframe_usage = 0;
12693 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12694 phex_nz (utp->addr, 0));
12695 putpkt (rs->buf);
12696 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12697 if (reply && *reply)
12698 {
12699 if (*reply == 'V')
12700 parse_tracepoint_status (reply + 1, bp, utp);
12701 }
12702 }
12703 }
12704
12705 static void
12706 remote_trace_stop (struct target_ops *self)
12707 {
12708 putpkt ("QTStop");
12709 remote_get_noisy_reply (&target_buf, &target_buf_size);
12710 if (*target_buf == '\0')
12711 error (_("Target does not support this command."));
12712 if (strcmp (target_buf, "OK") != 0)
12713 error (_("Bogus reply from target: %s"), target_buf);
12714 }
12715
12716 static int
12717 remote_trace_find (struct target_ops *self,
12718 enum trace_find_type type, int num,
12719 CORE_ADDR addr1, CORE_ADDR addr2,
12720 int *tpp)
12721 {
12722 struct remote_state *rs = get_remote_state ();
12723 char *endbuf = rs->buf + get_remote_packet_size ();
12724 char *p, *reply;
12725 int target_frameno = -1, target_tracept = -1;
12726
12727 /* Lookups other than by absolute frame number depend on the current
12728 trace selected, so make sure it is correct on the remote end
12729 first. */
12730 if (type != tfind_number)
12731 set_remote_traceframe ();
12732
12733 p = rs->buf;
12734 strcpy (p, "QTFrame:");
12735 p = strchr (p, '\0');
12736 switch (type)
12737 {
12738 case tfind_number:
12739 xsnprintf (p, endbuf - p, "%x", num);
12740 break;
12741 case tfind_pc:
12742 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
12743 break;
12744 case tfind_tp:
12745 xsnprintf (p, endbuf - p, "tdp:%x", num);
12746 break;
12747 case tfind_range:
12748 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12749 phex_nz (addr2, 0));
12750 break;
12751 case tfind_outside:
12752 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12753 phex_nz (addr2, 0));
12754 break;
12755 default:
12756 error (_("Unknown trace find type %d"), type);
12757 }
12758
12759 putpkt (rs->buf);
12760 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
12761 if (*reply == '\0')
12762 error (_("Target does not support this command."));
12763
12764 while (reply && *reply)
12765 switch (*reply)
12766 {
12767 case 'F':
12768 p = ++reply;
12769 target_frameno = (int) strtol (p, &reply, 16);
12770 if (reply == p)
12771 error (_("Unable to parse trace frame number"));
12772 /* Don't update our remote traceframe number cache on failure
12773 to select a remote traceframe. */
12774 if (target_frameno == -1)
12775 return -1;
12776 break;
12777 case 'T':
12778 p = ++reply;
12779 target_tracept = (int) strtol (p, &reply, 16);
12780 if (reply == p)
12781 error (_("Unable to parse tracepoint number"));
12782 break;
12783 case 'O': /* "OK"? */
12784 if (reply[1] == 'K' && reply[2] == '\0')
12785 reply += 2;
12786 else
12787 error (_("Bogus reply from target: %s"), reply);
12788 break;
12789 default:
12790 error (_("Bogus reply from target: %s"), reply);
12791 }
12792 if (tpp)
12793 *tpp = target_tracept;
12794
12795 rs->remote_traceframe_number = target_frameno;
12796 return target_frameno;
12797 }
12798
12799 static int
12800 remote_get_trace_state_variable_value (struct target_ops *self,
12801 int tsvnum, LONGEST *val)
12802 {
12803 struct remote_state *rs = get_remote_state ();
12804 char *reply;
12805 ULONGEST uval;
12806
12807 set_remote_traceframe ();
12808
12809 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
12810 putpkt (rs->buf);
12811 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12812 if (reply && *reply)
12813 {
12814 if (*reply == 'V')
12815 {
12816 unpack_varlen_hex (reply + 1, &uval);
12817 *val = (LONGEST) uval;
12818 return 1;
12819 }
12820 }
12821 return 0;
12822 }
12823
12824 static int
12825 remote_save_trace_data (struct target_ops *self, const char *filename)
12826 {
12827 struct remote_state *rs = get_remote_state ();
12828 char *p, *reply;
12829
12830 p = rs->buf;
12831 strcpy (p, "QTSave:");
12832 p += strlen (p);
12833 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12834 error (_("Remote file name too long for trace save packet"));
12835 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
12836 *p++ = '\0';
12837 putpkt (rs->buf);
12838 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12839 if (*reply == '\0')
12840 error (_("Target does not support this command."));
12841 if (strcmp (reply, "OK") != 0)
12842 error (_("Bogus reply from target: %s"), reply);
12843 return 0;
12844 }
12845
12846 /* This is basically a memory transfer, but needs to be its own packet
12847 because we don't know how the target actually organizes its trace
12848 memory, plus we want to be able to ask for as much as possible, but
12849 not be unhappy if we don't get as much as we ask for. */
12850
12851 static LONGEST
12852 remote_get_raw_trace_data (struct target_ops *self,
12853 gdb_byte *buf, ULONGEST offset, LONGEST len)
12854 {
12855 struct remote_state *rs = get_remote_state ();
12856 char *reply;
12857 char *p;
12858 int rslt;
12859
12860 p = rs->buf;
12861 strcpy (p, "qTBuffer:");
12862 p += strlen (p);
12863 p += hexnumstr (p, offset);
12864 *p++ = ',';
12865 p += hexnumstr (p, len);
12866 *p++ = '\0';
12867
12868 putpkt (rs->buf);
12869 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12870 if (reply && *reply)
12871 {
12872 /* 'l' by itself means we're at the end of the buffer and
12873 there is nothing more to get. */
12874 if (*reply == 'l')
12875 return 0;
12876
12877 /* Convert the reply into binary. Limit the number of bytes to
12878 convert according to our passed-in buffer size, rather than
12879 what was returned in the packet; if the target is
12880 unexpectedly generous and gives us a bigger reply than we
12881 asked for, we don't want to crash. */
12882 rslt = hex2bin (target_buf, buf, len);
12883 return rslt;
12884 }
12885
12886 /* Something went wrong, flag as an error. */
12887 return -1;
12888 }
12889
12890 static void
12891 remote_set_disconnected_tracing (struct target_ops *self, int val)
12892 {
12893 struct remote_state *rs = get_remote_state ();
12894
12895 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
12896 {
12897 char *reply;
12898
12899 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
12900 putpkt (rs->buf);
12901 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12902 if (*reply == '\0')
12903 error (_("Target does not support this command."));
12904 if (strcmp (reply, "OK") != 0)
12905 error (_("Bogus reply from target: %s"), reply);
12906 }
12907 else if (val)
12908 warning (_("Target does not support disconnected tracing."));
12909 }
12910
12911 static int
12912 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12913 {
12914 struct thread_info *info = find_thread_ptid (ptid);
12915
12916 if (info && info->priv)
12917 return info->priv->core;
12918 return -1;
12919 }
12920
12921 static void
12922 remote_set_circular_trace_buffer (struct target_ops *self, int val)
12923 {
12924 struct remote_state *rs = get_remote_state ();
12925 char *reply;
12926
12927 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
12928 putpkt (rs->buf);
12929 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12930 if (*reply == '\0')
12931 error (_("Target does not support this command."));
12932 if (strcmp (reply, "OK") != 0)
12933 error (_("Bogus reply from target: %s"), reply);
12934 }
12935
12936 static struct traceframe_info *
12937 remote_traceframe_info (struct target_ops *self)
12938 {
12939 char *text;
12940
12941 text = target_read_stralloc (&current_target,
12942 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
12943 if (text != NULL)
12944 {
12945 struct traceframe_info *info;
12946 struct cleanup *back_to = make_cleanup (xfree, text);
12947
12948 info = parse_traceframe_info (text);
12949 do_cleanups (back_to);
12950 return info;
12951 }
12952
12953 return NULL;
12954 }
12955
12956 /* Handle the qTMinFTPILen packet. Returns the minimum length of
12957 instruction on which a fast tracepoint may be placed. Returns -1
12958 if the packet is not supported, and 0 if the minimum instruction
12959 length is unknown. */
12960
12961 static int
12962 remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
12963 {
12964 struct remote_state *rs = get_remote_state ();
12965 char *reply;
12966
12967 /* If we're not debugging a process yet, the IPA can't be
12968 loaded. */
12969 if (!target_has_execution)
12970 return 0;
12971
12972 /* Make sure the remote is pointing at the right process. */
12973 set_general_process ();
12974
12975 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
12976 putpkt (rs->buf);
12977 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12978 if (*reply == '\0')
12979 return -1;
12980 else
12981 {
12982 ULONGEST min_insn_len;
12983
12984 unpack_varlen_hex (reply, &min_insn_len);
12985
12986 return (int) min_insn_len;
12987 }
12988 }
12989
12990 static void
12991 remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
12992 {
12993 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
12994 {
12995 struct remote_state *rs = get_remote_state ();
12996 char *buf = rs->buf;
12997 char *endbuf = rs->buf + get_remote_packet_size ();
12998 enum packet_result result;
12999
13000 gdb_assert (val >= 0 || val == -1);
13001 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13002 /* Send -1 as literal "-1" to avoid host size dependency. */
13003 if (val < 0)
13004 {
13005 *buf++ = '-';
13006 buf += hexnumstr (buf, (ULONGEST) -val);
13007 }
13008 else
13009 buf += hexnumstr (buf, (ULONGEST) val);
13010
13011 putpkt (rs->buf);
13012 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
13013 result = packet_ok (rs->buf,
13014 &remote_protocol_packets[PACKET_QTBuffer_size]);
13015
13016 if (result != PACKET_OK)
13017 warning (_("Bogus reply from target: %s"), rs->buf);
13018 }
13019 }
13020
13021 static int
13022 remote_set_trace_notes (struct target_ops *self,
13023 const char *user, const char *notes,
13024 const char *stop_notes)
13025 {
13026 struct remote_state *rs = get_remote_state ();
13027 char *reply;
13028 char *buf = rs->buf;
13029 char *endbuf = rs->buf + get_remote_packet_size ();
13030 int nbytes;
13031
13032 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13033 if (user)
13034 {
13035 buf += xsnprintf (buf, endbuf - buf, "user:");
13036 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
13037 buf += 2 * nbytes;
13038 *buf++ = ';';
13039 }
13040 if (notes)
13041 {
13042 buf += xsnprintf (buf, endbuf - buf, "notes:");
13043 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
13044 buf += 2 * nbytes;
13045 *buf++ = ';';
13046 }
13047 if (stop_notes)
13048 {
13049 buf += xsnprintf (buf, endbuf - buf, "tstop:");
13050 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
13051 buf += 2 * nbytes;
13052 *buf++ = ';';
13053 }
13054 /* Ensure the buffer is terminated. */
13055 *buf = '\0';
13056
13057 putpkt (rs->buf);
13058 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
13059 if (*reply == '\0')
13060 return 0;
13061
13062 if (strcmp (reply, "OK") != 0)
13063 error (_("Bogus reply from target: %s"), reply);
13064
13065 return 1;
13066 }
13067
13068 static int
13069 remote_use_agent (struct target_ops *self, int use)
13070 {
13071 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
13072 {
13073 struct remote_state *rs = get_remote_state ();
13074
13075 /* If the stub supports QAgent. */
13076 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
13077 putpkt (rs->buf);
13078 getpkt (&rs->buf, &rs->buf_size, 0);
13079
13080 if (strcmp (rs->buf, "OK") == 0)
13081 {
13082 use_agent = use;
13083 return 1;
13084 }
13085 }
13086
13087 return 0;
13088 }
13089
13090 static int
13091 remote_can_use_agent (struct target_ops *self)
13092 {
13093 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
13094 }
13095
13096 struct btrace_target_info
13097 {
13098 /* The ptid of the traced thread. */
13099 ptid_t ptid;
13100
13101 /* The obtained branch trace configuration. */
13102 struct btrace_config conf;
13103 };
13104
13105 /* Reset our idea of our target's btrace configuration. */
13106
13107 static void
13108 remote_btrace_reset (void)
13109 {
13110 struct remote_state *rs = get_remote_state ();
13111
13112 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13113 }
13114
13115 /* Check whether the target supports branch tracing. */
13116
13117 static int
13118 remote_supports_btrace (struct target_ops *self, enum btrace_format format)
13119 {
13120 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
13121 return 0;
13122 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
13123 return 0;
13124
13125 switch (format)
13126 {
13127 case BTRACE_FORMAT_NONE:
13128 return 0;
13129
13130 case BTRACE_FORMAT_BTS:
13131 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
13132
13133 case BTRACE_FORMAT_PT:
13134 /* The trace is decoded on the host. Even if our target supports it,
13135 we still need to have libipt to decode the trace. */
13136 #if defined (HAVE_LIBIPT)
13137 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
13138 #else /* !defined (HAVE_LIBIPT) */
13139 return 0;
13140 #endif /* !defined (HAVE_LIBIPT) */
13141 }
13142
13143 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
13144 }
13145
13146 /* Synchronize the configuration with the target. */
13147
13148 static void
13149 btrace_sync_conf (const struct btrace_config *conf)
13150 {
13151 struct packet_config *packet;
13152 struct remote_state *rs;
13153 char *buf, *pos, *endbuf;
13154
13155 rs = get_remote_state ();
13156 buf = rs->buf;
13157 endbuf = buf + get_remote_packet_size ();
13158
13159 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13160 if (packet_config_support (packet) == PACKET_ENABLE
13161 && conf->bts.size != rs->btrace_config.bts.size)
13162 {
13163 pos = buf;
13164 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13165 conf->bts.size);
13166
13167 putpkt (buf);
13168 getpkt (&buf, &rs->buf_size, 0);
13169
13170 if (packet_ok (buf, packet) == PACKET_ERROR)
13171 {
13172 if (buf[0] == 'E' && buf[1] == '.')
13173 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13174 else
13175 error (_("Failed to configure the BTS buffer size."));
13176 }
13177
13178 rs->btrace_config.bts.size = conf->bts.size;
13179 }
13180
13181 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13182 if (packet_config_support (packet) == PACKET_ENABLE
13183 && conf->pt.size != rs->btrace_config.pt.size)
13184 {
13185 pos = buf;
13186 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13187 conf->pt.size);
13188
13189 putpkt (buf);
13190 getpkt (&buf, &rs->buf_size, 0);
13191
13192 if (packet_ok (buf, packet) == PACKET_ERROR)
13193 {
13194 if (buf[0] == 'E' && buf[1] == '.')
13195 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13196 else
13197 error (_("Failed to configure the trace buffer size."));
13198 }
13199
13200 rs->btrace_config.pt.size = conf->pt.size;
13201 }
13202 }
13203
13204 /* Read the current thread's btrace configuration from the target and
13205 store it into CONF. */
13206
13207 static void
13208 btrace_read_config (struct btrace_config *conf)
13209 {
13210 char *xml;
13211
13212 xml = target_read_stralloc (&current_target,
13213 TARGET_OBJECT_BTRACE_CONF, "");
13214 if (xml != NULL)
13215 {
13216 struct cleanup *cleanup;
13217
13218 cleanup = make_cleanup (xfree, xml);
13219 parse_xml_btrace_conf (conf, xml);
13220 do_cleanups (cleanup);
13221 }
13222 }
13223
13224 /* Maybe reopen target btrace. */
13225
13226 static void
13227 remote_btrace_maybe_reopen (void)
13228 {
13229 struct remote_state *rs = get_remote_state ();
13230 struct thread_info *tp;
13231 int btrace_target_pushed = 0;
13232 int warned = 0;
13233
13234 scoped_restore_current_thread restore_thread;
13235
13236 ALL_NON_EXITED_THREADS (tp)
13237 {
13238 set_general_thread (tp->ptid);
13239
13240 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13241 btrace_read_config (&rs->btrace_config);
13242
13243 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13244 continue;
13245
13246 #if !defined (HAVE_LIBIPT)
13247 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13248 {
13249 if (!warned)
13250 {
13251 warned = 1;
13252 warning (_("GDB does not support Intel Processor Trace. "
13253 "\"record\" will not work in this session."));
13254 }
13255
13256 continue;
13257 }
13258 #endif /* !defined (HAVE_LIBIPT) */
13259
13260 /* Push target, once, but before anything else happens. This way our
13261 changes to the threads will be cleaned up by unpushing the target
13262 in case btrace_read_config () throws. */
13263 if (!btrace_target_pushed)
13264 {
13265 btrace_target_pushed = 1;
13266 record_btrace_push_target ();
13267 printf_filtered (_("Target is recording using %s.\n"),
13268 btrace_format_string (rs->btrace_config.format));
13269 }
13270
13271 tp->btrace.target = XCNEW (struct btrace_target_info);
13272 tp->btrace.target->ptid = tp->ptid;
13273 tp->btrace.target->conf = rs->btrace_config;
13274 }
13275 }
13276
13277 /* Enable branch tracing. */
13278
13279 static struct btrace_target_info *
13280 remote_enable_btrace (struct target_ops *self, ptid_t ptid,
13281 const struct btrace_config *conf)
13282 {
13283 struct btrace_target_info *tinfo = NULL;
13284 struct packet_config *packet = NULL;
13285 struct remote_state *rs = get_remote_state ();
13286 char *buf = rs->buf;
13287 char *endbuf = rs->buf + get_remote_packet_size ();
13288
13289 switch (conf->format)
13290 {
13291 case BTRACE_FORMAT_BTS:
13292 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13293 break;
13294
13295 case BTRACE_FORMAT_PT:
13296 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13297 break;
13298 }
13299
13300 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
13301 error (_("Target does not support branch tracing."));
13302
13303 btrace_sync_conf (conf);
13304
13305 set_general_thread (ptid);
13306
13307 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13308 putpkt (rs->buf);
13309 getpkt (&rs->buf, &rs->buf_size, 0);
13310
13311 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13312 {
13313 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13314 error (_("Could not enable branch tracing for %s: %s"),
13315 target_pid_to_str (ptid), rs->buf + 2);
13316 else
13317 error (_("Could not enable branch tracing for %s."),
13318 target_pid_to_str (ptid));
13319 }
13320
13321 tinfo = XCNEW (struct btrace_target_info);
13322 tinfo->ptid = ptid;
13323
13324 /* If we fail to read the configuration, we lose some information, but the
13325 tracing itself is not impacted. */
13326 TRY
13327 {
13328 btrace_read_config (&tinfo->conf);
13329 }
13330 CATCH (err, RETURN_MASK_ERROR)
13331 {
13332 if (err.message != NULL)
13333 warning ("%s", err.message);
13334 }
13335 END_CATCH
13336
13337 return tinfo;
13338 }
13339
13340 /* Disable branch tracing. */
13341
13342 static void
13343 remote_disable_btrace (struct target_ops *self,
13344 struct btrace_target_info *tinfo)
13345 {
13346 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13347 struct remote_state *rs = get_remote_state ();
13348 char *buf = rs->buf;
13349 char *endbuf = rs->buf + get_remote_packet_size ();
13350
13351 if (packet_config_support (packet) != PACKET_ENABLE)
13352 error (_("Target does not support branch tracing."));
13353
13354 set_general_thread (tinfo->ptid);
13355
13356 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13357 putpkt (rs->buf);
13358 getpkt (&rs->buf, &rs->buf_size, 0);
13359
13360 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13361 {
13362 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13363 error (_("Could not disable branch tracing for %s: %s"),
13364 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13365 else
13366 error (_("Could not disable branch tracing for %s."),
13367 target_pid_to_str (tinfo->ptid));
13368 }
13369
13370 xfree (tinfo);
13371 }
13372
13373 /* Teardown branch tracing. */
13374
13375 static void
13376 remote_teardown_btrace (struct target_ops *self,
13377 struct btrace_target_info *tinfo)
13378 {
13379 /* We must not talk to the target during teardown. */
13380 xfree (tinfo);
13381 }
13382
13383 /* Read the branch trace. */
13384
13385 static enum btrace_error
13386 remote_read_btrace (struct target_ops *self,
13387 struct btrace_data *btrace,
13388 struct btrace_target_info *tinfo,
13389 enum btrace_read_type type)
13390 {
13391 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
13392 struct cleanup *cleanup;
13393 const char *annex;
13394 char *xml;
13395
13396 if (packet_config_support (packet) != PACKET_ENABLE)
13397 error (_("Target does not support branch tracing."));
13398
13399 #if !defined(HAVE_LIBEXPAT)
13400 error (_("Cannot process branch tracing result. XML parsing not supported."));
13401 #endif
13402
13403 switch (type)
13404 {
13405 case BTRACE_READ_ALL:
13406 annex = "all";
13407 break;
13408 case BTRACE_READ_NEW:
13409 annex = "new";
13410 break;
13411 case BTRACE_READ_DELTA:
13412 annex = "delta";
13413 break;
13414 default:
13415 internal_error (__FILE__, __LINE__,
13416 _("Bad branch tracing read type: %u."),
13417 (unsigned int) type);
13418 }
13419
13420 xml = target_read_stralloc (&current_target,
13421 TARGET_OBJECT_BTRACE, annex);
13422 if (xml == NULL)
13423 return BTRACE_ERR_UNKNOWN;
13424
13425 cleanup = make_cleanup (xfree, xml);
13426 parse_xml_btrace (btrace, xml);
13427 do_cleanups (cleanup);
13428
13429 return BTRACE_ERR_NONE;
13430 }
13431
13432 static const struct btrace_config *
13433 remote_btrace_conf (struct target_ops *self,
13434 const struct btrace_target_info *tinfo)
13435 {
13436 return &tinfo->conf;
13437 }
13438
13439 static int
13440 remote_augmented_libraries_svr4_read (struct target_ops *self)
13441 {
13442 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13443 == PACKET_ENABLE);
13444 }
13445
13446 /* Implementation of to_load. */
13447
13448 static void
13449 remote_load (struct target_ops *self, const char *name, int from_tty)
13450 {
13451 generic_load (name, from_tty);
13452 }
13453
13454 /* Accepts an integer PID; returns a string representing a file that
13455 can be opened on the remote side to get the symbols for the child
13456 process. Returns NULL if the operation is not supported. */
13457
13458 static char *
13459 remote_pid_to_exec_file (struct target_ops *self, int pid)
13460 {
13461 static char *filename = NULL;
13462 struct inferior *inf;
13463 char *annex = NULL;
13464
13465 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13466 return NULL;
13467
13468 if (filename != NULL)
13469 xfree (filename);
13470
13471 inf = find_inferior_pid (pid);
13472 if (inf == NULL)
13473 internal_error (__FILE__, __LINE__,
13474 _("not currently attached to process %d"), pid);
13475
13476 if (!inf->fake_pid_p)
13477 {
13478 const int annex_size = 9;
13479
13480 annex = (char *) alloca (annex_size);
13481 xsnprintf (annex, annex_size, "%x", pid);
13482 }
13483
13484 filename = target_read_stralloc (&current_target,
13485 TARGET_OBJECT_EXEC_FILE, annex);
13486
13487 return filename;
13488 }
13489
13490 /* Implement the to_can_do_single_step target_ops method. */
13491
13492 static int
13493 remote_can_do_single_step (struct target_ops *ops)
13494 {
13495 /* We can only tell whether target supports single step or not by
13496 supported s and S vCont actions if the stub supports vContSupported
13497 feature. If the stub doesn't support vContSupported feature,
13498 we have conservatively to think target doesn't supports single
13499 step. */
13500 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13501 {
13502 struct remote_state *rs = get_remote_state ();
13503
13504 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13505 remote_vcont_probe (rs);
13506
13507 return rs->supports_vCont.s && rs->supports_vCont.S;
13508 }
13509 else
13510 return 0;
13511 }
13512
13513 /* Implementation of the to_execution_direction method for the remote
13514 target. */
13515
13516 static enum exec_direction_kind
13517 remote_execution_direction (struct target_ops *self)
13518 {
13519 struct remote_state *rs = get_remote_state ();
13520
13521 return rs->last_resume_exec_dir;
13522 }
13523
13524 static void
13525 init_remote_ops (void)
13526 {
13527 remote_ops.to_shortname = "remote";
13528 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
13529 remote_ops.to_doc =
13530 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
13531 Specify the serial device it is connected to\n\
13532 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
13533 remote_ops.to_open = remote_open;
13534 remote_ops.to_close = remote_close;
13535 remote_ops.to_detach = remote_detach;
13536 remote_ops.to_disconnect = remote_disconnect;
13537 remote_ops.to_resume = remote_resume;
13538 remote_ops.to_commit_resume = remote_commit_resume;
13539 remote_ops.to_wait = remote_wait;
13540 remote_ops.to_fetch_registers = remote_fetch_registers;
13541 remote_ops.to_store_registers = remote_store_registers;
13542 remote_ops.to_prepare_to_store = remote_prepare_to_store;
13543 remote_ops.to_files_info = remote_files_info;
13544 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13545 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
13546 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13547 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13548 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13549 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
13550 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13551 remote_ops.to_stopped_data_address = remote_stopped_data_address;
13552 remote_ops.to_watchpoint_addr_within_range =
13553 remote_watchpoint_addr_within_range;
13554 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13555 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13556 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
13557 remote_ops.to_region_ok_for_hw_watchpoint
13558 = remote_region_ok_for_hw_watchpoint;
13559 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13560 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
13561 remote_ops.to_kill = remote_kill;
13562 remote_ops.to_load = remote_load;
13563 remote_ops.to_mourn_inferior = remote_mourn;
13564 remote_ops.to_pass_signals = remote_pass_signals;
13565 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
13566 remote_ops.to_program_signals = remote_program_signals;
13567 remote_ops.to_thread_alive = remote_thread_alive;
13568 remote_ops.to_thread_name = remote_thread_name;
13569 remote_ops.to_update_thread_list = remote_update_thread_list;
13570 remote_ops.to_pid_to_str = remote_pid_to_str;
13571 remote_ops.to_extra_thread_info = remote_threads_extra_info;
13572 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
13573 remote_ops.to_stop = remote_stop;
13574 remote_ops.to_interrupt = remote_interrupt;
13575 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
13576 remote_ops.to_xfer_partial = remote_xfer_partial;
13577 remote_ops.to_get_memory_xfer_limit = remote_get_memory_xfer_limit;
13578 remote_ops.to_rcmd = remote_rcmd;
13579 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
13580 remote_ops.to_log_command = serial_log_command;
13581 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
13582 remote_ops.to_stratum = process_stratum;
13583 remote_ops.to_has_all_memory = default_child_has_all_memory;
13584 remote_ops.to_has_memory = default_child_has_memory;
13585 remote_ops.to_has_stack = default_child_has_stack;
13586 remote_ops.to_has_registers = default_child_has_registers;
13587 remote_ops.to_has_execution = default_child_has_execution;
13588 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
13589 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
13590 remote_ops.to_magic = OPS_MAGIC;
13591 remote_ops.to_memory_map = remote_memory_map;
13592 remote_ops.to_flash_erase = remote_flash_erase;
13593 remote_ops.to_flash_done = remote_flash_done;
13594 remote_ops.to_read_description = remote_read_description;
13595 remote_ops.to_search_memory = remote_search_memory;
13596 remote_ops.to_can_async_p = remote_can_async_p;
13597 remote_ops.to_is_async_p = remote_is_async_p;
13598 remote_ops.to_async = remote_async;
13599 remote_ops.to_thread_events = remote_thread_events;
13600 remote_ops.to_can_do_single_step = remote_can_do_single_step;
13601 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13602 remote_ops.to_terminal_ours = remote_terminal_ours;
13603 remote_ops.to_supports_non_stop = remote_supports_non_stop;
13604 remote_ops.to_supports_multi_process = remote_supports_multi_process;
13605 remote_ops.to_supports_disable_randomization
13606 = remote_supports_disable_randomization;
13607 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
13608 remote_ops.to_fileio_open = remote_hostio_open;
13609 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13610 remote_ops.to_fileio_pread = remote_hostio_pread;
13611 remote_ops.to_fileio_fstat = remote_hostio_fstat;
13612 remote_ops.to_fileio_close = remote_hostio_close;
13613 remote_ops.to_fileio_unlink = remote_hostio_unlink;
13614 remote_ops.to_fileio_readlink = remote_hostio_readlink;
13615 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
13616 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
13617 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
13618 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
13619 remote_ops.to_trace_init = remote_trace_init;
13620 remote_ops.to_download_tracepoint = remote_download_tracepoint;
13621 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
13622 remote_ops.to_download_trace_state_variable
13623 = remote_download_trace_state_variable;
13624 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13625 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
13626 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13627 remote_ops.to_trace_start = remote_trace_start;
13628 remote_ops.to_get_trace_status = remote_get_trace_status;
13629 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
13630 remote_ops.to_trace_stop = remote_trace_stop;
13631 remote_ops.to_trace_find = remote_trace_find;
13632 remote_ops.to_get_trace_state_variable_value
13633 = remote_get_trace_state_variable_value;
13634 remote_ops.to_save_trace_data = remote_save_trace_data;
13635 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
13636 remote_ops.to_upload_trace_state_variables
13637 = remote_upload_trace_state_variables;
13638 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
13639 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
13640 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
13641 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
13642 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
13643 remote_ops.to_set_trace_notes = remote_set_trace_notes;
13644 remote_ops.to_core_of_thread = remote_core_of_thread;
13645 remote_ops.to_verify_memory = remote_verify_memory;
13646 remote_ops.to_get_tib_address = remote_get_tib_address;
13647 remote_ops.to_set_permissions = remote_set_permissions;
13648 remote_ops.to_static_tracepoint_marker_at
13649 = remote_static_tracepoint_marker_at;
13650 remote_ops.to_static_tracepoint_markers_by_strid
13651 = remote_static_tracepoint_markers_by_strid;
13652 remote_ops.to_traceframe_info = remote_traceframe_info;
13653 remote_ops.to_use_agent = remote_use_agent;
13654 remote_ops.to_can_use_agent = remote_can_use_agent;
13655 remote_ops.to_supports_btrace = remote_supports_btrace;
13656 remote_ops.to_enable_btrace = remote_enable_btrace;
13657 remote_ops.to_disable_btrace = remote_disable_btrace;
13658 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13659 remote_ops.to_read_btrace = remote_read_btrace;
13660 remote_ops.to_btrace_conf = remote_btrace_conf;
13661 remote_ops.to_augmented_libraries_svr4_read =
13662 remote_augmented_libraries_svr4_read;
13663 remote_ops.to_follow_fork = remote_follow_fork;
13664 remote_ops.to_follow_exec = remote_follow_exec;
13665 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13666 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13667 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13668 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13669 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13670 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
13671 remote_ops.to_execution_direction = remote_execution_direction;
13672 }
13673
13674 /* Set up the extended remote vector by making a copy of the standard
13675 remote vector and adding to it. */
13676
13677 static void
13678 init_extended_remote_ops (void)
13679 {
13680 extended_remote_ops = remote_ops;
13681
13682 extended_remote_ops.to_shortname = "extended-remote";
13683 extended_remote_ops.to_longname =
13684 "Extended remote serial target in gdb-specific protocol";
13685 extended_remote_ops.to_doc =
13686 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
13687 Specify the serial device it is connected to (e.g. /dev/ttya).";
13688 extended_remote_ops.to_open = extended_remote_open;
13689 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
13690 extended_remote_ops.to_detach = extended_remote_detach;
13691 extended_remote_ops.to_attach = extended_remote_attach;
13692 extended_remote_ops.to_post_attach = extended_remote_post_attach;
13693 extended_remote_ops.to_supports_disable_randomization
13694 = extended_remote_supports_disable_randomization;
13695 }
13696
13697 static int
13698 remote_can_async_p (struct target_ops *ops)
13699 {
13700 struct remote_state *rs = get_remote_state ();
13701
13702 /* We don't go async if the user has explicitly prevented it with the
13703 "maint set target-async" command. */
13704 if (!target_async_permitted)
13705 return 0;
13706
13707 /* We're async whenever the serial device is. */
13708 return serial_can_async_p (rs->remote_desc);
13709 }
13710
13711 static int
13712 remote_is_async_p (struct target_ops *ops)
13713 {
13714 struct remote_state *rs = get_remote_state ();
13715
13716 if (!target_async_permitted)
13717 /* We only enable async when the user specifically asks for it. */
13718 return 0;
13719
13720 /* We're async whenever the serial device is. */
13721 return serial_is_async_p (rs->remote_desc);
13722 }
13723
13724 /* Pass the SERIAL event on and up to the client. One day this code
13725 will be able to delay notifying the client of an event until the
13726 point where an entire packet has been received. */
13727
13728 static serial_event_ftype remote_async_serial_handler;
13729
13730 static void
13731 remote_async_serial_handler (struct serial *scb, void *context)
13732 {
13733 /* Don't propogate error information up to the client. Instead let
13734 the client find out about the error by querying the target. */
13735 inferior_event_handler (INF_REG_EVENT, NULL);
13736 }
13737
13738 static void
13739 remote_async_inferior_event_handler (gdb_client_data data)
13740 {
13741 inferior_event_handler (INF_REG_EVENT, NULL);
13742 }
13743
13744 static void
13745 remote_async (struct target_ops *ops, int enable)
13746 {
13747 struct remote_state *rs = get_remote_state ();
13748
13749 if (enable)
13750 {
13751 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
13752
13753 /* If there are pending events in the stop reply queue tell the
13754 event loop to process them. */
13755 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13756 mark_async_event_handler (remote_async_inferior_event_token);
13757 /* For simplicity, below we clear the pending events token
13758 without remembering whether it is marked, so here we always
13759 mark it. If there's actually no pending notification to
13760 process, this ends up being a no-op (other than a spurious
13761 event-loop wakeup). */
13762 if (target_is_non_stop_p ())
13763 mark_async_event_handler (rs->notif_state->get_pending_events_token);
13764 }
13765 else
13766 {
13767 serial_async (rs->remote_desc, NULL, NULL);
13768 /* If the core is disabling async, it doesn't want to be
13769 disturbed with target events. Clear all async event sources
13770 too. */
13771 clear_async_event_handler (remote_async_inferior_event_token);
13772 if (target_is_non_stop_p ())
13773 clear_async_event_handler (rs->notif_state->get_pending_events_token);
13774 }
13775 }
13776
13777 /* Implementation of the to_thread_events method. */
13778
13779 static void
13780 remote_thread_events (struct target_ops *ops, int enable)
13781 {
13782 struct remote_state *rs = get_remote_state ();
13783 size_t size = get_remote_packet_size ();
13784
13785 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13786 return;
13787
13788 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13789 putpkt (rs->buf);
13790 getpkt (&rs->buf, &rs->buf_size, 0);
13791
13792 switch (packet_ok (rs->buf,
13793 &remote_protocol_packets[PACKET_QThreadEvents]))
13794 {
13795 case PACKET_OK:
13796 if (strcmp (rs->buf, "OK") != 0)
13797 error (_("Remote refused setting thread events: %s"), rs->buf);
13798 break;
13799 case PACKET_ERROR:
13800 warning (_("Remote failure reply: %s"), rs->buf);
13801 break;
13802 case PACKET_UNKNOWN:
13803 break;
13804 }
13805 }
13806
13807 static void
13808 set_remote_cmd (char *args, int from_tty)
13809 {
13810 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
13811 }
13812
13813 static void
13814 show_remote_cmd (char *args, int from_tty)
13815 {
13816 /* We can't just use cmd_show_list here, because we want to skip
13817 the redundant "show remote Z-packet" and the legacy aliases. */
13818 struct cmd_list_element *list = remote_show_cmdlist;
13819 struct ui_out *uiout = current_uiout;
13820
13821 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
13822 for (; list != NULL; list = list->next)
13823 if (strcmp (list->name, "Z-packet") == 0)
13824 continue;
13825 else if (list->type == not_set_cmd)
13826 /* Alias commands are exactly like the original, except they
13827 don't have the normal type. */
13828 continue;
13829 else
13830 {
13831 ui_out_emit_tuple option_emitter (uiout, "option");
13832
13833 uiout->field_string ("name", list->name);
13834 uiout->text (": ");
13835 if (list->type == show_cmd)
13836 do_show_command (NULL, from_tty, list);
13837 else
13838 cmd_func (list, NULL, from_tty);
13839 }
13840 }
13841
13842
13843 /* Function to be called whenever a new objfile (shlib) is detected. */
13844 static void
13845 remote_new_objfile (struct objfile *objfile)
13846 {
13847 struct remote_state *rs = get_remote_state ();
13848
13849 if (rs->remote_desc != 0) /* Have a remote connection. */
13850 remote_check_symbols ();
13851 }
13852
13853 /* Pull all the tracepoints defined on the target and create local
13854 data structures representing them. We don't want to create real
13855 tracepoints yet, we don't want to mess up the user's existing
13856 collection. */
13857
13858 static int
13859 remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
13860 {
13861 struct remote_state *rs = get_remote_state ();
13862 char *p;
13863
13864 /* Ask for a first packet of tracepoint definition. */
13865 putpkt ("qTfP");
13866 getpkt (&rs->buf, &rs->buf_size, 0);
13867 p = rs->buf;
13868 while (*p && *p != 'l')
13869 {
13870 parse_tracepoint_definition (p, utpp);
13871 /* Ask for another packet of tracepoint definition. */
13872 putpkt ("qTsP");
13873 getpkt (&rs->buf, &rs->buf_size, 0);
13874 p = rs->buf;
13875 }
13876 return 0;
13877 }
13878
13879 static int
13880 remote_upload_trace_state_variables (struct target_ops *self,
13881 struct uploaded_tsv **utsvp)
13882 {
13883 struct remote_state *rs = get_remote_state ();
13884 char *p;
13885
13886 /* Ask for a first packet of variable definition. */
13887 putpkt ("qTfV");
13888 getpkt (&rs->buf, &rs->buf_size, 0);
13889 p = rs->buf;
13890 while (*p && *p != 'l')
13891 {
13892 parse_tsv_definition (p, utsvp);
13893 /* Ask for another packet of variable definition. */
13894 putpkt ("qTsV");
13895 getpkt (&rs->buf, &rs->buf_size, 0);
13896 p = rs->buf;
13897 }
13898 return 0;
13899 }
13900
13901 /* The "set/show range-stepping" show hook. */
13902
13903 static void
13904 show_range_stepping (struct ui_file *file, int from_tty,
13905 struct cmd_list_element *c,
13906 const char *value)
13907 {
13908 fprintf_filtered (file,
13909 _("Debugger's willingness to use range stepping "
13910 "is %s.\n"), value);
13911 }
13912
13913 /* The "set/show range-stepping" set hook. */
13914
13915 static void
13916 set_range_stepping (char *ignore_args, int from_tty,
13917 struct cmd_list_element *c)
13918 {
13919 struct remote_state *rs = get_remote_state ();
13920
13921 /* Whene enabling, check whether range stepping is actually
13922 supported by the target, and warn if not. */
13923 if (use_range_stepping)
13924 {
13925 if (rs->remote_desc != NULL)
13926 {
13927 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13928 remote_vcont_probe (rs);
13929
13930 if (packet_support (PACKET_vCont) == PACKET_ENABLE
13931 && rs->supports_vCont.r)
13932 return;
13933 }
13934
13935 warning (_("Range stepping is not supported by the current target"));
13936 }
13937 }
13938
13939 void
13940 _initialize_remote (void)
13941 {
13942 struct cmd_list_element *cmd;
13943 const char *cmd_name;
13944
13945 /* architecture specific data */
13946 remote_gdbarch_data_handle =
13947 gdbarch_data_register_post_init (init_remote_state);
13948 remote_g_packet_data_handle =
13949 gdbarch_data_register_pre_init (remote_g_packet_data_init);
13950
13951 remote_pspace_data
13952 = register_program_space_data_with_cleanup (NULL,
13953 remote_pspace_data_cleanup);
13954
13955 /* Initialize the per-target state. At the moment there is only one
13956 of these, not one per target. Only one target is active at a
13957 time. */
13958 remote_state = new_remote_state ();
13959
13960 init_remote_ops ();
13961 add_target (&remote_ops);
13962
13963 init_extended_remote_ops ();
13964 add_target (&extended_remote_ops);
13965
13966 /* Hook into new objfile notification. */
13967 observer_attach_new_objfile (remote_new_objfile);
13968 /* We're no longer interested in notification events of an inferior
13969 when it exits. */
13970 observer_attach_inferior_exit (discard_pending_stop_replies);
13971
13972 #if 0
13973 init_remote_threadtests ();
13974 #endif
13975
13976 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
13977 /* set/show remote ... */
13978
13979 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
13980 Remote protocol specific variables\n\
13981 Configure various remote-protocol specific variables such as\n\
13982 the packets being used"),
13983 &remote_set_cmdlist, "set remote ",
13984 0 /* allow-unknown */, &setlist);
13985 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
13986 Remote protocol specific variables\n\
13987 Configure various remote-protocol specific variables such as\n\
13988 the packets being used"),
13989 &remote_show_cmdlist, "show remote ",
13990 0 /* allow-unknown */, &showlist);
13991
13992 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13993 Compare section data on target to the exec file.\n\
13994 Argument is a single section name (default: all loaded sections).\n\
13995 To compare only read-only loaded sections, specify the -r option."),
13996 &cmdlist);
13997
13998 add_cmd ("packet", class_maintenance, packet_command, _("\
13999 Send an arbitrary packet to a remote target.\n\
14000 maintenance packet TEXT\n\
14001 If GDB is talking to an inferior via the GDB serial protocol, then\n\
14002 this command sends the string TEXT to the inferior, and displays the\n\
14003 response packet. GDB supplies the initial `$' character, and the\n\
14004 terminating `#' character and checksum."),
14005 &maintenancelist);
14006
14007 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14008 Set whether to send break if interrupted."), _("\
14009 Show whether to send break if interrupted."), _("\
14010 If set, a break, instead of a cntrl-c, is sent to the remote target."),
14011 set_remotebreak, show_remotebreak,
14012 &setlist, &showlist);
14013 cmd_name = "remotebreak";
14014 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14015 deprecate_cmd (cmd, "set remote interrupt-sequence");
14016 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14017 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14018 deprecate_cmd (cmd, "show remote interrupt-sequence");
14019
14020 add_setshow_enum_cmd ("interrupt-sequence", class_support,
14021 interrupt_sequence_modes, &interrupt_sequence_mode,
14022 _("\
14023 Set interrupt sequence to remote target."), _("\
14024 Show interrupt sequence to remote target."), _("\
14025 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14026 NULL, show_interrupt_sequence,
14027 &remote_set_cmdlist,
14028 &remote_show_cmdlist);
14029
14030 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14031 &interrupt_on_connect, _("\
14032 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14033 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14034 If set, interrupt sequence is sent to remote target."),
14035 NULL, NULL,
14036 &remote_set_cmdlist, &remote_show_cmdlist);
14037
14038 /* Install commands for configuring memory read/write packets. */
14039
14040 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14041 Set the maximum number of bytes per memory write packet (deprecated)."),
14042 &setlist);
14043 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14044 Show the maximum number of bytes per memory write packet (deprecated)."),
14045 &showlist);
14046 add_cmd ("memory-write-packet-size", no_class,
14047 set_memory_write_packet_size, _("\
14048 Set the maximum number of bytes per memory-write packet.\n\
14049 Specify the number of bytes in a packet or 0 (zero) for the\n\
14050 default packet size. The actual limit is further reduced\n\
14051 dependent on the target. Specify ``fixed'' to disable the\n\
14052 further restriction and ``limit'' to enable that restriction."),
14053 &remote_set_cmdlist);
14054 add_cmd ("memory-read-packet-size", no_class,
14055 set_memory_read_packet_size, _("\
14056 Set the maximum number of bytes per memory-read packet.\n\
14057 Specify the number of bytes in a packet or 0 (zero) for the\n\
14058 default packet size. The actual limit is further reduced\n\
14059 dependent on the target. Specify ``fixed'' to disable the\n\
14060 further restriction and ``limit'' to enable that restriction."),
14061 &remote_set_cmdlist);
14062 add_cmd ("memory-write-packet-size", no_class,
14063 show_memory_write_packet_size,
14064 _("Show the maximum number of bytes per memory-write packet."),
14065 &remote_show_cmdlist);
14066 add_cmd ("memory-read-packet-size", no_class,
14067 show_memory_read_packet_size,
14068 _("Show the maximum number of bytes per memory-read packet."),
14069 &remote_show_cmdlist);
14070
14071 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
14072 &remote_hw_watchpoint_limit, _("\
14073 Set the maximum number of target hardware watchpoints."), _("\
14074 Show the maximum number of target hardware watchpoints."), _("\
14075 Specify a negative limit for unlimited."),
14076 NULL, NULL, /* FIXME: i18n: The maximum
14077 number of target hardware
14078 watchpoints is %s. */
14079 &remote_set_cmdlist, &remote_show_cmdlist);
14080 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
14081 &remote_hw_watchpoint_length_limit, _("\
14082 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14083 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14084 Specify a negative limit for unlimited."),
14085 NULL, NULL, /* FIXME: i18n: The maximum
14086 length (in bytes) of a target
14087 hardware watchpoint is %s. */
14088 &remote_set_cmdlist, &remote_show_cmdlist);
14089 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
14090 &remote_hw_breakpoint_limit, _("\
14091 Set the maximum number of target hardware breakpoints."), _("\
14092 Show the maximum number of target hardware breakpoints."), _("\
14093 Specify a negative limit for unlimited."),
14094 NULL, NULL, /* FIXME: i18n: The maximum
14095 number of target hardware
14096 breakpoints is %s. */
14097 &remote_set_cmdlist, &remote_show_cmdlist);
14098
14099 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14100 &remote_address_size, _("\
14101 Set the maximum size of the address (in bits) in a memory packet."), _("\
14102 Show the maximum size of the address (in bits) in a memory packet."), NULL,
14103 NULL,
14104 NULL, /* FIXME: i18n: */
14105 &setlist, &showlist);
14106
14107 init_all_packet_configs ();
14108
14109 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
14110 "X", "binary-download", 1);
14111
14112 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
14113 "vCont", "verbose-resume", 0);
14114
14115 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14116 "QPassSignals", "pass-signals", 0);
14117
14118 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14119 "QCatchSyscalls", "catch-syscalls", 0);
14120
14121 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14122 "QProgramSignals", "program-signals", 0);
14123
14124 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14125 "QStartupWithShell", "startup-with-shell", 0);
14126
14127 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
14128 "qSymbol", "symbol-lookup", 0);
14129
14130 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
14131 "P", "set-register", 1);
14132
14133 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
14134 "p", "fetch-register", 1);
14135
14136 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
14137 "Z0", "software-breakpoint", 0);
14138
14139 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
14140 "Z1", "hardware-breakpoint", 0);
14141
14142 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
14143 "Z2", "write-watchpoint", 0);
14144
14145 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
14146 "Z3", "read-watchpoint", 0);
14147
14148 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
14149 "Z4", "access-watchpoint", 0);
14150
14151 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14152 "qXfer:auxv:read", "read-aux-vector", 0);
14153
14154 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14155 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14156
14157 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14158 "qXfer:features:read", "target-features", 0);
14159
14160 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14161 "qXfer:libraries:read", "library-info", 0);
14162
14163 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14164 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14165
14166 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14167 "qXfer:memory-map:read", "memory-map", 0);
14168
14169 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14170 "qXfer:spu:read", "read-spu-object", 0);
14171
14172 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14173 "qXfer:spu:write", "write-spu-object", 0);
14174
14175 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14176 "qXfer:osdata:read", "osdata", 0);
14177
14178 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14179 "qXfer:threads:read", "threads", 0);
14180
14181 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14182 "qXfer:siginfo:read", "read-siginfo-object", 0);
14183
14184 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14185 "qXfer:siginfo:write", "write-siginfo-object", 0);
14186
14187 add_packet_config_cmd
14188 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
14189 "qXfer:traceframe-info:read", "traceframe-info", 0);
14190
14191 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14192 "qXfer:uib:read", "unwind-info-block", 0);
14193
14194 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
14195 "qGetTLSAddr", "get-thread-local-storage-address",
14196 0);
14197
14198 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14199 "qGetTIBAddr", "get-thread-information-block-address",
14200 0);
14201
14202 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14203 "bc", "reverse-continue", 0);
14204
14205 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14206 "bs", "reverse-step", 0);
14207
14208 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14209 "qSupported", "supported-packets", 0);
14210
14211 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14212 "qSearch:memory", "search-memory", 0);
14213
14214 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14215 "qTStatus", "trace-status", 0);
14216
14217 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14218 "vFile:setfs", "hostio-setfs", 0);
14219
14220 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14221 "vFile:open", "hostio-open", 0);
14222
14223 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14224 "vFile:pread", "hostio-pread", 0);
14225
14226 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14227 "vFile:pwrite", "hostio-pwrite", 0);
14228
14229 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14230 "vFile:close", "hostio-close", 0);
14231
14232 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14233 "vFile:unlink", "hostio-unlink", 0);
14234
14235 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14236 "vFile:readlink", "hostio-readlink", 0);
14237
14238 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14239 "vFile:fstat", "hostio-fstat", 0);
14240
14241 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14242 "vAttach", "attach", 0);
14243
14244 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14245 "vRun", "run", 0);
14246
14247 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14248 "QStartNoAckMode", "noack", 0);
14249
14250 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14251 "vKill", "kill", 0);
14252
14253 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14254 "qAttached", "query-attached", 0);
14255
14256 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
14257 "ConditionalTracepoints",
14258 "conditional-tracepoints", 0);
14259
14260 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14261 "ConditionalBreakpoints",
14262 "conditional-breakpoints", 0);
14263
14264 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14265 "BreakpointCommands",
14266 "breakpoint-commands", 0);
14267
14268 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14269 "FastTracepoints", "fast-tracepoints", 0);
14270
14271 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14272 "TracepointSource", "TracepointSource", 0);
14273
14274 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14275 "QAllow", "allow", 0);
14276
14277 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14278 "StaticTracepoints", "static-tracepoints", 0);
14279
14280 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14281 "InstallInTrace", "install-in-trace", 0);
14282
14283 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14284 "qXfer:statictrace:read", "read-sdata-object", 0);
14285
14286 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14287 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14288
14289 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14290 "QDisableRandomization", "disable-randomization", 0);
14291
14292 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14293 "QAgent", "agent", 0);
14294
14295 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14296 "QTBuffer:size", "trace-buffer-size", 0);
14297
14298 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14299 "Qbtrace:off", "disable-btrace", 0);
14300
14301 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
14302 "Qbtrace:bts", "enable-btrace-bts", 0);
14303
14304 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14305 "Qbtrace:pt", "enable-btrace-pt", 0);
14306
14307 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14308 "qXfer:btrace", "read-btrace", 0);
14309
14310 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14311 "qXfer:btrace-conf", "read-btrace-conf", 0);
14312
14313 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14314 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14315
14316 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14317 "multiprocess-feature", "multiprocess-feature", 0);
14318
14319 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14320 "swbreak-feature", "swbreak-feature", 0);
14321
14322 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14323 "hwbreak-feature", "hwbreak-feature", 0);
14324
14325 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14326 "fork-event-feature", "fork-event-feature", 0);
14327
14328 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14329 "vfork-event-feature", "vfork-event-feature", 0);
14330
14331 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14332 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14333
14334 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14335 "vContSupported", "verbose-resume-supported", 0);
14336
14337 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14338 "exec-event-feature", "exec-event-feature", 0);
14339
14340 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14341 "vCtrlC", "ctrl-c", 0);
14342
14343 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14344 "QThreadEvents", "thread-events", 0);
14345
14346 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14347 "N stop reply", "no-resumed-stop-reply", 0);
14348
14349 /* Assert that we've registered "set remote foo-packet" commands
14350 for all packet configs. */
14351 {
14352 int i;
14353
14354 for (i = 0; i < PACKET_MAX; i++)
14355 {
14356 /* Ideally all configs would have a command associated. Some
14357 still don't though. */
14358 int excepted;
14359
14360 switch (i)
14361 {
14362 case PACKET_QNonStop:
14363 case PACKET_EnableDisableTracepoints_feature:
14364 case PACKET_tracenz_feature:
14365 case PACKET_DisconnectedTracing_feature:
14366 case PACKET_augmented_libraries_svr4_read_feature:
14367 case PACKET_qCRC:
14368 /* Additions to this list need to be well justified:
14369 pre-existing packets are OK; new packets are not. */
14370 excepted = 1;
14371 break;
14372 default:
14373 excepted = 0;
14374 break;
14375 }
14376
14377 /* This catches both forgetting to add a config command, and
14378 forgetting to remove a packet from the exception list. */
14379 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14380 }
14381 }
14382
14383 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14384 Z sub-packet has its own set and show commands, but users may
14385 have sets to this variable in their .gdbinit files (or in their
14386 documentation). */
14387 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
14388 &remote_Z_packet_detect, _("\
14389 Set use of remote protocol `Z' packets"), _("\
14390 Show use of remote protocol `Z' packets "), _("\
14391 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
14392 packets."),
14393 set_remote_protocol_Z_packet_cmd,
14394 show_remote_protocol_Z_packet_cmd,
14395 /* FIXME: i18n: Use of remote protocol
14396 `Z' packets is %s. */
14397 &remote_set_cmdlist, &remote_show_cmdlist);
14398
14399 add_prefix_cmd ("remote", class_files, remote_command, _("\
14400 Manipulate files on the remote system\n\
14401 Transfer files to and from the remote target system."),
14402 &remote_cmdlist, "remote ",
14403 0 /* allow-unknown */, &cmdlist);
14404
14405 add_cmd ("put", class_files, remote_put_command,
14406 _("Copy a local file to the remote system."),
14407 &remote_cmdlist);
14408
14409 add_cmd ("get", class_files, remote_get_command,
14410 _("Copy a remote file to the local system."),
14411 &remote_cmdlist);
14412
14413 add_cmd ("delete", class_files, remote_delete_command,
14414 _("Delete a remote file."),
14415 &remote_cmdlist);
14416
14417 add_setshow_string_noescape_cmd ("exec-file", class_files,
14418 &remote_exec_file_var, _("\
14419 Set the remote pathname for \"run\""), _("\
14420 Show the remote pathname for \"run\""), NULL,
14421 set_remote_exec_file,
14422 show_remote_exec_file,
14423 &remote_set_cmdlist,
14424 &remote_show_cmdlist);
14425
14426 add_setshow_boolean_cmd ("range-stepping", class_run,
14427 &use_range_stepping, _("\
14428 Enable or disable range stepping."), _("\
14429 Show whether target-assisted range stepping is enabled."), _("\
14430 If on, and the target supports it, when stepping a source line, GDB\n\
14431 tells the target to step the corresponding range of addresses itself instead\n\
14432 of issuing multiple single-steps. This speeds up source level\n\
14433 stepping. If off, GDB always issues single-steps, even if range\n\
14434 stepping is supported by the target. The default is on."),
14435 set_range_stepping,
14436 show_range_stepping,
14437 &setlist,
14438 &showlist);
14439
14440 /* Eventually initialize fileio. See fileio.c */
14441 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
14442
14443 /* Take advantage of the fact that the TID field is not used, to tag
14444 special ptids with it set to != 0. */
14445 magic_null_ptid = ptid_build (42000, -1, 1);
14446 not_sent_ptid = ptid_build (42000, -2, 1);
14447 any_thread_ptid = ptid_build (42000, 0, 1);
14448
14449 target_buf_size = 2048;
14450 target_buf = (char *) xmalloc (target_buf_size);
14451 }
14452
This page took 0.343715 seconds and 5 git commands to generate.