e4b2095a40dced437613bdf22549ad58ffad6f23
[deliverable/binutils-gdb.git] / gdb / remote.c
1 /* Remote target communications for serial-line targets in custom GDB protocol
2
3 Copyright (C) 1988-2016 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
74 /* Temp hacks for tracepoint encoding migration. */
75 static char *target_buf;
76 static long target_buf_size;
77
78 /* Per-program-space data key. */
79 static const struct program_space_data *remote_pspace_data;
80
81 /* The variable registered as the control variable used by the
82 remote exec-file commands. While the remote exec-file setting is
83 per-program-space, the set/show machinery uses this as the
84 location of the remote exec-file value. */
85 static char *remote_exec_file_var;
86
87 /* The size to align memory write packets, when practical. The protocol
88 does not guarantee any alignment, and gdb will generate short
89 writes and unaligned writes, but even as a best-effort attempt this
90 can improve bulk transfers. For instance, if a write is misaligned
91 relative to the target's data bus, the stub may need to make an extra
92 round trip fetching data from the target. This doesn't make a
93 huge difference, but it's easy to do, so we try to be helpful.
94
95 The alignment chosen is arbitrary; usually data bus width is
96 important here, not the possibly larger cache line size. */
97 enum { REMOTE_ALIGN_WRITES = 16 };
98
99 /* Prototypes for local functions. */
100 static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
101 static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
102 int forever, int *is_notif);
103
104 static void remote_files_info (struct target_ops *ignore);
105
106 static void remote_prepare_to_store (struct target_ops *self,
107 struct regcache *regcache);
108
109 static void remote_open_1 (const char *, int, struct target_ops *,
110 int extended_p);
111
112 static void remote_close (struct target_ops *self);
113
114 struct remote_state;
115
116 static int remote_vkill (int pid, struct remote_state *rs);
117
118 static void remote_kill_k (void);
119
120 static void remote_mourn (struct target_ops *ops);
121
122 static void extended_remote_restart (void);
123
124 static void remote_send (char **buf, long *sizeof_buf_p);
125
126 static int readchar (int timeout);
127
128 static void remote_serial_write (const char *str, int len);
129
130 static void remote_kill (struct target_ops *ops);
131
132 static int remote_can_async_p (struct target_ops *);
133
134 static int remote_is_async_p (struct target_ops *);
135
136 static void remote_async (struct target_ops *ops, int enable);
137
138 static void remote_thread_events (struct target_ops *ops, int enable);
139
140 static void interrupt_query (void);
141
142 static void set_general_thread (struct ptid ptid);
143 static void set_continue_thread (struct ptid ptid);
144
145 static void get_offsets (void);
146
147 static void skip_frame (void);
148
149 static long read_frame (char **buf_p, long *sizeof_buf);
150
151 static int hexnumlen (ULONGEST num);
152
153 static void init_remote_ops (void);
154
155 static void init_extended_remote_ops (void);
156
157 static void remote_stop (struct target_ops *self, ptid_t);
158
159 static int stubhex (int ch);
160
161 static int hexnumstr (char *, ULONGEST);
162
163 static int hexnumnstr (char *, ULONGEST, int);
164
165 static CORE_ADDR remote_address_masked (CORE_ADDR);
166
167 static void print_packet (const char *);
168
169 static void compare_sections_command (char *, int);
170
171 static void packet_command (char *, int);
172
173 static int stub_unpack_int (char *buff, int fieldlength);
174
175 static ptid_t remote_current_thread (ptid_t oldptid);
176
177 static int putpkt_binary (const char *buf, int cnt);
178
179 static void check_binary_download (CORE_ADDR addr);
180
181 struct packet_config;
182
183 static void show_packet_config_cmd (struct packet_config *config);
184
185 static void show_remote_protocol_packet_cmd (struct ui_file *file,
186 int from_tty,
187 struct cmd_list_element *c,
188 const char *value);
189
190 static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
191 static ptid_t read_ptid (char *buf, char **obuf);
192
193 static void remote_set_permissions (struct target_ops *self);
194
195 static int remote_get_trace_status (struct target_ops *self,
196 struct trace_status *ts);
197
198 static int remote_upload_tracepoints (struct target_ops *self,
199 struct uploaded_tp **utpp);
200
201 static int remote_upload_trace_state_variables (struct target_ops *self,
202 struct uploaded_tsv **utsvp);
203
204 static void remote_query_supported (void);
205
206 static void remote_check_symbols (void);
207
208 void _initialize_remote (void);
209
210 struct stop_reply;
211 static void stop_reply_xfree (struct stop_reply *);
212 static void remote_parse_stop_reply (char *, struct stop_reply *);
213 static void push_stop_reply (struct stop_reply *);
214 static void discard_pending_stop_replies_in_queue (struct remote_state *);
215 static int peek_stop_reply (ptid_t ptid);
216
217 struct threads_listing_context;
218 static void remove_new_fork_children (struct threads_listing_context *);
219
220 static void remote_async_inferior_event_handler (gdb_client_data);
221
222 static void remote_terminal_ours (struct target_ops *self);
223
224 static int remote_read_description_p (struct target_ops *target);
225
226 static void remote_console_output (char *msg);
227
228 static int remote_supports_cond_breakpoints (struct target_ops *self);
229
230 static int remote_can_run_breakpoint_commands (struct target_ops *self);
231
232 static void remote_btrace_reset (void);
233
234 static int stop_reply_queue_length (void);
235
236 static void readahead_cache_invalidate (void);
237
238 static void remote_unpush_and_throw (void);
239
240 /* For "remote". */
241
242 static struct cmd_list_element *remote_cmdlist;
243
244 /* For "set remote" and "show remote". */
245
246 static struct cmd_list_element *remote_set_cmdlist;
247 static struct cmd_list_element *remote_show_cmdlist;
248
249 /* Stub vCont actions support.
250
251 Each field is a boolean flag indicating whether the stub reports
252 support for the corresponding action. */
253
254 struct vCont_action_support
255 {
256 /* vCont;t */
257 int t;
258
259 /* vCont;r */
260 int r;
261
262 /* vCont;s */
263 int s;
264
265 /* vCont;S */
266 int S;
267 };
268
269 /* Controls whether GDB is willing to use range stepping. */
270
271 static int use_range_stepping = 1;
272
273 #define OPAQUETHREADBYTES 8
274
275 /* a 64 bit opaque identifier */
276 typedef unsigned char threadref[OPAQUETHREADBYTES];
277
278 /* About this many threadisds fit in a packet. */
279
280 #define MAXTHREADLISTRESULTS 32
281
282 /* Data for the vFile:pread readahead cache. */
283
284 struct readahead_cache
285 {
286 /* The file descriptor for the file that is being cached. -1 if the
287 cache is invalid. */
288 int fd;
289
290 /* The offset into the file that the cache buffer corresponds
291 to. */
292 ULONGEST offset;
293
294 /* The buffer holding the cache contents. */
295 gdb_byte *buf;
296 /* The buffer's size. We try to read as much as fits into a packet
297 at a time. */
298 size_t bufsize;
299
300 /* Cache hit and miss counters. */
301 ULONGEST hit_count;
302 ULONGEST miss_count;
303 };
304
305 /* Description of the remote protocol state for the currently
306 connected target. This is per-target state, and independent of the
307 selected architecture. */
308
309 struct remote_state
310 {
311 /* A buffer to use for incoming packets, and its current size. The
312 buffer is grown dynamically for larger incoming packets.
313 Outgoing packets may also be constructed in this buffer.
314 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
315 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
316 packets. */
317 char *buf;
318 long buf_size;
319
320 /* True if we're going through initial connection setup (finding out
321 about the remote side's threads, relocating symbols, etc.). */
322 int starting_up;
323
324 /* If we negotiated packet size explicitly (and thus can bypass
325 heuristics for the largest packet size that will not overflow
326 a buffer in the stub), this will be set to that packet size.
327 Otherwise zero, meaning to use the guessed size. */
328 long explicit_packet_size;
329
330 /* remote_wait is normally called when the target is running and
331 waits for a stop reply packet. But sometimes we need to call it
332 when the target is already stopped. We can send a "?" packet
333 and have remote_wait read the response. Or, if we already have
334 the response, we can stash it in BUF and tell remote_wait to
335 skip calling getpkt. This flag is set when BUF contains a
336 stop reply packet and the target is not waiting. */
337 int cached_wait_status;
338
339 /* True, if in no ack mode. That is, neither GDB nor the stub will
340 expect acks from each other. The connection is assumed to be
341 reliable. */
342 int noack_mode;
343
344 /* True if we're connected in extended remote mode. */
345 int extended;
346
347 /* True if we resumed the target and we're waiting for the target to
348 stop. In the mean time, we can't start another command/query.
349 The remote server wouldn't be ready to process it, so we'd
350 timeout waiting for a reply that would never come and eventually
351 we'd close the connection. This can happen in asynchronous mode
352 because we allow GDB commands while the target is running. */
353 int waiting_for_stop_reply;
354
355 /* The status of the stub support for the various vCont actions. */
356 struct vCont_action_support supports_vCont;
357
358 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
359 responded to that. */
360 int ctrlc_pending_p;
361
362 /* True if we saw a Ctrl-C while reading or writing from/to the
363 remote descriptor. At that point it is not safe to send a remote
364 interrupt packet, so we instead remember we saw the Ctrl-C and
365 process it once we're done with sending/receiving the current
366 packet, which should be shortly. If however that takes too long,
367 and the user presses Ctrl-C again, we offer to disconnect. */
368 int got_ctrlc_during_io;
369
370 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
371 remote_open knows that we don't have a file open when the program
372 starts. */
373 struct serial *remote_desc;
374
375 /* These are the threads which we last sent to the remote system. The
376 TID member will be -1 for all or -2 for not sent yet. */
377 ptid_t general_thread;
378 ptid_t continue_thread;
379
380 /* This is the traceframe which we last selected on the remote system.
381 It will be -1 if no traceframe is selected. */
382 int remote_traceframe_number;
383
384 char *last_pass_packet;
385
386 /* The last QProgramSignals packet sent to the target. We bypass
387 sending a new program signals list down to the target if the new
388 packet is exactly the same as the last we sent. IOW, we only let
389 the target know about program signals list changes. */
390 char *last_program_signals_packet;
391
392 enum gdb_signal last_sent_signal;
393
394 int last_sent_step;
395
396 /* The execution direction of the last resume we got. */
397 enum exec_direction_kind last_resume_exec_dir;
398
399 char *finished_object;
400 char *finished_annex;
401 ULONGEST finished_offset;
402
403 /* Should we try the 'ThreadInfo' query packet?
404
405 This variable (NOT available to the user: auto-detect only!)
406 determines whether GDB will use the new, simpler "ThreadInfo"
407 query or the older, more complex syntax for thread queries.
408 This is an auto-detect variable (set to true at each connect,
409 and set to false when the target fails to recognize it). */
410 int use_threadinfo_query;
411 int use_threadextra_query;
412
413 threadref echo_nextthread;
414 threadref nextthread;
415 threadref resultthreadlist[MAXTHREADLISTRESULTS];
416
417 /* The state of remote notification. */
418 struct remote_notif_state *notif_state;
419
420 /* The branch trace configuration. */
421 struct btrace_config btrace_config;
422
423 /* The argument to the last "vFile:setfs:" packet we sent, used
424 to avoid sending repeated unnecessary "vFile:setfs:" packets.
425 Initialized to -1 to indicate that no "vFile:setfs:" packet
426 has yet been sent. */
427 int fs_pid;
428
429 /* A readahead cache for vFile:pread. Often, reading a binary
430 involves a sequence of small reads. E.g., when parsing an ELF
431 file. A readahead cache helps mostly the case of remote
432 debugging on a connection with higher latency, due to the
433 request/reply nature of the RSP. We only cache data for a single
434 file descriptor at a time. */
435 struct readahead_cache readahead_cache;
436 };
437
438 /* Private data that we'll store in (struct thread_info)->private. */
439 struct private_thread_info
440 {
441 char *extra;
442 char *name;
443 int core;
444
445 /* Whether the target stopped for a breakpoint/watchpoint. */
446 enum target_stop_reason stop_reason;
447
448 /* This is set to the data address of the access causing the target
449 to stop for a watchpoint. */
450 CORE_ADDR watch_data_address;
451 };
452
453 static void
454 free_private_thread_info (struct private_thread_info *info)
455 {
456 xfree (info->extra);
457 xfree (info->name);
458 xfree (info);
459 }
460
461 /* This data could be associated with a target, but we do not always
462 have access to the current target when we need it, so for now it is
463 static. This will be fine for as long as only one target is in use
464 at a time. */
465 static struct remote_state *remote_state;
466
467 static struct remote_state *
468 get_remote_state_raw (void)
469 {
470 return remote_state;
471 }
472
473 /* Allocate a new struct remote_state with xmalloc, initialize it, and
474 return it. */
475
476 static struct remote_state *
477 new_remote_state (void)
478 {
479 struct remote_state *result = XCNEW (struct remote_state);
480
481 /* The default buffer size is unimportant; it will be expanded
482 whenever a larger buffer is needed. */
483 result->buf_size = 400;
484 result->buf = (char *) xmalloc (result->buf_size);
485 result->remote_traceframe_number = -1;
486 result->last_sent_signal = GDB_SIGNAL_0;
487 result->last_resume_exec_dir = EXEC_FORWARD;
488 result->fs_pid = -1;
489
490 return result;
491 }
492
493 /* Description of the remote protocol for a given architecture. */
494
495 struct packet_reg
496 {
497 long offset; /* Offset into G packet. */
498 long regnum; /* GDB's internal register number. */
499 LONGEST pnum; /* Remote protocol register number. */
500 int in_g_packet; /* Always part of G packet. */
501 /* long size in bytes; == register_size (target_gdbarch (), regnum);
502 at present. */
503 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
504 at present. */
505 };
506
507 struct remote_arch_state
508 {
509 /* Description of the remote protocol registers. */
510 long sizeof_g_packet;
511
512 /* Description of the remote protocol registers indexed by REGNUM
513 (making an array gdbarch_num_regs in size). */
514 struct packet_reg *regs;
515
516 /* This is the size (in chars) of the first response to the ``g''
517 packet. It is used as a heuristic when determining the maximum
518 size of memory-read and memory-write packets. A target will
519 typically only reserve a buffer large enough to hold the ``g''
520 packet. The size does not include packet overhead (headers and
521 trailers). */
522 long actual_register_packet_size;
523
524 /* This is the maximum size (in chars) of a non read/write packet.
525 It is also used as a cap on the size of read/write packets. */
526 long remote_packet_size;
527 };
528
529 /* Utility: generate error from an incoming stub packet. */
530 static void
531 trace_error (char *buf)
532 {
533 if (*buf++ != 'E')
534 return; /* not an error msg */
535 switch (*buf)
536 {
537 case '1': /* malformed packet error */
538 if (*++buf == '0') /* general case: */
539 error (_("remote.c: error in outgoing packet."));
540 else
541 error (_("remote.c: error in outgoing packet at field #%ld."),
542 strtol (buf, NULL, 16));
543 default:
544 error (_("Target returns error code '%s'."), buf);
545 }
546 }
547
548 /* Utility: wait for reply from stub, while accepting "O" packets. */
549 static char *
550 remote_get_noisy_reply (char **buf_p,
551 long *sizeof_buf)
552 {
553 do /* Loop on reply from remote stub. */
554 {
555 char *buf;
556
557 QUIT; /* Allow user to bail out with ^C. */
558 getpkt (buf_p, sizeof_buf, 0);
559 buf = *buf_p;
560 if (buf[0] == 'E')
561 trace_error (buf);
562 else if (startswith (buf, "qRelocInsn:"))
563 {
564 ULONGEST ul;
565 CORE_ADDR from, to, org_to;
566 char *p, *pp;
567 int adjusted_size = 0;
568 int relocated = 0;
569
570 p = buf + strlen ("qRelocInsn:");
571 pp = unpack_varlen_hex (p, &ul);
572 if (*pp != ';')
573 error (_("invalid qRelocInsn packet: %s"), buf);
574 from = ul;
575
576 p = pp + 1;
577 unpack_varlen_hex (p, &ul);
578 to = ul;
579
580 org_to = to;
581
582 TRY
583 {
584 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
585 relocated = 1;
586 }
587 CATCH (ex, RETURN_MASK_ALL)
588 {
589 if (ex.error == MEMORY_ERROR)
590 {
591 /* Propagate memory errors silently back to the
592 target. The stub may have limited the range of
593 addresses we can write to, for example. */
594 }
595 else
596 {
597 /* Something unexpectedly bad happened. Be verbose
598 so we can tell what, and propagate the error back
599 to the stub, so it doesn't get stuck waiting for
600 a response. */
601 exception_fprintf (gdb_stderr, ex,
602 _("warning: relocating instruction: "));
603 }
604 putpkt ("E01");
605 }
606 END_CATCH
607
608 if (relocated)
609 {
610 adjusted_size = to - org_to;
611
612 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
613 putpkt (buf);
614 }
615 }
616 else if (buf[0] == 'O' && buf[1] != 'K')
617 remote_console_output (buf + 1); /* 'O' message from stub */
618 else
619 return buf; /* Here's the actual reply. */
620 }
621 while (1);
622 }
623
624 /* Handle for retreving the remote protocol data from gdbarch. */
625 static struct gdbarch_data *remote_gdbarch_data_handle;
626
627 static struct remote_arch_state *
628 get_remote_arch_state (void)
629 {
630 gdb_assert (target_gdbarch () != NULL);
631 return ((struct remote_arch_state *)
632 gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle));
633 }
634
635 /* Fetch the global remote target state. */
636
637 static struct remote_state *
638 get_remote_state (void)
639 {
640 /* Make sure that the remote architecture state has been
641 initialized, because doing so might reallocate rs->buf. Any
642 function which calls getpkt also needs to be mindful of changes
643 to rs->buf, but this call limits the number of places which run
644 into trouble. */
645 get_remote_arch_state ();
646
647 return get_remote_state_raw ();
648 }
649
650 /* Cleanup routine for the remote module's pspace data. */
651
652 static void
653 remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
654 {
655 char *remote_exec_file = (char *) arg;
656
657 xfree (remote_exec_file);
658 }
659
660 /* Fetch the remote exec-file from the current program space. */
661
662 static const char *
663 get_remote_exec_file (void)
664 {
665 char *remote_exec_file;
666
667 remote_exec_file
668 = (char *) program_space_data (current_program_space,
669 remote_pspace_data);
670 if (remote_exec_file == NULL)
671 return "";
672
673 return remote_exec_file;
674 }
675
676 /* Set the remote exec file for PSPACE. */
677
678 static void
679 set_pspace_remote_exec_file (struct program_space *pspace,
680 char *remote_exec_file)
681 {
682 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
683
684 xfree (old_file);
685 set_program_space_data (pspace, remote_pspace_data,
686 xstrdup (remote_exec_file));
687 }
688
689 /* The "set/show remote exec-file" set command hook. */
690
691 static void
692 set_remote_exec_file (char *ignored, int from_tty,
693 struct cmd_list_element *c)
694 {
695 gdb_assert (remote_exec_file_var != NULL);
696 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
697 }
698
699 /* The "set/show remote exec-file" show command hook. */
700
701 static void
702 show_remote_exec_file (struct ui_file *file, int from_tty,
703 struct cmd_list_element *cmd, const char *value)
704 {
705 fprintf_filtered (file, "%s\n", remote_exec_file_var);
706 }
707
708 static int
709 compare_pnums (const void *lhs_, const void *rhs_)
710 {
711 const struct packet_reg * const *lhs
712 = (const struct packet_reg * const *) lhs_;
713 const struct packet_reg * const *rhs
714 = (const struct packet_reg * const *) rhs_;
715
716 if ((*lhs)->pnum < (*rhs)->pnum)
717 return -1;
718 else if ((*lhs)->pnum == (*rhs)->pnum)
719 return 0;
720 else
721 return 1;
722 }
723
724 static int
725 map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
726 {
727 int regnum, num_remote_regs, offset;
728 struct packet_reg **remote_regs;
729
730 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
731 {
732 struct packet_reg *r = &regs[regnum];
733
734 if (register_size (gdbarch, regnum) == 0)
735 /* Do not try to fetch zero-sized (placeholder) registers. */
736 r->pnum = -1;
737 else
738 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
739
740 r->regnum = regnum;
741 }
742
743 /* Define the g/G packet format as the contents of each register
744 with a remote protocol number, in order of ascending protocol
745 number. */
746
747 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
748 for (num_remote_regs = 0, regnum = 0;
749 regnum < gdbarch_num_regs (gdbarch);
750 regnum++)
751 if (regs[regnum].pnum != -1)
752 remote_regs[num_remote_regs++] = &regs[regnum];
753
754 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
755 compare_pnums);
756
757 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
758 {
759 remote_regs[regnum]->in_g_packet = 1;
760 remote_regs[regnum]->offset = offset;
761 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
762 }
763
764 return offset;
765 }
766
767 /* Given the architecture described by GDBARCH, return the remote
768 protocol register's number and the register's offset in the g/G
769 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
770 If the target does not have a mapping for REGNUM, return false,
771 otherwise, return true. */
772
773 int
774 remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
775 int *pnum, int *poffset)
776 {
777 struct packet_reg *regs;
778 struct cleanup *old_chain;
779
780 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
781
782 regs = XCNEWVEC (struct packet_reg, gdbarch_num_regs (gdbarch));
783 old_chain = make_cleanup (xfree, regs);
784
785 map_regcache_remote_table (gdbarch, regs);
786
787 *pnum = regs[regnum].pnum;
788 *poffset = regs[regnum].offset;
789
790 do_cleanups (old_chain);
791
792 return *pnum != -1;
793 }
794
795 static void *
796 init_remote_state (struct gdbarch *gdbarch)
797 {
798 struct remote_state *rs = get_remote_state_raw ();
799 struct remote_arch_state *rsa;
800
801 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
802
803 /* Use the architecture to build a regnum<->pnum table, which will be
804 1:1 unless a feature set specifies otherwise. */
805 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
806 gdbarch_num_regs (gdbarch),
807 struct packet_reg);
808
809 /* Record the maximum possible size of the g packet - it may turn out
810 to be smaller. */
811 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
812
813 /* Default maximum number of characters in a packet body. Many
814 remote stubs have a hardwired buffer size of 400 bytes
815 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
816 as the maximum packet-size to ensure that the packet and an extra
817 NUL character can always fit in the buffer. This stops GDB
818 trashing stubs that try to squeeze an extra NUL into what is
819 already a full buffer (As of 1999-12-04 that was most stubs). */
820 rsa->remote_packet_size = 400 - 1;
821
822 /* This one is filled in when a ``g'' packet is received. */
823 rsa->actual_register_packet_size = 0;
824
825 /* Should rsa->sizeof_g_packet needs more space than the
826 default, adjust the size accordingly. Remember that each byte is
827 encoded as two characters. 32 is the overhead for the packet
828 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
829 (``$NN:G...#NN'') is a better guess, the below has been padded a
830 little. */
831 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
832 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
833
834 /* Make sure that the packet buffer is plenty big enough for
835 this architecture. */
836 if (rs->buf_size < rsa->remote_packet_size)
837 {
838 rs->buf_size = 2 * rsa->remote_packet_size;
839 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
840 }
841
842 return rsa;
843 }
844
845 /* Return the current allowed size of a remote packet. This is
846 inferred from the current architecture, and should be used to
847 limit the length of outgoing packets. */
848 static long
849 get_remote_packet_size (void)
850 {
851 struct remote_state *rs = get_remote_state ();
852 struct remote_arch_state *rsa = get_remote_arch_state ();
853
854 if (rs->explicit_packet_size)
855 return rs->explicit_packet_size;
856
857 return rsa->remote_packet_size;
858 }
859
860 static struct packet_reg *
861 packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
862 {
863 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
864 return NULL;
865 else
866 {
867 struct packet_reg *r = &rsa->regs[regnum];
868
869 gdb_assert (r->regnum == regnum);
870 return r;
871 }
872 }
873
874 static struct packet_reg *
875 packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
876 {
877 int i;
878
879 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
880 {
881 struct packet_reg *r = &rsa->regs[i];
882
883 if (r->pnum == pnum)
884 return r;
885 }
886 return NULL;
887 }
888
889 static struct target_ops remote_ops;
890
891 static struct target_ops extended_remote_ops;
892
893 /* FIXME: cagney/1999-09-23: Even though getpkt was called with
894 ``forever'' still use the normal timeout mechanism. This is
895 currently used by the ASYNC code to guarentee that target reads
896 during the initial connect always time-out. Once getpkt has been
897 modified to return a timeout indication and, in turn
898 remote_wait()/wait_for_inferior() have gained a timeout parameter
899 this can go away. */
900 static int wait_forever_enabled_p = 1;
901
902 /* Allow the user to specify what sequence to send to the remote
903 when he requests a program interruption: Although ^C is usually
904 what remote systems expect (this is the default, here), it is
905 sometimes preferable to send a break. On other systems such
906 as the Linux kernel, a break followed by g, which is Magic SysRq g
907 is required in order to interrupt the execution. */
908 const char interrupt_sequence_control_c[] = "Ctrl-C";
909 const char interrupt_sequence_break[] = "BREAK";
910 const char interrupt_sequence_break_g[] = "BREAK-g";
911 static const char *const interrupt_sequence_modes[] =
912 {
913 interrupt_sequence_control_c,
914 interrupt_sequence_break,
915 interrupt_sequence_break_g,
916 NULL
917 };
918 static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
919
920 static void
921 show_interrupt_sequence (struct ui_file *file, int from_tty,
922 struct cmd_list_element *c,
923 const char *value)
924 {
925 if (interrupt_sequence_mode == interrupt_sequence_control_c)
926 fprintf_filtered (file,
927 _("Send the ASCII ETX character (Ctrl-c) "
928 "to the remote target to interrupt the "
929 "execution of the program.\n"));
930 else if (interrupt_sequence_mode == interrupt_sequence_break)
931 fprintf_filtered (file,
932 _("send a break signal to the remote target "
933 "to interrupt the execution of the program.\n"));
934 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
935 fprintf_filtered (file,
936 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
937 "the remote target to interrupt the execution "
938 "of Linux kernel.\n"));
939 else
940 internal_error (__FILE__, __LINE__,
941 _("Invalid value for interrupt_sequence_mode: %s."),
942 interrupt_sequence_mode);
943 }
944
945 /* This boolean variable specifies whether interrupt_sequence is sent
946 to the remote target when gdb connects to it.
947 This is mostly needed when you debug the Linux kernel: The Linux kernel
948 expects BREAK g which is Magic SysRq g for connecting gdb. */
949 static int interrupt_on_connect = 0;
950
951 /* This variable is used to implement the "set/show remotebreak" commands.
952 Since these commands are now deprecated in favor of "set/show remote
953 interrupt-sequence", it no longer has any effect on the code. */
954 static int remote_break;
955
956 static void
957 set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
958 {
959 if (remote_break)
960 interrupt_sequence_mode = interrupt_sequence_break;
961 else
962 interrupt_sequence_mode = interrupt_sequence_control_c;
963 }
964
965 static void
966 show_remotebreak (struct ui_file *file, int from_tty,
967 struct cmd_list_element *c,
968 const char *value)
969 {
970 }
971
972 /* This variable sets the number of bits in an address that are to be
973 sent in a memory ("M" or "m") packet. Normally, after stripping
974 leading zeros, the entire address would be sent. This variable
975 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
976 initial implementation of remote.c restricted the address sent in
977 memory packets to ``host::sizeof long'' bytes - (typically 32
978 bits). Consequently, for 64 bit targets, the upper 32 bits of an
979 address was never sent. Since fixing this bug may cause a break in
980 some remote targets this variable is principly provided to
981 facilitate backward compatibility. */
982
983 static unsigned int remote_address_size;
984
985 /* Temporary to track who currently owns the terminal. See
986 remote_terminal_* for more details. */
987
988 static int remote_async_terminal_ours_p;
989
990 \f
991 /* User configurable variables for the number of characters in a
992 memory read/write packet. MIN (rsa->remote_packet_size,
993 rsa->sizeof_g_packet) is the default. Some targets need smaller
994 values (fifo overruns, et.al.) and some users need larger values
995 (speed up transfers). The variables ``preferred_*'' (the user
996 request), ``current_*'' (what was actually set) and ``forced_*''
997 (Positive - a soft limit, negative - a hard limit). */
998
999 struct memory_packet_config
1000 {
1001 char *name;
1002 long size;
1003 int fixed_p;
1004 };
1005
1006 /* The default max memory-write-packet-size. The 16k is historical.
1007 (It came from older GDB's using alloca for buffers and the
1008 knowledge (folklore?) that some hosts don't cope very well with
1009 large alloca calls.) */
1010 #define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1011
1012 /* The minimum remote packet size for memory transfers. Ensures we
1013 can write at least one byte. */
1014 #define MIN_MEMORY_PACKET_SIZE 20
1015
1016 /* Compute the current size of a read/write packet. Since this makes
1017 use of ``actual_register_packet_size'' the computation is dynamic. */
1018
1019 static long
1020 get_memory_packet_size (struct memory_packet_config *config)
1021 {
1022 struct remote_state *rs = get_remote_state ();
1023 struct remote_arch_state *rsa = get_remote_arch_state ();
1024
1025 long what_they_get;
1026 if (config->fixed_p)
1027 {
1028 if (config->size <= 0)
1029 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1030 else
1031 what_they_get = config->size;
1032 }
1033 else
1034 {
1035 what_they_get = get_remote_packet_size ();
1036 /* Limit the packet to the size specified by the user. */
1037 if (config->size > 0
1038 && what_they_get > config->size)
1039 what_they_get = config->size;
1040
1041 /* Limit it to the size of the targets ``g'' response unless we have
1042 permission from the stub to use a larger packet size. */
1043 if (rs->explicit_packet_size == 0
1044 && rsa->actual_register_packet_size > 0
1045 && what_they_get > rsa->actual_register_packet_size)
1046 what_they_get = rsa->actual_register_packet_size;
1047 }
1048 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1049 what_they_get = MIN_MEMORY_PACKET_SIZE;
1050
1051 /* Make sure there is room in the global buffer for this packet
1052 (including its trailing NUL byte). */
1053 if (rs->buf_size < what_they_get + 1)
1054 {
1055 rs->buf_size = 2 * what_they_get;
1056 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
1057 }
1058
1059 return what_they_get;
1060 }
1061
1062 /* Update the size of a read/write packet. If they user wants
1063 something really big then do a sanity check. */
1064
1065 static void
1066 set_memory_packet_size (char *args, struct memory_packet_config *config)
1067 {
1068 int fixed_p = config->fixed_p;
1069 long size = config->size;
1070
1071 if (args == NULL)
1072 error (_("Argument required (integer, `fixed' or `limited')."));
1073 else if (strcmp (args, "hard") == 0
1074 || strcmp (args, "fixed") == 0)
1075 fixed_p = 1;
1076 else if (strcmp (args, "soft") == 0
1077 || strcmp (args, "limit") == 0)
1078 fixed_p = 0;
1079 else
1080 {
1081 char *end;
1082
1083 size = strtoul (args, &end, 0);
1084 if (args == end)
1085 error (_("Invalid %s (bad syntax)."), config->name);
1086
1087 /* Instead of explicitly capping the size of a packet to or
1088 disallowing it, the user is allowed to set the size to
1089 something arbitrarily large. */
1090 }
1091
1092 /* So that the query shows the correct value. */
1093 if (size <= 0)
1094 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1095
1096 /* Extra checks? */
1097 if (fixed_p && !config->fixed_p)
1098 {
1099 if (! query (_("The target may not be able to correctly handle a %s\n"
1100 "of %ld bytes. Change the packet size? "),
1101 config->name, size))
1102 error (_("Packet size not changed."));
1103 }
1104 /* Update the config. */
1105 config->fixed_p = fixed_p;
1106 config->size = size;
1107 }
1108
1109 static void
1110 show_memory_packet_size (struct memory_packet_config *config)
1111 {
1112 printf_filtered (_("The %s is %ld. "), config->name, config->size);
1113 if (config->fixed_p)
1114 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
1115 get_memory_packet_size (config));
1116 else
1117 printf_filtered (_("Packets are limited to %ld bytes.\n"),
1118 get_memory_packet_size (config));
1119 }
1120
1121 static struct memory_packet_config memory_write_packet_config =
1122 {
1123 "memory-write-packet-size",
1124 };
1125
1126 static void
1127 set_memory_write_packet_size (char *args, int from_tty)
1128 {
1129 set_memory_packet_size (args, &memory_write_packet_config);
1130 }
1131
1132 static void
1133 show_memory_write_packet_size (char *args, int from_tty)
1134 {
1135 show_memory_packet_size (&memory_write_packet_config);
1136 }
1137
1138 static long
1139 get_memory_write_packet_size (void)
1140 {
1141 return get_memory_packet_size (&memory_write_packet_config);
1142 }
1143
1144 static struct memory_packet_config memory_read_packet_config =
1145 {
1146 "memory-read-packet-size",
1147 };
1148
1149 static void
1150 set_memory_read_packet_size (char *args, int from_tty)
1151 {
1152 set_memory_packet_size (args, &memory_read_packet_config);
1153 }
1154
1155 static void
1156 show_memory_read_packet_size (char *args, int from_tty)
1157 {
1158 show_memory_packet_size (&memory_read_packet_config);
1159 }
1160
1161 static long
1162 get_memory_read_packet_size (void)
1163 {
1164 long size = get_memory_packet_size (&memory_read_packet_config);
1165
1166 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1167 extra buffer size argument before the memory read size can be
1168 increased beyond this. */
1169 if (size > get_remote_packet_size ())
1170 size = get_remote_packet_size ();
1171 return size;
1172 }
1173
1174 \f
1175 /* Generic configuration support for packets the stub optionally
1176 supports. Allows the user to specify the use of the packet as well
1177 as allowing GDB to auto-detect support in the remote stub. */
1178
1179 enum packet_support
1180 {
1181 PACKET_SUPPORT_UNKNOWN = 0,
1182 PACKET_ENABLE,
1183 PACKET_DISABLE
1184 };
1185
1186 struct packet_config
1187 {
1188 const char *name;
1189 const char *title;
1190
1191 /* If auto, GDB auto-detects support for this packet or feature,
1192 either through qSupported, or by trying the packet and looking
1193 at the response. If true, GDB assumes the target supports this
1194 packet. If false, the packet is disabled. Configs that don't
1195 have an associated command always have this set to auto. */
1196 enum auto_boolean detect;
1197
1198 /* Does the target support this packet? */
1199 enum packet_support support;
1200 };
1201
1202 /* Analyze a packet's return value and update the packet config
1203 accordingly. */
1204
1205 enum packet_result
1206 {
1207 PACKET_ERROR,
1208 PACKET_OK,
1209 PACKET_UNKNOWN
1210 };
1211
1212 static enum packet_support packet_config_support (struct packet_config *config);
1213 static enum packet_support packet_support (int packet);
1214
1215 static void
1216 show_packet_config_cmd (struct packet_config *config)
1217 {
1218 char *support = "internal-error";
1219
1220 switch (packet_config_support (config))
1221 {
1222 case PACKET_ENABLE:
1223 support = "enabled";
1224 break;
1225 case PACKET_DISABLE:
1226 support = "disabled";
1227 break;
1228 case PACKET_SUPPORT_UNKNOWN:
1229 support = "unknown";
1230 break;
1231 }
1232 switch (config->detect)
1233 {
1234 case AUTO_BOOLEAN_AUTO:
1235 printf_filtered (_("Support for the `%s' packet "
1236 "is auto-detected, currently %s.\n"),
1237 config->name, support);
1238 break;
1239 case AUTO_BOOLEAN_TRUE:
1240 case AUTO_BOOLEAN_FALSE:
1241 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1242 config->name, support);
1243 break;
1244 }
1245 }
1246
1247 static void
1248 add_packet_config_cmd (struct packet_config *config, const char *name,
1249 const char *title, int legacy)
1250 {
1251 char *set_doc;
1252 char *show_doc;
1253 char *cmd_name;
1254
1255 config->name = name;
1256 config->title = title;
1257 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1258 name, title);
1259 show_doc = xstrprintf ("Show current use of remote "
1260 "protocol `%s' (%s) packet",
1261 name, title);
1262 /* set/show TITLE-packet {auto,on,off} */
1263 cmd_name = xstrprintf ("%s-packet", title);
1264 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
1265 &config->detect, set_doc,
1266 show_doc, NULL, /* help_doc */
1267 NULL,
1268 show_remote_protocol_packet_cmd,
1269 &remote_set_cmdlist, &remote_show_cmdlist);
1270 /* The command code copies the documentation strings. */
1271 xfree (set_doc);
1272 xfree (show_doc);
1273 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
1274 if (legacy)
1275 {
1276 char *legacy_name;
1277
1278 legacy_name = xstrprintf ("%s-packet", name);
1279 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1280 &remote_set_cmdlist);
1281 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
1282 &remote_show_cmdlist);
1283 }
1284 }
1285
1286 static enum packet_result
1287 packet_check_result (const char *buf)
1288 {
1289 if (buf[0] != '\0')
1290 {
1291 /* The stub recognized the packet request. Check that the
1292 operation succeeded. */
1293 if (buf[0] == 'E'
1294 && isxdigit (buf[1]) && isxdigit (buf[2])
1295 && buf[3] == '\0')
1296 /* "Enn" - definitly an error. */
1297 return PACKET_ERROR;
1298
1299 /* Always treat "E." as an error. This will be used for
1300 more verbose error messages, such as E.memtypes. */
1301 if (buf[0] == 'E' && buf[1] == '.')
1302 return PACKET_ERROR;
1303
1304 /* The packet may or may not be OK. Just assume it is. */
1305 return PACKET_OK;
1306 }
1307 else
1308 /* The stub does not support the packet. */
1309 return PACKET_UNKNOWN;
1310 }
1311
1312 static enum packet_result
1313 packet_ok (const char *buf, struct packet_config *config)
1314 {
1315 enum packet_result result;
1316
1317 if (config->detect != AUTO_BOOLEAN_TRUE
1318 && config->support == PACKET_DISABLE)
1319 internal_error (__FILE__, __LINE__,
1320 _("packet_ok: attempt to use a disabled packet"));
1321
1322 result = packet_check_result (buf);
1323 switch (result)
1324 {
1325 case PACKET_OK:
1326 case PACKET_ERROR:
1327 /* The stub recognized the packet request. */
1328 if (config->support == PACKET_SUPPORT_UNKNOWN)
1329 {
1330 if (remote_debug)
1331 fprintf_unfiltered (gdb_stdlog,
1332 "Packet %s (%s) is supported\n",
1333 config->name, config->title);
1334 config->support = PACKET_ENABLE;
1335 }
1336 break;
1337 case PACKET_UNKNOWN:
1338 /* The stub does not support the packet. */
1339 if (config->detect == AUTO_BOOLEAN_AUTO
1340 && config->support == PACKET_ENABLE)
1341 {
1342 /* If the stub previously indicated that the packet was
1343 supported then there is a protocol error. */
1344 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1345 config->name, config->title);
1346 }
1347 else if (config->detect == AUTO_BOOLEAN_TRUE)
1348 {
1349 /* The user set it wrong. */
1350 error (_("Enabled packet %s (%s) not recognized by stub"),
1351 config->name, config->title);
1352 }
1353
1354 if (remote_debug)
1355 fprintf_unfiltered (gdb_stdlog,
1356 "Packet %s (%s) is NOT supported\n",
1357 config->name, config->title);
1358 config->support = PACKET_DISABLE;
1359 break;
1360 }
1361
1362 return result;
1363 }
1364
1365 enum {
1366 PACKET_vCont = 0,
1367 PACKET_X,
1368 PACKET_qSymbol,
1369 PACKET_P,
1370 PACKET_p,
1371 PACKET_Z0,
1372 PACKET_Z1,
1373 PACKET_Z2,
1374 PACKET_Z3,
1375 PACKET_Z4,
1376 PACKET_vFile_setfs,
1377 PACKET_vFile_open,
1378 PACKET_vFile_pread,
1379 PACKET_vFile_pwrite,
1380 PACKET_vFile_close,
1381 PACKET_vFile_unlink,
1382 PACKET_vFile_readlink,
1383 PACKET_vFile_fstat,
1384 PACKET_qXfer_auxv,
1385 PACKET_qXfer_features,
1386 PACKET_qXfer_exec_file,
1387 PACKET_qXfer_libraries,
1388 PACKET_qXfer_libraries_svr4,
1389 PACKET_qXfer_memory_map,
1390 PACKET_qXfer_spu_read,
1391 PACKET_qXfer_spu_write,
1392 PACKET_qXfer_osdata,
1393 PACKET_qXfer_threads,
1394 PACKET_qXfer_statictrace_read,
1395 PACKET_qXfer_traceframe_info,
1396 PACKET_qXfer_uib,
1397 PACKET_qGetTIBAddr,
1398 PACKET_qGetTLSAddr,
1399 PACKET_qSupported,
1400 PACKET_qTStatus,
1401 PACKET_QPassSignals,
1402 PACKET_QCatchSyscalls,
1403 PACKET_QProgramSignals,
1404 PACKET_qCRC,
1405 PACKET_qSearch_memory,
1406 PACKET_vAttach,
1407 PACKET_vRun,
1408 PACKET_QStartNoAckMode,
1409 PACKET_vKill,
1410 PACKET_qXfer_siginfo_read,
1411 PACKET_qXfer_siginfo_write,
1412 PACKET_qAttached,
1413
1414 /* Support for conditional tracepoints. */
1415 PACKET_ConditionalTracepoints,
1416
1417 /* Support for target-side breakpoint conditions. */
1418 PACKET_ConditionalBreakpoints,
1419
1420 /* Support for target-side breakpoint commands. */
1421 PACKET_BreakpointCommands,
1422
1423 /* Support for fast tracepoints. */
1424 PACKET_FastTracepoints,
1425
1426 /* Support for static tracepoints. */
1427 PACKET_StaticTracepoints,
1428
1429 /* Support for installing tracepoints while a trace experiment is
1430 running. */
1431 PACKET_InstallInTrace,
1432
1433 PACKET_bc,
1434 PACKET_bs,
1435 PACKET_TracepointSource,
1436 PACKET_QAllow,
1437 PACKET_qXfer_fdpic,
1438 PACKET_QDisableRandomization,
1439 PACKET_QAgent,
1440 PACKET_QTBuffer_size,
1441 PACKET_Qbtrace_off,
1442 PACKET_Qbtrace_bts,
1443 PACKET_Qbtrace_pt,
1444 PACKET_qXfer_btrace,
1445
1446 /* Support for the QNonStop packet. */
1447 PACKET_QNonStop,
1448
1449 /* Support for the QThreadEvents packet. */
1450 PACKET_QThreadEvents,
1451
1452 /* Support for multi-process extensions. */
1453 PACKET_multiprocess_feature,
1454
1455 /* Support for enabling and disabling tracepoints while a trace
1456 experiment is running. */
1457 PACKET_EnableDisableTracepoints_feature,
1458
1459 /* Support for collecting strings using the tracenz bytecode. */
1460 PACKET_tracenz_feature,
1461
1462 /* Support for continuing to run a trace experiment while GDB is
1463 disconnected. */
1464 PACKET_DisconnectedTracing_feature,
1465
1466 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1467 PACKET_augmented_libraries_svr4_read_feature,
1468
1469 /* Support for the qXfer:btrace-conf:read packet. */
1470 PACKET_qXfer_btrace_conf,
1471
1472 /* Support for the Qbtrace-conf:bts:size packet. */
1473 PACKET_Qbtrace_conf_bts_size,
1474
1475 /* Support for swbreak+ feature. */
1476 PACKET_swbreak_feature,
1477
1478 /* Support for hwbreak+ feature. */
1479 PACKET_hwbreak_feature,
1480
1481 /* Support for fork events. */
1482 PACKET_fork_event_feature,
1483
1484 /* Support for vfork events. */
1485 PACKET_vfork_event_feature,
1486
1487 /* Support for the Qbtrace-conf:pt:size packet. */
1488 PACKET_Qbtrace_conf_pt_size,
1489
1490 /* Support for exec events. */
1491 PACKET_exec_event_feature,
1492
1493 /* Support for query supported vCont actions. */
1494 PACKET_vContSupported,
1495
1496 /* Support remote CTRL-C. */
1497 PACKET_vCtrlC,
1498
1499 /* Support TARGET_WAITKIND_NO_RESUMED. */
1500 PACKET_no_resumed,
1501
1502 PACKET_MAX
1503 };
1504
1505 static struct packet_config remote_protocol_packets[PACKET_MAX];
1506
1507 /* Returns the packet's corresponding "set remote foo-packet" command
1508 state. See struct packet_config for more details. */
1509
1510 static enum auto_boolean
1511 packet_set_cmd_state (int packet)
1512 {
1513 return remote_protocol_packets[packet].detect;
1514 }
1515
1516 /* Returns whether a given packet or feature is supported. This takes
1517 into account the state of the corresponding "set remote foo-packet"
1518 command, which may be used to bypass auto-detection. */
1519
1520 static enum packet_support
1521 packet_config_support (struct packet_config *config)
1522 {
1523 switch (config->detect)
1524 {
1525 case AUTO_BOOLEAN_TRUE:
1526 return PACKET_ENABLE;
1527 case AUTO_BOOLEAN_FALSE:
1528 return PACKET_DISABLE;
1529 case AUTO_BOOLEAN_AUTO:
1530 return config->support;
1531 default:
1532 gdb_assert_not_reached (_("bad switch"));
1533 }
1534 }
1535
1536 /* Same as packet_config_support, but takes the packet's enum value as
1537 argument. */
1538
1539 static enum packet_support
1540 packet_support (int packet)
1541 {
1542 struct packet_config *config = &remote_protocol_packets[packet];
1543
1544 return packet_config_support (config);
1545 }
1546
1547 static void
1548 show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1549 struct cmd_list_element *c,
1550 const char *value)
1551 {
1552 struct packet_config *packet;
1553
1554 for (packet = remote_protocol_packets;
1555 packet < &remote_protocol_packets[PACKET_MAX];
1556 packet++)
1557 {
1558 if (&packet->detect == c->var)
1559 {
1560 show_packet_config_cmd (packet);
1561 return;
1562 }
1563 }
1564 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
1565 c->name);
1566 }
1567
1568 /* Should we try one of the 'Z' requests? */
1569
1570 enum Z_packet_type
1571 {
1572 Z_PACKET_SOFTWARE_BP,
1573 Z_PACKET_HARDWARE_BP,
1574 Z_PACKET_WRITE_WP,
1575 Z_PACKET_READ_WP,
1576 Z_PACKET_ACCESS_WP,
1577 NR_Z_PACKET_TYPES
1578 };
1579
1580 /* For compatibility with older distributions. Provide a ``set remote
1581 Z-packet ...'' command that updates all the Z packet types. */
1582
1583 static enum auto_boolean remote_Z_packet_detect;
1584
1585 static void
1586 set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1587 struct cmd_list_element *c)
1588 {
1589 int i;
1590
1591 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1592 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1593 }
1594
1595 static void
1596 show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1597 struct cmd_list_element *c,
1598 const char *value)
1599 {
1600 int i;
1601
1602 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1603 {
1604 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
1605 }
1606 }
1607
1608 /* Returns true if the multi-process extensions are in effect. */
1609
1610 static int
1611 remote_multi_process_p (struct remote_state *rs)
1612 {
1613 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1614 }
1615
1616 /* Returns true if fork events are supported. */
1617
1618 static int
1619 remote_fork_event_p (struct remote_state *rs)
1620 {
1621 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1622 }
1623
1624 /* Returns true if vfork events are supported. */
1625
1626 static int
1627 remote_vfork_event_p (struct remote_state *rs)
1628 {
1629 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1630 }
1631
1632 /* Returns true if exec events are supported. */
1633
1634 static int
1635 remote_exec_event_p (struct remote_state *rs)
1636 {
1637 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1638 }
1639
1640 /* Insert fork catchpoint target routine. If fork events are enabled
1641 then return success, nothing more to do. */
1642
1643 static int
1644 remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1645 {
1646 struct remote_state *rs = get_remote_state ();
1647
1648 return !remote_fork_event_p (rs);
1649 }
1650
1651 /* Remove fork catchpoint target routine. Nothing to do, just
1652 return success. */
1653
1654 static int
1655 remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1656 {
1657 return 0;
1658 }
1659
1660 /* Insert vfork catchpoint target routine. If vfork events are enabled
1661 then return success, nothing more to do. */
1662
1663 static int
1664 remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1665 {
1666 struct remote_state *rs = get_remote_state ();
1667
1668 return !remote_vfork_event_p (rs);
1669 }
1670
1671 /* Remove vfork catchpoint target routine. Nothing to do, just
1672 return success. */
1673
1674 static int
1675 remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1676 {
1677 return 0;
1678 }
1679
1680 /* Insert exec catchpoint target routine. If exec events are
1681 enabled, just return success. */
1682
1683 static int
1684 remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1685 {
1686 struct remote_state *rs = get_remote_state ();
1687
1688 return !remote_exec_event_p (rs);
1689 }
1690
1691 /* Remove exec catchpoint target routine. Nothing to do, just
1692 return success. */
1693
1694 static int
1695 remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1696 {
1697 return 0;
1698 }
1699
1700 \f
1701 /* Asynchronous signal handle registered as event loop source for
1702 when we have pending events ready to be passed to the core. */
1703
1704 static struct async_event_handler *remote_async_inferior_event_token;
1705
1706 \f
1707
1708 static ptid_t magic_null_ptid;
1709 static ptid_t not_sent_ptid;
1710 static ptid_t any_thread_ptid;
1711
1712 /* Find out if the stub attached to PID (and hence GDB should offer to
1713 detach instead of killing it when bailing out). */
1714
1715 static int
1716 remote_query_attached (int pid)
1717 {
1718 struct remote_state *rs = get_remote_state ();
1719 size_t size = get_remote_packet_size ();
1720
1721 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
1722 return 0;
1723
1724 if (remote_multi_process_p (rs))
1725 xsnprintf (rs->buf, size, "qAttached:%x", pid);
1726 else
1727 xsnprintf (rs->buf, size, "qAttached");
1728
1729 putpkt (rs->buf);
1730 getpkt (&rs->buf, &rs->buf_size, 0);
1731
1732 switch (packet_ok (rs->buf,
1733 &remote_protocol_packets[PACKET_qAttached]))
1734 {
1735 case PACKET_OK:
1736 if (strcmp (rs->buf, "1") == 0)
1737 return 1;
1738 break;
1739 case PACKET_ERROR:
1740 warning (_("Remote failure reply: %s"), rs->buf);
1741 break;
1742 case PACKET_UNKNOWN:
1743 break;
1744 }
1745
1746 return 0;
1747 }
1748
1749 /* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1750 has been invented by GDB, instead of reported by the target. Since
1751 we can be connected to a remote system before before knowing about
1752 any inferior, mark the target with execution when we find the first
1753 inferior. If ATTACHED is 1, then we had just attached to this
1754 inferior. If it is 0, then we just created this inferior. If it
1755 is -1, then try querying the remote stub to find out if it had
1756 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1757 attempt to open this inferior's executable as the main executable
1758 if no main executable is open already. */
1759
1760 static struct inferior *
1761 remote_add_inferior (int fake_pid_p, int pid, int attached,
1762 int try_open_exec)
1763 {
1764 struct inferior *inf;
1765
1766 /* Check whether this process we're learning about is to be
1767 considered attached, or if is to be considered to have been
1768 spawned by the stub. */
1769 if (attached == -1)
1770 attached = remote_query_attached (pid);
1771
1772 if (gdbarch_has_global_solist (target_gdbarch ()))
1773 {
1774 /* If the target shares code across all inferiors, then every
1775 attach adds a new inferior. */
1776 inf = add_inferior (pid);
1777
1778 /* ... and every inferior is bound to the same program space.
1779 However, each inferior may still have its own address
1780 space. */
1781 inf->aspace = maybe_new_address_space ();
1782 inf->pspace = current_program_space;
1783 }
1784 else
1785 {
1786 /* In the traditional debugging scenario, there's a 1-1 match
1787 between program/address spaces. We simply bind the inferior
1788 to the program space's address space. */
1789 inf = current_inferior ();
1790 inferior_appeared (inf, pid);
1791 }
1792
1793 inf->attach_flag = attached;
1794 inf->fake_pid_p = fake_pid_p;
1795
1796 /* If no main executable is currently open then attempt to
1797 open the file that was executed to create this inferior. */
1798 if (try_open_exec && get_exec_file (0) == NULL)
1799 exec_file_locate_attach (pid, 1);
1800
1801 return inf;
1802 }
1803
1804 /* Add thread PTID to GDB's thread list. Tag it as executing/running
1805 according to RUNNING. */
1806
1807 static void
1808 remote_add_thread (ptid_t ptid, int running, int executing)
1809 {
1810 struct remote_state *rs = get_remote_state ();
1811
1812 /* GDB historically didn't pull threads in the initial connection
1813 setup. If the remote target doesn't even have a concept of
1814 threads (e.g., a bare-metal target), even if internally we
1815 consider that a single-threaded target, mentioning a new thread
1816 might be confusing to the user. Be silent then, preserving the
1817 age old behavior. */
1818 if (rs->starting_up)
1819 add_thread_silent (ptid);
1820 else
1821 add_thread (ptid);
1822
1823 set_executing (ptid, executing);
1824 set_running (ptid, running);
1825 }
1826
1827 /* Come here when we learn about a thread id from the remote target.
1828 It may be the first time we hear about such thread, so take the
1829 opportunity to add it to GDB's thread list. In case this is the
1830 first time we're noticing its corresponding inferior, add it to
1831 GDB's inferior list as well. EXECUTING indicates whether the
1832 thread is (internally) executing or stopped. */
1833
1834 static void
1835 remote_notice_new_inferior (ptid_t currthread, int executing)
1836 {
1837 /* In non-stop mode, we assume new found threads are (externally)
1838 running until proven otherwise with a stop reply. In all-stop,
1839 we can only get here if all threads are stopped. */
1840 int running = target_is_non_stop_p () ? 1 : 0;
1841
1842 /* If this is a new thread, add it to GDB's thread list.
1843 If we leave it up to WFI to do this, bad things will happen. */
1844
1845 if (in_thread_list (currthread) && is_exited (currthread))
1846 {
1847 /* We're seeing an event on a thread id we knew had exited.
1848 This has to be a new thread reusing the old id. Add it. */
1849 remote_add_thread (currthread, running, executing);
1850 return;
1851 }
1852
1853 if (!in_thread_list (currthread))
1854 {
1855 struct inferior *inf = NULL;
1856 int pid = ptid_get_pid (currthread);
1857
1858 if (ptid_is_pid (inferior_ptid)
1859 && pid == ptid_get_pid (inferior_ptid))
1860 {
1861 /* inferior_ptid has no thread member yet. This can happen
1862 with the vAttach -> remote_wait,"TAAthread:" path if the
1863 stub doesn't support qC. This is the first stop reported
1864 after an attach, so this is the main thread. Update the
1865 ptid in the thread list. */
1866 if (in_thread_list (pid_to_ptid (pid)))
1867 thread_change_ptid (inferior_ptid, currthread);
1868 else
1869 {
1870 remote_add_thread (currthread, running, executing);
1871 inferior_ptid = currthread;
1872 }
1873 return;
1874 }
1875
1876 if (ptid_equal (magic_null_ptid, inferior_ptid))
1877 {
1878 /* inferior_ptid is not set yet. This can happen with the
1879 vRun -> remote_wait,"TAAthread:" path if the stub
1880 doesn't support qC. This is the first stop reported
1881 after an attach, so this is the main thread. Update the
1882 ptid in the thread list. */
1883 thread_change_ptid (inferior_ptid, currthread);
1884 return;
1885 }
1886
1887 /* When connecting to a target remote, or to a target
1888 extended-remote which already was debugging an inferior, we
1889 may not know about it yet. Add it before adding its child
1890 thread, so notifications are emitted in a sensible order. */
1891 if (!in_inferior_list (ptid_get_pid (currthread)))
1892 {
1893 struct remote_state *rs = get_remote_state ();
1894 int fake_pid_p = !remote_multi_process_p (rs);
1895
1896 inf = remote_add_inferior (fake_pid_p,
1897 ptid_get_pid (currthread), -1, 1);
1898 }
1899
1900 /* This is really a new thread. Add it. */
1901 remote_add_thread (currthread, running, executing);
1902
1903 /* If we found a new inferior, let the common code do whatever
1904 it needs to with it (e.g., read shared libraries, insert
1905 breakpoints), unless we're just setting up an all-stop
1906 connection. */
1907 if (inf != NULL)
1908 {
1909 struct remote_state *rs = get_remote_state ();
1910
1911 if (!rs->starting_up)
1912 notice_new_inferior (currthread, executing, 0);
1913 }
1914 }
1915 }
1916
1917 /* Return the private thread data, creating it if necessary. */
1918
1919 static struct private_thread_info *
1920 demand_private_info (ptid_t ptid)
1921 {
1922 struct thread_info *info = find_thread_ptid (ptid);
1923
1924 gdb_assert (info);
1925
1926 if (!info->priv)
1927 {
1928 info->priv = XNEW (struct private_thread_info);
1929 info->private_dtor = free_private_thread_info;
1930 info->priv->core = -1;
1931 info->priv->extra = NULL;
1932 info->priv->name = NULL;
1933 }
1934
1935 return info->priv;
1936 }
1937
1938 /* Call this function as a result of
1939 1) A halt indication (T packet) containing a thread id
1940 2) A direct query of currthread
1941 3) Successful execution of set thread */
1942
1943 static void
1944 record_currthread (struct remote_state *rs, ptid_t currthread)
1945 {
1946 rs->general_thread = currthread;
1947 }
1948
1949 /* If 'QPassSignals' is supported, tell the remote stub what signals
1950 it can simply pass through to the inferior without reporting. */
1951
1952 static void
1953 remote_pass_signals (struct target_ops *self,
1954 int numsigs, unsigned char *pass_signals)
1955 {
1956 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
1957 {
1958 char *pass_packet, *p;
1959 int count = 0, i;
1960 struct remote_state *rs = get_remote_state ();
1961
1962 gdb_assert (numsigs < 256);
1963 for (i = 0; i < numsigs; i++)
1964 {
1965 if (pass_signals[i])
1966 count++;
1967 }
1968 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1969 strcpy (pass_packet, "QPassSignals:");
1970 p = pass_packet + strlen (pass_packet);
1971 for (i = 0; i < numsigs; i++)
1972 {
1973 if (pass_signals[i])
1974 {
1975 if (i >= 16)
1976 *p++ = tohex (i >> 4);
1977 *p++ = tohex (i & 15);
1978 if (count)
1979 *p++ = ';';
1980 else
1981 break;
1982 count--;
1983 }
1984 }
1985 *p = 0;
1986 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
1987 {
1988 putpkt (pass_packet);
1989 getpkt (&rs->buf, &rs->buf_size, 0);
1990 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
1991 if (rs->last_pass_packet)
1992 xfree (rs->last_pass_packet);
1993 rs->last_pass_packet = pass_packet;
1994 }
1995 else
1996 xfree (pass_packet);
1997 }
1998 }
1999
2000 /* If 'QCatchSyscalls' is supported, tell the remote stub
2001 to report syscalls to GDB. */
2002
2003 static int
2004 remote_set_syscall_catchpoint (struct target_ops *self,
2005 int pid, int needed, int any_count,
2006 int table_size, int *table)
2007 {
2008 char *catch_packet;
2009 enum packet_result result;
2010 int n_sysno = 0;
2011
2012 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2013 {
2014 /* Not supported. */
2015 return 1;
2016 }
2017
2018 if (needed && !any_count)
2019 {
2020 int i;
2021
2022 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2023 for (i = 0; i < table_size; i++)
2024 {
2025 if (table[i] != 0)
2026 n_sysno++;
2027 }
2028 }
2029
2030 if (remote_debug)
2031 {
2032 fprintf_unfiltered (gdb_stdlog,
2033 "remote_set_syscall_catchpoint "
2034 "pid %d needed %d any_count %d n_sysno %d\n",
2035 pid, needed, any_count, n_sysno);
2036 }
2037
2038 if (needed)
2039 {
2040 /* Prepare a packet with the sysno list, assuming max 8+1
2041 characters for a sysno. If the resulting packet size is too
2042 big, fallback on the non-selective packet. */
2043 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2044
2045 catch_packet = (char *) xmalloc (maxpktsz);
2046 strcpy (catch_packet, "QCatchSyscalls:1");
2047 if (!any_count)
2048 {
2049 int i;
2050 char *p;
2051
2052 p = catch_packet;
2053 p += strlen (p);
2054
2055 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
2056 for (i = 0; i < table_size; i++)
2057 {
2058 if (table[i] != 0)
2059 p += xsnprintf (p, catch_packet + maxpktsz - p, ";%x", i);
2060 }
2061 }
2062 if (strlen (catch_packet) > get_remote_packet_size ())
2063 {
2064 /* catch_packet too big. Fallback to less efficient
2065 non selective mode, with GDB doing the filtering. */
2066 catch_packet[sizeof ("QCatchSyscalls:1") - 1] = 0;
2067 }
2068 }
2069 else
2070 catch_packet = xstrdup ("QCatchSyscalls:0");
2071
2072 {
2073 struct cleanup *old_chain = make_cleanup (xfree, catch_packet);
2074 struct remote_state *rs = get_remote_state ();
2075
2076 putpkt (catch_packet);
2077 getpkt (&rs->buf, &rs->buf_size, 0);
2078 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2079 do_cleanups (old_chain);
2080 if (result == PACKET_OK)
2081 return 0;
2082 else
2083 return -1;
2084 }
2085 }
2086
2087 /* If 'QProgramSignals' is supported, tell the remote stub what
2088 signals it should pass through to the inferior when detaching. */
2089
2090 static void
2091 remote_program_signals (struct target_ops *self,
2092 int numsigs, unsigned char *signals)
2093 {
2094 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
2095 {
2096 char *packet, *p;
2097 int count = 0, i;
2098 struct remote_state *rs = get_remote_state ();
2099
2100 gdb_assert (numsigs < 256);
2101 for (i = 0; i < numsigs; i++)
2102 {
2103 if (signals[i])
2104 count++;
2105 }
2106 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
2107 strcpy (packet, "QProgramSignals:");
2108 p = packet + strlen (packet);
2109 for (i = 0; i < numsigs; i++)
2110 {
2111 if (signal_pass_state (i))
2112 {
2113 if (i >= 16)
2114 *p++ = tohex (i >> 4);
2115 *p++ = tohex (i & 15);
2116 if (count)
2117 *p++ = ';';
2118 else
2119 break;
2120 count--;
2121 }
2122 }
2123 *p = 0;
2124 if (!rs->last_program_signals_packet
2125 || strcmp (rs->last_program_signals_packet, packet) != 0)
2126 {
2127 putpkt (packet);
2128 getpkt (&rs->buf, &rs->buf_size, 0);
2129 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
2130 xfree (rs->last_program_signals_packet);
2131 rs->last_program_signals_packet = packet;
2132 }
2133 else
2134 xfree (packet);
2135 }
2136 }
2137
2138 /* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2139 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2140 thread. If GEN is set, set the general thread, if not, then set
2141 the step/continue thread. */
2142 static void
2143 set_thread (struct ptid ptid, int gen)
2144 {
2145 struct remote_state *rs = get_remote_state ();
2146 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
2147 char *buf = rs->buf;
2148 char *endbuf = rs->buf + get_remote_packet_size ();
2149
2150 if (ptid_equal (state, ptid))
2151 return;
2152
2153 *buf++ = 'H';
2154 *buf++ = gen ? 'g' : 'c';
2155 if (ptid_equal (ptid, magic_null_ptid))
2156 xsnprintf (buf, endbuf - buf, "0");
2157 else if (ptid_equal (ptid, any_thread_ptid))
2158 xsnprintf (buf, endbuf - buf, "0");
2159 else if (ptid_equal (ptid, minus_one_ptid))
2160 xsnprintf (buf, endbuf - buf, "-1");
2161 else
2162 write_ptid (buf, endbuf, ptid);
2163 putpkt (rs->buf);
2164 getpkt (&rs->buf, &rs->buf_size, 0);
2165 if (gen)
2166 rs->general_thread = ptid;
2167 else
2168 rs->continue_thread = ptid;
2169 }
2170
2171 static void
2172 set_general_thread (struct ptid ptid)
2173 {
2174 set_thread (ptid, 1);
2175 }
2176
2177 static void
2178 set_continue_thread (struct ptid ptid)
2179 {
2180 set_thread (ptid, 0);
2181 }
2182
2183 /* Change the remote current process. Which thread within the process
2184 ends up selected isn't important, as long as it is the same process
2185 as what INFERIOR_PTID points to.
2186
2187 This comes from that fact that there is no explicit notion of
2188 "selected process" in the protocol. The selected process for
2189 general operations is the process the selected general thread
2190 belongs to. */
2191
2192 static void
2193 set_general_process (void)
2194 {
2195 struct remote_state *rs = get_remote_state ();
2196
2197 /* If the remote can't handle multiple processes, don't bother. */
2198 if (!remote_multi_process_p (rs))
2199 return;
2200
2201 /* We only need to change the remote current thread if it's pointing
2202 at some other process. */
2203 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
2204 set_general_thread (inferior_ptid);
2205 }
2206
2207 \f
2208 /* Return nonzero if this is the main thread that we made up ourselves
2209 to model non-threaded targets as single-threaded. */
2210
2211 static int
2212 remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
2213 {
2214 if (ptid_equal (ptid, magic_null_ptid))
2215 /* The main thread is always alive. */
2216 return 1;
2217
2218 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
2219 /* The main thread is always alive. This can happen after a
2220 vAttach, if the remote side doesn't support
2221 multi-threading. */
2222 return 1;
2223
2224 return 0;
2225 }
2226
2227 /* Return nonzero if the thread PTID is still alive on the remote
2228 system. */
2229
2230 static int
2231 remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2232 {
2233 struct remote_state *rs = get_remote_state ();
2234 char *p, *endp;
2235
2236 /* Check if this is a thread that we made up ourselves to model
2237 non-threaded targets as single-threaded. */
2238 if (remote_thread_always_alive (ops, ptid))
2239 return 1;
2240
2241 p = rs->buf;
2242 endp = rs->buf + get_remote_packet_size ();
2243
2244 *p++ = 'T';
2245 write_ptid (p, endp, ptid);
2246
2247 putpkt (rs->buf);
2248 getpkt (&rs->buf, &rs->buf_size, 0);
2249 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
2250 }
2251
2252 /* Return a pointer to a thread name if we know it and NULL otherwise.
2253 The thread_info object owns the memory for the name. */
2254
2255 static const char *
2256 remote_thread_name (struct target_ops *ops, struct thread_info *info)
2257 {
2258 if (info->priv != NULL)
2259 return info->priv->name;
2260
2261 return NULL;
2262 }
2263
2264 /* About these extended threadlist and threadinfo packets. They are
2265 variable length packets but, the fields within them are often fixed
2266 length. They are redundent enough to send over UDP as is the
2267 remote protocol in general. There is a matching unit test module
2268 in libstub. */
2269
2270 /* WARNING: This threadref data structure comes from the remote O.S.,
2271 libstub protocol encoding, and remote.c. It is not particularly
2272 changable. */
2273
2274 /* Right now, the internal structure is int. We want it to be bigger.
2275 Plan to fix this. */
2276
2277 typedef int gdb_threadref; /* Internal GDB thread reference. */
2278
2279 /* gdb_ext_thread_info is an internal GDB data structure which is
2280 equivalent to the reply of the remote threadinfo packet. */
2281
2282 struct gdb_ext_thread_info
2283 {
2284 threadref threadid; /* External form of thread reference. */
2285 int active; /* Has state interesting to GDB?
2286 regs, stack. */
2287 char display[256]; /* Brief state display, name,
2288 blocked/suspended. */
2289 char shortname[32]; /* To be used to name threads. */
2290 char more_display[256]; /* Long info, statistics, queue depth,
2291 whatever. */
2292 };
2293
2294 /* The volume of remote transfers can be limited by submitting
2295 a mask containing bits specifying the desired information.
2296 Use a union of these values as the 'selection' parameter to
2297 get_thread_info. FIXME: Make these TAG names more thread specific. */
2298
2299 #define TAG_THREADID 1
2300 #define TAG_EXISTS 2
2301 #define TAG_DISPLAY 4
2302 #define TAG_THREADNAME 8
2303 #define TAG_MOREDISPLAY 16
2304
2305 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
2306
2307 static char *unpack_nibble (char *buf, int *val);
2308
2309 static char *unpack_byte (char *buf, int *value);
2310
2311 static char *pack_int (char *buf, int value);
2312
2313 static char *unpack_int (char *buf, int *value);
2314
2315 static char *unpack_string (char *src, char *dest, int length);
2316
2317 static char *pack_threadid (char *pkt, threadref *id);
2318
2319 static char *unpack_threadid (char *inbuf, threadref *id);
2320
2321 void int_to_threadref (threadref *id, int value);
2322
2323 static int threadref_to_int (threadref *ref);
2324
2325 static void copy_threadref (threadref *dest, threadref *src);
2326
2327 static int threadmatch (threadref *dest, threadref *src);
2328
2329 static char *pack_threadinfo_request (char *pkt, int mode,
2330 threadref *id);
2331
2332 static int remote_unpack_thread_info_response (char *pkt,
2333 threadref *expectedref,
2334 struct gdb_ext_thread_info
2335 *info);
2336
2337
2338 static int remote_get_threadinfo (threadref *threadid,
2339 int fieldset, /*TAG mask */
2340 struct gdb_ext_thread_info *info);
2341
2342 static char *pack_threadlist_request (char *pkt, int startflag,
2343 int threadcount,
2344 threadref *nextthread);
2345
2346 static int parse_threadlist_response (char *pkt,
2347 int result_limit,
2348 threadref *original_echo,
2349 threadref *resultlist,
2350 int *doneflag);
2351
2352 static int remote_get_threadlist (int startflag,
2353 threadref *nextthread,
2354 int result_limit,
2355 int *done,
2356 int *result_count,
2357 threadref *threadlist);
2358
2359 typedef int (*rmt_thread_action) (threadref *ref, void *context);
2360
2361 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2362 void *context, int looplimit);
2363
2364 static int remote_newthread_step (threadref *ref, void *context);
2365
2366
2367 /* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2368 buffer we're allowed to write to. Returns
2369 BUF+CHARACTERS_WRITTEN. */
2370
2371 static char *
2372 write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2373 {
2374 int pid, tid;
2375 struct remote_state *rs = get_remote_state ();
2376
2377 if (remote_multi_process_p (rs))
2378 {
2379 pid = ptid_get_pid (ptid);
2380 if (pid < 0)
2381 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2382 else
2383 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2384 }
2385 tid = ptid_get_lwp (ptid);
2386 if (tid < 0)
2387 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2388 else
2389 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2390
2391 return buf;
2392 }
2393
2394 /* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2395 passed the last parsed char. Returns null_ptid on error. */
2396
2397 static ptid_t
2398 read_ptid (char *buf, char **obuf)
2399 {
2400 char *p = buf;
2401 char *pp;
2402 ULONGEST pid = 0, tid = 0;
2403
2404 if (*p == 'p')
2405 {
2406 /* Multi-process ptid. */
2407 pp = unpack_varlen_hex (p + 1, &pid);
2408 if (*pp != '.')
2409 error (_("invalid remote ptid: %s"), p);
2410
2411 p = pp;
2412 pp = unpack_varlen_hex (p + 1, &tid);
2413 if (obuf)
2414 *obuf = pp;
2415 return ptid_build (pid, tid, 0);
2416 }
2417
2418 /* No multi-process. Just a tid. */
2419 pp = unpack_varlen_hex (p, &tid);
2420
2421 /* Return null_ptid when no thread id is found. */
2422 if (p == pp)
2423 {
2424 if (obuf)
2425 *obuf = pp;
2426 return null_ptid;
2427 }
2428
2429 /* Since the stub is not sending a process id, then default to
2430 what's in inferior_ptid, unless it's null at this point. If so,
2431 then since there's no way to know the pid of the reported
2432 threads, use the magic number. */
2433 if (ptid_equal (inferior_ptid, null_ptid))
2434 pid = ptid_get_pid (magic_null_ptid);
2435 else
2436 pid = ptid_get_pid (inferior_ptid);
2437
2438 if (obuf)
2439 *obuf = pp;
2440 return ptid_build (pid, tid, 0);
2441 }
2442
2443 static int
2444 stubhex (int ch)
2445 {
2446 if (ch >= 'a' && ch <= 'f')
2447 return ch - 'a' + 10;
2448 if (ch >= '0' && ch <= '9')
2449 return ch - '0';
2450 if (ch >= 'A' && ch <= 'F')
2451 return ch - 'A' + 10;
2452 return -1;
2453 }
2454
2455 static int
2456 stub_unpack_int (char *buff, int fieldlength)
2457 {
2458 int nibble;
2459 int retval = 0;
2460
2461 while (fieldlength)
2462 {
2463 nibble = stubhex (*buff++);
2464 retval |= nibble;
2465 fieldlength--;
2466 if (fieldlength)
2467 retval = retval << 4;
2468 }
2469 return retval;
2470 }
2471
2472 static char *
2473 unpack_nibble (char *buf, int *val)
2474 {
2475 *val = fromhex (*buf++);
2476 return buf;
2477 }
2478
2479 static char *
2480 unpack_byte (char *buf, int *value)
2481 {
2482 *value = stub_unpack_int (buf, 2);
2483 return buf + 2;
2484 }
2485
2486 static char *
2487 pack_int (char *buf, int value)
2488 {
2489 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2490 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2491 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2492 buf = pack_hex_byte (buf, (value & 0xff));
2493 return buf;
2494 }
2495
2496 static char *
2497 unpack_int (char *buf, int *value)
2498 {
2499 *value = stub_unpack_int (buf, 8);
2500 return buf + 8;
2501 }
2502
2503 #if 0 /* Currently unused, uncomment when needed. */
2504 static char *pack_string (char *pkt, char *string);
2505
2506 static char *
2507 pack_string (char *pkt, char *string)
2508 {
2509 char ch;
2510 int len;
2511
2512 len = strlen (string);
2513 if (len > 200)
2514 len = 200; /* Bigger than most GDB packets, junk??? */
2515 pkt = pack_hex_byte (pkt, len);
2516 while (len-- > 0)
2517 {
2518 ch = *string++;
2519 if ((ch == '\0') || (ch == '#'))
2520 ch = '*'; /* Protect encapsulation. */
2521 *pkt++ = ch;
2522 }
2523 return pkt;
2524 }
2525 #endif /* 0 (unused) */
2526
2527 static char *
2528 unpack_string (char *src, char *dest, int length)
2529 {
2530 while (length--)
2531 *dest++ = *src++;
2532 *dest = '\0';
2533 return src;
2534 }
2535
2536 static char *
2537 pack_threadid (char *pkt, threadref *id)
2538 {
2539 char *limit;
2540 unsigned char *altid;
2541
2542 altid = (unsigned char *) id;
2543 limit = pkt + BUF_THREAD_ID_SIZE;
2544 while (pkt < limit)
2545 pkt = pack_hex_byte (pkt, *altid++);
2546 return pkt;
2547 }
2548
2549
2550 static char *
2551 unpack_threadid (char *inbuf, threadref *id)
2552 {
2553 char *altref;
2554 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2555 int x, y;
2556
2557 altref = (char *) id;
2558
2559 while (inbuf < limit)
2560 {
2561 x = stubhex (*inbuf++);
2562 y = stubhex (*inbuf++);
2563 *altref++ = (x << 4) | y;
2564 }
2565 return inbuf;
2566 }
2567
2568 /* Externally, threadrefs are 64 bits but internally, they are still
2569 ints. This is due to a mismatch of specifications. We would like
2570 to use 64bit thread references internally. This is an adapter
2571 function. */
2572
2573 void
2574 int_to_threadref (threadref *id, int value)
2575 {
2576 unsigned char *scan;
2577
2578 scan = (unsigned char *) id;
2579 {
2580 int i = 4;
2581 while (i--)
2582 *scan++ = 0;
2583 }
2584 *scan++ = (value >> 24) & 0xff;
2585 *scan++ = (value >> 16) & 0xff;
2586 *scan++ = (value >> 8) & 0xff;
2587 *scan++ = (value & 0xff);
2588 }
2589
2590 static int
2591 threadref_to_int (threadref *ref)
2592 {
2593 int i, value = 0;
2594 unsigned char *scan;
2595
2596 scan = *ref;
2597 scan += 4;
2598 i = 4;
2599 while (i-- > 0)
2600 value = (value << 8) | ((*scan++) & 0xff);
2601 return value;
2602 }
2603
2604 static void
2605 copy_threadref (threadref *dest, threadref *src)
2606 {
2607 int i;
2608 unsigned char *csrc, *cdest;
2609
2610 csrc = (unsigned char *) src;
2611 cdest = (unsigned char *) dest;
2612 i = 8;
2613 while (i--)
2614 *cdest++ = *csrc++;
2615 }
2616
2617 static int
2618 threadmatch (threadref *dest, threadref *src)
2619 {
2620 /* Things are broken right now, so just assume we got a match. */
2621 #if 0
2622 unsigned char *srcp, *destp;
2623 int i, result;
2624 srcp = (char *) src;
2625 destp = (char *) dest;
2626
2627 result = 1;
2628 while (i-- > 0)
2629 result &= (*srcp++ == *destp++) ? 1 : 0;
2630 return result;
2631 #endif
2632 return 1;
2633 }
2634
2635 /*
2636 threadid:1, # always request threadid
2637 context_exists:2,
2638 display:4,
2639 unique_name:8,
2640 more_display:16
2641 */
2642
2643 /* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2644
2645 static char *
2646 pack_threadinfo_request (char *pkt, int mode, threadref *id)
2647 {
2648 *pkt++ = 'q'; /* Info Query */
2649 *pkt++ = 'P'; /* process or thread info */
2650 pkt = pack_int (pkt, mode); /* mode */
2651 pkt = pack_threadid (pkt, id); /* threadid */
2652 *pkt = '\0'; /* terminate */
2653 return pkt;
2654 }
2655
2656 /* These values tag the fields in a thread info response packet. */
2657 /* Tagging the fields allows us to request specific fields and to
2658 add more fields as time goes by. */
2659
2660 #define TAG_THREADID 1 /* Echo the thread identifier. */
2661 #define TAG_EXISTS 2 /* Is this process defined enough to
2662 fetch registers and its stack? */
2663 #define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
2664 #define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
2665 #define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
2666 the process. */
2667
2668 static int
2669 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2670 struct gdb_ext_thread_info *info)
2671 {
2672 struct remote_state *rs = get_remote_state ();
2673 int mask, length;
2674 int tag;
2675 threadref ref;
2676 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
2677 int retval = 1;
2678
2679 /* info->threadid = 0; FIXME: implement zero_threadref. */
2680 info->active = 0;
2681 info->display[0] = '\0';
2682 info->shortname[0] = '\0';
2683 info->more_display[0] = '\0';
2684
2685 /* Assume the characters indicating the packet type have been
2686 stripped. */
2687 pkt = unpack_int (pkt, &mask); /* arg mask */
2688 pkt = unpack_threadid (pkt, &ref);
2689
2690 if (mask == 0)
2691 warning (_("Incomplete response to threadinfo request."));
2692 if (!threadmatch (&ref, expectedref))
2693 { /* This is an answer to a different request. */
2694 warning (_("ERROR RMT Thread info mismatch."));
2695 return 0;
2696 }
2697 copy_threadref (&info->threadid, &ref);
2698
2699 /* Loop on tagged fields , try to bail if somthing goes wrong. */
2700
2701 /* Packets are terminated with nulls. */
2702 while ((pkt < limit) && mask && *pkt)
2703 {
2704 pkt = unpack_int (pkt, &tag); /* tag */
2705 pkt = unpack_byte (pkt, &length); /* length */
2706 if (!(tag & mask)) /* Tags out of synch with mask. */
2707 {
2708 warning (_("ERROR RMT: threadinfo tag mismatch."));
2709 retval = 0;
2710 break;
2711 }
2712 if (tag == TAG_THREADID)
2713 {
2714 if (length != 16)
2715 {
2716 warning (_("ERROR RMT: length of threadid is not 16."));
2717 retval = 0;
2718 break;
2719 }
2720 pkt = unpack_threadid (pkt, &ref);
2721 mask = mask & ~TAG_THREADID;
2722 continue;
2723 }
2724 if (tag == TAG_EXISTS)
2725 {
2726 info->active = stub_unpack_int (pkt, length);
2727 pkt += length;
2728 mask = mask & ~(TAG_EXISTS);
2729 if (length > 8)
2730 {
2731 warning (_("ERROR RMT: 'exists' length too long."));
2732 retval = 0;
2733 break;
2734 }
2735 continue;
2736 }
2737 if (tag == TAG_THREADNAME)
2738 {
2739 pkt = unpack_string (pkt, &info->shortname[0], length);
2740 mask = mask & ~TAG_THREADNAME;
2741 continue;
2742 }
2743 if (tag == TAG_DISPLAY)
2744 {
2745 pkt = unpack_string (pkt, &info->display[0], length);
2746 mask = mask & ~TAG_DISPLAY;
2747 continue;
2748 }
2749 if (tag == TAG_MOREDISPLAY)
2750 {
2751 pkt = unpack_string (pkt, &info->more_display[0], length);
2752 mask = mask & ~TAG_MOREDISPLAY;
2753 continue;
2754 }
2755 warning (_("ERROR RMT: unknown thread info tag."));
2756 break; /* Not a tag we know about. */
2757 }
2758 return retval;
2759 }
2760
2761 static int
2762 remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2763 struct gdb_ext_thread_info *info)
2764 {
2765 struct remote_state *rs = get_remote_state ();
2766 int result;
2767
2768 pack_threadinfo_request (rs->buf, fieldset, threadid);
2769 putpkt (rs->buf);
2770 getpkt (&rs->buf, &rs->buf_size, 0);
2771
2772 if (rs->buf[0] == '\0')
2773 return 0;
2774
2775 result = remote_unpack_thread_info_response (rs->buf + 2,
2776 threadid, info);
2777 return result;
2778 }
2779
2780 /* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2781
2782 static char *
2783 pack_threadlist_request (char *pkt, int startflag, int threadcount,
2784 threadref *nextthread)
2785 {
2786 *pkt++ = 'q'; /* info query packet */
2787 *pkt++ = 'L'; /* Process LIST or threadLIST request */
2788 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
2789 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2790 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2791 *pkt = '\0';
2792 return pkt;
2793 }
2794
2795 /* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2796
2797 static int
2798 parse_threadlist_response (char *pkt, int result_limit,
2799 threadref *original_echo, threadref *resultlist,
2800 int *doneflag)
2801 {
2802 struct remote_state *rs = get_remote_state ();
2803 char *limit;
2804 int count, resultcount, done;
2805
2806 resultcount = 0;
2807 /* Assume the 'q' and 'M chars have been stripped. */
2808 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
2809 /* done parse past here */
2810 pkt = unpack_byte (pkt, &count); /* count field */
2811 pkt = unpack_nibble (pkt, &done);
2812 /* The first threadid is the argument threadid. */
2813 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2814 while ((count-- > 0) && (pkt < limit))
2815 {
2816 pkt = unpack_threadid (pkt, resultlist++);
2817 if (resultcount++ >= result_limit)
2818 break;
2819 }
2820 if (doneflag)
2821 *doneflag = done;
2822 return resultcount;
2823 }
2824
2825 /* Fetch the next batch of threads from the remote. Returns -1 if the
2826 qL packet is not supported, 0 on error and 1 on success. */
2827
2828 static int
2829 remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2830 int *done, int *result_count, threadref *threadlist)
2831 {
2832 struct remote_state *rs = get_remote_state ();
2833 int result = 1;
2834
2835 /* Trancate result limit to be smaller than the packet size. */
2836 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2837 >= get_remote_packet_size ())
2838 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
2839
2840 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2841 putpkt (rs->buf);
2842 getpkt (&rs->buf, &rs->buf_size, 0);
2843 if (*rs->buf == '\0')
2844 {
2845 /* Packet not supported. */
2846 return -1;
2847 }
2848
2849 *result_count =
2850 parse_threadlist_response (rs->buf + 2, result_limit,
2851 &rs->echo_nextthread, threadlist, done);
2852
2853 if (!threadmatch (&rs->echo_nextthread, nextthread))
2854 {
2855 /* FIXME: This is a good reason to drop the packet. */
2856 /* Possably, there is a duplicate response. */
2857 /* Possabilities :
2858 retransmit immediatly - race conditions
2859 retransmit after timeout - yes
2860 exit
2861 wait for packet, then exit
2862 */
2863 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
2864 return 0; /* I choose simply exiting. */
2865 }
2866 if (*result_count <= 0)
2867 {
2868 if (*done != 1)
2869 {
2870 warning (_("RMT ERROR : failed to get remote thread list."));
2871 result = 0;
2872 }
2873 return result; /* break; */
2874 }
2875 if (*result_count > result_limit)
2876 {
2877 *result_count = 0;
2878 warning (_("RMT ERROR: threadlist response longer than requested."));
2879 return 0;
2880 }
2881 return result;
2882 }
2883
2884 /* Fetch the list of remote threads, with the qL packet, and call
2885 STEPFUNCTION for each thread found. Stops iterating and returns 1
2886 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2887 STEPFUNCTION returns false. If the packet is not supported,
2888 returns -1. */
2889
2890 static int
2891 remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2892 int looplimit)
2893 {
2894 struct remote_state *rs = get_remote_state ();
2895 int done, i, result_count;
2896 int startflag = 1;
2897 int result = 1;
2898 int loopcount = 0;
2899
2900 done = 0;
2901 while (!done)
2902 {
2903 if (loopcount++ > looplimit)
2904 {
2905 result = 0;
2906 warning (_("Remote fetch threadlist -infinite loop-."));
2907 break;
2908 }
2909 result = remote_get_threadlist (startflag, &rs->nextthread,
2910 MAXTHREADLISTRESULTS,
2911 &done, &result_count,
2912 rs->resultthreadlist);
2913 if (result <= 0)
2914 break;
2915 /* Clear for later iterations. */
2916 startflag = 0;
2917 /* Setup to resume next batch of thread references, set nextthread. */
2918 if (result_count >= 1)
2919 copy_threadref (&rs->nextthread,
2920 &rs->resultthreadlist[result_count - 1]);
2921 i = 0;
2922 while (result_count--)
2923 {
2924 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2925 {
2926 result = 0;
2927 break;
2928 }
2929 }
2930 }
2931 return result;
2932 }
2933
2934 /* A thread found on the remote target. */
2935
2936 typedef struct thread_item
2937 {
2938 /* The thread's PTID. */
2939 ptid_t ptid;
2940
2941 /* The thread's extra info. May be NULL. */
2942 char *extra;
2943
2944 /* The thread's name. May be NULL. */
2945 char *name;
2946
2947 /* The core the thread was running on. -1 if not known. */
2948 int core;
2949 } thread_item_t;
2950 DEF_VEC_O(thread_item_t);
2951
2952 /* Context passed around to the various methods listing remote
2953 threads. As new threads are found, they're added to the ITEMS
2954 vector. */
2955
2956 struct threads_listing_context
2957 {
2958 /* The threads found on the remote target. */
2959 VEC (thread_item_t) *items;
2960 };
2961
2962 /* Discard the contents of the constructed thread listing context. */
2963
2964 static void
2965 clear_threads_listing_context (void *p)
2966 {
2967 struct threads_listing_context *context
2968 = (struct threads_listing_context *) p;
2969 int i;
2970 struct thread_item *item;
2971
2972 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2973 {
2974 xfree (item->extra);
2975 xfree (item->name);
2976 }
2977
2978 VEC_free (thread_item_t, context->items);
2979 }
2980
2981 /* Remove the thread specified as the related_pid field of WS
2982 from the CONTEXT list. */
2983
2984 static void
2985 threads_listing_context_remove (struct target_waitstatus *ws,
2986 struct threads_listing_context *context)
2987 {
2988 struct thread_item *item;
2989 int i;
2990 ptid_t child_ptid = ws->value.related_pid;
2991
2992 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2993 {
2994 if (ptid_equal (item->ptid, child_ptid))
2995 {
2996 VEC_ordered_remove (thread_item_t, context->items, i);
2997 break;
2998 }
2999 }
3000 }
3001
3002 static int
3003 remote_newthread_step (threadref *ref, void *data)
3004 {
3005 struct threads_listing_context *context
3006 = (struct threads_listing_context *) data;
3007 struct thread_item item;
3008 int pid = ptid_get_pid (inferior_ptid);
3009
3010 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
3011 item.core = -1;
3012 item.name = NULL;
3013 item.extra = NULL;
3014
3015 VEC_safe_push (thread_item_t, context->items, &item);
3016
3017 return 1; /* continue iterator */
3018 }
3019
3020 #define CRAZY_MAX_THREADS 1000
3021
3022 static ptid_t
3023 remote_current_thread (ptid_t oldpid)
3024 {
3025 struct remote_state *rs = get_remote_state ();
3026
3027 putpkt ("qC");
3028 getpkt (&rs->buf, &rs->buf_size, 0);
3029 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
3030 {
3031 char *obuf;
3032 ptid_t result;
3033
3034 result = read_ptid (&rs->buf[2], &obuf);
3035 if (*obuf != '\0' && remote_debug)
3036 fprintf_unfiltered (gdb_stdlog,
3037 "warning: garbage in qC reply\n");
3038
3039 return result;
3040 }
3041 else
3042 return oldpid;
3043 }
3044
3045 /* List remote threads using the deprecated qL packet. */
3046
3047 static int
3048 remote_get_threads_with_ql (struct target_ops *ops,
3049 struct threads_listing_context *context)
3050 {
3051 if (remote_threadlist_iterator (remote_newthread_step, context,
3052 CRAZY_MAX_THREADS) >= 0)
3053 return 1;
3054
3055 return 0;
3056 }
3057
3058 #if defined(HAVE_LIBEXPAT)
3059
3060 static void
3061 start_thread (struct gdb_xml_parser *parser,
3062 const struct gdb_xml_element *element,
3063 void *user_data, VEC(gdb_xml_value_s) *attributes)
3064 {
3065 struct threads_listing_context *data
3066 = (struct threads_listing_context *) user_data;
3067
3068 struct thread_item item;
3069 char *id;
3070 struct gdb_xml_value *attr;
3071
3072 id = (char *) xml_find_attribute (attributes, "id")->value;
3073 item.ptid = read_ptid (id, NULL);
3074
3075 attr = xml_find_attribute (attributes, "core");
3076 if (attr != NULL)
3077 item.core = *(ULONGEST *) attr->value;
3078 else
3079 item.core = -1;
3080
3081 attr = xml_find_attribute (attributes, "name");
3082 item.name = attr != NULL ? xstrdup ((const char *) attr->value) : NULL;
3083
3084 item.extra = 0;
3085
3086 VEC_safe_push (thread_item_t, data->items, &item);
3087 }
3088
3089 static void
3090 end_thread (struct gdb_xml_parser *parser,
3091 const struct gdb_xml_element *element,
3092 void *user_data, const char *body_text)
3093 {
3094 struct threads_listing_context *data
3095 = (struct threads_listing_context *) user_data;
3096
3097 if (body_text && *body_text)
3098 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
3099 }
3100
3101 const struct gdb_xml_attribute thread_attributes[] = {
3102 { "id", GDB_XML_AF_NONE, NULL, NULL },
3103 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
3104 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
3105 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3106 };
3107
3108 const struct gdb_xml_element thread_children[] = {
3109 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3110 };
3111
3112 const struct gdb_xml_element threads_children[] = {
3113 { "thread", thread_attributes, thread_children,
3114 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3115 start_thread, end_thread },
3116 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3117 };
3118
3119 const struct gdb_xml_element threads_elements[] = {
3120 { "threads", NULL, threads_children,
3121 GDB_XML_EF_NONE, NULL, NULL },
3122 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3123 };
3124
3125 #endif
3126
3127 /* List remote threads using qXfer:threads:read. */
3128
3129 static int
3130 remote_get_threads_with_qxfer (struct target_ops *ops,
3131 struct threads_listing_context *context)
3132 {
3133 #if defined(HAVE_LIBEXPAT)
3134 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3135 {
3136 char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
3137 struct cleanup *back_to = make_cleanup (xfree, xml);
3138
3139 if (xml != NULL && *xml != '\0')
3140 {
3141 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3142 threads_elements, xml, context);
3143 }
3144
3145 do_cleanups (back_to);
3146 return 1;
3147 }
3148 #endif
3149
3150 return 0;
3151 }
3152
3153 /* List remote threads using qfThreadInfo/qsThreadInfo. */
3154
3155 static int
3156 remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3157 struct threads_listing_context *context)
3158 {
3159 struct remote_state *rs = get_remote_state ();
3160
3161 if (rs->use_threadinfo_query)
3162 {
3163 char *bufp;
3164
3165 putpkt ("qfThreadInfo");
3166 getpkt (&rs->buf, &rs->buf_size, 0);
3167 bufp = rs->buf;
3168 if (bufp[0] != '\0') /* q packet recognized */
3169 {
3170 while (*bufp++ == 'm') /* reply contains one or more TID */
3171 {
3172 do
3173 {
3174 struct thread_item item;
3175
3176 item.ptid = read_ptid (bufp, &bufp);
3177 item.core = -1;
3178 item.name = NULL;
3179 item.extra = NULL;
3180
3181 VEC_safe_push (thread_item_t, context->items, &item);
3182 }
3183 while (*bufp++ == ','); /* comma-separated list */
3184 putpkt ("qsThreadInfo");
3185 getpkt (&rs->buf, &rs->buf_size, 0);
3186 bufp = rs->buf;
3187 }
3188 return 1;
3189 }
3190 else
3191 {
3192 /* Packet not recognized. */
3193 rs->use_threadinfo_query = 0;
3194 }
3195 }
3196
3197 return 0;
3198 }
3199
3200 /* Implement the to_update_thread_list function for the remote
3201 targets. */
3202
3203 static void
3204 remote_update_thread_list (struct target_ops *ops)
3205 {
3206 struct threads_listing_context context;
3207 struct cleanup *old_chain;
3208 int got_list = 0;
3209
3210 context.items = NULL;
3211 old_chain = make_cleanup (clear_threads_listing_context, &context);
3212
3213 /* We have a few different mechanisms to fetch the thread list. Try
3214 them all, starting with the most preferred one first, falling
3215 back to older methods. */
3216 if (remote_get_threads_with_qxfer (ops, &context)
3217 || remote_get_threads_with_qthreadinfo (ops, &context)
3218 || remote_get_threads_with_ql (ops, &context))
3219 {
3220 int i;
3221 struct thread_item *item;
3222 struct thread_info *tp, *tmp;
3223
3224 got_list = 1;
3225
3226 if (VEC_empty (thread_item_t, context.items)
3227 && remote_thread_always_alive (ops, inferior_ptid))
3228 {
3229 /* Some targets don't really support threads, but still
3230 reply an (empty) thread list in response to the thread
3231 listing packets, instead of replying "packet not
3232 supported". Exit early so we don't delete the main
3233 thread. */
3234 do_cleanups (old_chain);
3235 return;
3236 }
3237
3238 /* CONTEXT now holds the current thread list on the remote
3239 target end. Delete GDB-side threads no longer found on the
3240 target. */
3241 ALL_THREADS_SAFE (tp, tmp)
3242 {
3243 for (i = 0;
3244 VEC_iterate (thread_item_t, context.items, i, item);
3245 ++i)
3246 {
3247 if (ptid_equal (item->ptid, tp->ptid))
3248 break;
3249 }
3250
3251 if (i == VEC_length (thread_item_t, context.items))
3252 {
3253 /* Not found. */
3254 delete_thread (tp->ptid);
3255 }
3256 }
3257
3258 /* Remove any unreported fork child threads from CONTEXT so
3259 that we don't interfere with follow fork, which is where
3260 creation of such threads is handled. */
3261 remove_new_fork_children (&context);
3262
3263 /* And now add threads we don't know about yet to our list. */
3264 for (i = 0;
3265 VEC_iterate (thread_item_t, context.items, i, item);
3266 ++i)
3267 {
3268 if (!ptid_equal (item->ptid, null_ptid))
3269 {
3270 struct private_thread_info *info;
3271 /* In non-stop mode, we assume new found threads are
3272 executing until proven otherwise with a stop reply.
3273 In all-stop, we can only get here if all threads are
3274 stopped. */
3275 int executing = target_is_non_stop_p () ? 1 : 0;
3276
3277 remote_notice_new_inferior (item->ptid, executing);
3278
3279 info = demand_private_info (item->ptid);
3280 info->core = item->core;
3281 info->extra = item->extra;
3282 item->extra = NULL;
3283 info->name = item->name;
3284 item->name = NULL;
3285 }
3286 }
3287 }
3288
3289 if (!got_list)
3290 {
3291 /* If no thread listing method is supported, then query whether
3292 each known thread is alive, one by one, with the T packet.
3293 If the target doesn't support threads at all, then this is a
3294 no-op. See remote_thread_alive. */
3295 prune_threads ();
3296 }
3297
3298 do_cleanups (old_chain);
3299 }
3300
3301 /*
3302 * Collect a descriptive string about the given thread.
3303 * The target may say anything it wants to about the thread
3304 * (typically info about its blocked / runnable state, name, etc.).
3305 * This string will appear in the info threads display.
3306 *
3307 * Optional: targets are not required to implement this function.
3308 */
3309
3310 static char *
3311 remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
3312 {
3313 struct remote_state *rs = get_remote_state ();
3314 int result;
3315 int set;
3316 threadref id;
3317 struct gdb_ext_thread_info threadinfo;
3318 static char display_buf[100]; /* arbitrary... */
3319 int n = 0; /* position in display_buf */
3320
3321 if (rs->remote_desc == 0) /* paranoia */
3322 internal_error (__FILE__, __LINE__,
3323 _("remote_threads_extra_info"));
3324
3325 if (ptid_equal (tp->ptid, magic_null_ptid)
3326 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
3327 /* This is the main thread which was added by GDB. The remote
3328 server doesn't know about it. */
3329 return NULL;
3330
3331 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
3332 {
3333 struct thread_info *info = find_thread_ptid (tp->ptid);
3334
3335 if (info && info->priv)
3336 return info->priv->extra;
3337 else
3338 return NULL;
3339 }
3340
3341 if (rs->use_threadextra_query)
3342 {
3343 char *b = rs->buf;
3344 char *endb = rs->buf + get_remote_packet_size ();
3345
3346 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3347 b += strlen (b);
3348 write_ptid (b, endb, tp->ptid);
3349
3350 putpkt (rs->buf);
3351 getpkt (&rs->buf, &rs->buf_size, 0);
3352 if (rs->buf[0] != 0)
3353 {
3354 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
3355 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
3356 display_buf [result] = '\0';
3357 return display_buf;
3358 }
3359 }
3360
3361 /* If the above query fails, fall back to the old method. */
3362 rs->use_threadextra_query = 0;
3363 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3364 | TAG_MOREDISPLAY | TAG_DISPLAY;
3365 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
3366 if (remote_get_threadinfo (&id, set, &threadinfo))
3367 if (threadinfo.active)
3368 {
3369 if (*threadinfo.shortname)
3370 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
3371 " Name: %s,", threadinfo.shortname);
3372 if (*threadinfo.display)
3373 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3374 " State: %s,", threadinfo.display);
3375 if (*threadinfo.more_display)
3376 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
3377 " Priority: %s", threadinfo.more_display);
3378
3379 if (n > 0)
3380 {
3381 /* For purely cosmetic reasons, clear up trailing commas. */
3382 if (',' == display_buf[n-1])
3383 display_buf[n-1] = ' ';
3384 return display_buf;
3385 }
3386 }
3387 return NULL;
3388 }
3389 \f
3390
3391 static int
3392 remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
3393 struct static_tracepoint_marker *marker)
3394 {
3395 struct remote_state *rs = get_remote_state ();
3396 char *p = rs->buf;
3397
3398 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
3399 p += strlen (p);
3400 p += hexnumstr (p, addr);
3401 putpkt (rs->buf);
3402 getpkt (&rs->buf, &rs->buf_size, 0);
3403 p = rs->buf;
3404
3405 if (*p == 'E')
3406 error (_("Remote failure reply: %s"), p);
3407
3408 if (*p++ == 'm')
3409 {
3410 parse_static_tracepoint_marker_definition (p, &p, marker);
3411 return 1;
3412 }
3413
3414 return 0;
3415 }
3416
3417 static VEC(static_tracepoint_marker_p) *
3418 remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3419 const char *strid)
3420 {
3421 struct remote_state *rs = get_remote_state ();
3422 VEC(static_tracepoint_marker_p) *markers = NULL;
3423 struct static_tracepoint_marker *marker = NULL;
3424 struct cleanup *old_chain;
3425 char *p;
3426
3427 /* Ask for a first packet of static tracepoint marker
3428 definition. */
3429 putpkt ("qTfSTM");
3430 getpkt (&rs->buf, &rs->buf_size, 0);
3431 p = rs->buf;
3432 if (*p == 'E')
3433 error (_("Remote failure reply: %s"), p);
3434
3435 old_chain = make_cleanup (free_current_marker, &marker);
3436
3437 while (*p++ == 'm')
3438 {
3439 if (marker == NULL)
3440 marker = XCNEW (struct static_tracepoint_marker);
3441
3442 do
3443 {
3444 parse_static_tracepoint_marker_definition (p, &p, marker);
3445
3446 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3447 {
3448 VEC_safe_push (static_tracepoint_marker_p,
3449 markers, marker);
3450 marker = NULL;
3451 }
3452 else
3453 {
3454 release_static_tracepoint_marker (marker);
3455 memset (marker, 0, sizeof (*marker));
3456 }
3457 }
3458 while (*p++ == ','); /* comma-separated list */
3459 /* Ask for another packet of static tracepoint definition. */
3460 putpkt ("qTsSTM");
3461 getpkt (&rs->buf, &rs->buf_size, 0);
3462 p = rs->buf;
3463 }
3464
3465 do_cleanups (old_chain);
3466 return markers;
3467 }
3468
3469 \f
3470 /* Implement the to_get_ada_task_ptid function for the remote targets. */
3471
3472 static ptid_t
3473 remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
3474 {
3475 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
3476 }
3477 \f
3478
3479 /* Restart the remote side; this is an extended protocol operation. */
3480
3481 static void
3482 extended_remote_restart (void)
3483 {
3484 struct remote_state *rs = get_remote_state ();
3485
3486 /* Send the restart command; for reasons I don't understand the
3487 remote side really expects a number after the "R". */
3488 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
3489 putpkt (rs->buf);
3490
3491 remote_fileio_reset ();
3492 }
3493 \f
3494 /* Clean up connection to a remote debugger. */
3495
3496 static void
3497 remote_close (struct target_ops *self)
3498 {
3499 struct remote_state *rs = get_remote_state ();
3500
3501 if (rs->remote_desc == NULL)
3502 return; /* already closed */
3503
3504 /* Make sure we leave stdin registered in the event loop. */
3505 remote_terminal_ours (self);
3506
3507 serial_close (rs->remote_desc);
3508 rs->remote_desc = NULL;
3509
3510 /* We don't have a connection to the remote stub anymore. Get rid
3511 of all the inferiors and their threads we were controlling.
3512 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3513 will be unable to find the thread corresponding to (pid, 0, 0). */
3514 inferior_ptid = null_ptid;
3515 discard_all_inferiors ();
3516
3517 /* We are closing the remote target, so we should discard
3518 everything of this target. */
3519 discard_pending_stop_replies_in_queue (rs);
3520
3521 if (remote_async_inferior_event_token)
3522 delete_async_event_handler (&remote_async_inferior_event_token);
3523
3524 remote_notif_state_xfree (rs->notif_state);
3525
3526 trace_reset_local_state ();
3527 }
3528
3529 /* Query the remote side for the text, data and bss offsets. */
3530
3531 static void
3532 get_offsets (void)
3533 {
3534 struct remote_state *rs = get_remote_state ();
3535 char *buf;
3536 char *ptr;
3537 int lose, num_segments = 0, do_sections, do_segments;
3538 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
3539 struct section_offsets *offs;
3540 struct symfile_segment_data *data;
3541
3542 if (symfile_objfile == NULL)
3543 return;
3544
3545 putpkt ("qOffsets");
3546 getpkt (&rs->buf, &rs->buf_size, 0);
3547 buf = rs->buf;
3548
3549 if (buf[0] == '\000')
3550 return; /* Return silently. Stub doesn't support
3551 this command. */
3552 if (buf[0] == 'E')
3553 {
3554 warning (_("Remote failure reply: %s"), buf);
3555 return;
3556 }
3557
3558 /* Pick up each field in turn. This used to be done with scanf, but
3559 scanf will make trouble if CORE_ADDR size doesn't match
3560 conversion directives correctly. The following code will work
3561 with any size of CORE_ADDR. */
3562 text_addr = data_addr = bss_addr = 0;
3563 ptr = buf;
3564 lose = 0;
3565
3566 if (startswith (ptr, "Text="))
3567 {
3568 ptr += 5;
3569 /* Don't use strtol, could lose on big values. */
3570 while (*ptr && *ptr != ';')
3571 text_addr = (text_addr << 4) + fromhex (*ptr++);
3572
3573 if (startswith (ptr, ";Data="))
3574 {
3575 ptr += 6;
3576 while (*ptr && *ptr != ';')
3577 data_addr = (data_addr << 4) + fromhex (*ptr++);
3578 }
3579 else
3580 lose = 1;
3581
3582 if (!lose && startswith (ptr, ";Bss="))
3583 {
3584 ptr += 5;
3585 while (*ptr && *ptr != ';')
3586 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
3587
3588 if (bss_addr != data_addr)
3589 warning (_("Target reported unsupported offsets: %s"), buf);
3590 }
3591 else
3592 lose = 1;
3593 }
3594 else if (startswith (ptr, "TextSeg="))
3595 {
3596 ptr += 8;
3597 /* Don't use strtol, could lose on big values. */
3598 while (*ptr && *ptr != ';')
3599 text_addr = (text_addr << 4) + fromhex (*ptr++);
3600 num_segments = 1;
3601
3602 if (startswith (ptr, ";DataSeg="))
3603 {
3604 ptr += 9;
3605 while (*ptr && *ptr != ';')
3606 data_addr = (data_addr << 4) + fromhex (*ptr++);
3607 num_segments++;
3608 }
3609 }
3610 else
3611 lose = 1;
3612
3613 if (lose)
3614 error (_("Malformed response to offset query, %s"), buf);
3615 else if (*ptr != '\0')
3616 warning (_("Target reported unsupported offsets: %s"), buf);
3617
3618 offs = ((struct section_offsets *)
3619 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
3620 memcpy (offs, symfile_objfile->section_offsets,
3621 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
3622
3623 data = get_symfile_segment_data (symfile_objfile->obfd);
3624 do_segments = (data != NULL);
3625 do_sections = num_segments == 0;
3626
3627 if (num_segments > 0)
3628 {
3629 segments[0] = text_addr;
3630 segments[1] = data_addr;
3631 }
3632 /* If we have two segments, we can still try to relocate everything
3633 by assuming that the .text and .data offsets apply to the whole
3634 text and data segments. Convert the offsets given in the packet
3635 to base addresses for symfile_map_offsets_to_segments. */
3636 else if (data && data->num_segments == 2)
3637 {
3638 segments[0] = data->segment_bases[0] + text_addr;
3639 segments[1] = data->segment_bases[1] + data_addr;
3640 num_segments = 2;
3641 }
3642 /* If the object file has only one segment, assume that it is text
3643 rather than data; main programs with no writable data are rare,
3644 but programs with no code are useless. Of course the code might
3645 have ended up in the data segment... to detect that we would need
3646 the permissions here. */
3647 else if (data && data->num_segments == 1)
3648 {
3649 segments[0] = data->segment_bases[0] + text_addr;
3650 num_segments = 1;
3651 }
3652 /* There's no way to relocate by segment. */
3653 else
3654 do_segments = 0;
3655
3656 if (do_segments)
3657 {
3658 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3659 offs, num_segments, segments);
3660
3661 if (ret == 0 && !do_sections)
3662 error (_("Can not handle qOffsets TextSeg "
3663 "response with this symbol file"));
3664
3665 if (ret > 0)
3666 do_sections = 0;
3667 }
3668
3669 if (data)
3670 free_symfile_segment_data (data);
3671
3672 if (do_sections)
3673 {
3674 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3675
3676 /* This is a temporary kludge to force data and bss to use the
3677 same offsets because that's what nlmconv does now. The real
3678 solution requires changes to the stub and remote.c that I
3679 don't have time to do right now. */
3680
3681 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3682 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3683 }
3684
3685 objfile_relocate (symfile_objfile, offs);
3686 }
3687
3688 /* Send interrupt_sequence to remote target. */
3689 static void
3690 send_interrupt_sequence (void)
3691 {
3692 struct remote_state *rs = get_remote_state ();
3693
3694 if (interrupt_sequence_mode == interrupt_sequence_control_c)
3695 remote_serial_write ("\x03", 1);
3696 else if (interrupt_sequence_mode == interrupt_sequence_break)
3697 serial_send_break (rs->remote_desc);
3698 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3699 {
3700 serial_send_break (rs->remote_desc);
3701 remote_serial_write ("g", 1);
3702 }
3703 else
3704 internal_error (__FILE__, __LINE__,
3705 _("Invalid value for interrupt_sequence_mode: %s."),
3706 interrupt_sequence_mode);
3707 }
3708
3709
3710 /* If STOP_REPLY is a T stop reply, look for the "thread" register,
3711 and extract the PTID. Returns NULL_PTID if not found. */
3712
3713 static ptid_t
3714 stop_reply_extract_thread (char *stop_reply)
3715 {
3716 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3717 {
3718 char *p;
3719
3720 /* Txx r:val ; r:val (...) */
3721 p = &stop_reply[3];
3722
3723 /* Look for "register" named "thread". */
3724 while (*p != '\0')
3725 {
3726 char *p1;
3727
3728 p1 = strchr (p, ':');
3729 if (p1 == NULL)
3730 return null_ptid;
3731
3732 if (strncmp (p, "thread", p1 - p) == 0)
3733 return read_ptid (++p1, &p);
3734
3735 p1 = strchr (p, ';');
3736 if (p1 == NULL)
3737 return null_ptid;
3738 p1++;
3739
3740 p = p1;
3741 }
3742 }
3743
3744 return null_ptid;
3745 }
3746
3747 /* Determine the remote side's current thread. If we have a stop
3748 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3749 "thread" register we can extract the current thread from. If not,
3750 ask the remote which is the current thread with qC. The former
3751 method avoids a roundtrip. */
3752
3753 static ptid_t
3754 get_current_thread (char *wait_status)
3755 {
3756 ptid_t ptid = null_ptid;
3757
3758 /* Note we don't use remote_parse_stop_reply as that makes use of
3759 the target architecture, which we haven't yet fully determined at
3760 this point. */
3761 if (wait_status != NULL)
3762 ptid = stop_reply_extract_thread (wait_status);
3763 if (ptid_equal (ptid, null_ptid))
3764 ptid = remote_current_thread (inferior_ptid);
3765
3766 return ptid;
3767 }
3768
3769 /* Query the remote target for which is the current thread/process,
3770 add it to our tables, and update INFERIOR_PTID. The caller is
3771 responsible for setting the state such that the remote end is ready
3772 to return the current thread.
3773
3774 This function is called after handling the '?' or 'vRun' packets,
3775 whose response is a stop reply from which we can also try
3776 extracting the thread. If the target doesn't support the explicit
3777 qC query, we infer the current thread from that stop reply, passed
3778 in in WAIT_STATUS, which may be NULL. */
3779
3780 static void
3781 add_current_inferior_and_thread (char *wait_status)
3782 {
3783 struct remote_state *rs = get_remote_state ();
3784 int fake_pid_p = 0;
3785 ptid_t ptid;
3786
3787 inferior_ptid = null_ptid;
3788
3789 /* Now, if we have thread information, update inferior_ptid. */
3790 ptid = get_current_thread (wait_status);
3791
3792 if (!ptid_equal (ptid, null_ptid))
3793 {
3794 if (!remote_multi_process_p (rs))
3795 fake_pid_p = 1;
3796
3797 inferior_ptid = ptid;
3798 }
3799 else
3800 {
3801 /* Without this, some commands which require an active target
3802 (such as kill) won't work. This variable serves (at least)
3803 double duty as both the pid of the target process (if it has
3804 such), and as a flag indicating that a target is active. */
3805 inferior_ptid = magic_null_ptid;
3806 fake_pid_p = 1;
3807 }
3808
3809 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1, 1);
3810
3811 /* Add the main thread. */
3812 add_thread_silent (inferior_ptid);
3813 }
3814
3815 /* Print info about a thread that was found already stopped on
3816 connection. */
3817
3818 static void
3819 print_one_stopped_thread (struct thread_info *thread)
3820 {
3821 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3822
3823 switch_to_thread (thread->ptid);
3824 stop_pc = get_frame_pc (get_current_frame ());
3825 set_current_sal_from_frame (get_current_frame ());
3826
3827 thread->suspend.waitstatus_pending_p = 0;
3828
3829 if (ws->kind == TARGET_WAITKIND_STOPPED)
3830 {
3831 enum gdb_signal sig = ws->value.sig;
3832
3833 if (signal_print_state (sig))
3834 observer_notify_signal_received (sig);
3835 }
3836 observer_notify_normal_stop (NULL, 1);
3837 }
3838
3839 /* Process all initial stop replies the remote side sent in response
3840 to the ? packet. These indicate threads that were already stopped
3841 on initial connection. We mark these threads as stopped and print
3842 their current frame before giving the user the prompt. */
3843
3844 static void
3845 process_initial_stop_replies (int from_tty)
3846 {
3847 int pending_stop_replies = stop_reply_queue_length ();
3848 struct inferior *inf;
3849 struct thread_info *thread;
3850 struct thread_info *selected = NULL;
3851 struct thread_info *lowest_stopped = NULL;
3852 struct thread_info *first = NULL;
3853
3854 /* Consume the initial pending events. */
3855 while (pending_stop_replies-- > 0)
3856 {
3857 ptid_t waiton_ptid = minus_one_ptid;
3858 ptid_t event_ptid;
3859 struct target_waitstatus ws;
3860 int ignore_event = 0;
3861 struct thread_info *thread;
3862
3863 memset (&ws, 0, sizeof (ws));
3864 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3865 if (remote_debug)
3866 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3867
3868 switch (ws.kind)
3869 {
3870 case TARGET_WAITKIND_IGNORE:
3871 case TARGET_WAITKIND_NO_RESUMED:
3872 case TARGET_WAITKIND_SIGNALLED:
3873 case TARGET_WAITKIND_EXITED:
3874 /* We shouldn't see these, but if we do, just ignore. */
3875 if (remote_debug)
3876 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3877 ignore_event = 1;
3878 break;
3879
3880 case TARGET_WAITKIND_EXECD:
3881 xfree (ws.value.execd_pathname);
3882 break;
3883 default:
3884 break;
3885 }
3886
3887 if (ignore_event)
3888 continue;
3889
3890 thread = find_thread_ptid (event_ptid);
3891
3892 if (ws.kind == TARGET_WAITKIND_STOPPED)
3893 {
3894 enum gdb_signal sig = ws.value.sig;
3895
3896 /* Stubs traditionally report SIGTRAP as initial signal,
3897 instead of signal 0. Suppress it. */
3898 if (sig == GDB_SIGNAL_TRAP)
3899 sig = GDB_SIGNAL_0;
3900 thread->suspend.stop_signal = sig;
3901 ws.value.sig = sig;
3902 }
3903
3904 thread->suspend.waitstatus = ws;
3905
3906 if (ws.kind != TARGET_WAITKIND_STOPPED
3907 || ws.value.sig != GDB_SIGNAL_0)
3908 thread->suspend.waitstatus_pending_p = 1;
3909
3910 set_executing (event_ptid, 0);
3911 set_running (event_ptid, 0);
3912 }
3913
3914 /* "Notice" the new inferiors before anything related to
3915 registers/memory. */
3916 ALL_INFERIORS (inf)
3917 {
3918 if (inf->pid == 0)
3919 continue;
3920
3921 inf->needs_setup = 1;
3922
3923 if (non_stop)
3924 {
3925 thread = any_live_thread_of_process (inf->pid);
3926 notice_new_inferior (thread->ptid,
3927 thread->state == THREAD_RUNNING,
3928 from_tty);
3929 }
3930 }
3931
3932 /* If all-stop on top of non-stop, pause all threads. Note this
3933 records the threads' stop pc, so must be done after "noticing"
3934 the inferiors. */
3935 if (!non_stop)
3936 {
3937 stop_all_threads ();
3938
3939 /* If all threads of an inferior were already stopped, we
3940 haven't setup the inferior yet. */
3941 ALL_INFERIORS (inf)
3942 {
3943 if (inf->pid == 0)
3944 continue;
3945
3946 if (inf->needs_setup)
3947 {
3948 thread = any_live_thread_of_process (inf->pid);
3949 switch_to_thread_no_regs (thread);
3950 setup_inferior (0);
3951 }
3952 }
3953 }
3954
3955 /* Now go over all threads that are stopped, and print their current
3956 frame. If all-stop, then if there's a signalled thread, pick
3957 that as current. */
3958 ALL_NON_EXITED_THREADS (thread)
3959 {
3960 if (first == NULL)
3961 first = thread;
3962
3963 if (!non_stop)
3964 set_running (thread->ptid, 0);
3965 else if (thread->state != THREAD_STOPPED)
3966 continue;
3967
3968 if (selected == NULL
3969 && thread->suspend.waitstatus_pending_p)
3970 selected = thread;
3971
3972 if (lowest_stopped == NULL
3973 || thread->inf->num < lowest_stopped->inf->num
3974 || thread->per_inf_num < lowest_stopped->per_inf_num)
3975 lowest_stopped = thread;
3976
3977 if (non_stop)
3978 print_one_stopped_thread (thread);
3979 }
3980
3981 /* In all-stop, we only print the status of one thread, and leave
3982 others with their status pending. */
3983 if (!non_stop)
3984 {
3985 thread = selected;
3986 if (thread == NULL)
3987 thread = lowest_stopped;
3988 if (thread == NULL)
3989 thread = first;
3990
3991 print_one_stopped_thread (thread);
3992 }
3993
3994 /* For "info program". */
3995 thread = inferior_thread ();
3996 if (thread->state == THREAD_STOPPED)
3997 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
3998 }
3999
4000 /* Start the remote connection and sync state. */
4001
4002 static void
4003 remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
4004 {
4005 struct remote_state *rs = get_remote_state ();
4006 struct packet_config *noack_config;
4007 char *wait_status = NULL;
4008
4009 /* Signal other parts that we're going through the initial setup,
4010 and so things may not be stable yet. E.g., we don't try to
4011 install tracepoints until we've relocated symbols. Also, a
4012 Ctrl-C before we're connected and synced up can't interrupt the
4013 target. Instead, it offers to drop the (potentially wedged)
4014 connection. */
4015 rs->starting_up = 1;
4016
4017 QUIT;
4018
4019 if (interrupt_on_connect)
4020 send_interrupt_sequence ();
4021
4022 /* Ack any packet which the remote side has already sent. */
4023 remote_serial_write ("+", 1);
4024
4025 /* The first packet we send to the target is the optional "supported
4026 packets" request. If the target can answer this, it will tell us
4027 which later probes to skip. */
4028 remote_query_supported ();
4029
4030 /* If the stub wants to get a QAllow, compose one and send it. */
4031 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
4032 remote_set_permissions (target);
4033
4034 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4035 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4036 as a reply to known packet. For packet "vFile:setfs:" it is an
4037 invalid reply and GDB would return error in
4038 remote_hostio_set_filesystem, making remote files access impossible.
4039 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4040 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4041 {
4042 const char v_mustreplyempty[] = "vMustReplyEmpty";
4043
4044 putpkt (v_mustreplyempty);
4045 getpkt (&rs->buf, &rs->buf_size, 0);
4046 if (strcmp (rs->buf, "OK") == 0)
4047 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4048 else if (strcmp (rs->buf, "") != 0)
4049 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4050 rs->buf);
4051 }
4052
4053 /* Next, we possibly activate noack mode.
4054
4055 If the QStartNoAckMode packet configuration is set to AUTO,
4056 enable noack mode if the stub reported a wish for it with
4057 qSupported.
4058
4059 If set to TRUE, then enable noack mode even if the stub didn't
4060 report it in qSupported. If the stub doesn't reply OK, the
4061 session ends with an error.
4062
4063 If FALSE, then don't activate noack mode, regardless of what the
4064 stub claimed should be the default with qSupported. */
4065
4066 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4067 if (packet_config_support (noack_config) != PACKET_DISABLE)
4068 {
4069 putpkt ("QStartNoAckMode");
4070 getpkt (&rs->buf, &rs->buf_size, 0);
4071 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4072 rs->noack_mode = 1;
4073 }
4074
4075 if (extended_p)
4076 {
4077 /* Tell the remote that we are using the extended protocol. */
4078 putpkt ("!");
4079 getpkt (&rs->buf, &rs->buf_size, 0);
4080 }
4081
4082 /* Let the target know which signals it is allowed to pass down to
4083 the program. */
4084 update_signals_program_target ();
4085
4086 /* Next, if the target can specify a description, read it. We do
4087 this before anything involving memory or registers. */
4088 target_find_description ();
4089
4090 /* Next, now that we know something about the target, update the
4091 address spaces in the program spaces. */
4092 update_address_spaces ();
4093
4094 /* On OSs where the list of libraries is global to all
4095 processes, we fetch them early. */
4096 if (gdbarch_has_global_solist (target_gdbarch ()))
4097 solib_add (NULL, from_tty, target, auto_solib_add);
4098
4099 if (target_is_non_stop_p ())
4100 {
4101 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
4102 error (_("Non-stop mode requested, but remote "
4103 "does not support non-stop"));
4104
4105 putpkt ("QNonStop:1");
4106 getpkt (&rs->buf, &rs->buf_size, 0);
4107
4108 if (strcmp (rs->buf, "OK") != 0)
4109 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
4110
4111 /* Find about threads and processes the stub is already
4112 controlling. We default to adding them in the running state.
4113 The '?' query below will then tell us about which threads are
4114 stopped. */
4115 remote_update_thread_list (target);
4116 }
4117 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
4118 {
4119 /* Don't assume that the stub can operate in all-stop mode.
4120 Request it explicitly. */
4121 putpkt ("QNonStop:0");
4122 getpkt (&rs->buf, &rs->buf_size, 0);
4123
4124 if (strcmp (rs->buf, "OK") != 0)
4125 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
4126 }
4127
4128 /* Upload TSVs regardless of whether the target is running or not. The
4129 remote stub, such as GDBserver, may have some predefined or builtin
4130 TSVs, even if the target is not running. */
4131 if (remote_get_trace_status (target, current_trace_status ()) != -1)
4132 {
4133 struct uploaded_tsv *uploaded_tsvs = NULL;
4134
4135 remote_upload_trace_state_variables (target, &uploaded_tsvs);
4136 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4137 }
4138
4139 /* Check whether the target is running now. */
4140 putpkt ("?");
4141 getpkt (&rs->buf, &rs->buf_size, 0);
4142
4143 if (!target_is_non_stop_p ())
4144 {
4145 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
4146 {
4147 if (!extended_p)
4148 error (_("The target is not running (try extended-remote?)"));
4149
4150 /* We're connected, but not running. Drop out before we
4151 call start_remote. */
4152 rs->starting_up = 0;
4153 return;
4154 }
4155 else
4156 {
4157 /* Save the reply for later. */
4158 wait_status = (char *) alloca (strlen (rs->buf) + 1);
4159 strcpy (wait_status, rs->buf);
4160 }
4161
4162 /* Fetch thread list. */
4163 target_update_thread_list ();
4164
4165 /* Let the stub know that we want it to return the thread. */
4166 set_continue_thread (minus_one_ptid);
4167
4168 if (thread_count () == 0)
4169 {
4170 /* Target has no concept of threads at all. GDB treats
4171 non-threaded target as single-threaded; add a main
4172 thread. */
4173 add_current_inferior_and_thread (wait_status);
4174 }
4175 else
4176 {
4177 /* We have thread information; select the thread the target
4178 says should be current. If we're reconnecting to a
4179 multi-threaded program, this will ideally be the thread
4180 that last reported an event before GDB disconnected. */
4181 inferior_ptid = get_current_thread (wait_status);
4182 if (ptid_equal (inferior_ptid, null_ptid))
4183 {
4184 /* Odd... The target was able to list threads, but not
4185 tell us which thread was current (no "thread"
4186 register in T stop reply?). Just pick the first
4187 thread in the thread list then. */
4188
4189 if (remote_debug)
4190 fprintf_unfiltered (gdb_stdlog,
4191 "warning: couldn't determine remote "
4192 "current thread; picking first in list.\n");
4193
4194 inferior_ptid = thread_list->ptid;
4195 }
4196 }
4197
4198 /* init_wait_for_inferior should be called before get_offsets in order
4199 to manage `inserted' flag in bp loc in a correct state.
4200 breakpoint_init_inferior, called from init_wait_for_inferior, set
4201 `inserted' flag to 0, while before breakpoint_re_set, called from
4202 start_remote, set `inserted' flag to 1. In the initialization of
4203 inferior, breakpoint_init_inferior should be called first, and then
4204 breakpoint_re_set can be called. If this order is broken, state of
4205 `inserted' flag is wrong, and cause some problems on breakpoint
4206 manipulation. */
4207 init_wait_for_inferior ();
4208
4209 get_offsets (); /* Get text, data & bss offsets. */
4210
4211 /* If we could not find a description using qXfer, and we know
4212 how to do it some other way, try again. This is not
4213 supported for non-stop; it could be, but it is tricky if
4214 there are no stopped threads when we connect. */
4215 if (remote_read_description_p (target)
4216 && gdbarch_target_desc (target_gdbarch ()) == NULL)
4217 {
4218 target_clear_description ();
4219 target_find_description ();
4220 }
4221
4222 /* Use the previously fetched status. */
4223 gdb_assert (wait_status != NULL);
4224 strcpy (rs->buf, wait_status);
4225 rs->cached_wait_status = 1;
4226
4227 start_remote (from_tty); /* Initialize gdb process mechanisms. */
4228 }
4229 else
4230 {
4231 /* Clear WFI global state. Do this before finding about new
4232 threads and inferiors, and setting the current inferior.
4233 Otherwise we would clear the proceed status of the current
4234 inferior when we want its stop_soon state to be preserved
4235 (see notice_new_inferior). */
4236 init_wait_for_inferior ();
4237
4238 /* In non-stop, we will either get an "OK", meaning that there
4239 are no stopped threads at this time; or, a regular stop
4240 reply. In the latter case, there may be more than one thread
4241 stopped --- we pull them all out using the vStopped
4242 mechanism. */
4243 if (strcmp (rs->buf, "OK") != 0)
4244 {
4245 struct notif_client *notif = &notif_client_stop;
4246
4247 /* remote_notif_get_pending_replies acks this one, and gets
4248 the rest out. */
4249 rs->notif_state->pending_event[notif_client_stop.id]
4250 = remote_notif_parse (notif, rs->buf);
4251 remote_notif_get_pending_events (notif);
4252 }
4253
4254 if (thread_count () == 0)
4255 {
4256 if (!extended_p)
4257 error (_("The target is not running (try extended-remote?)"));
4258
4259 /* We're connected, but not running. Drop out before we
4260 call start_remote. */
4261 rs->starting_up = 0;
4262 return;
4263 }
4264
4265 /* In non-stop mode, any cached wait status will be stored in
4266 the stop reply queue. */
4267 gdb_assert (wait_status == NULL);
4268
4269 /* Report all signals during attach/startup. */
4270 remote_pass_signals (target, 0, NULL);
4271
4272 /* If there are already stopped threads, mark them stopped and
4273 report their stops before giving the prompt to the user. */
4274 process_initial_stop_replies (from_tty);
4275
4276 if (target_can_async_p ())
4277 target_async (1);
4278 }
4279
4280 /* If we connected to a live target, do some additional setup. */
4281 if (target_has_execution)
4282 {
4283 if (symfile_objfile) /* No use without a symbol-file. */
4284 remote_check_symbols ();
4285 }
4286
4287 /* Possibly the target has been engaged in a trace run started
4288 previously; find out where things are at. */
4289 if (remote_get_trace_status (target, current_trace_status ()) != -1)
4290 {
4291 struct uploaded_tp *uploaded_tps = NULL;
4292
4293 if (current_trace_status ()->running)
4294 printf_filtered (_("Trace is already running on the target.\n"));
4295
4296 remote_upload_tracepoints (target, &uploaded_tps);
4297
4298 merge_uploaded_tracepoints (&uploaded_tps);
4299 }
4300
4301 /* The thread and inferior lists are now synchronized with the
4302 target, our symbols have been relocated, and we're merged the
4303 target's tracepoints with ours. We're done with basic start
4304 up. */
4305 rs->starting_up = 0;
4306
4307 /* Maybe breakpoints are global and need to be inserted now. */
4308 if (breakpoints_should_be_inserted_now ())
4309 insert_breakpoints ();
4310 }
4311
4312 /* Open a connection to a remote debugger.
4313 NAME is the filename used for communication. */
4314
4315 static void
4316 remote_open (const char *name, int from_tty)
4317 {
4318 remote_open_1 (name, from_tty, &remote_ops, 0);
4319 }
4320
4321 /* Open a connection to a remote debugger using the extended
4322 remote gdb protocol. NAME is the filename used for communication. */
4323
4324 static void
4325 extended_remote_open (const char *name, int from_tty)
4326 {
4327 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
4328 }
4329
4330 /* Reset all packets back to "unknown support". Called when opening a
4331 new connection to a remote target. */
4332
4333 static void
4334 reset_all_packet_configs_support (void)
4335 {
4336 int i;
4337
4338 for (i = 0; i < PACKET_MAX; i++)
4339 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4340 }
4341
4342 /* Initialize all packet configs. */
4343
4344 static void
4345 init_all_packet_configs (void)
4346 {
4347 int i;
4348
4349 for (i = 0; i < PACKET_MAX; i++)
4350 {
4351 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4352 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4353 }
4354 }
4355
4356 /* Symbol look-up. */
4357
4358 static void
4359 remote_check_symbols (void)
4360 {
4361 struct remote_state *rs = get_remote_state ();
4362 char *msg, *reply, *tmp;
4363 int end;
4364 long reply_size;
4365 struct cleanup *old_chain;
4366
4367 /* The remote side has no concept of inferiors that aren't running
4368 yet, it only knows about running processes. If we're connected
4369 but our current inferior is not running, we should not invite the
4370 remote target to request symbol lookups related to its
4371 (unrelated) current process. */
4372 if (!target_has_execution)
4373 return;
4374
4375 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
4376 return;
4377
4378 /* Make sure the remote is pointing at the right process. Note
4379 there's no way to select "no process". */
4380 set_general_process ();
4381
4382 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4383 because we need both at the same time. */
4384 msg = (char *) xmalloc (get_remote_packet_size ());
4385 old_chain = make_cleanup (xfree, msg);
4386 reply = (char *) xmalloc (get_remote_packet_size ());
4387 make_cleanup (free_current_contents, &reply);
4388 reply_size = get_remote_packet_size ();
4389
4390 /* Invite target to request symbol lookups. */
4391
4392 putpkt ("qSymbol::");
4393 getpkt (&reply, &reply_size, 0);
4394 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
4395
4396 while (startswith (reply, "qSymbol:"))
4397 {
4398 struct bound_minimal_symbol sym;
4399
4400 tmp = &reply[8];
4401 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
4402 msg[end] = '\0';
4403 sym = lookup_minimal_symbol (msg, NULL, NULL);
4404 if (sym.minsym == NULL)
4405 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
4406 else
4407 {
4408 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4409 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
4410
4411 /* If this is a function address, return the start of code
4412 instead of any data function descriptor. */
4413 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
4414 sym_addr,
4415 &current_target);
4416
4417 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
4418 phex_nz (sym_addr, addr_size), &reply[8]);
4419 }
4420
4421 putpkt (msg);
4422 getpkt (&reply, &reply_size, 0);
4423 }
4424
4425 do_cleanups (old_chain);
4426 }
4427
4428 static struct serial *
4429 remote_serial_open (const char *name)
4430 {
4431 static int udp_warning = 0;
4432
4433 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4434 of in ser-tcp.c, because it is the remote protocol assuming that the
4435 serial connection is reliable and not the serial connection promising
4436 to be. */
4437 if (!udp_warning && startswith (name, "udp:"))
4438 {
4439 warning (_("The remote protocol may be unreliable over UDP.\n"
4440 "Some events may be lost, rendering further debugging "
4441 "impossible."));
4442 udp_warning = 1;
4443 }
4444
4445 return serial_open (name);
4446 }
4447
4448 /* Inform the target of our permission settings. The permission flags
4449 work without this, but if the target knows the settings, it can do
4450 a couple things. First, it can add its own check, to catch cases
4451 that somehow manage to get by the permissions checks in target
4452 methods. Second, if the target is wired to disallow particular
4453 settings (for instance, a system in the field that is not set up to
4454 be able to stop at a breakpoint), it can object to any unavailable
4455 permissions. */
4456
4457 void
4458 remote_set_permissions (struct target_ops *self)
4459 {
4460 struct remote_state *rs = get_remote_state ();
4461
4462 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4463 "WriteReg:%x;WriteMem:%x;"
4464 "InsertBreak:%x;InsertTrace:%x;"
4465 "InsertFastTrace:%x;Stop:%x",
4466 may_write_registers, may_write_memory,
4467 may_insert_breakpoints, may_insert_tracepoints,
4468 may_insert_fast_tracepoints, may_stop);
4469 putpkt (rs->buf);
4470 getpkt (&rs->buf, &rs->buf_size, 0);
4471
4472 /* If the target didn't like the packet, warn the user. Do not try
4473 to undo the user's settings, that would just be maddening. */
4474 if (strcmp (rs->buf, "OK") != 0)
4475 warning (_("Remote refused setting permissions with: %s"), rs->buf);
4476 }
4477
4478 /* This type describes each known response to the qSupported
4479 packet. */
4480 struct protocol_feature
4481 {
4482 /* The name of this protocol feature. */
4483 const char *name;
4484
4485 /* The default for this protocol feature. */
4486 enum packet_support default_support;
4487
4488 /* The function to call when this feature is reported, or after
4489 qSupported processing if the feature is not supported.
4490 The first argument points to this structure. The second
4491 argument indicates whether the packet requested support be
4492 enabled, disabled, or probed (or the default, if this function
4493 is being called at the end of processing and this feature was
4494 not reported). The third argument may be NULL; if not NULL, it
4495 is a NUL-terminated string taken from the packet following
4496 this feature's name and an equals sign. */
4497 void (*func) (const struct protocol_feature *, enum packet_support,
4498 const char *);
4499
4500 /* The corresponding packet for this feature. Only used if
4501 FUNC is remote_supported_packet. */
4502 int packet;
4503 };
4504
4505 static void
4506 remote_supported_packet (const struct protocol_feature *feature,
4507 enum packet_support support,
4508 const char *argument)
4509 {
4510 if (argument)
4511 {
4512 warning (_("Remote qSupported response supplied an unexpected value for"
4513 " \"%s\"."), feature->name);
4514 return;
4515 }
4516
4517 remote_protocol_packets[feature->packet].support = support;
4518 }
4519
4520 static void
4521 remote_packet_size (const struct protocol_feature *feature,
4522 enum packet_support support, const char *value)
4523 {
4524 struct remote_state *rs = get_remote_state ();
4525
4526 int packet_size;
4527 char *value_end;
4528
4529 if (support != PACKET_ENABLE)
4530 return;
4531
4532 if (value == NULL || *value == '\0')
4533 {
4534 warning (_("Remote target reported \"%s\" without a size."),
4535 feature->name);
4536 return;
4537 }
4538
4539 errno = 0;
4540 packet_size = strtol (value, &value_end, 16);
4541 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4542 {
4543 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4544 feature->name, value);
4545 return;
4546 }
4547
4548 /* Record the new maximum packet size. */
4549 rs->explicit_packet_size = packet_size;
4550 }
4551
4552 static const struct protocol_feature remote_protocol_features[] = {
4553 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
4554 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
4555 PACKET_qXfer_auxv },
4556 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4557 PACKET_qXfer_exec_file },
4558 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4559 PACKET_qXfer_features },
4560 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4561 PACKET_qXfer_libraries },
4562 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4563 PACKET_qXfer_libraries_svr4 },
4564 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4565 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
4566 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
4567 PACKET_qXfer_memory_map },
4568 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4569 PACKET_qXfer_spu_read },
4570 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4571 PACKET_qXfer_spu_write },
4572 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4573 PACKET_qXfer_osdata },
4574 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4575 PACKET_qXfer_threads },
4576 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4577 PACKET_qXfer_traceframe_info },
4578 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4579 PACKET_QPassSignals },
4580 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4581 PACKET_QCatchSyscalls },
4582 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4583 PACKET_QProgramSignals },
4584 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4585 PACKET_QStartNoAckMode },
4586 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4587 PACKET_multiprocess_feature },
4588 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4589 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4590 PACKET_qXfer_siginfo_read },
4591 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4592 PACKET_qXfer_siginfo_write },
4593 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
4594 PACKET_ConditionalTracepoints },
4595 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
4596 PACKET_ConditionalBreakpoints },
4597 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
4598 PACKET_BreakpointCommands },
4599 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
4600 PACKET_FastTracepoints },
4601 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
4602 PACKET_StaticTracepoints },
4603 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
4604 PACKET_InstallInTrace},
4605 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4606 PACKET_DisconnectedTracing_feature },
4607 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4608 PACKET_bc },
4609 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4610 PACKET_bs },
4611 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4612 PACKET_TracepointSource },
4613 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4614 PACKET_QAllow },
4615 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4616 PACKET_EnableDisableTracepoints_feature },
4617 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4618 PACKET_qXfer_fdpic },
4619 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4620 PACKET_qXfer_uib },
4621 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4622 PACKET_QDisableRandomization },
4623 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
4624 { "QTBuffer:size", PACKET_DISABLE,
4625 remote_supported_packet, PACKET_QTBuffer_size},
4626 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
4627 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4628 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4629 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
4630 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4631 PACKET_qXfer_btrace },
4632 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
4633 PACKET_qXfer_btrace_conf },
4634 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
4635 PACKET_Qbtrace_conf_bts_size },
4636 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
4637 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
4638 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4639 PACKET_fork_event_feature },
4640 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4641 PACKET_vfork_event_feature },
4642 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4643 PACKET_exec_event_feature },
4644 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
4645 PACKET_Qbtrace_conf_pt_size },
4646 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4647 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
4648 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
4649 };
4650
4651 static char *remote_support_xml;
4652
4653 /* Register string appended to "xmlRegisters=" in qSupported query. */
4654
4655 void
4656 register_remote_support_xml (const char *xml)
4657 {
4658 #if defined(HAVE_LIBEXPAT)
4659 if (remote_support_xml == NULL)
4660 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
4661 else
4662 {
4663 char *copy = xstrdup (remote_support_xml + 13);
4664 char *p = strtok (copy, ",");
4665
4666 do
4667 {
4668 if (strcmp (p, xml) == 0)
4669 {
4670 /* already there */
4671 xfree (copy);
4672 return;
4673 }
4674 }
4675 while ((p = strtok (NULL, ",")) != NULL);
4676 xfree (copy);
4677
4678 remote_support_xml = reconcat (remote_support_xml,
4679 remote_support_xml, ",", xml,
4680 (char *) NULL);
4681 }
4682 #endif
4683 }
4684
4685 static char *
4686 remote_query_supported_append (char *msg, const char *append)
4687 {
4688 if (msg)
4689 return reconcat (msg, msg, ";", append, (char *) NULL);
4690 else
4691 return xstrdup (append);
4692 }
4693
4694 static void
4695 remote_query_supported (void)
4696 {
4697 struct remote_state *rs = get_remote_state ();
4698 char *next;
4699 int i;
4700 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4701
4702 /* The packet support flags are handled differently for this packet
4703 than for most others. We treat an error, a disabled packet, and
4704 an empty response identically: any features which must be reported
4705 to be used will be automatically disabled. An empty buffer
4706 accomplishes this, since that is also the representation for a list
4707 containing no features. */
4708
4709 rs->buf[0] = 0;
4710 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
4711 {
4712 char *q = NULL;
4713 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
4714
4715 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4716 q = remote_query_supported_append (q, "multiprocess+");
4717
4718 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4719 q = remote_query_supported_append (q, "swbreak+");
4720 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4721 q = remote_query_supported_append (q, "hwbreak+");
4722
4723 q = remote_query_supported_append (q, "qRelocInsn+");
4724
4725 if (packet_set_cmd_state (PACKET_fork_event_feature)
4726 != AUTO_BOOLEAN_FALSE)
4727 q = remote_query_supported_append (q, "fork-events+");
4728 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4729 != AUTO_BOOLEAN_FALSE)
4730 q = remote_query_supported_append (q, "vfork-events+");
4731 if (packet_set_cmd_state (PACKET_exec_event_feature)
4732 != AUTO_BOOLEAN_FALSE)
4733 q = remote_query_supported_append (q, "exec-events+");
4734
4735 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4736 q = remote_query_supported_append (q, "vContSupported+");
4737
4738 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4739 q = remote_query_supported_append (q, "QThreadEvents+");
4740
4741 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4742 q = remote_query_supported_append (q, "no-resumed+");
4743
4744 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4745 the qSupported:xmlRegisters=i386 handling. */
4746 if (remote_support_xml != NULL)
4747 q = remote_query_supported_append (q, remote_support_xml);
4748
4749 q = reconcat (q, "qSupported:", q, (char *) NULL);
4750 putpkt (q);
4751
4752 do_cleanups (old_chain);
4753
4754 getpkt (&rs->buf, &rs->buf_size, 0);
4755
4756 /* If an error occured, warn, but do not return - just reset the
4757 buffer to empty and go on to disable features. */
4758 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4759 == PACKET_ERROR)
4760 {
4761 warning (_("Remote failure reply: %s"), rs->buf);
4762 rs->buf[0] = 0;
4763 }
4764 }
4765
4766 memset (seen, 0, sizeof (seen));
4767
4768 next = rs->buf;
4769 while (*next)
4770 {
4771 enum packet_support is_supported;
4772 char *p, *end, *name_end, *value;
4773
4774 /* First separate out this item from the rest of the packet. If
4775 there's another item after this, we overwrite the separator
4776 (terminated strings are much easier to work with). */
4777 p = next;
4778 end = strchr (p, ';');
4779 if (end == NULL)
4780 {
4781 end = p + strlen (p);
4782 next = end;
4783 }
4784 else
4785 {
4786 *end = '\0';
4787 next = end + 1;
4788
4789 if (end == p)
4790 {
4791 warning (_("empty item in \"qSupported\" response"));
4792 continue;
4793 }
4794 }
4795
4796 name_end = strchr (p, '=');
4797 if (name_end)
4798 {
4799 /* This is a name=value entry. */
4800 is_supported = PACKET_ENABLE;
4801 value = name_end + 1;
4802 *name_end = '\0';
4803 }
4804 else
4805 {
4806 value = NULL;
4807 switch (end[-1])
4808 {
4809 case '+':
4810 is_supported = PACKET_ENABLE;
4811 break;
4812
4813 case '-':
4814 is_supported = PACKET_DISABLE;
4815 break;
4816
4817 case '?':
4818 is_supported = PACKET_SUPPORT_UNKNOWN;
4819 break;
4820
4821 default:
4822 warning (_("unrecognized item \"%s\" "
4823 "in \"qSupported\" response"), p);
4824 continue;
4825 }
4826 end[-1] = '\0';
4827 }
4828
4829 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4830 if (strcmp (remote_protocol_features[i].name, p) == 0)
4831 {
4832 const struct protocol_feature *feature;
4833
4834 seen[i] = 1;
4835 feature = &remote_protocol_features[i];
4836 feature->func (feature, is_supported, value);
4837 break;
4838 }
4839 }
4840
4841 /* If we increased the packet size, make sure to increase the global
4842 buffer size also. We delay this until after parsing the entire
4843 qSupported packet, because this is the same buffer we were
4844 parsing. */
4845 if (rs->buf_size < rs->explicit_packet_size)
4846 {
4847 rs->buf_size = rs->explicit_packet_size;
4848 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
4849 }
4850
4851 /* Handle the defaults for unmentioned features. */
4852 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4853 if (!seen[i])
4854 {
4855 const struct protocol_feature *feature;
4856
4857 feature = &remote_protocol_features[i];
4858 feature->func (feature, feature->default_support, NULL);
4859 }
4860 }
4861
4862 /* Serial QUIT handler for the remote serial descriptor.
4863
4864 Defers handling a Ctrl-C until we're done with the current
4865 command/response packet sequence, unless:
4866
4867 - We're setting up the connection. Don't send a remote interrupt
4868 request, as we're not fully synced yet. Quit immediately
4869 instead.
4870
4871 - The target has been resumed in the foreground
4872 (target_terminal_is_ours is false) with a synchronous resume
4873 packet, and we're blocked waiting for the stop reply, thus a
4874 Ctrl-C should be immediately sent to the target.
4875
4876 - We get a second Ctrl-C while still within the same serial read or
4877 write. In that case the serial is seemingly wedged --- offer to
4878 quit/disconnect.
4879
4880 - We see a second Ctrl-C without target response, after having
4881 previously interrupted the target. In that case the target/stub
4882 is probably wedged --- offer to quit/disconnect.
4883 */
4884
4885 static void
4886 remote_serial_quit_handler (void)
4887 {
4888 struct remote_state *rs = get_remote_state ();
4889
4890 if (check_quit_flag ())
4891 {
4892 /* If we're starting up, we're not fully synced yet. Quit
4893 immediately. */
4894 if (rs->starting_up)
4895 quit ();
4896 else if (rs->got_ctrlc_during_io)
4897 {
4898 if (query (_("The target is not responding to GDB commands.\n"
4899 "Stop debugging it? ")))
4900 remote_unpush_and_throw ();
4901 }
4902 /* If ^C has already been sent once, offer to disconnect. */
4903 else if (!target_terminal_is_ours () && rs->ctrlc_pending_p)
4904 interrupt_query ();
4905 /* All-stop protocol, and blocked waiting for stop reply. Send
4906 an interrupt request. */
4907 else if (!target_terminal_is_ours () && rs->waiting_for_stop_reply)
4908 target_interrupt (inferior_ptid);
4909 else
4910 rs->got_ctrlc_during_io = 1;
4911 }
4912 }
4913
4914 /* Remove any of the remote.c targets from target stack. Upper targets depend
4915 on it so remove them first. */
4916
4917 static void
4918 remote_unpush_target (void)
4919 {
4920 pop_all_targets_at_and_above (process_stratum);
4921 }
4922
4923 static void
4924 remote_unpush_and_throw (void)
4925 {
4926 remote_unpush_target ();
4927 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
4928 }
4929
4930 static void
4931 remote_open_1 (const char *name, int from_tty,
4932 struct target_ops *target, int extended_p)
4933 {
4934 struct remote_state *rs = get_remote_state ();
4935
4936 if (name == 0)
4937 error (_("To open a remote debug connection, you need to specify what\n"
4938 "serial device is attached to the remote system\n"
4939 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
4940
4941 /* See FIXME above. */
4942 if (!target_async_permitted)
4943 wait_forever_enabled_p = 1;
4944
4945 /* If we're connected to a running target, target_preopen will kill it.
4946 Ask this question first, before target_preopen has a chance to kill
4947 anything. */
4948 if (rs->remote_desc != NULL && !have_inferiors ())
4949 {
4950 if (from_tty
4951 && !query (_("Already connected to a remote target. Disconnect? ")))
4952 error (_("Still connected."));
4953 }
4954
4955 /* Here the possibly existing remote target gets unpushed. */
4956 target_preopen (from_tty);
4957
4958 /* Make sure we send the passed signals list the next time we resume. */
4959 xfree (rs->last_pass_packet);
4960 rs->last_pass_packet = NULL;
4961
4962 /* Make sure we send the program signals list the next time we
4963 resume. */
4964 xfree (rs->last_program_signals_packet);
4965 rs->last_program_signals_packet = NULL;
4966
4967 remote_fileio_reset ();
4968 reopen_exec_file ();
4969 reread_symbols ();
4970
4971 rs->remote_desc = remote_serial_open (name);
4972 if (!rs->remote_desc)
4973 perror_with_name (name);
4974
4975 if (baud_rate != -1)
4976 {
4977 if (serial_setbaudrate (rs->remote_desc, baud_rate))
4978 {
4979 /* The requested speed could not be set. Error out to
4980 top level after closing remote_desc. Take care to
4981 set remote_desc to NULL to avoid closing remote_desc
4982 more than once. */
4983 serial_close (rs->remote_desc);
4984 rs->remote_desc = NULL;
4985 perror_with_name (name);
4986 }
4987 }
4988
4989 serial_setparity (rs->remote_desc, serial_parity);
4990 serial_raw (rs->remote_desc);
4991
4992 /* If there is something sitting in the buffer we might take it as a
4993 response to a command, which would be bad. */
4994 serial_flush_input (rs->remote_desc);
4995
4996 if (from_tty)
4997 {
4998 puts_filtered ("Remote debugging using ");
4999 puts_filtered (name);
5000 puts_filtered ("\n");
5001 }
5002 push_target (target); /* Switch to using remote target now. */
5003
5004 /* Register extra event sources in the event loop. */
5005 remote_async_inferior_event_token
5006 = create_async_event_handler (remote_async_inferior_event_handler,
5007 NULL);
5008 rs->notif_state = remote_notif_state_allocate ();
5009
5010 /* Reset the target state; these things will be queried either by
5011 remote_query_supported or as they are needed. */
5012 reset_all_packet_configs_support ();
5013 rs->cached_wait_status = 0;
5014 rs->explicit_packet_size = 0;
5015 rs->noack_mode = 0;
5016 rs->extended = extended_p;
5017 rs->waiting_for_stop_reply = 0;
5018 rs->ctrlc_pending_p = 0;
5019 rs->got_ctrlc_during_io = 0;
5020
5021 rs->general_thread = not_sent_ptid;
5022 rs->continue_thread = not_sent_ptid;
5023 rs->remote_traceframe_number = -1;
5024
5025 rs->last_resume_exec_dir = EXEC_FORWARD;
5026
5027 /* Probe for ability to use "ThreadInfo" query, as required. */
5028 rs->use_threadinfo_query = 1;
5029 rs->use_threadextra_query = 1;
5030
5031 readahead_cache_invalidate ();
5032
5033 /* Start out by owning the terminal. */
5034 remote_async_terminal_ours_p = 1;
5035
5036 if (target_async_permitted)
5037 {
5038 /* FIXME: cagney/1999-09-23: During the initial connection it is
5039 assumed that the target is already ready and able to respond to
5040 requests. Unfortunately remote_start_remote() eventually calls
5041 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
5042 around this. Eventually a mechanism that allows
5043 wait_for_inferior() to expect/get timeouts will be
5044 implemented. */
5045 wait_forever_enabled_p = 0;
5046 }
5047
5048 /* First delete any symbols previously loaded from shared libraries. */
5049 no_shared_libraries (NULL, 0);
5050
5051 /* Start afresh. */
5052 init_thread_list ();
5053
5054 /* Start the remote connection. If error() or QUIT, discard this
5055 target (we'd otherwise be in an inconsistent state) and then
5056 propogate the error on up the exception chain. This ensures that
5057 the caller doesn't stumble along blindly assuming that the
5058 function succeeded. The CLI doesn't have this problem but other
5059 UI's, such as MI do.
5060
5061 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5062 this function should return an error indication letting the
5063 caller restore the previous state. Unfortunately the command
5064 ``target remote'' is directly wired to this function making that
5065 impossible. On a positive note, the CLI side of this problem has
5066 been fixed - the function set_cmd_context() makes it possible for
5067 all the ``target ....'' commands to share a common callback
5068 function. See cli-dump.c. */
5069 {
5070
5071 TRY
5072 {
5073 remote_start_remote (from_tty, target, extended_p);
5074 }
5075 CATCH (ex, RETURN_MASK_ALL)
5076 {
5077 /* Pop the partially set up target - unless something else did
5078 already before throwing the exception. */
5079 if (rs->remote_desc != NULL)
5080 remote_unpush_target ();
5081 if (target_async_permitted)
5082 wait_forever_enabled_p = 1;
5083 throw_exception (ex);
5084 }
5085 END_CATCH
5086 }
5087
5088 remote_btrace_reset ();
5089
5090 if (target_async_permitted)
5091 wait_forever_enabled_p = 1;
5092 }
5093
5094 /* Detach the specified process. */
5095
5096 static void
5097 remote_detach_pid (int pid)
5098 {
5099 struct remote_state *rs = get_remote_state ();
5100
5101 if (remote_multi_process_p (rs))
5102 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5103 else
5104 strcpy (rs->buf, "D");
5105
5106 putpkt (rs->buf);
5107 getpkt (&rs->buf, &rs->buf_size, 0);
5108
5109 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5110 ;
5111 else if (rs->buf[0] == '\0')
5112 error (_("Remote doesn't know how to detach"));
5113 else
5114 error (_("Can't detach process."));
5115 }
5116
5117 /* This detaches a program to which we previously attached, using
5118 inferior_ptid to identify the process. After this is done, GDB
5119 can be used to debug some other program. We better not have left
5120 any breakpoints in the target program or it'll die when it hits
5121 one. */
5122
5123 static void
5124 remote_detach_1 (const char *args, int from_tty)
5125 {
5126 int pid = ptid_get_pid (inferior_ptid);
5127 struct remote_state *rs = get_remote_state ();
5128 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5129 int is_fork_parent;
5130
5131 if (args)
5132 error (_("Argument given to \"detach\" when remotely debugging."));
5133
5134 if (!target_has_execution)
5135 error (_("No process to detach from."));
5136
5137 target_announce_detach (from_tty);
5138
5139 /* Tell the remote target to detach. */
5140 remote_detach_pid (pid);
5141
5142 /* Exit only if this is the only active inferior. */
5143 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
5144 puts_filtered (_("Ending remote debugging.\n"));
5145
5146 /* Check to see if we are detaching a fork parent. Note that if we
5147 are detaching a fork child, tp == NULL. */
5148 is_fork_parent = (tp != NULL
5149 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5150
5151 /* If doing detach-on-fork, we don't mourn, because that will delete
5152 breakpoints that should be available for the followed inferior. */
5153 if (!is_fork_parent)
5154 target_mourn_inferior ();
5155 else
5156 {
5157 inferior_ptid = null_ptid;
5158 detach_inferior (pid);
5159 }
5160 }
5161
5162 static void
5163 remote_detach (struct target_ops *ops, const char *args, int from_tty)
5164 {
5165 remote_detach_1 (args, from_tty);
5166 }
5167
5168 static void
5169 extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
5170 {
5171 remote_detach_1 (args, from_tty);
5172 }
5173
5174 /* Target follow-fork function for remote targets. On entry, and
5175 at return, the current inferior is the fork parent.
5176
5177 Note that although this is currently only used for extended-remote,
5178 it is named remote_follow_fork in anticipation of using it for the
5179 remote target as well. */
5180
5181 static int
5182 remote_follow_fork (struct target_ops *ops, int follow_child,
5183 int detach_fork)
5184 {
5185 struct remote_state *rs = get_remote_state ();
5186 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
5187
5188 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5189 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
5190 {
5191 /* When following the parent and detaching the child, we detach
5192 the child here. For the case of following the child and
5193 detaching the parent, the detach is done in the target-
5194 independent follow fork code in infrun.c. We can't use
5195 target_detach when detaching an unfollowed child because
5196 the client side doesn't know anything about the child. */
5197 if (detach_fork && !follow_child)
5198 {
5199 /* Detach the fork child. */
5200 ptid_t child_ptid;
5201 pid_t child_pid;
5202
5203 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5204 child_pid = ptid_get_pid (child_ptid);
5205
5206 remote_detach_pid (child_pid);
5207 detach_inferior (child_pid);
5208 }
5209 }
5210 return 0;
5211 }
5212
5213 /* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5214 in the program space of the new inferior. On entry and at return the
5215 current inferior is the exec'ing inferior. INF is the new exec'd
5216 inferior, which may be the same as the exec'ing inferior unless
5217 follow-exec-mode is "new". */
5218
5219 static void
5220 remote_follow_exec (struct target_ops *ops,
5221 struct inferior *inf, char *execd_pathname)
5222 {
5223 /* We know that this is a target file name, so if it has the "target:"
5224 prefix we strip it off before saving it in the program space. */
5225 if (is_target_filename (execd_pathname))
5226 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5227
5228 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5229 }
5230
5231 /* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5232
5233 static void
5234 remote_disconnect (struct target_ops *target, const char *args, int from_tty)
5235 {
5236 if (args)
5237 error (_("Argument given to \"disconnect\" when remotely debugging."));
5238
5239 /* Make sure we unpush even the extended remote targets. Calling
5240 target_mourn_inferior won't unpush, and remote_mourn won't
5241 unpush if there is more than one inferior left. */
5242 unpush_target (target);
5243 generic_mourn_inferior ();
5244
5245 if (from_tty)
5246 puts_filtered ("Ending remote debugging.\n");
5247 }
5248
5249 /* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5250 be chatty about it. */
5251
5252 static void
5253 extended_remote_attach (struct target_ops *target, const char *args,
5254 int from_tty)
5255 {
5256 struct remote_state *rs = get_remote_state ();
5257 int pid;
5258 char *wait_status = NULL;
5259
5260 pid = parse_pid_to_attach (args);
5261
5262 /* Remote PID can be freely equal to getpid, do not check it here the same
5263 way as in other targets. */
5264
5265 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
5266 error (_("This target does not support attaching to a process"));
5267
5268 if (from_tty)
5269 {
5270 char *exec_file = get_exec_file (0);
5271
5272 if (exec_file)
5273 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5274 target_pid_to_str (pid_to_ptid (pid)));
5275 else
5276 printf_unfiltered (_("Attaching to %s\n"),
5277 target_pid_to_str (pid_to_ptid (pid)));
5278
5279 gdb_flush (gdb_stdout);
5280 }
5281
5282 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
5283 putpkt (rs->buf);
5284 getpkt (&rs->buf, &rs->buf_size, 0);
5285
5286 switch (packet_ok (rs->buf,
5287 &remote_protocol_packets[PACKET_vAttach]))
5288 {
5289 case PACKET_OK:
5290 if (!target_is_non_stop_p ())
5291 {
5292 /* Save the reply for later. */
5293 wait_status = (char *) alloca (strlen (rs->buf) + 1);
5294 strcpy (wait_status, rs->buf);
5295 }
5296 else if (strcmp (rs->buf, "OK") != 0)
5297 error (_("Attaching to %s failed with: %s"),
5298 target_pid_to_str (pid_to_ptid (pid)),
5299 rs->buf);
5300 break;
5301 case PACKET_UNKNOWN:
5302 error (_("This target does not support attaching to a process"));
5303 default:
5304 error (_("Attaching to %s failed"),
5305 target_pid_to_str (pid_to_ptid (pid)));
5306 }
5307
5308 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
5309
5310 inferior_ptid = pid_to_ptid (pid);
5311
5312 if (target_is_non_stop_p ())
5313 {
5314 struct thread_info *thread;
5315
5316 /* Get list of threads. */
5317 remote_update_thread_list (target);
5318
5319 thread = first_thread_of_process (pid);
5320 if (thread)
5321 inferior_ptid = thread->ptid;
5322 else
5323 inferior_ptid = pid_to_ptid (pid);
5324
5325 /* Invalidate our notion of the remote current thread. */
5326 record_currthread (rs, minus_one_ptid);
5327 }
5328 else
5329 {
5330 /* Now, if we have thread information, update inferior_ptid. */
5331 inferior_ptid = remote_current_thread (inferior_ptid);
5332
5333 /* Add the main thread to the thread list. */
5334 add_thread_silent (inferior_ptid);
5335 }
5336
5337 /* Next, if the target can specify a description, read it. We do
5338 this before anything involving memory or registers. */
5339 target_find_description ();
5340
5341 if (!target_is_non_stop_p ())
5342 {
5343 /* Use the previously fetched status. */
5344 gdb_assert (wait_status != NULL);
5345
5346 if (target_can_async_p ())
5347 {
5348 struct notif_event *reply
5349 = remote_notif_parse (&notif_client_stop, wait_status);
5350
5351 push_stop_reply ((struct stop_reply *) reply);
5352
5353 target_async (1);
5354 }
5355 else
5356 {
5357 gdb_assert (wait_status != NULL);
5358 strcpy (rs->buf, wait_status);
5359 rs->cached_wait_status = 1;
5360 }
5361 }
5362 else
5363 gdb_assert (wait_status == NULL);
5364 }
5365
5366 /* Implementation of the to_post_attach method. */
5367
5368 static void
5369 extended_remote_post_attach (struct target_ops *ops, int pid)
5370 {
5371 /* Get text, data & bss offsets. */
5372 get_offsets ();
5373
5374 /* In certain cases GDB might not have had the chance to start
5375 symbol lookup up until now. This could happen if the debugged
5376 binary is not using shared libraries, the vsyscall page is not
5377 present (on Linux) and the binary itself hadn't changed since the
5378 debugging process was started. */
5379 if (symfile_objfile != NULL)
5380 remote_check_symbols();
5381 }
5382
5383 \f
5384 /* Check for the availability of vCont. This function should also check
5385 the response. */
5386
5387 static void
5388 remote_vcont_probe (struct remote_state *rs)
5389 {
5390 char *buf;
5391
5392 strcpy (rs->buf, "vCont?");
5393 putpkt (rs->buf);
5394 getpkt (&rs->buf, &rs->buf_size, 0);
5395 buf = rs->buf;
5396
5397 /* Make sure that the features we assume are supported. */
5398 if (startswith (buf, "vCont"))
5399 {
5400 char *p = &buf[5];
5401 int support_c, support_C;
5402
5403 rs->supports_vCont.s = 0;
5404 rs->supports_vCont.S = 0;
5405 support_c = 0;
5406 support_C = 0;
5407 rs->supports_vCont.t = 0;
5408 rs->supports_vCont.r = 0;
5409 while (p && *p == ';')
5410 {
5411 p++;
5412 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
5413 rs->supports_vCont.s = 1;
5414 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
5415 rs->supports_vCont.S = 1;
5416 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5417 support_c = 1;
5418 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5419 support_C = 1;
5420 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
5421 rs->supports_vCont.t = 1;
5422 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5423 rs->supports_vCont.r = 1;
5424
5425 p = strchr (p, ';');
5426 }
5427
5428 /* If c, and C are not all supported, we can't use vCont. Clearing
5429 BUF will make packet_ok disable the packet. */
5430 if (!support_c || !support_C)
5431 buf[0] = 0;
5432 }
5433
5434 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
5435 }
5436
5437 /* Helper function for building "vCont" resumptions. Write a
5438 resumption to P. ENDP points to one-passed-the-end of the buffer
5439 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5440 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5441 resumed thread should be single-stepped and/or signalled. If PTID
5442 equals minus_one_ptid, then all threads are resumed; if PTID
5443 represents a process, then all threads of the process are resumed;
5444 the thread to be stepped and/or signalled is given in the global
5445 INFERIOR_PTID. */
5446
5447 static char *
5448 append_resumption (char *p, char *endp,
5449 ptid_t ptid, int step, enum gdb_signal siggnal)
5450 {
5451 struct remote_state *rs = get_remote_state ();
5452
5453 if (step && siggnal != GDB_SIGNAL_0)
5454 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
5455 else if (step
5456 /* GDB is willing to range step. */
5457 && use_range_stepping
5458 /* Target supports range stepping. */
5459 && rs->supports_vCont.r
5460 /* We don't currently support range stepping multiple
5461 threads with a wildcard (though the protocol allows it,
5462 so stubs shouldn't make an active effort to forbid
5463 it). */
5464 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5465 {
5466 struct thread_info *tp;
5467
5468 if (ptid_equal (ptid, minus_one_ptid))
5469 {
5470 /* If we don't know about the target thread's tid, then
5471 we're resuming magic_null_ptid (see caller). */
5472 tp = find_thread_ptid (magic_null_ptid);
5473 }
5474 else
5475 tp = find_thread_ptid (ptid);
5476 gdb_assert (tp != NULL);
5477
5478 if (tp->control.may_range_step)
5479 {
5480 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5481
5482 p += xsnprintf (p, endp - p, ";r%s,%s",
5483 phex_nz (tp->control.step_range_start,
5484 addr_size),
5485 phex_nz (tp->control.step_range_end,
5486 addr_size));
5487 }
5488 else
5489 p += xsnprintf (p, endp - p, ";s");
5490 }
5491 else if (step)
5492 p += xsnprintf (p, endp - p, ";s");
5493 else if (siggnal != GDB_SIGNAL_0)
5494 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5495 else
5496 p += xsnprintf (p, endp - p, ";c");
5497
5498 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5499 {
5500 ptid_t nptid;
5501
5502 /* All (-1) threads of process. */
5503 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5504
5505 p += xsnprintf (p, endp - p, ":");
5506 p = write_ptid (p, endp, nptid);
5507 }
5508 else if (!ptid_equal (ptid, minus_one_ptid))
5509 {
5510 p += xsnprintf (p, endp - p, ":");
5511 p = write_ptid (p, endp, ptid);
5512 }
5513
5514 return p;
5515 }
5516
5517 /* Clear the thread's private info on resume. */
5518
5519 static void
5520 resume_clear_thread_private_info (struct thread_info *thread)
5521 {
5522 if (thread->priv != NULL)
5523 {
5524 thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5525 thread->priv->watch_data_address = 0;
5526 }
5527 }
5528
5529 /* Append a vCont continue-with-signal action for threads that have a
5530 non-zero stop signal. */
5531
5532 static char *
5533 append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5534 {
5535 struct thread_info *thread;
5536
5537 ALL_NON_EXITED_THREADS (thread)
5538 if (ptid_match (thread->ptid, ptid)
5539 && !ptid_equal (inferior_ptid, thread->ptid)
5540 && thread->suspend.stop_signal != GDB_SIGNAL_0)
5541 {
5542 p = append_resumption (p, endp, thread->ptid,
5543 0, thread->suspend.stop_signal);
5544 thread->suspend.stop_signal = GDB_SIGNAL_0;
5545 resume_clear_thread_private_info (thread);
5546 }
5547
5548 return p;
5549 }
5550
5551 /* Resume the remote inferior by using a "vCont" packet. The thread
5552 to be resumed is PTID; STEP and SIGGNAL indicate whether the
5553 resumed thread should be single-stepped and/or signalled. If PTID
5554 equals minus_one_ptid, then all threads are resumed; the thread to
5555 be stepped and/or signalled is given in the global INFERIOR_PTID.
5556 This function returns non-zero iff it resumes the inferior.
5557
5558 This function issues a strict subset of all possible vCont commands at the
5559 moment. */
5560
5561 static int
5562 remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
5563 {
5564 struct remote_state *rs = get_remote_state ();
5565 char *p;
5566 char *endp;
5567
5568 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5569 remote_vcont_probe (rs);
5570
5571 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
5572 return 0;
5573
5574 p = rs->buf;
5575 endp = rs->buf + get_remote_packet_size ();
5576
5577 /* If we could generate a wider range of packets, we'd have to worry
5578 about overflowing BUF. Should there be a generic
5579 "multi-part-packet" packet? */
5580
5581 p += xsnprintf (p, endp - p, "vCont");
5582
5583 if (ptid_equal (ptid, magic_null_ptid))
5584 {
5585 /* MAGIC_NULL_PTID means that we don't have any active threads,
5586 so we don't have any TID numbers the inferior will
5587 understand. Make sure to only send forms that do not specify
5588 a TID. */
5589 append_resumption (p, endp, minus_one_ptid, step, siggnal);
5590 }
5591 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
5592 {
5593 /* Resume all threads (of all processes, or of a single
5594 process), with preference for INFERIOR_PTID. This assumes
5595 inferior_ptid belongs to the set of all threads we are about
5596 to resume. */
5597 if (step || siggnal != GDB_SIGNAL_0)
5598 {
5599 /* Step inferior_ptid, with or without signal. */
5600 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
5601 }
5602
5603 /* Also pass down any pending signaled resumption for other
5604 threads not the current. */
5605 p = append_pending_thread_resumptions (p, endp, ptid);
5606
5607 /* And continue others without a signal. */
5608 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
5609 }
5610 else
5611 {
5612 /* Scheduler locking; resume only PTID. */
5613 append_resumption (p, endp, ptid, step, siggnal);
5614 }
5615
5616 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5617 putpkt (rs->buf);
5618
5619 if (target_is_non_stop_p ())
5620 {
5621 /* In non-stop, the stub replies to vCont with "OK". The stop
5622 reply will be reported asynchronously by means of a `%Stop'
5623 notification. */
5624 getpkt (&rs->buf, &rs->buf_size, 0);
5625 if (strcmp (rs->buf, "OK") != 0)
5626 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5627 }
5628
5629 return 1;
5630 }
5631
5632 /* Tell the remote machine to resume. */
5633
5634 static void
5635 remote_resume (struct target_ops *ops,
5636 ptid_t ptid, int step, enum gdb_signal siggnal)
5637 {
5638 struct remote_state *rs = get_remote_state ();
5639 char *buf;
5640 struct thread_info *thread;
5641
5642 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5643 (explained in remote-notif.c:handle_notification) so
5644 remote_notif_process is not called. We need find a place where
5645 it is safe to start a 'vNotif' sequence. It is good to do it
5646 before resuming inferior, because inferior was stopped and no RSP
5647 traffic at that moment. */
5648 if (!target_is_non_stop_p ())
5649 remote_notif_process (rs->notif_state, &notif_client_stop);
5650
5651 rs->last_sent_signal = siggnal;
5652 rs->last_sent_step = step;
5653
5654 rs->last_resume_exec_dir = execution_direction;
5655
5656 /* The vCont packet doesn't need to specify threads via Hc. */
5657 /* No reverse support (yet) for vCont. */
5658 if (execution_direction != EXEC_REVERSE)
5659 if (remote_vcont_resume (ptid, step, siggnal))
5660 goto done;
5661
5662 /* All other supported resume packets do use Hc, so set the continue
5663 thread. */
5664 if (ptid_equal (ptid, minus_one_ptid))
5665 set_continue_thread (any_thread_ptid);
5666 else
5667 set_continue_thread (ptid);
5668
5669 ALL_NON_EXITED_THREADS (thread)
5670 resume_clear_thread_private_info (thread);
5671
5672 buf = rs->buf;
5673 if (execution_direction == EXEC_REVERSE)
5674 {
5675 /* We don't pass signals to the target in reverse exec mode. */
5676 if (info_verbose && siggnal != GDB_SIGNAL_0)
5677 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5678 siggnal);
5679
5680 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5681 error (_("Remote reverse-step not supported."));
5682 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5683 error (_("Remote reverse-continue not supported."));
5684
5685 strcpy (buf, step ? "bs" : "bc");
5686 }
5687 else if (siggnal != GDB_SIGNAL_0)
5688 {
5689 buf[0] = step ? 'S' : 'C';
5690 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5691 buf[2] = tohex (((int) siggnal) & 0xf);
5692 buf[3] = '\0';
5693 }
5694 else
5695 strcpy (buf, step ? "s" : "c");
5696
5697 putpkt (buf);
5698
5699 done:
5700 /* We are about to start executing the inferior, let's register it
5701 with the event loop. NOTE: this is the one place where all the
5702 execution commands end up. We could alternatively do this in each
5703 of the execution commands in infcmd.c. */
5704 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5705 into infcmd.c in order to allow inferior function calls to work
5706 NOT asynchronously. */
5707 if (target_can_async_p ())
5708 target_async (1);
5709
5710 /* We've just told the target to resume. The remote server will
5711 wait for the inferior to stop, and then send a stop reply. In
5712 the mean time, we can't start another command/query ourselves
5713 because the stub wouldn't be ready to process it. This applies
5714 only to the base all-stop protocol, however. In non-stop (which
5715 only supports vCont), the stub replies with an "OK", and is
5716 immediate able to process further serial input. */
5717 if (!target_is_non_stop_p ())
5718 rs->waiting_for_stop_reply = 1;
5719 }
5720 \f
5721
5722 /* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5723 thread, all threads of a remote process, or all threads of all
5724 processes. */
5725
5726 static void
5727 remote_stop_ns (ptid_t ptid)
5728 {
5729 struct remote_state *rs = get_remote_state ();
5730 char *p = rs->buf;
5731 char *endp = rs->buf + get_remote_packet_size ();
5732
5733 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
5734 remote_vcont_probe (rs);
5735
5736 if (!rs->supports_vCont.t)
5737 error (_("Remote server does not support stopping threads"));
5738
5739 if (ptid_equal (ptid, minus_one_ptid)
5740 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5741 p += xsnprintf (p, endp - p, "vCont;t");
5742 else
5743 {
5744 ptid_t nptid;
5745
5746 p += xsnprintf (p, endp - p, "vCont;t:");
5747
5748 if (ptid_is_pid (ptid))
5749 /* All (-1) threads of process. */
5750 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
5751 else
5752 {
5753 /* Small optimization: if we already have a stop reply for
5754 this thread, no use in telling the stub we want this
5755 stopped. */
5756 if (peek_stop_reply (ptid))
5757 return;
5758
5759 nptid = ptid;
5760 }
5761
5762 write_ptid (p, endp, nptid);
5763 }
5764
5765 /* In non-stop, we get an immediate OK reply. The stop reply will
5766 come in asynchronously by notification. */
5767 putpkt (rs->buf);
5768 getpkt (&rs->buf, &rs->buf_size, 0);
5769 if (strcmp (rs->buf, "OK") != 0)
5770 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5771 }
5772
5773 /* All-stop version of target_interrupt. Sends a break or a ^C to
5774 interrupt the remote target. It is undefined which thread of which
5775 process reports the interrupt. */
5776
5777 static void
5778 remote_interrupt_as (void)
5779 {
5780 struct remote_state *rs = get_remote_state ();
5781
5782 rs->ctrlc_pending_p = 1;
5783
5784 /* If the inferior is stopped already, but the core didn't know
5785 about it yet, just ignore the request. The cached wait status
5786 will be collected in remote_wait. */
5787 if (rs->cached_wait_status)
5788 return;
5789
5790 /* Send interrupt_sequence to remote target. */
5791 send_interrupt_sequence ();
5792 }
5793
5794 /* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
5795 the remote target. It is undefined which thread of which process
5796 reports the interrupt. Throws an error if the packet is not
5797 supported by the server. */
5798
5799 static void
5800 remote_interrupt_ns (void)
5801 {
5802 struct remote_state *rs = get_remote_state ();
5803 char *p = rs->buf;
5804 char *endp = rs->buf + get_remote_packet_size ();
5805
5806 xsnprintf (p, endp - p, "vCtrlC");
5807
5808 /* In non-stop, we get an immediate OK reply. The stop reply will
5809 come in asynchronously by notification. */
5810 putpkt (rs->buf);
5811 getpkt (&rs->buf, &rs->buf_size, 0);
5812
5813 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
5814 {
5815 case PACKET_OK:
5816 break;
5817 case PACKET_UNKNOWN:
5818 error (_("No support for interrupting the remote target."));
5819 case PACKET_ERROR:
5820 error (_("Interrupting target failed: %s"), rs->buf);
5821 }
5822 }
5823
5824 /* Implement the to_stop function for the remote targets. */
5825
5826 static void
5827 remote_stop (struct target_ops *self, ptid_t ptid)
5828 {
5829 if (remote_debug)
5830 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
5831
5832 if (target_is_non_stop_p ())
5833 remote_stop_ns (ptid);
5834 else
5835 {
5836 /* We don't currently have a way to transparently pause the
5837 remote target in all-stop mode. Interrupt it instead. */
5838 remote_interrupt_as ();
5839 }
5840 }
5841
5842 /* Implement the to_interrupt function for the remote targets. */
5843
5844 static void
5845 remote_interrupt (struct target_ops *self, ptid_t ptid)
5846 {
5847 struct remote_state *rs = get_remote_state ();
5848
5849 if (remote_debug)
5850 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
5851
5852 if (target_is_non_stop_p ())
5853 remote_interrupt_ns ();
5854 else
5855 remote_interrupt_as ();
5856 }
5857
5858 /* Implement the to_pass_ctrlc function for the remote targets. */
5859
5860 static void
5861 remote_pass_ctrlc (struct target_ops *self)
5862 {
5863 struct remote_state *rs = get_remote_state ();
5864
5865 if (remote_debug)
5866 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
5867
5868 /* If we're starting up, we're not fully synced yet. Quit
5869 immediately. */
5870 if (rs->starting_up)
5871 quit ();
5872 /* If ^C has already been sent once, offer to disconnect. */
5873 else if (rs->ctrlc_pending_p)
5874 interrupt_query ();
5875 else
5876 target_interrupt (inferior_ptid);
5877 }
5878
5879 /* Ask the user what to do when an interrupt is received. */
5880
5881 static void
5882 interrupt_query (void)
5883 {
5884 struct remote_state *rs = get_remote_state ();
5885
5886 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
5887 {
5888 if (query (_("The target is not responding to interrupt requests.\n"
5889 "Stop debugging it? ")))
5890 {
5891 remote_unpush_target ();
5892 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5893 }
5894 }
5895 else
5896 {
5897 if (query (_("Interrupted while waiting for the program.\n"
5898 "Give up waiting? ")))
5899 quit ();
5900 }
5901 }
5902
5903 /* Enable/disable target terminal ownership. Most targets can use
5904 terminal groups to control terminal ownership. Remote targets are
5905 different in that explicit transfer of ownership to/from GDB/target
5906 is required. */
5907
5908 static void
5909 remote_terminal_inferior (struct target_ops *self)
5910 {
5911 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5912 idempotent. The event-loop GDB talking to an asynchronous target
5913 with a synchronous command calls this function from both
5914 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5915 transfer the terminal to the target when it shouldn't this guard
5916 can go away. */
5917 if (!remote_async_terminal_ours_p)
5918 return;
5919 remote_async_terminal_ours_p = 0;
5920 /* NOTE: At this point we could also register our selves as the
5921 recipient of all input. Any characters typed could then be
5922 passed on down to the target. */
5923 }
5924
5925 static void
5926 remote_terminal_ours (struct target_ops *self)
5927 {
5928 /* See FIXME in remote_terminal_inferior. */
5929 if (remote_async_terminal_ours_p)
5930 return;
5931 remote_async_terminal_ours_p = 1;
5932 }
5933
5934 static void
5935 remote_console_output (char *msg)
5936 {
5937 char *p;
5938
5939 for (p = msg; p[0] && p[1]; p += 2)
5940 {
5941 char tb[2];
5942 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
5943
5944 tb[0] = c;
5945 tb[1] = 0;
5946 fputs_unfiltered (tb, gdb_stdtarg);
5947 }
5948 gdb_flush (gdb_stdtarg);
5949 }
5950
5951 typedef struct cached_reg
5952 {
5953 int num;
5954 gdb_byte data[MAX_REGISTER_SIZE];
5955 } cached_reg_t;
5956
5957 DEF_VEC_O(cached_reg_t);
5958
5959 typedef struct stop_reply
5960 {
5961 struct notif_event base;
5962
5963 /* The identifier of the thread about this event */
5964 ptid_t ptid;
5965
5966 /* The remote state this event is associated with. When the remote
5967 connection, represented by a remote_state object, is closed,
5968 all the associated stop_reply events should be released. */
5969 struct remote_state *rs;
5970
5971 struct target_waitstatus ws;
5972
5973 /* Expedited registers. This makes remote debugging a bit more
5974 efficient for those targets that provide critical registers as
5975 part of their normal status mechanism (as another roundtrip to
5976 fetch them is avoided). */
5977 VEC(cached_reg_t) *regcache;
5978
5979 enum target_stop_reason stop_reason;
5980
5981 CORE_ADDR watch_data_address;
5982
5983 int core;
5984 } *stop_reply_p;
5985
5986 DECLARE_QUEUE_P (stop_reply_p);
5987 DEFINE_QUEUE_P (stop_reply_p);
5988 /* The list of already fetched and acknowledged stop events. This
5989 queue is used for notification Stop, and other notifications
5990 don't need queue for their events, because the notification events
5991 of Stop can't be consumed immediately, so that events should be
5992 queued first, and be consumed by remote_wait_{ns,as} one per
5993 time. Other notifications can consume their events immediately,
5994 so queue is not needed for them. */
5995 static QUEUE (stop_reply_p) *stop_reply_queue;
5996
5997 static void
5998 stop_reply_xfree (struct stop_reply *r)
5999 {
6000 notif_event_xfree ((struct notif_event *) r);
6001 }
6002
6003 /* Return the length of the stop reply queue. */
6004
6005 static int
6006 stop_reply_queue_length (void)
6007 {
6008 return QUEUE_length (stop_reply_p, stop_reply_queue);
6009 }
6010
6011 static void
6012 remote_notif_stop_parse (struct notif_client *self, char *buf,
6013 struct notif_event *event)
6014 {
6015 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6016 }
6017
6018 static void
6019 remote_notif_stop_ack (struct notif_client *self, char *buf,
6020 struct notif_event *event)
6021 {
6022 struct stop_reply *stop_reply = (struct stop_reply *) event;
6023
6024 /* acknowledge */
6025 putpkt ((char *) self->ack_command);
6026
6027 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6028 /* We got an unknown stop reply. */
6029 error (_("Unknown stop reply"));
6030
6031 push_stop_reply (stop_reply);
6032 }
6033
6034 static int
6035 remote_notif_stop_can_get_pending_events (struct notif_client *self)
6036 {
6037 /* We can't get pending events in remote_notif_process for
6038 notification stop, and we have to do this in remote_wait_ns
6039 instead. If we fetch all queued events from stub, remote stub
6040 may exit and we have no chance to process them back in
6041 remote_wait_ns. */
6042 mark_async_event_handler (remote_async_inferior_event_token);
6043 return 0;
6044 }
6045
6046 static void
6047 stop_reply_dtr (struct notif_event *event)
6048 {
6049 struct stop_reply *r = (struct stop_reply *) event;
6050
6051 VEC_free (cached_reg_t, r->regcache);
6052 }
6053
6054 static struct notif_event *
6055 remote_notif_stop_alloc_reply (void)
6056 {
6057 /* We cast to a pointer to the "base class". */
6058 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
6059
6060 r->dtr = stop_reply_dtr;
6061
6062 return r;
6063 }
6064
6065 /* A client of notification Stop. */
6066
6067 struct notif_client notif_client_stop =
6068 {
6069 "Stop",
6070 "vStopped",
6071 remote_notif_stop_parse,
6072 remote_notif_stop_ack,
6073 remote_notif_stop_can_get_pending_events,
6074 remote_notif_stop_alloc_reply,
6075 REMOTE_NOTIF_STOP,
6076 };
6077
6078 /* A parameter to pass data in and out. */
6079
6080 struct queue_iter_param
6081 {
6082 void *input;
6083 struct stop_reply *output;
6084 };
6085
6086 /* Determine if THREAD is a pending fork parent thread. ARG contains
6087 the pid of the process that owns the threads we want to check, or
6088 -1 if we want to check all threads. */
6089
6090 static int
6091 is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6092 ptid_t thread_ptid)
6093 {
6094 if (ws->kind == TARGET_WAITKIND_FORKED
6095 || ws->kind == TARGET_WAITKIND_VFORKED)
6096 {
6097 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6098 return 1;
6099 }
6100
6101 return 0;
6102 }
6103
6104 /* Check whether EVENT is a fork event, and if it is, remove the
6105 fork child from the context list passed in DATA. */
6106
6107 static int
6108 remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6109 QUEUE_ITER (stop_reply_p) *iter,
6110 stop_reply_p event,
6111 void *data)
6112 {
6113 struct queue_iter_param *param = (struct queue_iter_param *) data;
6114 struct threads_listing_context *context
6115 = (struct threads_listing_context *) param->input;
6116
6117 if (event->ws.kind == TARGET_WAITKIND_FORKED
6118 || event->ws.kind == TARGET_WAITKIND_VFORKED
6119 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6120 threads_listing_context_remove (&event->ws, context);
6121
6122 return 1;
6123 }
6124
6125 /* If CONTEXT contains any fork child threads that have not been
6126 reported yet, remove them from the CONTEXT list. If such a
6127 thread exists it is because we are stopped at a fork catchpoint
6128 and have not yet called follow_fork, which will set up the
6129 host-side data structures for the new process. */
6130
6131 static void
6132 remove_new_fork_children (struct threads_listing_context *context)
6133 {
6134 struct thread_info * thread;
6135 int pid = -1;
6136 struct notif_client *notif = &notif_client_stop;
6137 struct queue_iter_param param;
6138
6139 /* For any threads stopped at a fork event, remove the corresponding
6140 fork child threads from the CONTEXT list. */
6141 ALL_NON_EXITED_THREADS (thread)
6142 {
6143 struct target_waitstatus *ws;
6144
6145 if (thread->suspend.waitstatus_pending_p)
6146 ws = &thread->suspend.waitstatus;
6147 else
6148 ws = &thread->pending_follow;
6149
6150 if (is_pending_fork_parent (ws, pid, thread->ptid))
6151 {
6152 threads_listing_context_remove (ws, context);
6153 }
6154 }
6155
6156 /* Check for any pending fork events (not reported or processed yet)
6157 in process PID and remove those fork child threads from the
6158 CONTEXT list as well. */
6159 remote_notif_get_pending_events (notif);
6160 param.input = context;
6161 param.output = NULL;
6162 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6163 remove_child_of_pending_fork, &param);
6164 }
6165
6166 /* Remove stop replies in the queue if its pid is equal to the given
6167 inferior's pid. */
6168
6169 static int
6170 remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6171 QUEUE_ITER (stop_reply_p) *iter,
6172 stop_reply_p event,
6173 void *data)
6174 {
6175 struct queue_iter_param *param = (struct queue_iter_param *) data;
6176 struct inferior *inf = (struct inferior *) param->input;
6177
6178 if (ptid_get_pid (event->ptid) == inf->pid)
6179 {
6180 stop_reply_xfree (event);
6181 QUEUE_remove_elem (stop_reply_p, q, iter);
6182 }
6183
6184 return 1;
6185 }
6186
6187 /* Discard all pending stop replies of inferior INF. */
6188
6189 static void
6190 discard_pending_stop_replies (struct inferior *inf)
6191 {
6192 struct queue_iter_param param;
6193 struct stop_reply *reply;
6194 struct remote_state *rs = get_remote_state ();
6195 struct remote_notif_state *rns = rs->notif_state;
6196
6197 /* This function can be notified when an inferior exists. When the
6198 target is not remote, the notification state is NULL. */
6199 if (rs->remote_desc == NULL)
6200 return;
6201
6202 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
6203
6204 /* Discard the in-flight notification. */
6205 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
6206 {
6207 stop_reply_xfree (reply);
6208 rns->pending_event[notif_client_stop.id] = NULL;
6209 }
6210
6211 param.input = inf;
6212 param.output = NULL;
6213 /* Discard the stop replies we have already pulled with
6214 vStopped. */
6215 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6216 remove_stop_reply_for_inferior, &param);
6217 }
6218
6219 /* If its remote state is equal to the given remote state,
6220 remove EVENT from the stop reply queue. */
6221
6222 static int
6223 remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6224 QUEUE_ITER (stop_reply_p) *iter,
6225 stop_reply_p event,
6226 void *data)
6227 {
6228 struct queue_iter_param *param = (struct queue_iter_param *) data;
6229 struct remote_state *rs = (struct remote_state *) param->input;
6230
6231 if (event->rs == rs)
6232 {
6233 stop_reply_xfree (event);
6234 QUEUE_remove_elem (stop_reply_p, q, iter);
6235 }
6236
6237 return 1;
6238 }
6239
6240 /* Discard the stop replies for RS in stop_reply_queue. */
6241
6242 static void
6243 discard_pending_stop_replies_in_queue (struct remote_state *rs)
6244 {
6245 struct queue_iter_param param;
6246
6247 param.input = rs;
6248 param.output = NULL;
6249 /* Discard the stop replies we have already pulled with
6250 vStopped. */
6251 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6252 remove_stop_reply_of_remote_state, &param);
6253 }
6254
6255 /* A parameter to pass data in and out. */
6256
6257 static int
6258 remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6259 QUEUE_ITER (stop_reply_p) *iter,
6260 stop_reply_p event,
6261 void *data)
6262 {
6263 struct queue_iter_param *param = (struct queue_iter_param *) data;
6264 ptid_t *ptid = (ptid_t *) param->input;
6265
6266 if (ptid_match (event->ptid, *ptid))
6267 {
6268 param->output = event;
6269 QUEUE_remove_elem (stop_reply_p, q, iter);
6270 return 0;
6271 }
6272
6273 return 1;
6274 }
6275
6276 /* Remove the first reply in 'stop_reply_queue' which matches
6277 PTID. */
6278
6279 static struct stop_reply *
6280 remote_notif_remove_queued_reply (ptid_t ptid)
6281 {
6282 struct queue_iter_param param;
6283
6284 param.input = &ptid;
6285 param.output = NULL;
6286
6287 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6288 remote_notif_remove_once_on_match, &param);
6289 if (notif_debug)
6290 fprintf_unfiltered (gdb_stdlog,
6291 "notif: discard queued event: 'Stop' in %s\n",
6292 target_pid_to_str (ptid));
6293
6294 return param.output;
6295 }
6296
6297 /* Look for a queued stop reply belonging to PTID. If one is found,
6298 remove it from the queue, and return it. Returns NULL if none is
6299 found. If there are still queued events left to process, tell the
6300 event loop to get back to target_wait soon. */
6301
6302 static struct stop_reply *
6303 queued_stop_reply (ptid_t ptid)
6304 {
6305 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
6306
6307 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
6308 /* There's still at least an event left. */
6309 mark_async_event_handler (remote_async_inferior_event_token);
6310
6311 return r;
6312 }
6313
6314 /* Push a fully parsed stop reply in the stop reply queue. Since we
6315 know that we now have at least one queued event left to pass to the
6316 core side, tell the event loop to get back to target_wait soon. */
6317
6318 static void
6319 push_stop_reply (struct stop_reply *new_event)
6320 {
6321 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
6322
6323 if (notif_debug)
6324 fprintf_unfiltered (gdb_stdlog,
6325 "notif: push 'Stop' %s to queue %d\n",
6326 target_pid_to_str (new_event->ptid),
6327 QUEUE_length (stop_reply_p,
6328 stop_reply_queue));
6329
6330 mark_async_event_handler (remote_async_inferior_event_token);
6331 }
6332
6333 static int
6334 stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6335 QUEUE_ITER (stop_reply_p) *iter,
6336 struct stop_reply *event,
6337 void *data)
6338 {
6339 ptid_t *ptid = (ptid_t *) data;
6340
6341 return !(ptid_equal (*ptid, event->ptid)
6342 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6343 }
6344
6345 /* Returns true if we have a stop reply for PTID. */
6346
6347 static int
6348 peek_stop_reply (ptid_t ptid)
6349 {
6350 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6351 stop_reply_match_ptid_and_ws, &ptid);
6352 }
6353
6354 /* Helper for remote_parse_stop_reply. Return nonzero if the substring
6355 starting with P and ending with PEND matches PREFIX. */
6356
6357 static int
6358 strprefix (const char *p, const char *pend, const char *prefix)
6359 {
6360 for ( ; p < pend; p++, prefix++)
6361 if (*p != *prefix)
6362 return 0;
6363 return *prefix == '\0';
6364 }
6365
6366 /* Parse the stop reply in BUF. Either the function succeeds, and the
6367 result is stored in EVENT, or throws an error. */
6368
6369 static void
6370 remote_parse_stop_reply (char *buf, struct stop_reply *event)
6371 {
6372 struct remote_arch_state *rsa = get_remote_arch_state ();
6373 ULONGEST addr;
6374 char *p;
6375 int skipregs = 0;
6376
6377 event->ptid = null_ptid;
6378 event->rs = get_remote_state ();
6379 event->ws.kind = TARGET_WAITKIND_IGNORE;
6380 event->ws.value.integer = 0;
6381 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
6382 event->regcache = NULL;
6383 event->core = -1;
6384
6385 switch (buf[0])
6386 {
6387 case 'T': /* Status with PC, SP, FP, ... */
6388 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6389 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6390 ss = signal number
6391 n... = register number
6392 r... = register contents
6393 */
6394
6395 p = &buf[3]; /* after Txx */
6396 while (*p)
6397 {
6398 char *p1;
6399 int fieldsize;
6400
6401 p1 = strchr (p, ':');
6402 if (p1 == NULL)
6403 error (_("Malformed packet(a) (missing colon): %s\n\
6404 Packet: '%s'\n"),
6405 p, buf);
6406 if (p == p1)
6407 error (_("Malformed packet(a) (missing register number): %s\n\
6408 Packet: '%s'\n"),
6409 p, buf);
6410
6411 /* Some "registers" are actually extended stop information.
6412 Note if you're adding a new entry here: GDB 7.9 and
6413 earlier assume that all register "numbers" that start
6414 with an hex digit are real register numbers. Make sure
6415 the server only sends such a packet if it knows the
6416 client understands it. */
6417
6418 if (strprefix (p, p1, "thread"))
6419 event->ptid = read_ptid (++p1, &p);
6420 else if (strprefix (p, p1, "syscall_entry"))
6421 {
6422 ULONGEST sysno;
6423
6424 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6425 p = unpack_varlen_hex (++p1, &sysno);
6426 event->ws.value.syscall_number = (int) sysno;
6427 }
6428 else if (strprefix (p, p1, "syscall_return"))
6429 {
6430 ULONGEST sysno;
6431
6432 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6433 p = unpack_varlen_hex (++p1, &sysno);
6434 event->ws.value.syscall_number = (int) sysno;
6435 }
6436 else if (strprefix (p, p1, "watch")
6437 || strprefix (p, p1, "rwatch")
6438 || strprefix (p, p1, "awatch"))
6439 {
6440 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
6441 p = unpack_varlen_hex (++p1, &addr);
6442 event->watch_data_address = (CORE_ADDR) addr;
6443 }
6444 else if (strprefix (p, p1, "swbreak"))
6445 {
6446 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6447
6448 /* Make sure the stub doesn't forget to indicate support
6449 with qSupported. */
6450 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6451 error (_("Unexpected swbreak stop reason"));
6452
6453 /* The value part is documented as "must be empty",
6454 though we ignore it, in case we ever decide to make
6455 use of it in a backward compatible way. */
6456 p = strchrnul (p1 + 1, ';');
6457 }
6458 else if (strprefix (p, p1, "hwbreak"))
6459 {
6460 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6461
6462 /* Make sure the stub doesn't forget to indicate support
6463 with qSupported. */
6464 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6465 error (_("Unexpected hwbreak stop reason"));
6466
6467 /* See above. */
6468 p = strchrnul (p1 + 1, ';');
6469 }
6470 else if (strprefix (p, p1, "library"))
6471 {
6472 event->ws.kind = TARGET_WAITKIND_LOADED;
6473 p = strchrnul (p1 + 1, ';');
6474 }
6475 else if (strprefix (p, p1, "replaylog"))
6476 {
6477 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6478 /* p1 will indicate "begin" or "end", but it makes
6479 no difference for now, so ignore it. */
6480 p = strchrnul (p1 + 1, ';');
6481 }
6482 else if (strprefix (p, p1, "core"))
6483 {
6484 ULONGEST c;
6485
6486 p = unpack_varlen_hex (++p1, &c);
6487 event->core = c;
6488 }
6489 else if (strprefix (p, p1, "fork"))
6490 {
6491 event->ws.value.related_pid = read_ptid (++p1, &p);
6492 event->ws.kind = TARGET_WAITKIND_FORKED;
6493 }
6494 else if (strprefix (p, p1, "vfork"))
6495 {
6496 event->ws.value.related_pid = read_ptid (++p1, &p);
6497 event->ws.kind = TARGET_WAITKIND_VFORKED;
6498 }
6499 else if (strprefix (p, p1, "vforkdone"))
6500 {
6501 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
6502 p = strchrnul (p1 + 1, ';');
6503 }
6504 else if (strprefix (p, p1, "exec"))
6505 {
6506 ULONGEST ignored;
6507 char pathname[PATH_MAX];
6508 int pathlen;
6509
6510 /* Determine the length of the execd pathname. */
6511 p = unpack_varlen_hex (++p1, &ignored);
6512 pathlen = (p - p1) / 2;
6513
6514 /* Save the pathname for event reporting and for
6515 the next run command. */
6516 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6517 pathname[pathlen] = '\0';
6518
6519 /* This is freed during event handling. */
6520 event->ws.value.execd_pathname = xstrdup (pathname);
6521 event->ws.kind = TARGET_WAITKIND_EXECD;
6522
6523 /* Skip the registers included in this packet, since
6524 they may be for an architecture different from the
6525 one used by the original program. */
6526 skipregs = 1;
6527 }
6528 else if (strprefix (p, p1, "create"))
6529 {
6530 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
6531 p = strchrnul (p1 + 1, ';');
6532 }
6533 else
6534 {
6535 ULONGEST pnum;
6536 char *p_temp;
6537
6538 if (skipregs)
6539 {
6540 p = strchrnul (p1 + 1, ';');
6541 p++;
6542 continue;
6543 }
6544
6545 /* Maybe a real ``P'' register number. */
6546 p_temp = unpack_varlen_hex (p, &pnum);
6547 /* If the first invalid character is the colon, we got a
6548 register number. Otherwise, it's an unknown stop
6549 reason. */
6550 if (p_temp == p1)
6551 {
6552 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
6553 cached_reg_t cached_reg;
6554
6555 if (reg == NULL)
6556 error (_("Remote sent bad register number %s: %s\n\
6557 Packet: '%s'\n"),
6558 hex_string (pnum), p, buf);
6559
6560 cached_reg.num = reg->regnum;
6561
6562 p = p1 + 1;
6563 fieldsize = hex2bin (p, cached_reg.data,
6564 register_size (target_gdbarch (),
6565 reg->regnum));
6566 p += 2 * fieldsize;
6567 if (fieldsize < register_size (target_gdbarch (),
6568 reg->regnum))
6569 warning (_("Remote reply is too short: %s"), buf);
6570
6571 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
6572 }
6573 else
6574 {
6575 /* Not a number. Silently skip unknown optional
6576 info. */
6577 p = strchrnul (p1 + 1, ';');
6578 }
6579 }
6580
6581 if (*p != ';')
6582 error (_("Remote register badly formatted: %s\nhere: %s"),
6583 buf, p);
6584 ++p;
6585 }
6586
6587 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
6588 break;
6589
6590 /* fall through */
6591 case 'S': /* Old style status, just signal only. */
6592 {
6593 int sig;
6594
6595 event->ws.kind = TARGET_WAITKIND_STOPPED;
6596 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
6597 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
6598 event->ws.value.sig = (enum gdb_signal) sig;
6599 else
6600 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6601 }
6602 break;
6603 case 'w': /* Thread exited. */
6604 {
6605 char *p;
6606 ULONGEST value;
6607
6608 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
6609 p = unpack_varlen_hex (&buf[1], &value);
6610 event->ws.value.integer = value;
6611 if (*p != ';')
6612 error (_("stop reply packet badly formatted: %s"), buf);
6613 event->ptid = read_ptid (++p, NULL);
6614 break;
6615 }
6616 case 'W': /* Target exited. */
6617 case 'X':
6618 {
6619 char *p;
6620 int pid;
6621 ULONGEST value;
6622
6623 /* GDB used to accept only 2 hex chars here. Stubs should
6624 only send more if they detect GDB supports multi-process
6625 support. */
6626 p = unpack_varlen_hex (&buf[1], &value);
6627
6628 if (buf[0] == 'W')
6629 {
6630 /* The remote process exited. */
6631 event->ws.kind = TARGET_WAITKIND_EXITED;
6632 event->ws.value.integer = value;
6633 }
6634 else
6635 {
6636 /* The remote process exited with a signal. */
6637 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
6638 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
6639 event->ws.value.sig = (enum gdb_signal) value;
6640 else
6641 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6642 }
6643
6644 /* If no process is specified, assume inferior_ptid. */
6645 pid = ptid_get_pid (inferior_ptid);
6646 if (*p == '\0')
6647 ;
6648 else if (*p == ';')
6649 {
6650 p++;
6651
6652 if (*p == '\0')
6653 ;
6654 else if (startswith (p, "process:"))
6655 {
6656 ULONGEST upid;
6657
6658 p += sizeof ("process:") - 1;
6659 unpack_varlen_hex (p, &upid);
6660 pid = upid;
6661 }
6662 else
6663 error (_("unknown stop reply packet: %s"), buf);
6664 }
6665 else
6666 error (_("unknown stop reply packet: %s"), buf);
6667 event->ptid = pid_to_ptid (pid);
6668 }
6669 break;
6670 case 'N':
6671 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
6672 event->ptid = minus_one_ptid;
6673 break;
6674 }
6675
6676 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
6677 error (_("No process or thread specified in stop reply: %s"), buf);
6678 }
6679
6680 /* When the stub wants to tell GDB about a new notification reply, it
6681 sends a notification (%Stop, for example). Those can come it at
6682 any time, hence, we have to make sure that any pending
6683 putpkt/getpkt sequence we're making is finished, before querying
6684 the stub for more events with the corresponding ack command
6685 (vStopped, for example). E.g., if we started a vStopped sequence
6686 immediately upon receiving the notification, something like this
6687 could happen:
6688
6689 1.1) --> Hg 1
6690 1.2) <-- OK
6691 1.3) --> g
6692 1.4) <-- %Stop
6693 1.5) --> vStopped
6694 1.6) <-- (registers reply to step #1.3)
6695
6696 Obviously, the reply in step #1.6 would be unexpected to a vStopped
6697 query.
6698
6699 To solve this, whenever we parse a %Stop notification successfully,
6700 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
6701 doing whatever we were doing:
6702
6703 2.1) --> Hg 1
6704 2.2) <-- OK
6705 2.3) --> g
6706 2.4) <-- %Stop
6707 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
6708 2.5) <-- (registers reply to step #2.3)
6709
6710 Eventualy after step #2.5, we return to the event loop, which
6711 notices there's an event on the
6712 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
6713 associated callback --- the function below. At this point, we're
6714 always safe to start a vStopped sequence. :
6715
6716 2.6) --> vStopped
6717 2.7) <-- T05 thread:2
6718 2.8) --> vStopped
6719 2.9) --> OK
6720 */
6721
6722 void
6723 remote_notif_get_pending_events (struct notif_client *nc)
6724 {
6725 struct remote_state *rs = get_remote_state ();
6726
6727 if (rs->notif_state->pending_event[nc->id] != NULL)
6728 {
6729 if (notif_debug)
6730 fprintf_unfiltered (gdb_stdlog,
6731 "notif: process: '%s' ack pending event\n",
6732 nc->name);
6733
6734 /* acknowledge */
6735 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
6736 rs->notif_state->pending_event[nc->id] = NULL;
6737
6738 while (1)
6739 {
6740 getpkt (&rs->buf, &rs->buf_size, 0);
6741 if (strcmp (rs->buf, "OK") == 0)
6742 break;
6743 else
6744 remote_notif_ack (nc, rs->buf);
6745 }
6746 }
6747 else
6748 {
6749 if (notif_debug)
6750 fprintf_unfiltered (gdb_stdlog,
6751 "notif: process: '%s' no pending reply\n",
6752 nc->name);
6753 }
6754 }
6755
6756 /* Called when it is decided that STOP_REPLY holds the info of the
6757 event that is to be returned to the core. This function always
6758 destroys STOP_REPLY. */
6759
6760 static ptid_t
6761 process_stop_reply (struct stop_reply *stop_reply,
6762 struct target_waitstatus *status)
6763 {
6764 ptid_t ptid;
6765
6766 *status = stop_reply->ws;
6767 ptid = stop_reply->ptid;
6768
6769 /* If no thread/process was reported by the stub, assume the current
6770 inferior. */
6771 if (ptid_equal (ptid, null_ptid))
6772 ptid = inferior_ptid;
6773
6774 if (status->kind != TARGET_WAITKIND_EXITED
6775 && status->kind != TARGET_WAITKIND_SIGNALLED
6776 && status->kind != TARGET_WAITKIND_NO_RESUMED)
6777 {
6778 struct private_thread_info *remote_thr;
6779
6780 /* Expedited registers. */
6781 if (stop_reply->regcache)
6782 {
6783 struct regcache *regcache
6784 = get_thread_arch_regcache (ptid, target_gdbarch ());
6785 cached_reg_t *reg;
6786 int ix;
6787
6788 for (ix = 0;
6789 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
6790 ix++)
6791 regcache_raw_supply (regcache, reg->num, reg->data);
6792 VEC_free (cached_reg_t, stop_reply->regcache);
6793 }
6794
6795 remote_notice_new_inferior (ptid, 0);
6796 remote_thr = demand_private_info (ptid);
6797 remote_thr->core = stop_reply->core;
6798 remote_thr->stop_reason = stop_reply->stop_reason;
6799 remote_thr->watch_data_address = stop_reply->watch_data_address;
6800 }
6801
6802 stop_reply_xfree (stop_reply);
6803 return ptid;
6804 }
6805
6806 /* The non-stop mode version of target_wait. */
6807
6808 static ptid_t
6809 remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
6810 {
6811 struct remote_state *rs = get_remote_state ();
6812 struct stop_reply *stop_reply;
6813 int ret;
6814 int is_notif = 0;
6815
6816 /* If in non-stop mode, get out of getpkt even if a
6817 notification is received. */
6818
6819 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6820 0 /* forever */, &is_notif);
6821 while (1)
6822 {
6823 if (ret != -1 && !is_notif)
6824 switch (rs->buf[0])
6825 {
6826 case 'E': /* Error of some sort. */
6827 /* We're out of sync with the target now. Did it continue
6828 or not? We can't tell which thread it was in non-stop,
6829 so just ignore this. */
6830 warning (_("Remote failure reply: %s"), rs->buf);
6831 break;
6832 case 'O': /* Console output. */
6833 remote_console_output (rs->buf + 1);
6834 break;
6835 default:
6836 warning (_("Invalid remote reply: %s"), rs->buf);
6837 break;
6838 }
6839
6840 /* Acknowledge a pending stop reply that may have arrived in the
6841 mean time. */
6842 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
6843 remote_notif_get_pending_events (&notif_client_stop);
6844
6845 /* If indeed we noticed a stop reply, we're done. */
6846 stop_reply = queued_stop_reply (ptid);
6847 if (stop_reply != NULL)
6848 return process_stop_reply (stop_reply, status);
6849
6850 /* Still no event. If we're just polling for an event, then
6851 return to the event loop. */
6852 if (options & TARGET_WNOHANG)
6853 {
6854 status->kind = TARGET_WAITKIND_IGNORE;
6855 return minus_one_ptid;
6856 }
6857
6858 /* Otherwise do a blocking wait. */
6859 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6860 1 /* forever */, &is_notif);
6861 }
6862 }
6863
6864 /* Wait until the remote machine stops, then return, storing status in
6865 STATUS just as `wait' would. */
6866
6867 static ptid_t
6868 remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
6869 {
6870 struct remote_state *rs = get_remote_state ();
6871 ptid_t event_ptid = null_ptid;
6872 char *buf;
6873 struct stop_reply *stop_reply;
6874
6875 again:
6876
6877 status->kind = TARGET_WAITKIND_IGNORE;
6878 status->value.integer = 0;
6879
6880 stop_reply = queued_stop_reply (ptid);
6881 if (stop_reply != NULL)
6882 return process_stop_reply (stop_reply, status);
6883
6884 if (rs->cached_wait_status)
6885 /* Use the cached wait status, but only once. */
6886 rs->cached_wait_status = 0;
6887 else
6888 {
6889 int ret;
6890 int is_notif;
6891 int forever = ((options & TARGET_WNOHANG) == 0
6892 && wait_forever_enabled_p);
6893
6894 if (!rs->waiting_for_stop_reply)
6895 {
6896 status->kind = TARGET_WAITKIND_NO_RESUMED;
6897 return minus_one_ptid;
6898 }
6899
6900 /* FIXME: cagney/1999-09-27: If we're in async mode we should
6901 _never_ wait for ever -> test on target_is_async_p().
6902 However, before we do that we need to ensure that the caller
6903 knows how to take the target into/out of async mode. */
6904 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6905 forever, &is_notif);
6906
6907 /* GDB gets a notification. Return to core as this event is
6908 not interesting. */
6909 if (ret != -1 && is_notif)
6910 return minus_one_ptid;
6911
6912 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
6913 return minus_one_ptid;
6914 }
6915
6916 buf = rs->buf;
6917
6918 /* Assume that the target has acknowledged Ctrl-C unless we receive
6919 an 'F' or 'O' packet. */
6920 if (buf[0] != 'F' && buf[0] != 'O')
6921 rs->ctrlc_pending_p = 0;
6922
6923 switch (buf[0])
6924 {
6925 case 'E': /* Error of some sort. */
6926 /* We're out of sync with the target now. Did it continue or
6927 not? Not is more likely, so report a stop. */
6928 rs->waiting_for_stop_reply = 0;
6929
6930 warning (_("Remote failure reply: %s"), buf);
6931 status->kind = TARGET_WAITKIND_STOPPED;
6932 status->value.sig = GDB_SIGNAL_0;
6933 break;
6934 case 'F': /* File-I/O request. */
6935 /* GDB may access the inferior memory while handling the File-I/O
6936 request, but we don't want GDB accessing memory while waiting
6937 for a stop reply. See the comments in putpkt_binary. Set
6938 waiting_for_stop_reply to 0 temporarily. */
6939 rs->waiting_for_stop_reply = 0;
6940 remote_fileio_request (buf, rs->ctrlc_pending_p);
6941 rs->ctrlc_pending_p = 0;
6942 /* GDB handled the File-I/O request, and the target is running
6943 again. Keep waiting for events. */
6944 rs->waiting_for_stop_reply = 1;
6945 break;
6946 case 'N': case 'T': case 'S': case 'X': case 'W':
6947 {
6948 struct stop_reply *stop_reply;
6949
6950 /* There is a stop reply to handle. */
6951 rs->waiting_for_stop_reply = 0;
6952
6953 stop_reply
6954 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
6955 rs->buf);
6956
6957 event_ptid = process_stop_reply (stop_reply, status);
6958 break;
6959 }
6960 case 'O': /* Console output. */
6961 remote_console_output (buf + 1);
6962 break;
6963 case '\0':
6964 if (rs->last_sent_signal != GDB_SIGNAL_0)
6965 {
6966 /* Zero length reply means that we tried 'S' or 'C' and the
6967 remote system doesn't support it. */
6968 target_terminal_ours_for_output ();
6969 printf_filtered
6970 ("Can't send signals to this remote system. %s not sent.\n",
6971 gdb_signal_to_name (rs->last_sent_signal));
6972 rs->last_sent_signal = GDB_SIGNAL_0;
6973 target_terminal_inferior ();
6974
6975 strcpy ((char *) buf, rs->last_sent_step ? "s" : "c");
6976 putpkt ((char *) buf);
6977 break;
6978 }
6979 /* else fallthrough */
6980 default:
6981 warning (_("Invalid remote reply: %s"), buf);
6982 break;
6983 }
6984
6985 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
6986 return minus_one_ptid;
6987 else if (status->kind == TARGET_WAITKIND_IGNORE)
6988 {
6989 /* Nothing interesting happened. If we're doing a non-blocking
6990 poll, we're done. Otherwise, go back to waiting. */
6991 if (options & TARGET_WNOHANG)
6992 return minus_one_ptid;
6993 else
6994 goto again;
6995 }
6996 else if (status->kind != TARGET_WAITKIND_EXITED
6997 && status->kind != TARGET_WAITKIND_SIGNALLED)
6998 {
6999 if (!ptid_equal (event_ptid, null_ptid))
7000 record_currthread (rs, event_ptid);
7001 else
7002 event_ptid = inferior_ptid;
7003 }
7004 else
7005 /* A process exit. Invalidate our notion of current thread. */
7006 record_currthread (rs, minus_one_ptid);
7007
7008 return event_ptid;
7009 }
7010
7011 /* Wait until the remote machine stops, then return, storing status in
7012 STATUS just as `wait' would. */
7013
7014 static ptid_t
7015 remote_wait (struct target_ops *ops,
7016 ptid_t ptid, struct target_waitstatus *status, int options)
7017 {
7018 ptid_t event_ptid;
7019
7020 if (target_is_non_stop_p ())
7021 event_ptid = remote_wait_ns (ptid, status, options);
7022 else
7023 event_ptid = remote_wait_as (ptid, status, options);
7024
7025 if (target_is_async_p ())
7026 {
7027 /* If there are are events left in the queue tell the event loop
7028 to return here. */
7029 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
7030 mark_async_event_handler (remote_async_inferior_event_token);
7031 }
7032
7033 return event_ptid;
7034 }
7035
7036 /* Fetch a single register using a 'p' packet. */
7037
7038 static int
7039 fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
7040 {
7041 struct remote_state *rs = get_remote_state ();
7042 char *buf, *p;
7043 char regp[MAX_REGISTER_SIZE];
7044 int i;
7045
7046 if (packet_support (PACKET_p) == PACKET_DISABLE)
7047 return 0;
7048
7049 if (reg->pnum == -1)
7050 return 0;
7051
7052 p = rs->buf;
7053 *p++ = 'p';
7054 p += hexnumstr (p, reg->pnum);
7055 *p++ = '\0';
7056 putpkt (rs->buf);
7057 getpkt (&rs->buf, &rs->buf_size, 0);
7058
7059 buf = rs->buf;
7060
7061 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7062 {
7063 case PACKET_OK:
7064 break;
7065 case PACKET_UNKNOWN:
7066 return 0;
7067 case PACKET_ERROR:
7068 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7069 gdbarch_register_name (get_regcache_arch (regcache),
7070 reg->regnum),
7071 buf);
7072 }
7073
7074 /* If this register is unfetchable, tell the regcache. */
7075 if (buf[0] == 'x')
7076 {
7077 regcache_raw_supply (regcache, reg->regnum, NULL);
7078 return 1;
7079 }
7080
7081 /* Otherwise, parse and supply the value. */
7082 p = buf;
7083 i = 0;
7084 while (p[0] != 0)
7085 {
7086 if (p[1] == 0)
7087 error (_("fetch_register_using_p: early buf termination"));
7088
7089 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7090 p += 2;
7091 }
7092 regcache_raw_supply (regcache, reg->regnum, regp);
7093 return 1;
7094 }
7095
7096 /* Fetch the registers included in the target's 'g' packet. */
7097
7098 static int
7099 send_g_packet (void)
7100 {
7101 struct remote_state *rs = get_remote_state ();
7102 int buf_len;
7103
7104 xsnprintf (rs->buf, get_remote_packet_size (), "g");
7105 remote_send (&rs->buf, &rs->buf_size);
7106
7107 /* We can get out of synch in various cases. If the first character
7108 in the buffer is not a hex character, assume that has happened
7109 and try to fetch another packet to read. */
7110 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7111 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7112 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7113 && rs->buf[0] != 'x') /* New: unavailable register value. */
7114 {
7115 if (remote_debug)
7116 fprintf_unfiltered (gdb_stdlog,
7117 "Bad register packet; fetching a new packet\n");
7118 getpkt (&rs->buf, &rs->buf_size, 0);
7119 }
7120
7121 buf_len = strlen (rs->buf);
7122
7123 /* Sanity check the received packet. */
7124 if (buf_len % 2 != 0)
7125 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
7126
7127 return buf_len / 2;
7128 }
7129
7130 static void
7131 process_g_packet (struct regcache *regcache)
7132 {
7133 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7134 struct remote_state *rs = get_remote_state ();
7135 struct remote_arch_state *rsa = get_remote_arch_state ();
7136 int i, buf_len;
7137 char *p;
7138 char *regs;
7139
7140 buf_len = strlen (rs->buf);
7141
7142 /* Further sanity checks, with knowledge of the architecture. */
7143 if (buf_len > 2 * rsa->sizeof_g_packet)
7144 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
7145
7146 /* Save the size of the packet sent to us by the target. It is used
7147 as a heuristic when determining the max size of packets that the
7148 target can safely receive. */
7149 if (rsa->actual_register_packet_size == 0)
7150 rsa->actual_register_packet_size = buf_len;
7151
7152 /* If this is smaller than we guessed the 'g' packet would be,
7153 update our records. A 'g' reply that doesn't include a register's
7154 value implies either that the register is not available, or that
7155 the 'p' packet must be used. */
7156 if (buf_len < 2 * rsa->sizeof_g_packet)
7157 {
7158 rsa->sizeof_g_packet = buf_len / 2;
7159
7160 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7161 {
7162 if (rsa->regs[i].pnum == -1)
7163 continue;
7164
7165 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
7166 rsa->regs[i].in_g_packet = 0;
7167 else
7168 rsa->regs[i].in_g_packet = 1;
7169 }
7170 }
7171
7172 regs = (char *) alloca (rsa->sizeof_g_packet);
7173
7174 /* Unimplemented registers read as all bits zero. */
7175 memset (regs, 0, rsa->sizeof_g_packet);
7176
7177 /* Reply describes registers byte by byte, each byte encoded as two
7178 hex characters. Suck them all up, then supply them to the
7179 register cacheing/storage mechanism. */
7180
7181 p = rs->buf;
7182 for (i = 0; i < rsa->sizeof_g_packet; i++)
7183 {
7184 if (p[0] == 0 || p[1] == 0)
7185 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7186 internal_error (__FILE__, __LINE__,
7187 _("unexpected end of 'g' packet reply"));
7188
7189 if (p[0] == 'x' && p[1] == 'x')
7190 regs[i] = 0; /* 'x' */
7191 else
7192 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7193 p += 2;
7194 }
7195
7196 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7197 {
7198 struct packet_reg *r = &rsa->regs[i];
7199
7200 if (r->in_g_packet)
7201 {
7202 if (r->offset * 2 >= strlen (rs->buf))
7203 /* This shouldn't happen - we adjusted in_g_packet above. */
7204 internal_error (__FILE__, __LINE__,
7205 _("unexpected end of 'g' packet reply"));
7206 else if (rs->buf[r->offset * 2] == 'x')
7207 {
7208 gdb_assert (r->offset * 2 < strlen (rs->buf));
7209 /* The register isn't available, mark it as such (at
7210 the same time setting the value to zero). */
7211 regcache_raw_supply (regcache, r->regnum, NULL);
7212 }
7213 else
7214 regcache_raw_supply (regcache, r->regnum,
7215 regs + r->offset);
7216 }
7217 }
7218 }
7219
7220 static void
7221 fetch_registers_using_g (struct regcache *regcache)
7222 {
7223 send_g_packet ();
7224 process_g_packet (regcache);
7225 }
7226
7227 /* Make the remote selected traceframe match GDB's selected
7228 traceframe. */
7229
7230 static void
7231 set_remote_traceframe (void)
7232 {
7233 int newnum;
7234 struct remote_state *rs = get_remote_state ();
7235
7236 if (rs->remote_traceframe_number == get_traceframe_number ())
7237 return;
7238
7239 /* Avoid recursion, remote_trace_find calls us again. */
7240 rs->remote_traceframe_number = get_traceframe_number ();
7241
7242 newnum = target_trace_find (tfind_number,
7243 get_traceframe_number (), 0, 0, NULL);
7244
7245 /* Should not happen. If it does, all bets are off. */
7246 if (newnum != get_traceframe_number ())
7247 warning (_("could not set remote traceframe"));
7248 }
7249
7250 static void
7251 remote_fetch_registers (struct target_ops *ops,
7252 struct regcache *regcache, int regnum)
7253 {
7254 struct remote_arch_state *rsa = get_remote_arch_state ();
7255 int i;
7256
7257 set_remote_traceframe ();
7258 set_general_thread (inferior_ptid);
7259
7260 if (regnum >= 0)
7261 {
7262 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
7263
7264 gdb_assert (reg != NULL);
7265
7266 /* If this register might be in the 'g' packet, try that first -
7267 we are likely to read more than one register. If this is the
7268 first 'g' packet, we might be overly optimistic about its
7269 contents, so fall back to 'p'. */
7270 if (reg->in_g_packet)
7271 {
7272 fetch_registers_using_g (regcache);
7273 if (reg->in_g_packet)
7274 return;
7275 }
7276
7277 if (fetch_register_using_p (regcache, reg))
7278 return;
7279
7280 /* This register is not available. */
7281 regcache_raw_supply (regcache, reg->regnum, NULL);
7282
7283 return;
7284 }
7285
7286 fetch_registers_using_g (regcache);
7287
7288 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7289 if (!rsa->regs[i].in_g_packet)
7290 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
7291 {
7292 /* This register is not available. */
7293 regcache_raw_supply (regcache, i, NULL);
7294 }
7295 }
7296
7297 /* Prepare to store registers. Since we may send them all (using a
7298 'G' request), we have to read out the ones we don't want to change
7299 first. */
7300
7301 static void
7302 remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
7303 {
7304 struct remote_arch_state *rsa = get_remote_arch_state ();
7305 int i;
7306 gdb_byte buf[MAX_REGISTER_SIZE];
7307
7308 /* Make sure the entire registers array is valid. */
7309 switch (packet_support (PACKET_P))
7310 {
7311 case PACKET_DISABLE:
7312 case PACKET_SUPPORT_UNKNOWN:
7313 /* Make sure all the necessary registers are cached. */
7314 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7315 if (rsa->regs[i].in_g_packet)
7316 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
7317 break;
7318 case PACKET_ENABLE:
7319 break;
7320 }
7321 }
7322
7323 /* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
7324 packet was not recognized. */
7325
7326 static int
7327 store_register_using_P (const struct regcache *regcache,
7328 struct packet_reg *reg)
7329 {
7330 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7331 struct remote_state *rs = get_remote_state ();
7332 /* Try storing a single register. */
7333 char *buf = rs->buf;
7334 gdb_byte regp[MAX_REGISTER_SIZE];
7335 char *p;
7336
7337 if (packet_support (PACKET_P) == PACKET_DISABLE)
7338 return 0;
7339
7340 if (reg->pnum == -1)
7341 return 0;
7342
7343 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
7344 p = buf + strlen (buf);
7345 regcache_raw_collect (regcache, reg->regnum, regp);
7346 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
7347 putpkt (rs->buf);
7348 getpkt (&rs->buf, &rs->buf_size, 0);
7349
7350 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7351 {
7352 case PACKET_OK:
7353 return 1;
7354 case PACKET_ERROR:
7355 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7356 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
7357 case PACKET_UNKNOWN:
7358 return 0;
7359 default:
7360 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7361 }
7362 }
7363
7364 /* Store register REGNUM, or all registers if REGNUM == -1, from the
7365 contents of the register cache buffer. FIXME: ignores errors. */
7366
7367 static void
7368 store_registers_using_G (const struct regcache *regcache)
7369 {
7370 struct remote_state *rs = get_remote_state ();
7371 struct remote_arch_state *rsa = get_remote_arch_state ();
7372 gdb_byte *regs;
7373 char *p;
7374
7375 /* Extract all the registers in the regcache copying them into a
7376 local buffer. */
7377 {
7378 int i;
7379
7380 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
7381 memset (regs, 0, rsa->sizeof_g_packet);
7382 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7383 {
7384 struct packet_reg *r = &rsa->regs[i];
7385
7386 if (r->in_g_packet)
7387 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
7388 }
7389 }
7390
7391 /* Command describes registers byte by byte,
7392 each byte encoded as two hex characters. */
7393 p = rs->buf;
7394 *p++ = 'G';
7395 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
7396 updated. */
7397 bin2hex (regs, p, rsa->sizeof_g_packet);
7398 putpkt (rs->buf);
7399 getpkt (&rs->buf, &rs->buf_size, 0);
7400 if (packet_check_result (rs->buf) == PACKET_ERROR)
7401 error (_("Could not write registers; remote failure reply '%s'"),
7402 rs->buf);
7403 }
7404
7405 /* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7406 of the register cache buffer. FIXME: ignores errors. */
7407
7408 static void
7409 remote_store_registers (struct target_ops *ops,
7410 struct regcache *regcache, int regnum)
7411 {
7412 struct remote_arch_state *rsa = get_remote_arch_state ();
7413 int i;
7414
7415 set_remote_traceframe ();
7416 set_general_thread (inferior_ptid);
7417
7418 if (regnum >= 0)
7419 {
7420 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
7421
7422 gdb_assert (reg != NULL);
7423
7424 /* Always prefer to store registers using the 'P' packet if
7425 possible; we often change only a small number of registers.
7426 Sometimes we change a larger number; we'd need help from a
7427 higher layer to know to use 'G'. */
7428 if (store_register_using_P (regcache, reg))
7429 return;
7430
7431 /* For now, don't complain if we have no way to write the
7432 register. GDB loses track of unavailable registers too
7433 easily. Some day, this may be an error. We don't have
7434 any way to read the register, either... */
7435 if (!reg->in_g_packet)
7436 return;
7437
7438 store_registers_using_G (regcache);
7439 return;
7440 }
7441
7442 store_registers_using_G (regcache);
7443
7444 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
7445 if (!rsa->regs[i].in_g_packet)
7446 if (!store_register_using_P (regcache, &rsa->regs[i]))
7447 /* See above for why we do not issue an error here. */
7448 continue;
7449 }
7450 \f
7451
7452 /* Return the number of hex digits in num. */
7453
7454 static int
7455 hexnumlen (ULONGEST num)
7456 {
7457 int i;
7458
7459 for (i = 0; num != 0; i++)
7460 num >>= 4;
7461
7462 return max (i, 1);
7463 }
7464
7465 /* Set BUF to the minimum number of hex digits representing NUM. */
7466
7467 static int
7468 hexnumstr (char *buf, ULONGEST num)
7469 {
7470 int len = hexnumlen (num);
7471
7472 return hexnumnstr (buf, num, len);
7473 }
7474
7475
7476 /* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
7477
7478 static int
7479 hexnumnstr (char *buf, ULONGEST num, int width)
7480 {
7481 int i;
7482
7483 buf[width] = '\0';
7484
7485 for (i = width - 1; i >= 0; i--)
7486 {
7487 buf[i] = "0123456789abcdef"[(num & 0xf)];
7488 num >>= 4;
7489 }
7490
7491 return width;
7492 }
7493
7494 /* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
7495
7496 static CORE_ADDR
7497 remote_address_masked (CORE_ADDR addr)
7498 {
7499 unsigned int address_size = remote_address_size;
7500
7501 /* If "remoteaddresssize" was not set, default to target address size. */
7502 if (!address_size)
7503 address_size = gdbarch_addr_bit (target_gdbarch ());
7504
7505 if (address_size > 0
7506 && address_size < (sizeof (ULONGEST) * 8))
7507 {
7508 /* Only create a mask when that mask can safely be constructed
7509 in a ULONGEST variable. */
7510 ULONGEST mask = 1;
7511
7512 mask = (mask << address_size) - 1;
7513 addr &= mask;
7514 }
7515 return addr;
7516 }
7517
7518 /* Determine whether the remote target supports binary downloading.
7519 This is accomplished by sending a no-op memory write of zero length
7520 to the target at the specified address. It does not suffice to send
7521 the whole packet, since many stubs strip the eighth bit and
7522 subsequently compute a wrong checksum, which causes real havoc with
7523 remote_write_bytes.
7524
7525 NOTE: This can still lose if the serial line is not eight-bit
7526 clean. In cases like this, the user should clear "remote
7527 X-packet". */
7528
7529 static void
7530 check_binary_download (CORE_ADDR addr)
7531 {
7532 struct remote_state *rs = get_remote_state ();
7533
7534 switch (packet_support (PACKET_X))
7535 {
7536 case PACKET_DISABLE:
7537 break;
7538 case PACKET_ENABLE:
7539 break;
7540 case PACKET_SUPPORT_UNKNOWN:
7541 {
7542 char *p;
7543
7544 p = rs->buf;
7545 *p++ = 'X';
7546 p += hexnumstr (p, (ULONGEST) addr);
7547 *p++ = ',';
7548 p += hexnumstr (p, (ULONGEST) 0);
7549 *p++ = ':';
7550 *p = '\0';
7551
7552 putpkt_binary (rs->buf, (int) (p - rs->buf));
7553 getpkt (&rs->buf, &rs->buf_size, 0);
7554
7555 if (rs->buf[0] == '\0')
7556 {
7557 if (remote_debug)
7558 fprintf_unfiltered (gdb_stdlog,
7559 "binary downloading NOT "
7560 "supported by target\n");
7561 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
7562 }
7563 else
7564 {
7565 if (remote_debug)
7566 fprintf_unfiltered (gdb_stdlog,
7567 "binary downloading supported by target\n");
7568 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
7569 }
7570 break;
7571 }
7572 }
7573 }
7574
7575 /* Helper function to resize the payload in order to try to get a good
7576 alignment. We try to write an amount of data such that the next write will
7577 start on an address aligned on REMOTE_ALIGN_WRITES. */
7578
7579 static int
7580 align_for_efficient_write (int todo, CORE_ADDR memaddr)
7581 {
7582 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
7583 }
7584
7585 /* Write memory data directly to the remote machine.
7586 This does not inform the data cache; the data cache uses this.
7587 HEADER is the starting part of the packet.
7588 MEMADDR is the address in the remote memory space.
7589 MYADDR is the address of the buffer in our space.
7590 LEN_UNITS is the number of addressable units to write.
7591 UNIT_SIZE is the length in bytes of an addressable unit.
7592 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
7593 should send data as binary ('X'), or hex-encoded ('M').
7594
7595 The function creates packet of the form
7596 <HEADER><ADDRESS>,<LENGTH>:<DATA>
7597
7598 where encoding of <DATA> is terminated by PACKET_FORMAT.
7599
7600 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
7601 are omitted.
7602
7603 Return the transferred status, error or OK (an
7604 'enum target_xfer_status' value). Save the number of addressable units
7605 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
7606
7607 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
7608 exchange between gdb and the stub could look like (?? in place of the
7609 checksum):
7610
7611 -> $m1000,4#??
7612 <- aaaabbbbccccdddd
7613
7614 -> $M1000,3:eeeeffffeeee#??
7615 <- OK
7616
7617 -> $m1000,4#??
7618 <- eeeeffffeeeedddd */
7619
7620 static enum target_xfer_status
7621 remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
7622 const gdb_byte *myaddr, ULONGEST len_units,
7623 int unit_size, ULONGEST *xfered_len_units,
7624 char packet_format, int use_length)
7625 {
7626 struct remote_state *rs = get_remote_state ();
7627 char *p;
7628 char *plen = NULL;
7629 int plenlen = 0;
7630 int todo_units;
7631 int units_written;
7632 int payload_capacity_bytes;
7633 int payload_length_bytes;
7634
7635 if (packet_format != 'X' && packet_format != 'M')
7636 internal_error (__FILE__, __LINE__,
7637 _("remote_write_bytes_aux: bad packet format"));
7638
7639 if (len_units == 0)
7640 return TARGET_XFER_EOF;
7641
7642 payload_capacity_bytes = get_memory_write_packet_size ();
7643
7644 /* The packet buffer will be large enough for the payload;
7645 get_memory_packet_size ensures this. */
7646 rs->buf[0] = '\0';
7647
7648 /* Compute the size of the actual payload by subtracting out the
7649 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
7650
7651 payload_capacity_bytes -= strlen ("$,:#NN");
7652 if (!use_length)
7653 /* The comma won't be used. */
7654 payload_capacity_bytes += 1;
7655 payload_capacity_bytes -= strlen (header);
7656 payload_capacity_bytes -= hexnumlen (memaddr);
7657
7658 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
7659
7660 strcat (rs->buf, header);
7661 p = rs->buf + strlen (header);
7662
7663 /* Compute a best guess of the number of bytes actually transfered. */
7664 if (packet_format == 'X')
7665 {
7666 /* Best guess at number of bytes that will fit. */
7667 todo_units = min (len_units, payload_capacity_bytes / unit_size);
7668 if (use_length)
7669 payload_capacity_bytes -= hexnumlen (todo_units);
7670 todo_units = min (todo_units, payload_capacity_bytes / unit_size);
7671 }
7672 else
7673 {
7674 /* Number of bytes that will fit. */
7675 todo_units = min (len_units, (payload_capacity_bytes / unit_size) / 2);
7676 if (use_length)
7677 payload_capacity_bytes -= hexnumlen (todo_units);
7678 todo_units = min (todo_units, (payload_capacity_bytes / unit_size) / 2);
7679 }
7680
7681 if (todo_units <= 0)
7682 internal_error (__FILE__, __LINE__,
7683 _("minimum packet size too small to write data"));
7684
7685 /* If we already need another packet, then try to align the end
7686 of this packet to a useful boundary. */
7687 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
7688 todo_units = align_for_efficient_write (todo_units, memaddr);
7689
7690 /* Append "<memaddr>". */
7691 memaddr = remote_address_masked (memaddr);
7692 p += hexnumstr (p, (ULONGEST) memaddr);
7693
7694 if (use_length)
7695 {
7696 /* Append ",". */
7697 *p++ = ',';
7698
7699 /* Append the length and retain its location and size. It may need to be
7700 adjusted once the packet body has been created. */
7701 plen = p;
7702 plenlen = hexnumstr (p, (ULONGEST) todo_units);
7703 p += plenlen;
7704 }
7705
7706 /* Append ":". */
7707 *p++ = ':';
7708 *p = '\0';
7709
7710 /* Append the packet body. */
7711 if (packet_format == 'X')
7712 {
7713 /* Binary mode. Send target system values byte by byte, in
7714 increasing byte addresses. Only escape certain critical
7715 characters. */
7716 payload_length_bytes =
7717 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
7718 &units_written, payload_capacity_bytes);
7719
7720 /* If not all TODO units fit, then we'll need another packet. Make
7721 a second try to keep the end of the packet aligned. Don't do
7722 this if the packet is tiny. */
7723 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
7724 {
7725 int new_todo_units;
7726
7727 new_todo_units = align_for_efficient_write (units_written, memaddr);
7728
7729 if (new_todo_units != units_written)
7730 payload_length_bytes =
7731 remote_escape_output (myaddr, new_todo_units, unit_size,
7732 (gdb_byte *) p, &units_written,
7733 payload_capacity_bytes);
7734 }
7735
7736 p += payload_length_bytes;
7737 if (use_length && units_written < todo_units)
7738 {
7739 /* Escape chars have filled up the buffer prematurely,
7740 and we have actually sent fewer units than planned.
7741 Fix-up the length field of the packet. Use the same
7742 number of characters as before. */
7743 plen += hexnumnstr (plen, (ULONGEST) units_written,
7744 plenlen);
7745 *plen = ':'; /* overwrite \0 from hexnumnstr() */
7746 }
7747 }
7748 else
7749 {
7750 /* Normal mode: Send target system values byte by byte, in
7751 increasing byte addresses. Each byte is encoded as a two hex
7752 value. */
7753 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
7754 units_written = todo_units;
7755 }
7756
7757 putpkt_binary (rs->buf, (int) (p - rs->buf));
7758 getpkt (&rs->buf, &rs->buf_size, 0);
7759
7760 if (rs->buf[0] == 'E')
7761 return TARGET_XFER_E_IO;
7762
7763 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
7764 send fewer units than we'd planned. */
7765 *xfered_len_units = (ULONGEST) units_written;
7766 return TARGET_XFER_OK;
7767 }
7768
7769 /* Write memory data directly to the remote machine.
7770 This does not inform the data cache; the data cache uses this.
7771 MEMADDR is the address in the remote memory space.
7772 MYADDR is the address of the buffer in our space.
7773 LEN is the number of bytes.
7774
7775 Return the transferred status, error or OK (an
7776 'enum target_xfer_status' value). Save the number of bytes
7777 transferred in *XFERED_LEN. Only transfer a single packet. */
7778
7779 static enum target_xfer_status
7780 remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
7781 int unit_size, ULONGEST *xfered_len)
7782 {
7783 char *packet_format = 0;
7784
7785 /* Check whether the target supports binary download. */
7786 check_binary_download (memaddr);
7787
7788 switch (packet_support (PACKET_X))
7789 {
7790 case PACKET_ENABLE:
7791 packet_format = "X";
7792 break;
7793 case PACKET_DISABLE:
7794 packet_format = "M";
7795 break;
7796 case PACKET_SUPPORT_UNKNOWN:
7797 internal_error (__FILE__, __LINE__,
7798 _("remote_write_bytes: bad internal state"));
7799 default:
7800 internal_error (__FILE__, __LINE__, _("bad switch"));
7801 }
7802
7803 return remote_write_bytes_aux (packet_format,
7804 memaddr, myaddr, len, unit_size, xfered_len,
7805 packet_format[0], 1);
7806 }
7807
7808 /* Read memory data directly from the remote machine.
7809 This does not use the data cache; the data cache uses this.
7810 MEMADDR is the address in the remote memory space.
7811 MYADDR is the address of the buffer in our space.
7812 LEN_UNITS is the number of addressable memory units to read..
7813 UNIT_SIZE is the length in bytes of an addressable unit.
7814
7815 Return the transferred status, error or OK (an
7816 'enum target_xfer_status' value). Save the number of bytes
7817 transferred in *XFERED_LEN_UNITS.
7818
7819 See the comment of remote_write_bytes_aux for an example of
7820 memory read/write exchange between gdb and the stub. */
7821
7822 static enum target_xfer_status
7823 remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
7824 int unit_size, ULONGEST *xfered_len_units)
7825 {
7826 struct remote_state *rs = get_remote_state ();
7827 int buf_size_bytes; /* Max size of packet output buffer. */
7828 char *p;
7829 int todo_units;
7830 int decoded_bytes;
7831
7832 buf_size_bytes = get_memory_read_packet_size ();
7833 /* The packet buffer will be large enough for the payload;
7834 get_memory_packet_size ensures this. */
7835
7836 /* Number of units that will fit. */
7837 todo_units = min (len_units, (buf_size_bytes / unit_size) / 2);
7838
7839 /* Construct "m"<memaddr>","<len>". */
7840 memaddr = remote_address_masked (memaddr);
7841 p = rs->buf;
7842 *p++ = 'm';
7843 p += hexnumstr (p, (ULONGEST) memaddr);
7844 *p++ = ',';
7845 p += hexnumstr (p, (ULONGEST) todo_units);
7846 *p = '\0';
7847 putpkt (rs->buf);
7848 getpkt (&rs->buf, &rs->buf_size, 0);
7849 if (rs->buf[0] == 'E'
7850 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
7851 && rs->buf[3] == '\0')
7852 return TARGET_XFER_E_IO;
7853 /* Reply describes memory byte by byte, each byte encoded as two hex
7854 characters. */
7855 p = rs->buf;
7856 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
7857 /* Return what we have. Let higher layers handle partial reads. */
7858 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
7859 return TARGET_XFER_OK;
7860 }
7861
7862 /* Using the set of read-only target sections of remote, read live
7863 read-only memory.
7864
7865 For interface/parameters/return description see target.h,
7866 to_xfer_partial. */
7867
7868 static enum target_xfer_status
7869 remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
7870 ULONGEST memaddr, ULONGEST len,
7871 int unit_size, ULONGEST *xfered_len)
7872 {
7873 struct target_section *secp;
7874 struct target_section_table *table;
7875
7876 secp = target_section_by_addr (ops, memaddr);
7877 if (secp != NULL
7878 && (bfd_get_section_flags (secp->the_bfd_section->owner,
7879 secp->the_bfd_section)
7880 & SEC_READONLY))
7881 {
7882 struct target_section *p;
7883 ULONGEST memend = memaddr + len;
7884
7885 table = target_get_section_table (ops);
7886
7887 for (p = table->sections; p < table->sections_end; p++)
7888 {
7889 if (memaddr >= p->addr)
7890 {
7891 if (memend <= p->endaddr)
7892 {
7893 /* Entire transfer is within this section. */
7894 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
7895 xfered_len);
7896 }
7897 else if (memaddr >= p->endaddr)
7898 {
7899 /* This section ends before the transfer starts. */
7900 continue;
7901 }
7902 else
7903 {
7904 /* This section overlaps the transfer. Just do half. */
7905 len = p->endaddr - memaddr;
7906 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
7907 xfered_len);
7908 }
7909 }
7910 }
7911 }
7912
7913 return TARGET_XFER_EOF;
7914 }
7915
7916 /* Similar to remote_read_bytes_1, but it reads from the remote stub
7917 first if the requested memory is unavailable in traceframe.
7918 Otherwise, fall back to remote_read_bytes_1. */
7919
7920 static enum target_xfer_status
7921 remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
7922 gdb_byte *myaddr, ULONGEST len, int unit_size,
7923 ULONGEST *xfered_len)
7924 {
7925 if (len == 0)
7926 return TARGET_XFER_EOF;
7927
7928 if (get_traceframe_number () != -1)
7929 {
7930 VEC(mem_range_s) *available;
7931
7932 /* If we fail to get the set of available memory, then the
7933 target does not support querying traceframe info, and so we
7934 attempt reading from the traceframe anyway (assuming the
7935 target implements the old QTro packet then). */
7936 if (traceframe_available_memory (&available, memaddr, len))
7937 {
7938 struct cleanup *old_chain;
7939
7940 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
7941
7942 if (VEC_empty (mem_range_s, available)
7943 || VEC_index (mem_range_s, available, 0)->start != memaddr)
7944 {
7945 enum target_xfer_status res;
7946
7947 /* Don't read into the traceframe's available
7948 memory. */
7949 if (!VEC_empty (mem_range_s, available))
7950 {
7951 LONGEST oldlen = len;
7952
7953 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
7954 gdb_assert (len <= oldlen);
7955 }
7956
7957 do_cleanups (old_chain);
7958
7959 /* This goes through the topmost target again. */
7960 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
7961 len, unit_size, xfered_len);
7962 if (res == TARGET_XFER_OK)
7963 return TARGET_XFER_OK;
7964 else
7965 {
7966 /* No use trying further, we know some memory starting
7967 at MEMADDR isn't available. */
7968 *xfered_len = len;
7969 return TARGET_XFER_UNAVAILABLE;
7970 }
7971 }
7972
7973 /* Don't try to read more than how much is available, in
7974 case the target implements the deprecated QTro packet to
7975 cater for older GDBs (the target's knowledge of read-only
7976 sections may be outdated by now). */
7977 len = VEC_index (mem_range_s, available, 0)->length;
7978
7979 do_cleanups (old_chain);
7980 }
7981 }
7982
7983 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
7984 }
7985
7986 \f
7987
7988 /* Sends a packet with content determined by the printf format string
7989 FORMAT and the remaining arguments, then gets the reply. Returns
7990 whether the packet was a success, a failure, or unknown. */
7991
7992 static enum packet_result remote_send_printf (const char *format, ...)
7993 ATTRIBUTE_PRINTF (1, 2);
7994
7995 static enum packet_result
7996 remote_send_printf (const char *format, ...)
7997 {
7998 struct remote_state *rs = get_remote_state ();
7999 int max_size = get_remote_packet_size ();
8000 va_list ap;
8001
8002 va_start (ap, format);
8003
8004 rs->buf[0] = '\0';
8005 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
8006 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
8007
8008 if (putpkt (rs->buf) < 0)
8009 error (_("Communication problem with target."));
8010
8011 rs->buf[0] = '\0';
8012 getpkt (&rs->buf, &rs->buf_size, 0);
8013
8014 return packet_check_result (rs->buf);
8015 }
8016
8017 static void
8018 restore_remote_timeout (void *p)
8019 {
8020 int value = *(int *)p;
8021
8022 remote_timeout = value;
8023 }
8024
8025 /* Flash writing can take quite some time. We'll set
8026 effectively infinite timeout for flash operations.
8027 In future, we'll need to decide on a better approach. */
8028 static const int remote_flash_timeout = 1000;
8029
8030 static void
8031 remote_flash_erase (struct target_ops *ops,
8032 ULONGEST address, LONGEST length)
8033 {
8034 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
8035 int saved_remote_timeout = remote_timeout;
8036 enum packet_result ret;
8037 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8038 &saved_remote_timeout);
8039
8040 remote_timeout = remote_flash_timeout;
8041
8042 ret = remote_send_printf ("vFlashErase:%s,%s",
8043 phex (address, addr_size),
8044 phex (length, 4));
8045 switch (ret)
8046 {
8047 case PACKET_UNKNOWN:
8048 error (_("Remote target does not support flash erase"));
8049 case PACKET_ERROR:
8050 error (_("Error erasing flash with vFlashErase packet"));
8051 default:
8052 break;
8053 }
8054
8055 do_cleanups (back_to);
8056 }
8057
8058 static enum target_xfer_status
8059 remote_flash_write (struct target_ops *ops, ULONGEST address,
8060 ULONGEST length, ULONGEST *xfered_len,
8061 const gdb_byte *data)
8062 {
8063 int saved_remote_timeout = remote_timeout;
8064 enum target_xfer_status ret;
8065 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8066 &saved_remote_timeout);
8067
8068 remote_timeout = remote_flash_timeout;
8069 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8070 xfered_len,'X', 0);
8071 do_cleanups (back_to);
8072
8073 return ret;
8074 }
8075
8076 static void
8077 remote_flash_done (struct target_ops *ops)
8078 {
8079 int saved_remote_timeout = remote_timeout;
8080 int ret;
8081 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8082 &saved_remote_timeout);
8083
8084 remote_timeout = remote_flash_timeout;
8085 ret = remote_send_printf ("vFlashDone");
8086 do_cleanups (back_to);
8087
8088 switch (ret)
8089 {
8090 case PACKET_UNKNOWN:
8091 error (_("Remote target does not support vFlashDone"));
8092 case PACKET_ERROR:
8093 error (_("Error finishing flash operation"));
8094 default:
8095 break;
8096 }
8097 }
8098
8099 static void
8100 remote_files_info (struct target_ops *ignore)
8101 {
8102 puts_filtered ("Debugging a target over a serial line.\n");
8103 }
8104 \f
8105 /* Stuff for dealing with the packets which are part of this protocol.
8106 See comment at top of file for details. */
8107
8108 /* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8109 error to higher layers. Called when a serial error is detected.
8110 The exception message is STRING, followed by a colon and a blank,
8111 the system error message for errno at function entry and final dot
8112 for output compatibility with throw_perror_with_name. */
8113
8114 static void
8115 unpush_and_perror (const char *string)
8116 {
8117 int saved_errno = errno;
8118
8119 remote_unpush_target ();
8120 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8121 safe_strerror (saved_errno));
8122 }
8123
8124 /* Read a single character from the remote end. The current quit
8125 handler is overridden to avoid quitting in the middle of packet
8126 sequence, as that would break communication with the remote server.
8127 See remote_serial_quit_handler for more detail. */
8128
8129 static int
8130 readchar (int timeout)
8131 {
8132 int ch;
8133 struct remote_state *rs = get_remote_state ();
8134 struct cleanup *old_chain;
8135
8136 old_chain = make_cleanup_override_quit_handler (remote_serial_quit_handler);
8137
8138 rs->got_ctrlc_during_io = 0;
8139
8140 ch = serial_readchar (rs->remote_desc, timeout);
8141
8142 if (rs->got_ctrlc_during_io)
8143 set_quit_flag ();
8144
8145 do_cleanups (old_chain);
8146
8147 if (ch >= 0)
8148 return ch;
8149
8150 switch ((enum serial_rc) ch)
8151 {
8152 case SERIAL_EOF:
8153 remote_unpush_target ();
8154 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
8155 /* no return */
8156 case SERIAL_ERROR:
8157 unpush_and_perror (_("Remote communication error. "
8158 "Target disconnected."));
8159 /* no return */
8160 case SERIAL_TIMEOUT:
8161 break;
8162 }
8163 return ch;
8164 }
8165
8166 /* Wrapper for serial_write that closes the target and throws if
8167 writing fails. The current quit handler is overridden to avoid
8168 quitting in the middle of packet sequence, as that would break
8169 communication with the remote server. See
8170 remote_serial_quit_handler for more detail. */
8171
8172 static void
8173 remote_serial_write (const char *str, int len)
8174 {
8175 struct remote_state *rs = get_remote_state ();
8176 struct cleanup *old_chain;
8177
8178 old_chain = make_cleanup_override_quit_handler (remote_serial_quit_handler);
8179
8180 rs->got_ctrlc_during_io = 0;
8181
8182 if (serial_write (rs->remote_desc, str, len))
8183 {
8184 unpush_and_perror (_("Remote communication error. "
8185 "Target disconnected."));
8186 }
8187
8188 if (rs->got_ctrlc_during_io)
8189 set_quit_flag ();
8190
8191 do_cleanups (old_chain);
8192 }
8193
8194 /* Send the command in *BUF to the remote machine, and read the reply
8195 into *BUF. Report an error if we get an error reply. Resize
8196 *BUF using xrealloc if necessary to hold the result, and update
8197 *SIZEOF_BUF. */
8198
8199 static void
8200 remote_send (char **buf,
8201 long *sizeof_buf)
8202 {
8203 putpkt (*buf);
8204 getpkt (buf, sizeof_buf, 0);
8205
8206 if ((*buf)[0] == 'E')
8207 error (_("Remote failure reply: %s"), *buf);
8208 }
8209
8210 /* Return a pointer to an xmalloc'ed string representing an escaped
8211 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
8212 etc. The caller is responsible for releasing the returned
8213 memory. */
8214
8215 static char *
8216 escape_buffer (const char *buf, int n)
8217 {
8218 struct cleanup *old_chain;
8219 struct ui_file *stb;
8220 char *str;
8221
8222 stb = mem_fileopen ();
8223 old_chain = make_cleanup_ui_file_delete (stb);
8224
8225 fputstrn_unfiltered (buf, n, '\\', stb);
8226 str = ui_file_xstrdup (stb, NULL);
8227 do_cleanups (old_chain);
8228 return str;
8229 }
8230
8231 /* Display a null-terminated packet on stdout, for debugging, using C
8232 string notation. */
8233
8234 static void
8235 print_packet (const char *buf)
8236 {
8237 puts_filtered ("\"");
8238 fputstr_filtered (buf, '"', gdb_stdout);
8239 puts_filtered ("\"");
8240 }
8241
8242 int
8243 putpkt (const char *buf)
8244 {
8245 return putpkt_binary (buf, strlen (buf));
8246 }
8247
8248 /* Send a packet to the remote machine, with error checking. The data
8249 of the packet is in BUF. The string in BUF can be at most
8250 get_remote_packet_size () - 5 to account for the $, # and checksum,
8251 and for a possible /0 if we are debugging (remote_debug) and want
8252 to print the sent packet as a string. */
8253
8254 static int
8255 putpkt_binary (const char *buf, int cnt)
8256 {
8257 struct remote_state *rs = get_remote_state ();
8258 int i;
8259 unsigned char csum = 0;
8260 char *buf2 = (char *) xmalloc (cnt + 6);
8261 struct cleanup *old_chain = make_cleanup (xfree, buf2);
8262
8263 int ch;
8264 int tcount = 0;
8265 char *p;
8266
8267 /* Catch cases like trying to read memory or listing threads while
8268 we're waiting for a stop reply. The remote server wouldn't be
8269 ready to handle this request, so we'd hang and timeout. We don't
8270 have to worry about this in synchronous mode, because in that
8271 case it's not possible to issue a command while the target is
8272 running. This is not a problem in non-stop mode, because in that
8273 case, the stub is always ready to process serial input. */
8274 if (!target_is_non_stop_p ()
8275 && target_is_async_p ()
8276 && rs->waiting_for_stop_reply)
8277 {
8278 error (_("Cannot execute this command while the target is running.\n"
8279 "Use the \"interrupt\" command to stop the target\n"
8280 "and then try again."));
8281 }
8282
8283 /* We're sending out a new packet. Make sure we don't look at a
8284 stale cached response. */
8285 rs->cached_wait_status = 0;
8286
8287 /* Copy the packet into buffer BUF2, encapsulating it
8288 and giving it a checksum. */
8289
8290 p = buf2;
8291 *p++ = '$';
8292
8293 for (i = 0; i < cnt; i++)
8294 {
8295 csum += buf[i];
8296 *p++ = buf[i];
8297 }
8298 *p++ = '#';
8299 *p++ = tohex ((csum >> 4) & 0xf);
8300 *p++ = tohex (csum & 0xf);
8301
8302 /* Send it over and over until we get a positive ack. */
8303
8304 while (1)
8305 {
8306 int started_error_output = 0;
8307
8308 if (remote_debug)
8309 {
8310 struct cleanup *old_chain;
8311 char *str;
8312
8313 *p = '\0';
8314 str = escape_buffer (buf2, p - buf2);
8315 old_chain = make_cleanup (xfree, str);
8316 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
8317 gdb_flush (gdb_stdlog);
8318 do_cleanups (old_chain);
8319 }
8320 remote_serial_write (buf2, p - buf2);
8321
8322 /* If this is a no acks version of the remote protocol, send the
8323 packet and move on. */
8324 if (rs->noack_mode)
8325 break;
8326
8327 /* Read until either a timeout occurs (-2) or '+' is read.
8328 Handle any notification that arrives in the mean time. */
8329 while (1)
8330 {
8331 ch = readchar (remote_timeout);
8332
8333 if (remote_debug)
8334 {
8335 switch (ch)
8336 {
8337 case '+':
8338 case '-':
8339 case SERIAL_TIMEOUT:
8340 case '$':
8341 case '%':
8342 if (started_error_output)
8343 {
8344 putchar_unfiltered ('\n');
8345 started_error_output = 0;
8346 }
8347 }
8348 }
8349
8350 switch (ch)
8351 {
8352 case '+':
8353 if (remote_debug)
8354 fprintf_unfiltered (gdb_stdlog, "Ack\n");
8355 do_cleanups (old_chain);
8356 return 1;
8357 case '-':
8358 if (remote_debug)
8359 fprintf_unfiltered (gdb_stdlog, "Nak\n");
8360 /* FALLTHROUGH */
8361 case SERIAL_TIMEOUT:
8362 tcount++;
8363 if (tcount > 3)
8364 {
8365 do_cleanups (old_chain);
8366 return 0;
8367 }
8368 break; /* Retransmit buffer. */
8369 case '$':
8370 {
8371 if (remote_debug)
8372 fprintf_unfiltered (gdb_stdlog,
8373 "Packet instead of Ack, ignoring it\n");
8374 /* It's probably an old response sent because an ACK
8375 was lost. Gobble up the packet and ack it so it
8376 doesn't get retransmitted when we resend this
8377 packet. */
8378 skip_frame ();
8379 remote_serial_write ("+", 1);
8380 continue; /* Now, go look for +. */
8381 }
8382
8383 case '%':
8384 {
8385 int val;
8386
8387 /* If we got a notification, handle it, and go back to looking
8388 for an ack. */
8389 /* We've found the start of a notification. Now
8390 collect the data. */
8391 val = read_frame (&rs->buf, &rs->buf_size);
8392 if (val >= 0)
8393 {
8394 if (remote_debug)
8395 {
8396 struct cleanup *old_chain;
8397 char *str;
8398
8399 str = escape_buffer (rs->buf, val);
8400 old_chain = make_cleanup (xfree, str);
8401 fprintf_unfiltered (gdb_stdlog,
8402 " Notification received: %s\n",
8403 str);
8404 do_cleanups (old_chain);
8405 }
8406 handle_notification (rs->notif_state, rs->buf);
8407 /* We're in sync now, rewait for the ack. */
8408 tcount = 0;
8409 }
8410 else
8411 {
8412 if (remote_debug)
8413 {
8414 if (!started_error_output)
8415 {
8416 started_error_output = 1;
8417 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8418 }
8419 fputc_unfiltered (ch & 0177, gdb_stdlog);
8420 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8421 }
8422 }
8423 continue;
8424 }
8425 /* fall-through */
8426 default:
8427 if (remote_debug)
8428 {
8429 if (!started_error_output)
8430 {
8431 started_error_output = 1;
8432 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8433 }
8434 fputc_unfiltered (ch & 0177, gdb_stdlog);
8435 }
8436 continue;
8437 }
8438 break; /* Here to retransmit. */
8439 }
8440
8441 #if 0
8442 /* This is wrong. If doing a long backtrace, the user should be
8443 able to get out next time we call QUIT, without anything as
8444 violent as interrupt_query. If we want to provide a way out of
8445 here without getting to the next QUIT, it should be based on
8446 hitting ^C twice as in remote_wait. */
8447 if (quit_flag)
8448 {
8449 quit_flag = 0;
8450 interrupt_query ();
8451 }
8452 #endif
8453 }
8454
8455 do_cleanups (old_chain);
8456 return 0;
8457 }
8458
8459 /* Come here after finding the start of a frame when we expected an
8460 ack. Do our best to discard the rest of this packet. */
8461
8462 static void
8463 skip_frame (void)
8464 {
8465 int c;
8466
8467 while (1)
8468 {
8469 c = readchar (remote_timeout);
8470 switch (c)
8471 {
8472 case SERIAL_TIMEOUT:
8473 /* Nothing we can do. */
8474 return;
8475 case '#':
8476 /* Discard the two bytes of checksum and stop. */
8477 c = readchar (remote_timeout);
8478 if (c >= 0)
8479 c = readchar (remote_timeout);
8480
8481 return;
8482 case '*': /* Run length encoding. */
8483 /* Discard the repeat count. */
8484 c = readchar (remote_timeout);
8485 if (c < 0)
8486 return;
8487 break;
8488 default:
8489 /* A regular character. */
8490 break;
8491 }
8492 }
8493 }
8494
8495 /* Come here after finding the start of the frame. Collect the rest
8496 into *BUF, verifying the checksum, length, and handling run-length
8497 compression. NUL terminate the buffer. If there is not enough room,
8498 expand *BUF using xrealloc.
8499
8500 Returns -1 on error, number of characters in buffer (ignoring the
8501 trailing NULL) on success. (could be extended to return one of the
8502 SERIAL status indications). */
8503
8504 static long
8505 read_frame (char **buf_p,
8506 long *sizeof_buf)
8507 {
8508 unsigned char csum;
8509 long bc;
8510 int c;
8511 char *buf = *buf_p;
8512 struct remote_state *rs = get_remote_state ();
8513
8514 csum = 0;
8515 bc = 0;
8516
8517 while (1)
8518 {
8519 c = readchar (remote_timeout);
8520 switch (c)
8521 {
8522 case SERIAL_TIMEOUT:
8523 if (remote_debug)
8524 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
8525 return -1;
8526 case '$':
8527 if (remote_debug)
8528 fputs_filtered ("Saw new packet start in middle of old one\n",
8529 gdb_stdlog);
8530 return -1; /* Start a new packet, count retries. */
8531 case '#':
8532 {
8533 unsigned char pktcsum;
8534 int check_0 = 0;
8535 int check_1 = 0;
8536
8537 buf[bc] = '\0';
8538
8539 check_0 = readchar (remote_timeout);
8540 if (check_0 >= 0)
8541 check_1 = readchar (remote_timeout);
8542
8543 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8544 {
8545 if (remote_debug)
8546 fputs_filtered ("Timeout in checksum, retrying\n",
8547 gdb_stdlog);
8548 return -1;
8549 }
8550 else if (check_0 < 0 || check_1 < 0)
8551 {
8552 if (remote_debug)
8553 fputs_filtered ("Communication error in checksum\n",
8554 gdb_stdlog);
8555 return -1;
8556 }
8557
8558 /* Don't recompute the checksum; with no ack packets we
8559 don't have any way to indicate a packet retransmission
8560 is necessary. */
8561 if (rs->noack_mode)
8562 return bc;
8563
8564 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
8565 if (csum == pktcsum)
8566 return bc;
8567
8568 if (remote_debug)
8569 {
8570 struct cleanup *old_chain;
8571 char *str;
8572
8573 str = escape_buffer (buf, bc);
8574 old_chain = make_cleanup (xfree, str);
8575 fprintf_unfiltered (gdb_stdlog,
8576 "Bad checksum, sentsum=0x%x, "
8577 "csum=0x%x, buf=%s\n",
8578 pktcsum, csum, str);
8579 do_cleanups (old_chain);
8580 }
8581 /* Number of characters in buffer ignoring trailing
8582 NULL. */
8583 return -1;
8584 }
8585 case '*': /* Run length encoding. */
8586 {
8587 int repeat;
8588
8589 csum += c;
8590 c = readchar (remote_timeout);
8591 csum += c;
8592 repeat = c - ' ' + 3; /* Compute repeat count. */
8593
8594 /* The character before ``*'' is repeated. */
8595
8596 if (repeat > 0 && repeat <= 255 && bc > 0)
8597 {
8598 if (bc + repeat - 1 >= *sizeof_buf - 1)
8599 {
8600 /* Make some more room in the buffer. */
8601 *sizeof_buf += repeat;
8602 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
8603 buf = *buf_p;
8604 }
8605
8606 memset (&buf[bc], buf[bc - 1], repeat);
8607 bc += repeat;
8608 continue;
8609 }
8610
8611 buf[bc] = '\0';
8612 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
8613 return -1;
8614 }
8615 default:
8616 if (bc >= *sizeof_buf - 1)
8617 {
8618 /* Make some more room in the buffer. */
8619 *sizeof_buf *= 2;
8620 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
8621 buf = *buf_p;
8622 }
8623
8624 buf[bc++] = c;
8625 csum += c;
8626 continue;
8627 }
8628 }
8629 }
8630
8631 /* Read a packet from the remote machine, with error checking, and
8632 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8633 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8634 rather than timing out; this is used (in synchronous mode) to wait
8635 for a target that is is executing user code to stop. */
8636 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
8637 don't have to change all the calls to getpkt to deal with the
8638 return value, because at the moment I don't know what the right
8639 thing to do it for those. */
8640 void
8641 getpkt (char **buf,
8642 long *sizeof_buf,
8643 int forever)
8644 {
8645 getpkt_sane (buf, sizeof_buf, forever);
8646 }
8647
8648
8649 /* Read a packet from the remote machine, with error checking, and
8650 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8651 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8652 rather than timing out; this is used (in synchronous mode) to wait
8653 for a target that is is executing user code to stop. If FOREVER ==
8654 0, this function is allowed to time out gracefully and return an
8655 indication of this to the caller. Otherwise return the number of
8656 bytes read. If EXPECTING_NOTIF, consider receiving a notification
8657 enough reason to return to the caller. *IS_NOTIF is an output
8658 boolean that indicates whether *BUF holds a notification or not
8659 (a regular packet). */
8660
8661 static int
8662 getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
8663 int expecting_notif, int *is_notif)
8664 {
8665 struct remote_state *rs = get_remote_state ();
8666 int c;
8667 int tries;
8668 int timeout;
8669 int val = -1;
8670
8671 /* We're reading a new response. Make sure we don't look at a
8672 previously cached response. */
8673 rs->cached_wait_status = 0;
8674
8675 strcpy (*buf, "timeout");
8676
8677 if (forever)
8678 timeout = watchdog > 0 ? watchdog : -1;
8679 else if (expecting_notif)
8680 timeout = 0; /* There should already be a char in the buffer. If
8681 not, bail out. */
8682 else
8683 timeout = remote_timeout;
8684
8685 #define MAX_TRIES 3
8686
8687 /* Process any number of notifications, and then return when
8688 we get a packet. */
8689 for (;;)
8690 {
8691 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
8692 times. */
8693 for (tries = 1; tries <= MAX_TRIES; tries++)
8694 {
8695 /* This can loop forever if the remote side sends us
8696 characters continuously, but if it pauses, we'll get
8697 SERIAL_TIMEOUT from readchar because of timeout. Then
8698 we'll count that as a retry.
8699
8700 Note that even when forever is set, we will only wait
8701 forever prior to the start of a packet. After that, we
8702 expect characters to arrive at a brisk pace. They should
8703 show up within remote_timeout intervals. */
8704 do
8705 c = readchar (timeout);
8706 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
8707
8708 if (c == SERIAL_TIMEOUT)
8709 {
8710 if (expecting_notif)
8711 return -1; /* Don't complain, it's normal to not get
8712 anything in this case. */
8713
8714 if (forever) /* Watchdog went off? Kill the target. */
8715 {
8716 remote_unpush_target ();
8717 throw_error (TARGET_CLOSE_ERROR,
8718 _("Watchdog timeout has expired. "
8719 "Target detached."));
8720 }
8721 if (remote_debug)
8722 fputs_filtered ("Timed out.\n", gdb_stdlog);
8723 }
8724 else
8725 {
8726 /* We've found the start of a packet or notification.
8727 Now collect the data. */
8728 val = read_frame (buf, sizeof_buf);
8729 if (val >= 0)
8730 break;
8731 }
8732
8733 remote_serial_write ("-", 1);
8734 }
8735
8736 if (tries > MAX_TRIES)
8737 {
8738 /* We have tried hard enough, and just can't receive the
8739 packet/notification. Give up. */
8740 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
8741
8742 /* Skip the ack char if we're in no-ack mode. */
8743 if (!rs->noack_mode)
8744 remote_serial_write ("+", 1);
8745 return -1;
8746 }
8747
8748 /* If we got an ordinary packet, return that to our caller. */
8749 if (c == '$')
8750 {
8751 if (remote_debug)
8752 {
8753 struct cleanup *old_chain;
8754 char *str;
8755
8756 str = escape_buffer (*buf, val);
8757 old_chain = make_cleanup (xfree, str);
8758 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
8759 do_cleanups (old_chain);
8760 }
8761
8762 /* Skip the ack char if we're in no-ack mode. */
8763 if (!rs->noack_mode)
8764 remote_serial_write ("+", 1);
8765 if (is_notif != NULL)
8766 *is_notif = 0;
8767 return val;
8768 }
8769
8770 /* If we got a notification, handle it, and go back to looking
8771 for a packet. */
8772 else
8773 {
8774 gdb_assert (c == '%');
8775
8776 if (remote_debug)
8777 {
8778 struct cleanup *old_chain;
8779 char *str;
8780
8781 str = escape_buffer (*buf, val);
8782 old_chain = make_cleanup (xfree, str);
8783 fprintf_unfiltered (gdb_stdlog,
8784 " Notification received: %s\n",
8785 str);
8786 do_cleanups (old_chain);
8787 }
8788 if (is_notif != NULL)
8789 *is_notif = 1;
8790
8791 handle_notification (rs->notif_state, *buf);
8792
8793 /* Notifications require no acknowledgement. */
8794
8795 if (expecting_notif)
8796 return val;
8797 }
8798 }
8799 }
8800
8801 static int
8802 getpkt_sane (char **buf, long *sizeof_buf, int forever)
8803 {
8804 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
8805 }
8806
8807 static int
8808 getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
8809 int *is_notif)
8810 {
8811 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
8812 is_notif);
8813 }
8814
8815 /* Check whether EVENT is a fork event for the process specified
8816 by the pid passed in DATA, and if it is, kill the fork child. */
8817
8818 static int
8819 kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
8820 QUEUE_ITER (stop_reply_p) *iter,
8821 stop_reply_p event,
8822 void *data)
8823 {
8824 struct queue_iter_param *param = (struct queue_iter_param *) data;
8825 int parent_pid = *(int *) param->input;
8826
8827 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
8828 {
8829 struct remote_state *rs = get_remote_state ();
8830 int child_pid = ptid_get_pid (event->ws.value.related_pid);
8831 int res;
8832
8833 res = remote_vkill (child_pid, rs);
8834 if (res != 0)
8835 error (_("Can't kill fork child process %d"), child_pid);
8836 }
8837
8838 return 1;
8839 }
8840
8841 /* Kill any new fork children of process PID that haven't been
8842 processed by follow_fork. */
8843
8844 static void
8845 kill_new_fork_children (int pid, struct remote_state *rs)
8846 {
8847 struct thread_info *thread;
8848 struct notif_client *notif = &notif_client_stop;
8849 struct queue_iter_param param;
8850
8851 /* Kill the fork child threads of any threads in process PID
8852 that are stopped at a fork event. */
8853 ALL_NON_EXITED_THREADS (thread)
8854 {
8855 struct target_waitstatus *ws = &thread->pending_follow;
8856
8857 if (is_pending_fork_parent (ws, pid, thread->ptid))
8858 {
8859 struct remote_state *rs = get_remote_state ();
8860 int child_pid = ptid_get_pid (ws->value.related_pid);
8861 int res;
8862
8863 res = remote_vkill (child_pid, rs);
8864 if (res != 0)
8865 error (_("Can't kill fork child process %d"), child_pid);
8866 }
8867 }
8868
8869 /* Check for any pending fork events (not reported or processed yet)
8870 in process PID and kill those fork child threads as well. */
8871 remote_notif_get_pending_events (notif);
8872 param.input = &pid;
8873 param.output = NULL;
8874 QUEUE_iterate (stop_reply_p, stop_reply_queue,
8875 kill_child_of_pending_fork, &param);
8876 }
8877
8878 \f
8879 /* Target hook to kill the current inferior. */
8880
8881 static void
8882 remote_kill (struct target_ops *ops)
8883 {
8884 int res = -1;
8885 int pid = ptid_get_pid (inferior_ptid);
8886 struct remote_state *rs = get_remote_state ();
8887
8888 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
8889 {
8890 /* If we're stopped while forking and we haven't followed yet,
8891 kill the child task. We need to do this before killing the
8892 parent task because if this is a vfork then the parent will
8893 be sleeping. */
8894 kill_new_fork_children (pid, rs);
8895
8896 res = remote_vkill (pid, rs);
8897 if (res == 0)
8898 {
8899 target_mourn_inferior ();
8900 return;
8901 }
8902 }
8903
8904 /* If we are in 'target remote' mode and we are killing the only
8905 inferior, then we will tell gdbserver to exit and unpush the
8906 target. */
8907 if (res == -1 && !remote_multi_process_p (rs)
8908 && number_of_live_inferiors () == 1)
8909 {
8910 remote_kill_k ();
8911
8912 /* We've killed the remote end, we get to mourn it. If we are
8913 not in extended mode, mourning the inferior also unpushes
8914 remote_ops from the target stack, which closes the remote
8915 connection. */
8916 target_mourn_inferior ();
8917
8918 return;
8919 }
8920
8921 error (_("Can't kill process"));
8922 }
8923
8924 /* Send a kill request to the target using the 'vKill' packet. */
8925
8926 static int
8927 remote_vkill (int pid, struct remote_state *rs)
8928 {
8929 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
8930 return -1;
8931
8932 /* Tell the remote target to detach. */
8933 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
8934 putpkt (rs->buf);
8935 getpkt (&rs->buf, &rs->buf_size, 0);
8936
8937 switch (packet_ok (rs->buf,
8938 &remote_protocol_packets[PACKET_vKill]))
8939 {
8940 case PACKET_OK:
8941 return 0;
8942 case PACKET_ERROR:
8943 return 1;
8944 case PACKET_UNKNOWN:
8945 return -1;
8946 default:
8947 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8948 }
8949 }
8950
8951 /* Send a kill request to the target using the 'k' packet. */
8952
8953 static void
8954 remote_kill_k (void)
8955 {
8956 /* Catch errors so the user can quit from gdb even when we
8957 aren't on speaking terms with the remote system. */
8958 TRY
8959 {
8960 putpkt ("k");
8961 }
8962 CATCH (ex, RETURN_MASK_ERROR)
8963 {
8964 if (ex.error == TARGET_CLOSE_ERROR)
8965 {
8966 /* If we got an (EOF) error that caused the target
8967 to go away, then we're done, that's what we wanted.
8968 "k" is susceptible to cause a premature EOF, given
8969 that the remote server isn't actually required to
8970 reply to "k", and it can happen that it doesn't
8971 even get to reply ACK to the "k". */
8972 return;
8973 }
8974
8975 /* Otherwise, something went wrong. We didn't actually kill
8976 the target. Just propagate the exception, and let the
8977 user or higher layers decide what to do. */
8978 throw_exception (ex);
8979 }
8980 END_CATCH
8981 }
8982
8983 static void
8984 remote_mourn (struct target_ops *target)
8985 {
8986 struct remote_state *rs = get_remote_state ();
8987
8988 /* In 'target remote' mode with one inferior, we close the connection. */
8989 if (!rs->extended && number_of_live_inferiors () <= 1)
8990 {
8991 unpush_target (target);
8992
8993 /* remote_close takes care of doing most of the clean up. */
8994 generic_mourn_inferior ();
8995 return;
8996 }
8997
8998 /* In case we got here due to an error, but we're going to stay
8999 connected. */
9000 rs->waiting_for_stop_reply = 0;
9001
9002 /* If the current general thread belonged to the process we just
9003 detached from or has exited, the remote side current general
9004 thread becomes undefined. Considering a case like this:
9005
9006 - We just got here due to a detach.
9007 - The process that we're detaching from happens to immediately
9008 report a global breakpoint being hit in non-stop mode, in the
9009 same thread we had selected before.
9010 - GDB attaches to this process again.
9011 - This event happens to be the next event we handle.
9012
9013 GDB would consider that the current general thread didn't need to
9014 be set on the stub side (with Hg), since for all it knew,
9015 GENERAL_THREAD hadn't changed.
9016
9017 Notice that although in all-stop mode, the remote server always
9018 sets the current thread to the thread reporting the stop event,
9019 that doesn't happen in non-stop mode; in non-stop, the stub *must
9020 not* change the current thread when reporting a breakpoint hit,
9021 due to the decoupling of event reporting and event handling.
9022
9023 To keep things simple, we always invalidate our notion of the
9024 current thread. */
9025 record_currthread (rs, minus_one_ptid);
9026
9027 /* Call common code to mark the inferior as not running. */
9028 generic_mourn_inferior ();
9029
9030 if (!have_inferiors ())
9031 {
9032 if (!remote_multi_process_p (rs))
9033 {
9034 /* Check whether the target is running now - some remote stubs
9035 automatically restart after kill. */
9036 putpkt ("?");
9037 getpkt (&rs->buf, &rs->buf_size, 0);
9038
9039 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9040 {
9041 /* Assume that the target has been restarted. Set
9042 inferior_ptid so that bits of core GDB realizes
9043 there's something here, e.g., so that the user can
9044 say "kill" again. */
9045 inferior_ptid = magic_null_ptid;
9046 }
9047 }
9048 }
9049 }
9050
9051 static int
9052 extended_remote_supports_disable_randomization (struct target_ops *self)
9053 {
9054 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
9055 }
9056
9057 static void
9058 extended_remote_disable_randomization (int val)
9059 {
9060 struct remote_state *rs = get_remote_state ();
9061 char *reply;
9062
9063 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9064 val);
9065 putpkt (rs->buf);
9066 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
9067 if (*reply == '\0')
9068 error (_("Target does not support QDisableRandomization."));
9069 if (strcmp (reply, "OK") != 0)
9070 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9071 }
9072
9073 static int
9074 extended_remote_run (char *args)
9075 {
9076 struct remote_state *rs = get_remote_state ();
9077 int len;
9078 const char *remote_exec_file = get_remote_exec_file ();
9079
9080 /* If the user has disabled vRun support, or we have detected that
9081 support is not available, do not try it. */
9082 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
9083 return -1;
9084
9085 strcpy (rs->buf, "vRun;");
9086 len = strlen (rs->buf);
9087
9088 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9089 error (_("Remote file name too long for run packet"));
9090 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9091 strlen (remote_exec_file));
9092
9093 gdb_assert (args != NULL);
9094 if (*args)
9095 {
9096 struct cleanup *back_to;
9097 int i;
9098 char **argv;
9099
9100 argv = gdb_buildargv (args);
9101 back_to = make_cleanup_freeargv (argv);
9102 for (i = 0; argv[i] != NULL; i++)
9103 {
9104 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9105 error (_("Argument list too long for run packet"));
9106 rs->buf[len++] = ';';
9107 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9108 strlen (argv[i]));
9109 }
9110 do_cleanups (back_to);
9111 }
9112
9113 rs->buf[len++] = '\0';
9114
9115 putpkt (rs->buf);
9116 getpkt (&rs->buf, &rs->buf_size, 0);
9117
9118 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
9119 {
9120 case PACKET_OK:
9121 /* We have a wait response. All is well. */
9122 return 0;
9123 case PACKET_UNKNOWN:
9124 return -1;
9125 case PACKET_ERROR:
9126 if (remote_exec_file[0] == '\0')
9127 error (_("Running the default executable on the remote target failed; "
9128 "try \"set remote exec-file\"?"));
9129 else
9130 error (_("Running \"%s\" on the remote target failed"),
9131 remote_exec_file);
9132 default:
9133 gdb_assert_not_reached (_("bad switch"));
9134 }
9135 }
9136
9137 /* In the extended protocol we want to be able to do things like
9138 "run" and have them basically work as expected. So we need
9139 a special create_inferior function. We support changing the
9140 executable file and the command line arguments, but not the
9141 environment. */
9142
9143 static void
9144 extended_remote_create_inferior (struct target_ops *ops,
9145 char *exec_file, char *args,
9146 char **env, int from_tty)
9147 {
9148 int run_worked;
9149 char *stop_reply;
9150 struct remote_state *rs = get_remote_state ();
9151 const char *remote_exec_file = get_remote_exec_file ();
9152
9153 /* If running asynchronously, register the target file descriptor
9154 with the event loop. */
9155 if (target_can_async_p ())
9156 target_async (1);
9157
9158 /* Disable address space randomization if requested (and supported). */
9159 if (extended_remote_supports_disable_randomization (ops))
9160 extended_remote_disable_randomization (disable_randomization);
9161
9162 /* Now restart the remote server. */
9163 run_worked = extended_remote_run (args) != -1;
9164 if (!run_worked)
9165 {
9166 /* vRun was not supported. Fail if we need it to do what the
9167 user requested. */
9168 if (remote_exec_file[0])
9169 error (_("Remote target does not support \"set remote exec-file\""));
9170 if (args[0])
9171 error (_("Remote target does not support \"set args\" or run <ARGS>"));
9172
9173 /* Fall back to "R". */
9174 extended_remote_restart ();
9175 }
9176
9177 if (!have_inferiors ())
9178 {
9179 /* Clean up from the last time we ran, before we mark the target
9180 running again. This will mark breakpoints uninserted, and
9181 get_offsets may insert breakpoints. */
9182 init_thread_list ();
9183 init_wait_for_inferior ();
9184 }
9185
9186 /* vRun's success return is a stop reply. */
9187 stop_reply = run_worked ? rs->buf : NULL;
9188 add_current_inferior_and_thread (stop_reply);
9189
9190 /* Get updated offsets, if the stub uses qOffsets. */
9191 get_offsets ();
9192 }
9193 \f
9194
9195 /* Given a location's target info BP_TGT and the packet buffer BUF, output
9196 the list of conditions (in agent expression bytecode format), if any, the
9197 target needs to evaluate. The output is placed into the packet buffer
9198 started from BUF and ended at BUF_END. */
9199
9200 static int
9201 remote_add_target_side_condition (struct gdbarch *gdbarch,
9202 struct bp_target_info *bp_tgt, char *buf,
9203 char *buf_end)
9204 {
9205 struct agent_expr *aexpr = NULL;
9206 int i, ix;
9207
9208 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
9209 return 0;
9210
9211 buf += strlen (buf);
9212 xsnprintf (buf, buf_end - buf, "%s", ";");
9213 buf++;
9214
9215 /* Send conditions to the target and free the vector. */
9216 for (ix = 0;
9217 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
9218 ix++)
9219 {
9220 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
9221 buf += strlen (buf);
9222 for (i = 0; i < aexpr->len; ++i)
9223 buf = pack_hex_byte (buf, aexpr->buf[i]);
9224 *buf = '\0';
9225 }
9226 return 0;
9227 }
9228
9229 static void
9230 remote_add_target_side_commands (struct gdbarch *gdbarch,
9231 struct bp_target_info *bp_tgt, char *buf)
9232 {
9233 struct agent_expr *aexpr = NULL;
9234 int i, ix;
9235
9236 if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
9237 return;
9238
9239 buf += strlen (buf);
9240
9241 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9242 buf += strlen (buf);
9243
9244 /* Concatenate all the agent expressions that are commands into the
9245 cmds parameter. */
9246 for (ix = 0;
9247 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
9248 ix++)
9249 {
9250 sprintf (buf, "X%x,", aexpr->len);
9251 buf += strlen (buf);
9252 for (i = 0; i < aexpr->len; ++i)
9253 buf = pack_hex_byte (buf, aexpr->buf[i]);
9254 *buf = '\0';
9255 }
9256 }
9257
9258 /* Insert a breakpoint. On targets that have software breakpoint
9259 support, we ask the remote target to do the work; on targets
9260 which don't, we insert a traditional memory breakpoint. */
9261
9262 static int
9263 remote_insert_breakpoint (struct target_ops *ops,
9264 struct gdbarch *gdbarch,
9265 struct bp_target_info *bp_tgt)
9266 {
9267 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9268 If it succeeds, then set the support to PACKET_ENABLE. If it
9269 fails, and the user has explicitly requested the Z support then
9270 report an error, otherwise, mark it disabled and go on. */
9271
9272 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
9273 {
9274 CORE_ADDR addr = bp_tgt->reqstd_address;
9275 struct remote_state *rs;
9276 char *p, *endbuf;
9277 int bpsize;
9278
9279 /* Make sure the remote is pointing at the right process, if
9280 necessary. */
9281 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9282 set_general_process ();
9283
9284 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
9285
9286 rs = get_remote_state ();
9287 p = rs->buf;
9288 endbuf = rs->buf + get_remote_packet_size ();
9289
9290 *(p++) = 'Z';
9291 *(p++) = '0';
9292 *(p++) = ',';
9293 addr = (ULONGEST) remote_address_masked (addr);
9294 p += hexnumstr (p, addr);
9295 xsnprintf (p, endbuf - p, ",%d", bpsize);
9296
9297 if (remote_supports_cond_breakpoints (ops))
9298 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
9299
9300 if (remote_can_run_breakpoint_commands (ops))
9301 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9302
9303 putpkt (rs->buf);
9304 getpkt (&rs->buf, &rs->buf_size, 0);
9305
9306 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
9307 {
9308 case PACKET_ERROR:
9309 return -1;
9310 case PACKET_OK:
9311 bp_tgt->placed_address = addr;
9312 bp_tgt->placed_size = bpsize;
9313 return 0;
9314 case PACKET_UNKNOWN:
9315 break;
9316 }
9317 }
9318
9319 /* If this breakpoint has target-side commands but this stub doesn't
9320 support Z0 packets, throw error. */
9321 if (!VEC_empty (agent_expr_p, bp_tgt->tcommands))
9322 throw_error (NOT_SUPPORTED_ERROR, _("\
9323 Target doesn't support breakpoints that have target side commands."));
9324
9325 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
9326 }
9327
9328 static int
9329 remote_remove_breakpoint (struct target_ops *ops,
9330 struct gdbarch *gdbarch,
9331 struct bp_target_info *bp_tgt)
9332 {
9333 CORE_ADDR addr = bp_tgt->placed_address;
9334 struct remote_state *rs = get_remote_state ();
9335
9336 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
9337 {
9338 char *p = rs->buf;
9339 char *endbuf = rs->buf + get_remote_packet_size ();
9340
9341 /* Make sure the remote is pointing at the right process, if
9342 necessary. */
9343 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9344 set_general_process ();
9345
9346 *(p++) = 'z';
9347 *(p++) = '0';
9348 *(p++) = ',';
9349
9350 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9351 p += hexnumstr (p, addr);
9352 xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
9353
9354 putpkt (rs->buf);
9355 getpkt (&rs->buf, &rs->buf_size, 0);
9356
9357 return (rs->buf[0] == 'E');
9358 }
9359
9360 return memory_remove_breakpoint (ops, gdbarch, bp_tgt);
9361 }
9362
9363 static enum Z_packet_type
9364 watchpoint_to_Z_packet (int type)
9365 {
9366 switch (type)
9367 {
9368 case hw_write:
9369 return Z_PACKET_WRITE_WP;
9370 break;
9371 case hw_read:
9372 return Z_PACKET_READ_WP;
9373 break;
9374 case hw_access:
9375 return Z_PACKET_ACCESS_WP;
9376 break;
9377 default:
9378 internal_error (__FILE__, __LINE__,
9379 _("hw_bp_to_z: bad watchpoint type %d"), type);
9380 }
9381 }
9382
9383 static int
9384 remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9385 enum target_hw_bp_type type, struct expression *cond)
9386 {
9387 struct remote_state *rs = get_remote_state ();
9388 char *endbuf = rs->buf + get_remote_packet_size ();
9389 char *p;
9390 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9391
9392 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
9393 return 1;
9394
9395 /* Make sure the remote is pointing at the right process, if
9396 necessary. */
9397 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9398 set_general_process ();
9399
9400 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
9401 p = strchr (rs->buf, '\0');
9402 addr = remote_address_masked (addr);
9403 p += hexnumstr (p, (ULONGEST) addr);
9404 xsnprintf (p, endbuf - p, ",%x", len);
9405
9406 putpkt (rs->buf);
9407 getpkt (&rs->buf, &rs->buf_size, 0);
9408
9409 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
9410 {
9411 case PACKET_ERROR:
9412 return -1;
9413 case PACKET_UNKNOWN:
9414 return 1;
9415 case PACKET_OK:
9416 return 0;
9417 }
9418 internal_error (__FILE__, __LINE__,
9419 _("remote_insert_watchpoint: reached end of function"));
9420 }
9421
9422 static int
9423 remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9424 CORE_ADDR start, int length)
9425 {
9426 CORE_ADDR diff = remote_address_masked (addr - start);
9427
9428 return diff < length;
9429 }
9430
9431
9432 static int
9433 remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9434 enum target_hw_bp_type type, struct expression *cond)
9435 {
9436 struct remote_state *rs = get_remote_state ();
9437 char *endbuf = rs->buf + get_remote_packet_size ();
9438 char *p;
9439 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9440
9441 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
9442 return -1;
9443
9444 /* Make sure the remote is pointing at the right process, if
9445 necessary. */
9446 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9447 set_general_process ();
9448
9449 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
9450 p = strchr (rs->buf, '\0');
9451 addr = remote_address_masked (addr);
9452 p += hexnumstr (p, (ULONGEST) addr);
9453 xsnprintf (p, endbuf - p, ",%x", len);
9454 putpkt (rs->buf);
9455 getpkt (&rs->buf, &rs->buf_size, 0);
9456
9457 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
9458 {
9459 case PACKET_ERROR:
9460 case PACKET_UNKNOWN:
9461 return -1;
9462 case PACKET_OK:
9463 return 0;
9464 }
9465 internal_error (__FILE__, __LINE__,
9466 _("remote_remove_watchpoint: reached end of function"));
9467 }
9468
9469
9470 int remote_hw_watchpoint_limit = -1;
9471 int remote_hw_watchpoint_length_limit = -1;
9472 int remote_hw_breakpoint_limit = -1;
9473
9474 static int
9475 remote_region_ok_for_hw_watchpoint (struct target_ops *self,
9476 CORE_ADDR addr, int len)
9477 {
9478 if (remote_hw_watchpoint_length_limit == 0)
9479 return 0;
9480 else if (remote_hw_watchpoint_length_limit < 0)
9481 return 1;
9482 else if (len <= remote_hw_watchpoint_length_limit)
9483 return 1;
9484 else
9485 return 0;
9486 }
9487
9488 static int
9489 remote_check_watch_resources (struct target_ops *self,
9490 enum bptype type, int cnt, int ot)
9491 {
9492 if (type == bp_hardware_breakpoint)
9493 {
9494 if (remote_hw_breakpoint_limit == 0)
9495 return 0;
9496 else if (remote_hw_breakpoint_limit < 0)
9497 return 1;
9498 else if (cnt <= remote_hw_breakpoint_limit)
9499 return 1;
9500 }
9501 else
9502 {
9503 if (remote_hw_watchpoint_limit == 0)
9504 return 0;
9505 else if (remote_hw_watchpoint_limit < 0)
9506 return 1;
9507 else if (ot)
9508 return -1;
9509 else if (cnt <= remote_hw_watchpoint_limit)
9510 return 1;
9511 }
9512 return -1;
9513 }
9514
9515 /* The to_stopped_by_sw_breakpoint method of target remote. */
9516
9517 static int
9518 remote_stopped_by_sw_breakpoint (struct target_ops *ops)
9519 {
9520 struct thread_info *thread = inferior_thread ();
9521
9522 return (thread->priv != NULL
9523 && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT);
9524 }
9525
9526 /* The to_supports_stopped_by_sw_breakpoint method of target
9527 remote. */
9528
9529 static int
9530 remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
9531 {
9532 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
9533 }
9534
9535 /* The to_stopped_by_hw_breakpoint method of target remote. */
9536
9537 static int
9538 remote_stopped_by_hw_breakpoint (struct target_ops *ops)
9539 {
9540 struct thread_info *thread = inferior_thread ();
9541
9542 return (thread->priv != NULL
9543 && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT);
9544 }
9545
9546 /* The to_supports_stopped_by_hw_breakpoint method of target
9547 remote. */
9548
9549 static int
9550 remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
9551 {
9552 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
9553 }
9554
9555 static int
9556 remote_stopped_by_watchpoint (struct target_ops *ops)
9557 {
9558 struct thread_info *thread = inferior_thread ();
9559
9560 return (thread->priv != NULL
9561 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT);
9562 }
9563
9564 static int
9565 remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
9566 {
9567 struct thread_info *thread = inferior_thread ();
9568
9569 if (thread->priv != NULL
9570 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
9571 {
9572 *addr_p = thread->priv->watch_data_address;
9573 return 1;
9574 }
9575
9576 return 0;
9577 }
9578
9579
9580 static int
9581 remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
9582 struct bp_target_info *bp_tgt)
9583 {
9584 CORE_ADDR addr = bp_tgt->reqstd_address;
9585 struct remote_state *rs;
9586 char *p, *endbuf;
9587 char *message;
9588 int bpsize;
9589
9590 /* The length field should be set to the size of a breakpoint
9591 instruction, even though we aren't inserting one ourselves. */
9592
9593 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
9594
9595 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
9596 return -1;
9597
9598 /* Make sure the remote is pointing at the right process, if
9599 necessary. */
9600 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9601 set_general_process ();
9602
9603 rs = get_remote_state ();
9604 p = rs->buf;
9605 endbuf = rs->buf + get_remote_packet_size ();
9606
9607 *(p++) = 'Z';
9608 *(p++) = '1';
9609 *(p++) = ',';
9610
9611 addr = remote_address_masked (addr);
9612 p += hexnumstr (p, (ULONGEST) addr);
9613 xsnprintf (p, endbuf - p, ",%x", bpsize);
9614
9615 if (remote_supports_cond_breakpoints (self))
9616 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
9617
9618 if (remote_can_run_breakpoint_commands (self))
9619 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9620
9621 putpkt (rs->buf);
9622 getpkt (&rs->buf, &rs->buf_size, 0);
9623
9624 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
9625 {
9626 case PACKET_ERROR:
9627 if (rs->buf[1] == '.')
9628 {
9629 message = strchr (rs->buf + 2, '.');
9630 if (message)
9631 error (_("Remote failure reply: %s"), message + 1);
9632 }
9633 return -1;
9634 case PACKET_UNKNOWN:
9635 return -1;
9636 case PACKET_OK:
9637 bp_tgt->placed_address = addr;
9638 bp_tgt->placed_size = bpsize;
9639 return 0;
9640 }
9641 internal_error (__FILE__, __LINE__,
9642 _("remote_insert_hw_breakpoint: reached end of function"));
9643 }
9644
9645
9646 static int
9647 remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
9648 struct bp_target_info *bp_tgt)
9649 {
9650 CORE_ADDR addr;
9651 struct remote_state *rs = get_remote_state ();
9652 char *p = rs->buf;
9653 char *endbuf = rs->buf + get_remote_packet_size ();
9654
9655 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
9656 return -1;
9657
9658 /* Make sure the remote is pointing at the right process, if
9659 necessary. */
9660 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9661 set_general_process ();
9662
9663 *(p++) = 'z';
9664 *(p++) = '1';
9665 *(p++) = ',';
9666
9667 addr = remote_address_masked (bp_tgt->placed_address);
9668 p += hexnumstr (p, (ULONGEST) addr);
9669 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
9670
9671 putpkt (rs->buf);
9672 getpkt (&rs->buf, &rs->buf_size, 0);
9673
9674 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
9675 {
9676 case PACKET_ERROR:
9677 case PACKET_UNKNOWN:
9678 return -1;
9679 case PACKET_OK:
9680 return 0;
9681 }
9682 internal_error (__FILE__, __LINE__,
9683 _("remote_remove_hw_breakpoint: reached end of function"));
9684 }
9685
9686 /* Verify memory using the "qCRC:" request. */
9687
9688 static int
9689 remote_verify_memory (struct target_ops *ops,
9690 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
9691 {
9692 struct remote_state *rs = get_remote_state ();
9693 unsigned long host_crc, target_crc;
9694 char *tmp;
9695
9696 /* It doesn't make sense to use qCRC if the remote target is
9697 connected but not running. */
9698 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
9699 {
9700 enum packet_result result;
9701
9702 /* Make sure the remote is pointing at the right process. */
9703 set_general_process ();
9704
9705 /* FIXME: assumes lma can fit into long. */
9706 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
9707 (long) lma, (long) size);
9708 putpkt (rs->buf);
9709
9710 /* Be clever; compute the host_crc before waiting for target
9711 reply. */
9712 host_crc = xcrc32 (data, size, 0xffffffff);
9713
9714 getpkt (&rs->buf, &rs->buf_size, 0);
9715
9716 result = packet_ok (rs->buf,
9717 &remote_protocol_packets[PACKET_qCRC]);
9718 if (result == PACKET_ERROR)
9719 return -1;
9720 else if (result == PACKET_OK)
9721 {
9722 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
9723 target_crc = target_crc * 16 + fromhex (*tmp);
9724
9725 return (host_crc == target_crc);
9726 }
9727 }
9728
9729 return simple_verify_memory (ops, data, lma, size);
9730 }
9731
9732 /* compare-sections command
9733
9734 With no arguments, compares each loadable section in the exec bfd
9735 with the same memory range on the target, and reports mismatches.
9736 Useful for verifying the image on the target against the exec file. */
9737
9738 static void
9739 compare_sections_command (char *args, int from_tty)
9740 {
9741 asection *s;
9742 struct cleanup *old_chain;
9743 gdb_byte *sectdata;
9744 const char *sectname;
9745 bfd_size_type size;
9746 bfd_vma lma;
9747 int matched = 0;
9748 int mismatched = 0;
9749 int res;
9750 int read_only = 0;
9751
9752 if (!exec_bfd)
9753 error (_("command cannot be used without an exec file"));
9754
9755 /* Make sure the remote is pointing at the right process. */
9756 set_general_process ();
9757
9758 if (args != NULL && strcmp (args, "-r") == 0)
9759 {
9760 read_only = 1;
9761 args = NULL;
9762 }
9763
9764 for (s = exec_bfd->sections; s; s = s->next)
9765 {
9766 if (!(s->flags & SEC_LOAD))
9767 continue; /* Skip non-loadable section. */
9768
9769 if (read_only && (s->flags & SEC_READONLY) == 0)
9770 continue; /* Skip writeable sections */
9771
9772 size = bfd_get_section_size (s);
9773 if (size == 0)
9774 continue; /* Skip zero-length section. */
9775
9776 sectname = bfd_get_section_name (exec_bfd, s);
9777 if (args && strcmp (args, sectname) != 0)
9778 continue; /* Not the section selected by user. */
9779
9780 matched = 1; /* Do this section. */
9781 lma = s->lma;
9782
9783 sectdata = (gdb_byte *) xmalloc (size);
9784 old_chain = make_cleanup (xfree, sectdata);
9785 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
9786
9787 res = target_verify_memory (sectdata, lma, size);
9788
9789 if (res == -1)
9790 error (_("target memory fault, section %s, range %s -- %s"), sectname,
9791 paddress (target_gdbarch (), lma),
9792 paddress (target_gdbarch (), lma + size));
9793
9794 printf_filtered ("Section %s, range %s -- %s: ", sectname,
9795 paddress (target_gdbarch (), lma),
9796 paddress (target_gdbarch (), lma + size));
9797 if (res)
9798 printf_filtered ("matched.\n");
9799 else
9800 {
9801 printf_filtered ("MIS-MATCHED!\n");
9802 mismatched++;
9803 }
9804
9805 do_cleanups (old_chain);
9806 }
9807 if (mismatched > 0)
9808 warning (_("One or more sections of the target image does not match\n\
9809 the loaded file\n"));
9810 if (args && !matched)
9811 printf_filtered (_("No loaded section named '%s'.\n"), args);
9812 }
9813
9814 /* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
9815 into remote target. The number of bytes written to the remote
9816 target is returned, or -1 for error. */
9817
9818 static enum target_xfer_status
9819 remote_write_qxfer (struct target_ops *ops, const char *object_name,
9820 const char *annex, const gdb_byte *writebuf,
9821 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
9822 struct packet_config *packet)
9823 {
9824 int i, buf_len;
9825 ULONGEST n;
9826 struct remote_state *rs = get_remote_state ();
9827 int max_size = get_memory_write_packet_size ();
9828
9829 if (packet->support == PACKET_DISABLE)
9830 return TARGET_XFER_E_IO;
9831
9832 /* Insert header. */
9833 i = snprintf (rs->buf, max_size,
9834 "qXfer:%s:write:%s:%s:",
9835 object_name, annex ? annex : "",
9836 phex_nz (offset, sizeof offset));
9837 max_size -= (i + 1);
9838
9839 /* Escape as much data as fits into rs->buf. */
9840 buf_len = remote_escape_output
9841 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
9842
9843 if (putpkt_binary (rs->buf, i + buf_len) < 0
9844 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9845 || packet_ok (rs->buf, packet) != PACKET_OK)
9846 return TARGET_XFER_E_IO;
9847
9848 unpack_varlen_hex (rs->buf, &n);
9849
9850 *xfered_len = n;
9851 return TARGET_XFER_OK;
9852 }
9853
9854 /* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
9855 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
9856 number of bytes read is returned, or 0 for EOF, or -1 for error.
9857 The number of bytes read may be less than LEN without indicating an
9858 EOF. PACKET is checked and updated to indicate whether the remote
9859 target supports this object. */
9860
9861 static enum target_xfer_status
9862 remote_read_qxfer (struct target_ops *ops, const char *object_name,
9863 const char *annex,
9864 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9865 ULONGEST *xfered_len,
9866 struct packet_config *packet)
9867 {
9868 struct remote_state *rs = get_remote_state ();
9869 LONGEST i, n, packet_len;
9870
9871 if (packet->support == PACKET_DISABLE)
9872 return TARGET_XFER_E_IO;
9873
9874 /* Check whether we've cached an end-of-object packet that matches
9875 this request. */
9876 if (rs->finished_object)
9877 {
9878 if (strcmp (object_name, rs->finished_object) == 0
9879 && strcmp (annex ? annex : "", rs->finished_annex) == 0
9880 && offset == rs->finished_offset)
9881 return TARGET_XFER_EOF;
9882
9883
9884 /* Otherwise, we're now reading something different. Discard
9885 the cache. */
9886 xfree (rs->finished_object);
9887 xfree (rs->finished_annex);
9888 rs->finished_object = NULL;
9889 rs->finished_annex = NULL;
9890 }
9891
9892 /* Request only enough to fit in a single packet. The actual data
9893 may not, since we don't know how much of it will need to be escaped;
9894 the target is free to respond with slightly less data. We subtract
9895 five to account for the response type and the protocol frame. */
9896 n = min (get_remote_packet_size () - 5, len);
9897 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
9898 object_name, annex ? annex : "",
9899 phex_nz (offset, sizeof offset),
9900 phex_nz (n, sizeof n));
9901 i = putpkt (rs->buf);
9902 if (i < 0)
9903 return TARGET_XFER_E_IO;
9904
9905 rs->buf[0] = '\0';
9906 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9907 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
9908 return TARGET_XFER_E_IO;
9909
9910 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
9911 error (_("Unknown remote qXfer reply: %s"), rs->buf);
9912
9913 /* 'm' means there is (or at least might be) more data after this
9914 batch. That does not make sense unless there's at least one byte
9915 of data in this reply. */
9916 if (rs->buf[0] == 'm' && packet_len == 1)
9917 error (_("Remote qXfer reply contained no data."));
9918
9919 /* Got some data. */
9920 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
9921 packet_len - 1, readbuf, n);
9922
9923 /* 'l' is an EOF marker, possibly including a final block of data,
9924 or possibly empty. If we have the final block of a non-empty
9925 object, record this fact to bypass a subsequent partial read. */
9926 if (rs->buf[0] == 'l' && offset + i > 0)
9927 {
9928 rs->finished_object = xstrdup (object_name);
9929 rs->finished_annex = xstrdup (annex ? annex : "");
9930 rs->finished_offset = offset + i;
9931 }
9932
9933 if (i == 0)
9934 return TARGET_XFER_EOF;
9935 else
9936 {
9937 *xfered_len = i;
9938 return TARGET_XFER_OK;
9939 }
9940 }
9941
9942 static enum target_xfer_status
9943 remote_xfer_partial (struct target_ops *ops, enum target_object object,
9944 const char *annex, gdb_byte *readbuf,
9945 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
9946 ULONGEST *xfered_len)
9947 {
9948 struct remote_state *rs;
9949 int i;
9950 char *p2;
9951 char query_type;
9952 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
9953
9954 set_remote_traceframe ();
9955 set_general_thread (inferior_ptid);
9956
9957 rs = get_remote_state ();
9958
9959 /* Handle memory using the standard memory routines. */
9960 if (object == TARGET_OBJECT_MEMORY)
9961 {
9962 /* If the remote target is connected but not running, we should
9963 pass this request down to a lower stratum (e.g. the executable
9964 file). */
9965 if (!target_has_execution)
9966 return TARGET_XFER_EOF;
9967
9968 if (writebuf != NULL)
9969 return remote_write_bytes (offset, writebuf, len, unit_size,
9970 xfered_len);
9971 else
9972 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
9973 xfered_len);
9974 }
9975
9976 /* Handle SPU memory using qxfer packets. */
9977 if (object == TARGET_OBJECT_SPU)
9978 {
9979 if (readbuf)
9980 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9981 xfered_len, &remote_protocol_packets
9982 [PACKET_qXfer_spu_read]);
9983 else
9984 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9985 xfered_len, &remote_protocol_packets
9986 [PACKET_qXfer_spu_write]);
9987 }
9988
9989 /* Handle extra signal info using qxfer packets. */
9990 if (object == TARGET_OBJECT_SIGNAL_INFO)
9991 {
9992 if (readbuf)
9993 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9994 xfered_len, &remote_protocol_packets
9995 [PACKET_qXfer_siginfo_read]);
9996 else
9997 return remote_write_qxfer (ops, "siginfo", annex,
9998 writebuf, offset, len, xfered_len,
9999 &remote_protocol_packets
10000 [PACKET_qXfer_siginfo_write]);
10001 }
10002
10003 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10004 {
10005 if (readbuf)
10006 return remote_read_qxfer (ops, "statictrace", annex,
10007 readbuf, offset, len, xfered_len,
10008 &remote_protocol_packets
10009 [PACKET_qXfer_statictrace_read]);
10010 else
10011 return TARGET_XFER_E_IO;
10012 }
10013
10014 /* Only handle flash writes. */
10015 if (writebuf != NULL)
10016 {
10017 switch (object)
10018 {
10019 case TARGET_OBJECT_FLASH:
10020 return remote_flash_write (ops, offset, len, xfered_len,
10021 writebuf);
10022
10023 default:
10024 return TARGET_XFER_E_IO;
10025 }
10026 }
10027
10028 /* Map pre-existing objects onto letters. DO NOT do this for new
10029 objects!!! Instead specify new query packets. */
10030 switch (object)
10031 {
10032 case TARGET_OBJECT_AVR:
10033 query_type = 'R';
10034 break;
10035
10036 case TARGET_OBJECT_AUXV:
10037 gdb_assert (annex == NULL);
10038 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
10039 xfered_len,
10040 &remote_protocol_packets[PACKET_qXfer_auxv]);
10041
10042 case TARGET_OBJECT_AVAILABLE_FEATURES:
10043 return remote_read_qxfer
10044 (ops, "features", annex, readbuf, offset, len, xfered_len,
10045 &remote_protocol_packets[PACKET_qXfer_features]);
10046
10047 case TARGET_OBJECT_LIBRARIES:
10048 return remote_read_qxfer
10049 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
10050 &remote_protocol_packets[PACKET_qXfer_libraries]);
10051
10052 case TARGET_OBJECT_LIBRARIES_SVR4:
10053 return remote_read_qxfer
10054 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
10055 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10056
10057 case TARGET_OBJECT_MEMORY_MAP:
10058 gdb_assert (annex == NULL);
10059 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
10060 xfered_len,
10061 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10062
10063 case TARGET_OBJECT_OSDATA:
10064 /* Should only get here if we're connected. */
10065 gdb_assert (rs->remote_desc);
10066 return remote_read_qxfer
10067 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
10068 &remote_protocol_packets[PACKET_qXfer_osdata]);
10069
10070 case TARGET_OBJECT_THREADS:
10071 gdb_assert (annex == NULL);
10072 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
10073 xfered_len,
10074 &remote_protocol_packets[PACKET_qXfer_threads]);
10075
10076 case TARGET_OBJECT_TRACEFRAME_INFO:
10077 gdb_assert (annex == NULL);
10078 return remote_read_qxfer
10079 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
10080 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
10081
10082 case TARGET_OBJECT_FDPIC:
10083 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
10084 xfered_len,
10085 &remote_protocol_packets[PACKET_qXfer_fdpic]);
10086
10087 case TARGET_OBJECT_OPENVMS_UIB:
10088 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
10089 xfered_len,
10090 &remote_protocol_packets[PACKET_qXfer_uib]);
10091
10092 case TARGET_OBJECT_BTRACE:
10093 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
10094 xfered_len,
10095 &remote_protocol_packets[PACKET_qXfer_btrace]);
10096
10097 case TARGET_OBJECT_BTRACE_CONF:
10098 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10099 len, xfered_len,
10100 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10101
10102 case TARGET_OBJECT_EXEC_FILE:
10103 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10104 len, xfered_len,
10105 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10106
10107 default:
10108 return TARGET_XFER_E_IO;
10109 }
10110
10111 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
10112 large enough let the caller deal with it. */
10113 if (len < get_remote_packet_size ())
10114 return TARGET_XFER_E_IO;
10115 len = get_remote_packet_size ();
10116
10117 /* Except for querying the minimum buffer size, target must be open. */
10118 if (!rs->remote_desc)
10119 error (_("remote query is only available after target open"));
10120
10121 gdb_assert (annex != NULL);
10122 gdb_assert (readbuf != NULL);
10123
10124 p2 = rs->buf;
10125 *p2++ = 'q';
10126 *p2++ = query_type;
10127
10128 /* We used one buffer char for the remote protocol q command and
10129 another for the query type. As the remote protocol encapsulation
10130 uses 4 chars plus one extra in case we are debugging
10131 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10132 string. */
10133 i = 0;
10134 while (annex[i] && (i < (get_remote_packet_size () - 8)))
10135 {
10136 /* Bad caller may have sent forbidden characters. */
10137 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10138 *p2++ = annex[i];
10139 i++;
10140 }
10141 *p2 = '\0';
10142 gdb_assert (annex[i] == '\0');
10143
10144 i = putpkt (rs->buf);
10145 if (i < 0)
10146 return TARGET_XFER_E_IO;
10147
10148 getpkt (&rs->buf, &rs->buf_size, 0);
10149 strcpy ((char *) readbuf, rs->buf);
10150
10151 *xfered_len = strlen ((char *) readbuf);
10152 return TARGET_XFER_OK;
10153 }
10154
10155 static int
10156 remote_search_memory (struct target_ops* ops,
10157 CORE_ADDR start_addr, ULONGEST search_space_len,
10158 const gdb_byte *pattern, ULONGEST pattern_len,
10159 CORE_ADDR *found_addrp)
10160 {
10161 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
10162 struct remote_state *rs = get_remote_state ();
10163 int max_size = get_memory_write_packet_size ();
10164 struct packet_config *packet =
10165 &remote_protocol_packets[PACKET_qSearch_memory];
10166 /* Number of packet bytes used to encode the pattern;
10167 this could be more than PATTERN_LEN due to escape characters. */
10168 int escaped_pattern_len;
10169 /* Amount of pattern that was encodable in the packet. */
10170 int used_pattern_len;
10171 int i;
10172 int found;
10173 ULONGEST found_addr;
10174
10175 /* Don't go to the target if we don't have to.
10176 This is done before checking packet->support to avoid the possibility that
10177 a success for this edge case means the facility works in general. */
10178 if (pattern_len > search_space_len)
10179 return 0;
10180 if (pattern_len == 0)
10181 {
10182 *found_addrp = start_addr;
10183 return 1;
10184 }
10185
10186 /* If we already know the packet isn't supported, fall back to the simple
10187 way of searching memory. */
10188
10189 if (packet_config_support (packet) == PACKET_DISABLE)
10190 {
10191 /* Target doesn't provided special support, fall back and use the
10192 standard support (copy memory and do the search here). */
10193 return simple_search_memory (ops, start_addr, search_space_len,
10194 pattern, pattern_len, found_addrp);
10195 }
10196
10197 /* Make sure the remote is pointing at the right process. */
10198 set_general_process ();
10199
10200 /* Insert header. */
10201 i = snprintf (rs->buf, max_size,
10202 "qSearch:memory:%s;%s;",
10203 phex_nz (start_addr, addr_size),
10204 phex_nz (search_space_len, sizeof (search_space_len)));
10205 max_size -= (i + 1);
10206
10207 /* Escape as much data as fits into rs->buf. */
10208 escaped_pattern_len =
10209 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
10210 &used_pattern_len, max_size);
10211
10212 /* Bail if the pattern is too large. */
10213 if (used_pattern_len != pattern_len)
10214 error (_("Pattern is too large to transmit to remote target."));
10215
10216 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10217 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10218 || packet_ok (rs->buf, packet) != PACKET_OK)
10219 {
10220 /* The request may not have worked because the command is not
10221 supported. If so, fall back to the simple way. */
10222 if (packet->support == PACKET_DISABLE)
10223 {
10224 return simple_search_memory (ops, start_addr, search_space_len,
10225 pattern, pattern_len, found_addrp);
10226 }
10227 return -1;
10228 }
10229
10230 if (rs->buf[0] == '0')
10231 found = 0;
10232 else if (rs->buf[0] == '1')
10233 {
10234 found = 1;
10235 if (rs->buf[1] != ',')
10236 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
10237 unpack_varlen_hex (rs->buf + 2, &found_addr);
10238 *found_addrp = found_addr;
10239 }
10240 else
10241 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
10242
10243 return found;
10244 }
10245
10246 static void
10247 remote_rcmd (struct target_ops *self, const char *command,
10248 struct ui_file *outbuf)
10249 {
10250 struct remote_state *rs = get_remote_state ();
10251 char *p = rs->buf;
10252
10253 if (!rs->remote_desc)
10254 error (_("remote rcmd is only available after target open"));
10255
10256 /* Send a NULL command across as an empty command. */
10257 if (command == NULL)
10258 command = "";
10259
10260 /* The query prefix. */
10261 strcpy (rs->buf, "qRcmd,");
10262 p = strchr (rs->buf, '\0');
10263
10264 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10265 > get_remote_packet_size ())
10266 error (_("\"monitor\" command ``%s'' is too long."), command);
10267
10268 /* Encode the actual command. */
10269 bin2hex ((const gdb_byte *) command, p, strlen (command));
10270
10271 if (putpkt (rs->buf) < 0)
10272 error (_("Communication problem with target."));
10273
10274 /* get/display the response */
10275 while (1)
10276 {
10277 char *buf;
10278
10279 /* XXX - see also remote_get_noisy_reply(). */
10280 QUIT; /* Allow user to bail out with ^C. */
10281 rs->buf[0] = '\0';
10282 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10283 {
10284 /* Timeout. Continue to (try to) read responses.
10285 This is better than stopping with an error, assuming the stub
10286 is still executing the (long) monitor command.
10287 If needed, the user can interrupt gdb using C-c, obtaining
10288 an effect similar to stop on timeout. */
10289 continue;
10290 }
10291 buf = rs->buf;
10292 if (buf[0] == '\0')
10293 error (_("Target does not support this command."));
10294 if (buf[0] == 'O' && buf[1] != 'K')
10295 {
10296 remote_console_output (buf + 1); /* 'O' message from stub. */
10297 continue;
10298 }
10299 if (strcmp (buf, "OK") == 0)
10300 break;
10301 if (strlen (buf) == 3 && buf[0] == 'E'
10302 && isdigit (buf[1]) && isdigit (buf[2]))
10303 {
10304 error (_("Protocol error with Rcmd"));
10305 }
10306 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10307 {
10308 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
10309
10310 fputc_unfiltered (c, outbuf);
10311 }
10312 break;
10313 }
10314 }
10315
10316 static VEC(mem_region_s) *
10317 remote_memory_map (struct target_ops *ops)
10318 {
10319 VEC(mem_region_s) *result = NULL;
10320 char *text = target_read_stralloc (&current_target,
10321 TARGET_OBJECT_MEMORY_MAP, NULL);
10322
10323 if (text)
10324 {
10325 struct cleanup *back_to = make_cleanup (xfree, text);
10326
10327 result = parse_memory_map (text);
10328 do_cleanups (back_to);
10329 }
10330
10331 return result;
10332 }
10333
10334 static void
10335 packet_command (char *args, int from_tty)
10336 {
10337 struct remote_state *rs = get_remote_state ();
10338
10339 if (!rs->remote_desc)
10340 error (_("command can only be used with remote target"));
10341
10342 if (!args)
10343 error (_("remote-packet command requires packet text as argument"));
10344
10345 puts_filtered ("sending: ");
10346 print_packet (args);
10347 puts_filtered ("\n");
10348 putpkt (args);
10349
10350 getpkt (&rs->buf, &rs->buf_size, 0);
10351 puts_filtered ("received: ");
10352 print_packet (rs->buf);
10353 puts_filtered ("\n");
10354 }
10355
10356 #if 0
10357 /* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
10358
10359 static void display_thread_info (struct gdb_ext_thread_info *info);
10360
10361 static void threadset_test_cmd (char *cmd, int tty);
10362
10363 static void threadalive_test (char *cmd, int tty);
10364
10365 static void threadlist_test_cmd (char *cmd, int tty);
10366
10367 int get_and_display_threadinfo (threadref *ref);
10368
10369 static void threadinfo_test_cmd (char *cmd, int tty);
10370
10371 static int thread_display_step (threadref *ref, void *context);
10372
10373 static void threadlist_update_test_cmd (char *cmd, int tty);
10374
10375 static void init_remote_threadtests (void);
10376
10377 #define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
10378
10379 static void
10380 threadset_test_cmd (char *cmd, int tty)
10381 {
10382 int sample_thread = SAMPLE_THREAD;
10383
10384 printf_filtered (_("Remote threadset test\n"));
10385 set_general_thread (sample_thread);
10386 }
10387
10388
10389 static void
10390 threadalive_test (char *cmd, int tty)
10391 {
10392 int sample_thread = SAMPLE_THREAD;
10393 int pid = ptid_get_pid (inferior_ptid);
10394 ptid_t ptid = ptid_build (pid, sample_thread, 0);
10395
10396 if (remote_thread_alive (ptid))
10397 printf_filtered ("PASS: Thread alive test\n");
10398 else
10399 printf_filtered ("FAIL: Thread alive test\n");
10400 }
10401
10402 void output_threadid (char *title, threadref *ref);
10403
10404 void
10405 output_threadid (char *title, threadref *ref)
10406 {
10407 char hexid[20];
10408
10409 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
10410 hexid[16] = 0;
10411 printf_filtered ("%s %s\n", title, (&hexid[0]));
10412 }
10413
10414 static void
10415 threadlist_test_cmd (char *cmd, int tty)
10416 {
10417 int startflag = 1;
10418 threadref nextthread;
10419 int done, result_count;
10420 threadref threadlist[3];
10421
10422 printf_filtered ("Remote Threadlist test\n");
10423 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10424 &result_count, &threadlist[0]))
10425 printf_filtered ("FAIL: threadlist test\n");
10426 else
10427 {
10428 threadref *scan = threadlist;
10429 threadref *limit = scan + result_count;
10430
10431 while (scan < limit)
10432 output_threadid (" thread ", scan++);
10433 }
10434 }
10435
10436 void
10437 display_thread_info (struct gdb_ext_thread_info *info)
10438 {
10439 output_threadid ("Threadid: ", &info->threadid);
10440 printf_filtered ("Name: %s\n ", info->shortname);
10441 printf_filtered ("State: %s\n", info->display);
10442 printf_filtered ("other: %s\n\n", info->more_display);
10443 }
10444
10445 int
10446 get_and_display_threadinfo (threadref *ref)
10447 {
10448 int result;
10449 int set;
10450 struct gdb_ext_thread_info threadinfo;
10451
10452 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10453 | TAG_MOREDISPLAY | TAG_DISPLAY;
10454 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10455 display_thread_info (&threadinfo);
10456 return result;
10457 }
10458
10459 static void
10460 threadinfo_test_cmd (char *cmd, int tty)
10461 {
10462 int athread = SAMPLE_THREAD;
10463 threadref thread;
10464 int set;
10465
10466 int_to_threadref (&thread, athread);
10467 printf_filtered ("Remote Threadinfo test\n");
10468 if (!get_and_display_threadinfo (&thread))
10469 printf_filtered ("FAIL cannot get thread info\n");
10470 }
10471
10472 static int
10473 thread_display_step (threadref *ref, void *context)
10474 {
10475 /* output_threadid(" threadstep ",ref); *//* simple test */
10476 return get_and_display_threadinfo (ref);
10477 }
10478
10479 static void
10480 threadlist_update_test_cmd (char *cmd, int tty)
10481 {
10482 printf_filtered ("Remote Threadlist update test\n");
10483 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10484 }
10485
10486 static void
10487 init_remote_threadtests (void)
10488 {
10489 add_com ("tlist", class_obscure, threadlist_test_cmd,
10490 _("Fetch and print the remote list of "
10491 "thread identifiers, one pkt only"));
10492 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
10493 _("Fetch and display info about one thread"));
10494 add_com ("tset", class_obscure, threadset_test_cmd,
10495 _("Test setting to a different thread"));
10496 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
10497 _("Iterate through updating all remote thread info"));
10498 add_com ("talive", class_obscure, threadalive_test,
10499 _(" Remote thread alive test "));
10500 }
10501
10502 #endif /* 0 */
10503
10504 /* Convert a thread ID to a string. Returns the string in a static
10505 buffer. */
10506
10507 static char *
10508 remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
10509 {
10510 static char buf[64];
10511 struct remote_state *rs = get_remote_state ();
10512
10513 if (ptid_equal (ptid, null_ptid))
10514 return normal_pid_to_str (ptid);
10515 else if (ptid_is_pid (ptid))
10516 {
10517 /* Printing an inferior target id. */
10518
10519 /* When multi-process extensions are off, there's no way in the
10520 remote protocol to know the remote process id, if there's any
10521 at all. There's one exception --- when we're connected with
10522 target extended-remote, and we manually attached to a process
10523 with "attach PID". We don't record anywhere a flag that
10524 allows us to distinguish that case from the case of
10525 connecting with extended-remote and the stub already being
10526 attached to a process, and reporting yes to qAttached, hence
10527 no smart special casing here. */
10528 if (!remote_multi_process_p (rs))
10529 {
10530 xsnprintf (buf, sizeof buf, "Remote target");
10531 return buf;
10532 }
10533
10534 return normal_pid_to_str (ptid);
10535 }
10536 else
10537 {
10538 if (ptid_equal (magic_null_ptid, ptid))
10539 xsnprintf (buf, sizeof buf, "Thread <main>");
10540 else if (remote_multi_process_p (rs))
10541 if (ptid_get_lwp (ptid) == 0)
10542 return normal_pid_to_str (ptid);
10543 else
10544 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
10545 ptid_get_pid (ptid), ptid_get_lwp (ptid));
10546 else
10547 xsnprintf (buf, sizeof buf, "Thread %ld",
10548 ptid_get_lwp (ptid));
10549 return buf;
10550 }
10551 }
10552
10553 /* Get the address of the thread local variable in OBJFILE which is
10554 stored at OFFSET within the thread local storage for thread PTID. */
10555
10556 static CORE_ADDR
10557 remote_get_thread_local_address (struct target_ops *ops,
10558 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
10559 {
10560 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
10561 {
10562 struct remote_state *rs = get_remote_state ();
10563 char *p = rs->buf;
10564 char *endp = rs->buf + get_remote_packet_size ();
10565 enum packet_result result;
10566
10567 strcpy (p, "qGetTLSAddr:");
10568 p += strlen (p);
10569 p = write_ptid (p, endp, ptid);
10570 *p++ = ',';
10571 p += hexnumstr (p, offset);
10572 *p++ = ',';
10573 p += hexnumstr (p, lm);
10574 *p++ = '\0';
10575
10576 putpkt (rs->buf);
10577 getpkt (&rs->buf, &rs->buf_size, 0);
10578 result = packet_ok (rs->buf,
10579 &remote_protocol_packets[PACKET_qGetTLSAddr]);
10580 if (result == PACKET_OK)
10581 {
10582 ULONGEST result;
10583
10584 unpack_varlen_hex (rs->buf, &result);
10585 return result;
10586 }
10587 else if (result == PACKET_UNKNOWN)
10588 throw_error (TLS_GENERIC_ERROR,
10589 _("Remote target doesn't support qGetTLSAddr packet"));
10590 else
10591 throw_error (TLS_GENERIC_ERROR,
10592 _("Remote target failed to process qGetTLSAddr request"));
10593 }
10594 else
10595 throw_error (TLS_GENERIC_ERROR,
10596 _("TLS not supported or disabled on this target"));
10597 /* Not reached. */
10598 return 0;
10599 }
10600
10601 /* Provide thread local base, i.e. Thread Information Block address.
10602 Returns 1 if ptid is found and thread_local_base is non zero. */
10603
10604 static int
10605 remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
10606 {
10607 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
10608 {
10609 struct remote_state *rs = get_remote_state ();
10610 char *p = rs->buf;
10611 char *endp = rs->buf + get_remote_packet_size ();
10612 enum packet_result result;
10613
10614 strcpy (p, "qGetTIBAddr:");
10615 p += strlen (p);
10616 p = write_ptid (p, endp, ptid);
10617 *p++ = '\0';
10618
10619 putpkt (rs->buf);
10620 getpkt (&rs->buf, &rs->buf_size, 0);
10621 result = packet_ok (rs->buf,
10622 &remote_protocol_packets[PACKET_qGetTIBAddr]);
10623 if (result == PACKET_OK)
10624 {
10625 ULONGEST result;
10626
10627 unpack_varlen_hex (rs->buf, &result);
10628 if (addr)
10629 *addr = (CORE_ADDR) result;
10630 return 1;
10631 }
10632 else if (result == PACKET_UNKNOWN)
10633 error (_("Remote target doesn't support qGetTIBAddr packet"));
10634 else
10635 error (_("Remote target failed to process qGetTIBAddr request"));
10636 }
10637 else
10638 error (_("qGetTIBAddr not supported or disabled on this target"));
10639 /* Not reached. */
10640 return 0;
10641 }
10642
10643 /* Support for inferring a target description based on the current
10644 architecture and the size of a 'g' packet. While the 'g' packet
10645 can have any size (since optional registers can be left off the
10646 end), some sizes are easily recognizable given knowledge of the
10647 approximate architecture. */
10648
10649 struct remote_g_packet_guess
10650 {
10651 int bytes;
10652 const struct target_desc *tdesc;
10653 };
10654 typedef struct remote_g_packet_guess remote_g_packet_guess_s;
10655 DEF_VEC_O(remote_g_packet_guess_s);
10656
10657 struct remote_g_packet_data
10658 {
10659 VEC(remote_g_packet_guess_s) *guesses;
10660 };
10661
10662 static struct gdbarch_data *remote_g_packet_data_handle;
10663
10664 static void *
10665 remote_g_packet_data_init (struct obstack *obstack)
10666 {
10667 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
10668 }
10669
10670 void
10671 register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
10672 const struct target_desc *tdesc)
10673 {
10674 struct remote_g_packet_data *data
10675 = ((struct remote_g_packet_data *)
10676 gdbarch_data (gdbarch, remote_g_packet_data_handle));
10677 struct remote_g_packet_guess new_guess, *guess;
10678 int ix;
10679
10680 gdb_assert (tdesc != NULL);
10681
10682 for (ix = 0;
10683 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10684 ix++)
10685 if (guess->bytes == bytes)
10686 internal_error (__FILE__, __LINE__,
10687 _("Duplicate g packet description added for size %d"),
10688 bytes);
10689
10690 new_guess.bytes = bytes;
10691 new_guess.tdesc = tdesc;
10692 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
10693 }
10694
10695 /* Return 1 if remote_read_description would do anything on this target
10696 and architecture, 0 otherwise. */
10697
10698 static int
10699 remote_read_description_p (struct target_ops *target)
10700 {
10701 struct remote_g_packet_data *data
10702 = ((struct remote_g_packet_data *)
10703 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
10704
10705 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10706 return 1;
10707
10708 return 0;
10709 }
10710
10711 static const struct target_desc *
10712 remote_read_description (struct target_ops *target)
10713 {
10714 struct remote_g_packet_data *data
10715 = ((struct remote_g_packet_data *)
10716 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
10717
10718 /* Do not try this during initial connection, when we do not know
10719 whether there is a running but stopped thread. */
10720 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
10721 return target->beneath->to_read_description (target->beneath);
10722
10723 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10724 {
10725 struct remote_g_packet_guess *guess;
10726 int ix;
10727 int bytes = send_g_packet ();
10728
10729 for (ix = 0;
10730 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10731 ix++)
10732 if (guess->bytes == bytes)
10733 return guess->tdesc;
10734
10735 /* We discard the g packet. A minor optimization would be to
10736 hold on to it, and fill the register cache once we have selected
10737 an architecture, but it's too tricky to do safely. */
10738 }
10739
10740 return target->beneath->to_read_description (target->beneath);
10741 }
10742
10743 /* Remote file transfer support. This is host-initiated I/O, not
10744 target-initiated; for target-initiated, see remote-fileio.c. */
10745
10746 /* If *LEFT is at least the length of STRING, copy STRING to
10747 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10748 decrease *LEFT. Otherwise raise an error. */
10749
10750 static void
10751 remote_buffer_add_string (char **buffer, int *left, char *string)
10752 {
10753 int len = strlen (string);
10754
10755 if (len > *left)
10756 error (_("Packet too long for target."));
10757
10758 memcpy (*buffer, string, len);
10759 *buffer += len;
10760 *left -= len;
10761
10762 /* NUL-terminate the buffer as a convenience, if there is
10763 room. */
10764 if (*left)
10765 **buffer = '\0';
10766 }
10767
10768 /* If *LEFT is large enough, hex encode LEN bytes from BYTES into
10769 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10770 decrease *LEFT. Otherwise raise an error. */
10771
10772 static void
10773 remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
10774 int len)
10775 {
10776 if (2 * len > *left)
10777 error (_("Packet too long for target."));
10778
10779 bin2hex (bytes, *buffer, len);
10780 *buffer += 2 * len;
10781 *left -= 2 * len;
10782
10783 /* NUL-terminate the buffer as a convenience, if there is
10784 room. */
10785 if (*left)
10786 **buffer = '\0';
10787 }
10788
10789 /* If *LEFT is large enough, convert VALUE to hex and add it to
10790 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10791 decrease *LEFT. Otherwise raise an error. */
10792
10793 static void
10794 remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
10795 {
10796 int len = hexnumlen (value);
10797
10798 if (len > *left)
10799 error (_("Packet too long for target."));
10800
10801 hexnumstr (*buffer, value);
10802 *buffer += len;
10803 *left -= len;
10804
10805 /* NUL-terminate the buffer as a convenience, if there is
10806 room. */
10807 if (*left)
10808 **buffer = '\0';
10809 }
10810
10811 /* Parse an I/O result packet from BUFFER. Set RETCODE to the return
10812 value, *REMOTE_ERRNO to the remote error number or zero if none
10813 was included, and *ATTACHMENT to point to the start of the annex
10814 if any. The length of the packet isn't needed here; there may
10815 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
10816
10817 Return 0 if the packet could be parsed, -1 if it could not. If
10818 -1 is returned, the other variables may not be initialized. */
10819
10820 static int
10821 remote_hostio_parse_result (char *buffer, int *retcode,
10822 int *remote_errno, char **attachment)
10823 {
10824 char *p, *p2;
10825
10826 *remote_errno = 0;
10827 *attachment = NULL;
10828
10829 if (buffer[0] != 'F')
10830 return -1;
10831
10832 errno = 0;
10833 *retcode = strtol (&buffer[1], &p, 16);
10834 if (errno != 0 || p == &buffer[1])
10835 return -1;
10836
10837 /* Check for ",errno". */
10838 if (*p == ',')
10839 {
10840 errno = 0;
10841 *remote_errno = strtol (p + 1, &p2, 16);
10842 if (errno != 0 || p + 1 == p2)
10843 return -1;
10844 p = p2;
10845 }
10846
10847 /* Check for ";attachment". If there is no attachment, the
10848 packet should end here. */
10849 if (*p == ';')
10850 {
10851 *attachment = p + 1;
10852 return 0;
10853 }
10854 else if (*p == '\0')
10855 return 0;
10856 else
10857 return -1;
10858 }
10859
10860 /* Send a prepared I/O packet to the target and read its response.
10861 The prepared packet is in the global RS->BUF before this function
10862 is called, and the answer is there when we return.
10863
10864 COMMAND_BYTES is the length of the request to send, which may include
10865 binary data. WHICH_PACKET is the packet configuration to check
10866 before attempting a packet. If an error occurs, *REMOTE_ERRNO
10867 is set to the error number and -1 is returned. Otherwise the value
10868 returned by the function is returned.
10869
10870 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
10871 attachment is expected; an error will be reported if there's a
10872 mismatch. If one is found, *ATTACHMENT will be set to point into
10873 the packet buffer and *ATTACHMENT_LEN will be set to the
10874 attachment's length. */
10875
10876 static int
10877 remote_hostio_send_command (int command_bytes, int which_packet,
10878 int *remote_errno, char **attachment,
10879 int *attachment_len)
10880 {
10881 struct remote_state *rs = get_remote_state ();
10882 int ret, bytes_read;
10883 char *attachment_tmp;
10884
10885 if (!rs->remote_desc
10886 || packet_support (which_packet) == PACKET_DISABLE)
10887 {
10888 *remote_errno = FILEIO_ENOSYS;
10889 return -1;
10890 }
10891
10892 putpkt_binary (rs->buf, command_bytes);
10893 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10894
10895 /* If it timed out, something is wrong. Don't try to parse the
10896 buffer. */
10897 if (bytes_read < 0)
10898 {
10899 *remote_errno = FILEIO_EINVAL;
10900 return -1;
10901 }
10902
10903 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
10904 {
10905 case PACKET_ERROR:
10906 *remote_errno = FILEIO_EINVAL;
10907 return -1;
10908 case PACKET_UNKNOWN:
10909 *remote_errno = FILEIO_ENOSYS;
10910 return -1;
10911 case PACKET_OK:
10912 break;
10913 }
10914
10915 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
10916 &attachment_tmp))
10917 {
10918 *remote_errno = FILEIO_EINVAL;
10919 return -1;
10920 }
10921
10922 /* Make sure we saw an attachment if and only if we expected one. */
10923 if ((attachment_tmp == NULL && attachment != NULL)
10924 || (attachment_tmp != NULL && attachment == NULL))
10925 {
10926 *remote_errno = FILEIO_EINVAL;
10927 return -1;
10928 }
10929
10930 /* If an attachment was found, it must point into the packet buffer;
10931 work out how many bytes there were. */
10932 if (attachment_tmp != NULL)
10933 {
10934 *attachment = attachment_tmp;
10935 *attachment_len = bytes_read - (*attachment - rs->buf);
10936 }
10937
10938 return ret;
10939 }
10940
10941 /* Invalidate the readahead cache. */
10942
10943 static void
10944 readahead_cache_invalidate (void)
10945 {
10946 struct remote_state *rs = get_remote_state ();
10947
10948 rs->readahead_cache.fd = -1;
10949 }
10950
10951 /* Invalidate the readahead cache if it is holding data for FD. */
10952
10953 static void
10954 readahead_cache_invalidate_fd (int fd)
10955 {
10956 struct remote_state *rs = get_remote_state ();
10957
10958 if (rs->readahead_cache.fd == fd)
10959 rs->readahead_cache.fd = -1;
10960 }
10961
10962 /* Set the filesystem remote_hostio functions that take FILENAME
10963 arguments will use. Return 0 on success, or -1 if an error
10964 occurs (and set *REMOTE_ERRNO). */
10965
10966 static int
10967 remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
10968 {
10969 struct remote_state *rs = get_remote_state ();
10970 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
10971 char *p = rs->buf;
10972 int left = get_remote_packet_size () - 1;
10973 char arg[9];
10974 int ret;
10975
10976 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
10977 return 0;
10978
10979 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
10980 return 0;
10981
10982 remote_buffer_add_string (&p, &left, "vFile:setfs:");
10983
10984 xsnprintf (arg, sizeof (arg), "%x", required_pid);
10985 remote_buffer_add_string (&p, &left, arg);
10986
10987 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
10988 remote_errno, NULL, NULL);
10989
10990 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
10991 return 0;
10992
10993 if (ret == 0)
10994 rs->fs_pid = required_pid;
10995
10996 return ret;
10997 }
10998
10999 /* Implementation of to_fileio_open. */
11000
11001 static int
11002 remote_hostio_open (struct target_ops *self,
11003 struct inferior *inf, const char *filename,
11004 int flags, int mode, int warn_if_slow,
11005 int *remote_errno)
11006 {
11007 struct remote_state *rs = get_remote_state ();
11008 char *p = rs->buf;
11009 int left = get_remote_packet_size () - 1;
11010
11011 if (warn_if_slow)
11012 {
11013 static int warning_issued = 0;
11014
11015 printf_unfiltered (_("Reading %s from remote target...\n"),
11016 filename);
11017
11018 if (!warning_issued)
11019 {
11020 warning (_("File transfers from remote targets can be slow."
11021 " Use \"set sysroot\" to access files locally"
11022 " instead."));
11023 warning_issued = 1;
11024 }
11025 }
11026
11027 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11028 return -1;
11029
11030 remote_buffer_add_string (&p, &left, "vFile:open:");
11031
11032 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11033 strlen (filename));
11034 remote_buffer_add_string (&p, &left, ",");
11035
11036 remote_buffer_add_int (&p, &left, flags);
11037 remote_buffer_add_string (&p, &left, ",");
11038
11039 remote_buffer_add_int (&p, &left, mode);
11040
11041 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11042 remote_errno, NULL, NULL);
11043 }
11044
11045 /* Implementation of to_fileio_pwrite. */
11046
11047 static int
11048 remote_hostio_pwrite (struct target_ops *self,
11049 int fd, const gdb_byte *write_buf, int len,
11050 ULONGEST offset, int *remote_errno)
11051 {
11052 struct remote_state *rs = get_remote_state ();
11053 char *p = rs->buf;
11054 int left = get_remote_packet_size ();
11055 int out_len;
11056
11057 readahead_cache_invalidate_fd (fd);
11058
11059 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11060
11061 remote_buffer_add_int (&p, &left, fd);
11062 remote_buffer_add_string (&p, &left, ",");
11063
11064 remote_buffer_add_int (&p, &left, offset);
11065 remote_buffer_add_string (&p, &left, ",");
11066
11067 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
11068 get_remote_packet_size () - (p - rs->buf));
11069
11070 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11071 remote_errno, NULL, NULL);
11072 }
11073
11074 /* Helper for the implementation of to_fileio_pread. Read the file
11075 from the remote side with vFile:pread. */
11076
11077 static int
11078 remote_hostio_pread_vFile (struct target_ops *self,
11079 int fd, gdb_byte *read_buf, int len,
11080 ULONGEST offset, int *remote_errno)
11081 {
11082 struct remote_state *rs = get_remote_state ();
11083 char *p = rs->buf;
11084 char *attachment;
11085 int left = get_remote_packet_size ();
11086 int ret, attachment_len;
11087 int read_len;
11088
11089 remote_buffer_add_string (&p, &left, "vFile:pread:");
11090
11091 remote_buffer_add_int (&p, &left, fd);
11092 remote_buffer_add_string (&p, &left, ",");
11093
11094 remote_buffer_add_int (&p, &left, len);
11095 remote_buffer_add_string (&p, &left, ",");
11096
11097 remote_buffer_add_int (&p, &left, offset);
11098
11099 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11100 remote_errno, &attachment,
11101 &attachment_len);
11102
11103 if (ret < 0)
11104 return ret;
11105
11106 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11107 read_buf, len);
11108 if (read_len != ret)
11109 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11110
11111 return ret;
11112 }
11113
11114 /* Serve pread from the readahead cache. Returns number of bytes
11115 read, or 0 if the request can't be served from the cache. */
11116
11117 static int
11118 remote_hostio_pread_from_cache (struct remote_state *rs,
11119 int fd, gdb_byte *read_buf, size_t len,
11120 ULONGEST offset)
11121 {
11122 struct readahead_cache *cache = &rs->readahead_cache;
11123
11124 if (cache->fd == fd
11125 && cache->offset <= offset
11126 && offset < cache->offset + cache->bufsize)
11127 {
11128 ULONGEST max = cache->offset + cache->bufsize;
11129
11130 if (offset + len > max)
11131 len = max - offset;
11132
11133 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11134 return len;
11135 }
11136
11137 return 0;
11138 }
11139
11140 /* Implementation of to_fileio_pread. */
11141
11142 static int
11143 remote_hostio_pread (struct target_ops *self,
11144 int fd, gdb_byte *read_buf, int len,
11145 ULONGEST offset, int *remote_errno)
11146 {
11147 int ret;
11148 struct remote_state *rs = get_remote_state ();
11149 struct readahead_cache *cache = &rs->readahead_cache;
11150
11151 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11152 if (ret > 0)
11153 {
11154 cache->hit_count++;
11155
11156 if (remote_debug)
11157 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11158 pulongest (cache->hit_count));
11159 return ret;
11160 }
11161
11162 cache->miss_count++;
11163 if (remote_debug)
11164 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11165 pulongest (cache->miss_count));
11166
11167 cache->fd = fd;
11168 cache->offset = offset;
11169 cache->bufsize = get_remote_packet_size ();
11170 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
11171
11172 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11173 cache->offset, remote_errno);
11174 if (ret <= 0)
11175 {
11176 readahead_cache_invalidate_fd (fd);
11177 return ret;
11178 }
11179
11180 cache->bufsize = ret;
11181 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11182 }
11183
11184 /* Implementation of to_fileio_close. */
11185
11186 static int
11187 remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
11188 {
11189 struct remote_state *rs = get_remote_state ();
11190 char *p = rs->buf;
11191 int left = get_remote_packet_size () - 1;
11192
11193 readahead_cache_invalidate_fd (fd);
11194
11195 remote_buffer_add_string (&p, &left, "vFile:close:");
11196
11197 remote_buffer_add_int (&p, &left, fd);
11198
11199 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11200 remote_errno, NULL, NULL);
11201 }
11202
11203 /* Implementation of to_fileio_unlink. */
11204
11205 static int
11206 remote_hostio_unlink (struct target_ops *self,
11207 struct inferior *inf, const char *filename,
11208 int *remote_errno)
11209 {
11210 struct remote_state *rs = get_remote_state ();
11211 char *p = rs->buf;
11212 int left = get_remote_packet_size () - 1;
11213
11214 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11215 return -1;
11216
11217 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11218
11219 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11220 strlen (filename));
11221
11222 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11223 remote_errno, NULL, NULL);
11224 }
11225
11226 /* Implementation of to_fileio_readlink. */
11227
11228 static char *
11229 remote_hostio_readlink (struct target_ops *self,
11230 struct inferior *inf, const char *filename,
11231 int *remote_errno)
11232 {
11233 struct remote_state *rs = get_remote_state ();
11234 char *p = rs->buf;
11235 char *attachment;
11236 int left = get_remote_packet_size ();
11237 int len, attachment_len;
11238 int read_len;
11239 char *ret;
11240
11241 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11242 return NULL;
11243
11244 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11245
11246 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11247 strlen (filename));
11248
11249 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11250 remote_errno, &attachment,
11251 &attachment_len);
11252
11253 if (len < 0)
11254 return NULL;
11255
11256 ret = (char *) xmalloc (len + 1);
11257
11258 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11259 (gdb_byte *) ret, len);
11260 if (read_len != len)
11261 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11262
11263 ret[len] = '\0';
11264 return ret;
11265 }
11266
11267 /* Implementation of to_fileio_fstat. */
11268
11269 static int
11270 remote_hostio_fstat (struct target_ops *self,
11271 int fd, struct stat *st,
11272 int *remote_errno)
11273 {
11274 struct remote_state *rs = get_remote_state ();
11275 char *p = rs->buf;
11276 int left = get_remote_packet_size ();
11277 int attachment_len, ret;
11278 char *attachment;
11279 struct fio_stat fst;
11280 int read_len;
11281
11282 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11283
11284 remote_buffer_add_int (&p, &left, fd);
11285
11286 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11287 remote_errno, &attachment,
11288 &attachment_len);
11289 if (ret < 0)
11290 {
11291 if (*remote_errno != FILEIO_ENOSYS)
11292 return ret;
11293
11294 /* Strictly we should return -1, ENOSYS here, but when
11295 "set sysroot remote:" was implemented in August 2008
11296 BFD's need for a stat function was sidestepped with
11297 this hack. This was not remedied until March 2015
11298 so we retain the previous behavior to avoid breaking
11299 compatibility.
11300
11301 Note that the memset is a March 2015 addition; older
11302 GDBs set st_size *and nothing else* so the structure
11303 would have garbage in all other fields. This might
11304 break something but retaining the previous behavior
11305 here would be just too wrong. */
11306
11307 memset (st, 0, sizeof (struct stat));
11308 st->st_size = INT_MAX;
11309 return 0;
11310 }
11311
11312 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11313 (gdb_byte *) &fst, sizeof (fst));
11314
11315 if (read_len != ret)
11316 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11317
11318 if (read_len != sizeof (fst))
11319 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11320 read_len, (int) sizeof (fst));
11321
11322 remote_fileio_to_host_stat (&fst, st);
11323
11324 return 0;
11325 }
11326
11327 /* Implementation of to_filesystem_is_local. */
11328
11329 static int
11330 remote_filesystem_is_local (struct target_ops *self)
11331 {
11332 /* Valgrind GDB presents itself as a remote target but works
11333 on the local filesystem: it does not implement remote get
11334 and users are not expected to set a sysroot. To handle
11335 this case we treat the remote filesystem as local if the
11336 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11337 does not support vFile:open. */
11338 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
11339 {
11340 enum packet_support ps = packet_support (PACKET_vFile_open);
11341
11342 if (ps == PACKET_SUPPORT_UNKNOWN)
11343 {
11344 int fd, remote_errno;
11345
11346 /* Try opening a file to probe support. The supplied
11347 filename is irrelevant, we only care about whether
11348 the stub recognizes the packet or not. */
11349 fd = remote_hostio_open (self, NULL, "just probing",
11350 FILEIO_O_RDONLY, 0700, 0,
11351 &remote_errno);
11352
11353 if (fd >= 0)
11354 remote_hostio_close (self, fd, &remote_errno);
11355
11356 ps = packet_support (PACKET_vFile_open);
11357 }
11358
11359 if (ps == PACKET_DISABLE)
11360 {
11361 static int warning_issued = 0;
11362
11363 if (!warning_issued)
11364 {
11365 warning (_("remote target does not support file"
11366 " transfer, attempting to access files"
11367 " from local filesystem."));
11368 warning_issued = 1;
11369 }
11370
11371 return 1;
11372 }
11373 }
11374
11375 return 0;
11376 }
11377
11378 static int
11379 remote_fileio_errno_to_host (int errnum)
11380 {
11381 switch (errnum)
11382 {
11383 case FILEIO_EPERM:
11384 return EPERM;
11385 case FILEIO_ENOENT:
11386 return ENOENT;
11387 case FILEIO_EINTR:
11388 return EINTR;
11389 case FILEIO_EIO:
11390 return EIO;
11391 case FILEIO_EBADF:
11392 return EBADF;
11393 case FILEIO_EACCES:
11394 return EACCES;
11395 case FILEIO_EFAULT:
11396 return EFAULT;
11397 case FILEIO_EBUSY:
11398 return EBUSY;
11399 case FILEIO_EEXIST:
11400 return EEXIST;
11401 case FILEIO_ENODEV:
11402 return ENODEV;
11403 case FILEIO_ENOTDIR:
11404 return ENOTDIR;
11405 case FILEIO_EISDIR:
11406 return EISDIR;
11407 case FILEIO_EINVAL:
11408 return EINVAL;
11409 case FILEIO_ENFILE:
11410 return ENFILE;
11411 case FILEIO_EMFILE:
11412 return EMFILE;
11413 case FILEIO_EFBIG:
11414 return EFBIG;
11415 case FILEIO_ENOSPC:
11416 return ENOSPC;
11417 case FILEIO_ESPIPE:
11418 return ESPIPE;
11419 case FILEIO_EROFS:
11420 return EROFS;
11421 case FILEIO_ENOSYS:
11422 return ENOSYS;
11423 case FILEIO_ENAMETOOLONG:
11424 return ENAMETOOLONG;
11425 }
11426 return -1;
11427 }
11428
11429 static char *
11430 remote_hostio_error (int errnum)
11431 {
11432 int host_error = remote_fileio_errno_to_host (errnum);
11433
11434 if (host_error == -1)
11435 error (_("Unknown remote I/O error %d"), errnum);
11436 else
11437 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11438 }
11439
11440 static void
11441 remote_hostio_close_cleanup (void *opaque)
11442 {
11443 int fd = *(int *) opaque;
11444 int remote_errno;
11445
11446 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
11447 }
11448
11449 void
11450 remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11451 {
11452 struct cleanup *back_to, *close_cleanup;
11453 int retcode, fd, remote_errno, bytes, io_size;
11454 FILE *file;
11455 gdb_byte *buffer;
11456 int bytes_in_buffer;
11457 int saw_eof;
11458 ULONGEST offset;
11459 struct remote_state *rs = get_remote_state ();
11460
11461 if (!rs->remote_desc)
11462 error (_("command can only be used with remote target"));
11463
11464 file = gdb_fopen_cloexec (local_file, "rb");
11465 if (file == NULL)
11466 perror_with_name (local_file);
11467 back_to = make_cleanup_fclose (file);
11468
11469 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
11470 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
11471 | FILEIO_O_TRUNC),
11472 0700, 0, &remote_errno);
11473 if (fd == -1)
11474 remote_hostio_error (remote_errno);
11475
11476 /* Send up to this many bytes at once. They won't all fit in the
11477 remote packet limit, so we'll transfer slightly fewer. */
11478 io_size = get_remote_packet_size ();
11479 buffer = (gdb_byte *) xmalloc (io_size);
11480 make_cleanup (xfree, buffer);
11481
11482 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11483
11484 bytes_in_buffer = 0;
11485 saw_eof = 0;
11486 offset = 0;
11487 while (bytes_in_buffer || !saw_eof)
11488 {
11489 if (!saw_eof)
11490 {
11491 bytes = fread (buffer + bytes_in_buffer, 1,
11492 io_size - bytes_in_buffer,
11493 file);
11494 if (bytes == 0)
11495 {
11496 if (ferror (file))
11497 error (_("Error reading %s."), local_file);
11498 else
11499 {
11500 /* EOF. Unless there is something still in the
11501 buffer from the last iteration, we are done. */
11502 saw_eof = 1;
11503 if (bytes_in_buffer == 0)
11504 break;
11505 }
11506 }
11507 }
11508 else
11509 bytes = 0;
11510
11511 bytes += bytes_in_buffer;
11512 bytes_in_buffer = 0;
11513
11514 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11515 fd, buffer, bytes,
11516 offset, &remote_errno);
11517
11518 if (retcode < 0)
11519 remote_hostio_error (remote_errno);
11520 else if (retcode == 0)
11521 error (_("Remote write of %d bytes returned 0!"), bytes);
11522 else if (retcode < bytes)
11523 {
11524 /* Short write. Save the rest of the read data for the next
11525 write. */
11526 bytes_in_buffer = bytes - retcode;
11527 memmove (buffer, buffer + retcode, bytes_in_buffer);
11528 }
11529
11530 offset += retcode;
11531 }
11532
11533 discard_cleanups (close_cleanup);
11534 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11535 remote_hostio_error (remote_errno);
11536
11537 if (from_tty)
11538 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
11539 do_cleanups (back_to);
11540 }
11541
11542 void
11543 remote_file_get (const char *remote_file, const char *local_file, int from_tty)
11544 {
11545 struct cleanup *back_to, *close_cleanup;
11546 int fd, remote_errno, bytes, io_size;
11547 FILE *file;
11548 gdb_byte *buffer;
11549 ULONGEST offset;
11550 struct remote_state *rs = get_remote_state ();
11551
11552 if (!rs->remote_desc)
11553 error (_("command can only be used with remote target"));
11554
11555 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
11556 remote_file, FILEIO_O_RDONLY, 0, 0,
11557 &remote_errno);
11558 if (fd == -1)
11559 remote_hostio_error (remote_errno);
11560
11561 file = gdb_fopen_cloexec (local_file, "wb");
11562 if (file == NULL)
11563 perror_with_name (local_file);
11564 back_to = make_cleanup_fclose (file);
11565
11566 /* Send up to this many bytes at once. They won't all fit in the
11567 remote packet limit, so we'll transfer slightly fewer. */
11568 io_size = get_remote_packet_size ();
11569 buffer = (gdb_byte *) xmalloc (io_size);
11570 make_cleanup (xfree, buffer);
11571
11572 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11573
11574 offset = 0;
11575 while (1)
11576 {
11577 bytes = remote_hostio_pread (find_target_at (process_stratum),
11578 fd, buffer, io_size, offset, &remote_errno);
11579 if (bytes == 0)
11580 /* Success, but no bytes, means end-of-file. */
11581 break;
11582 if (bytes == -1)
11583 remote_hostio_error (remote_errno);
11584
11585 offset += bytes;
11586
11587 bytes = fwrite (buffer, 1, bytes, file);
11588 if (bytes == 0)
11589 perror_with_name (local_file);
11590 }
11591
11592 discard_cleanups (close_cleanup);
11593 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
11594 remote_hostio_error (remote_errno);
11595
11596 if (from_tty)
11597 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
11598 do_cleanups (back_to);
11599 }
11600
11601 void
11602 remote_file_delete (const char *remote_file, int from_tty)
11603 {
11604 int retcode, remote_errno;
11605 struct remote_state *rs = get_remote_state ();
11606
11607 if (!rs->remote_desc)
11608 error (_("command can only be used with remote target"));
11609
11610 retcode = remote_hostio_unlink (find_target_at (process_stratum),
11611 NULL, remote_file, &remote_errno);
11612 if (retcode == -1)
11613 remote_hostio_error (remote_errno);
11614
11615 if (from_tty)
11616 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
11617 }
11618
11619 static void
11620 remote_put_command (char *args, int from_tty)
11621 {
11622 struct cleanup *back_to;
11623 char **argv;
11624
11625 if (args == NULL)
11626 error_no_arg (_("file to put"));
11627
11628 argv = gdb_buildargv (args);
11629 back_to = make_cleanup_freeargv (argv);
11630 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11631 error (_("Invalid parameters to remote put"));
11632
11633 remote_file_put (argv[0], argv[1], from_tty);
11634
11635 do_cleanups (back_to);
11636 }
11637
11638 static void
11639 remote_get_command (char *args, int from_tty)
11640 {
11641 struct cleanup *back_to;
11642 char **argv;
11643
11644 if (args == NULL)
11645 error_no_arg (_("file to get"));
11646
11647 argv = gdb_buildargv (args);
11648 back_to = make_cleanup_freeargv (argv);
11649 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11650 error (_("Invalid parameters to remote get"));
11651
11652 remote_file_get (argv[0], argv[1], from_tty);
11653
11654 do_cleanups (back_to);
11655 }
11656
11657 static void
11658 remote_delete_command (char *args, int from_tty)
11659 {
11660 struct cleanup *back_to;
11661 char **argv;
11662
11663 if (args == NULL)
11664 error_no_arg (_("file to delete"));
11665
11666 argv = gdb_buildargv (args);
11667 back_to = make_cleanup_freeargv (argv);
11668 if (argv[0] == NULL || argv[1] != NULL)
11669 error (_("Invalid parameters to remote delete"));
11670
11671 remote_file_delete (argv[0], from_tty);
11672
11673 do_cleanups (back_to);
11674 }
11675
11676 static void
11677 remote_command (char *args, int from_tty)
11678 {
11679 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
11680 }
11681
11682 static int
11683 remote_can_execute_reverse (struct target_ops *self)
11684 {
11685 if (packet_support (PACKET_bs) == PACKET_ENABLE
11686 || packet_support (PACKET_bc) == PACKET_ENABLE)
11687 return 1;
11688 else
11689 return 0;
11690 }
11691
11692 static int
11693 remote_supports_non_stop (struct target_ops *self)
11694 {
11695 return 1;
11696 }
11697
11698 static int
11699 remote_supports_disable_randomization (struct target_ops *self)
11700 {
11701 /* Only supported in extended mode. */
11702 return 0;
11703 }
11704
11705 static int
11706 remote_supports_multi_process (struct target_ops *self)
11707 {
11708 struct remote_state *rs = get_remote_state ();
11709
11710 return remote_multi_process_p (rs);
11711 }
11712
11713 static int
11714 remote_supports_cond_tracepoints (void)
11715 {
11716 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
11717 }
11718
11719 static int
11720 remote_supports_cond_breakpoints (struct target_ops *self)
11721 {
11722 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
11723 }
11724
11725 static int
11726 remote_supports_fast_tracepoints (void)
11727 {
11728 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
11729 }
11730
11731 static int
11732 remote_supports_static_tracepoints (void)
11733 {
11734 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
11735 }
11736
11737 static int
11738 remote_supports_install_in_trace (void)
11739 {
11740 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
11741 }
11742
11743 static int
11744 remote_supports_enable_disable_tracepoint (struct target_ops *self)
11745 {
11746 return (packet_support (PACKET_EnableDisableTracepoints_feature)
11747 == PACKET_ENABLE);
11748 }
11749
11750 static int
11751 remote_supports_string_tracing (struct target_ops *self)
11752 {
11753 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
11754 }
11755
11756 static int
11757 remote_can_run_breakpoint_commands (struct target_ops *self)
11758 {
11759 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
11760 }
11761
11762 static void
11763 remote_trace_init (struct target_ops *self)
11764 {
11765 putpkt ("QTinit");
11766 remote_get_noisy_reply (&target_buf, &target_buf_size);
11767 if (strcmp (target_buf, "OK") != 0)
11768 error (_("Target does not support this command."));
11769 }
11770
11771 static void free_actions_list (char **actions_list);
11772 static void free_actions_list_cleanup_wrapper (void *);
11773 static void
11774 free_actions_list_cleanup_wrapper (void *al)
11775 {
11776 free_actions_list ((char **) al);
11777 }
11778
11779 static void
11780 free_actions_list (char **actions_list)
11781 {
11782 int ndx;
11783
11784 if (actions_list == 0)
11785 return;
11786
11787 for (ndx = 0; actions_list[ndx]; ndx++)
11788 xfree (actions_list[ndx]);
11789
11790 xfree (actions_list);
11791 }
11792
11793 /* Recursive routine to walk through command list including loops, and
11794 download packets for each command. */
11795
11796 static void
11797 remote_download_command_source (int num, ULONGEST addr,
11798 struct command_line *cmds)
11799 {
11800 struct remote_state *rs = get_remote_state ();
11801 struct command_line *cmd;
11802
11803 for (cmd = cmds; cmd; cmd = cmd->next)
11804 {
11805 QUIT; /* Allow user to bail out with ^C. */
11806 strcpy (rs->buf, "QTDPsrc:");
11807 encode_source_string (num, addr, "cmd", cmd->line,
11808 rs->buf + strlen (rs->buf),
11809 rs->buf_size - strlen (rs->buf));
11810 putpkt (rs->buf);
11811 remote_get_noisy_reply (&target_buf, &target_buf_size);
11812 if (strcmp (target_buf, "OK"))
11813 warning (_("Target does not support source download."));
11814
11815 if (cmd->control_type == while_control
11816 || cmd->control_type == while_stepping_control)
11817 {
11818 remote_download_command_source (num, addr, *cmd->body_list);
11819
11820 QUIT; /* Allow user to bail out with ^C. */
11821 strcpy (rs->buf, "QTDPsrc:");
11822 encode_source_string (num, addr, "cmd", "end",
11823 rs->buf + strlen (rs->buf),
11824 rs->buf_size - strlen (rs->buf));
11825 putpkt (rs->buf);
11826 remote_get_noisy_reply (&target_buf, &target_buf_size);
11827 if (strcmp (target_buf, "OK"))
11828 warning (_("Target does not support source download."));
11829 }
11830 }
11831 }
11832
11833 static void
11834 remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
11835 {
11836 #define BUF_SIZE 2048
11837
11838 CORE_ADDR tpaddr;
11839 char addrbuf[40];
11840 char buf[BUF_SIZE];
11841 char **tdp_actions;
11842 char **stepping_actions;
11843 int ndx;
11844 struct cleanup *old_chain = NULL;
11845 struct agent_expr *aexpr;
11846 struct cleanup *aexpr_chain = NULL;
11847 char *pkt;
11848 struct breakpoint *b = loc->owner;
11849 struct tracepoint *t = (struct tracepoint *) b;
11850
11851 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
11852 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
11853 tdp_actions);
11854 (void) make_cleanup (free_actions_list_cleanup_wrapper,
11855 stepping_actions);
11856
11857 tpaddr = loc->address;
11858 sprintf_vma (addrbuf, tpaddr);
11859 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
11860 addrbuf, /* address */
11861 (b->enable_state == bp_enabled ? 'E' : 'D'),
11862 t->step_count, t->pass_count);
11863 /* Fast tracepoints are mostly handled by the target, but we can
11864 tell the target how big of an instruction block should be moved
11865 around. */
11866 if (b->type == bp_fast_tracepoint)
11867 {
11868 /* Only test for support at download time; we may not know
11869 target capabilities at definition time. */
11870 if (remote_supports_fast_tracepoints ())
11871 {
11872 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
11873 NULL))
11874 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
11875 gdb_insn_length (loc->gdbarch, tpaddr));
11876 else
11877 /* If it passed validation at definition but fails now,
11878 something is very wrong. */
11879 internal_error (__FILE__, __LINE__,
11880 _("Fast tracepoint not "
11881 "valid during download"));
11882 }
11883 else
11884 /* Fast tracepoints are functionally identical to regular
11885 tracepoints, so don't take lack of support as a reason to
11886 give up on the trace run. */
11887 warning (_("Target does not support fast tracepoints, "
11888 "downloading %d as regular tracepoint"), b->number);
11889 }
11890 else if (b->type == bp_static_tracepoint)
11891 {
11892 /* Only test for support at download time; we may not know
11893 target capabilities at definition time. */
11894 if (remote_supports_static_tracepoints ())
11895 {
11896 struct static_tracepoint_marker marker;
11897
11898 if (target_static_tracepoint_marker_at (tpaddr, &marker))
11899 strcat (buf, ":S");
11900 else
11901 error (_("Static tracepoint not valid during download"));
11902 }
11903 else
11904 /* Fast tracepoints are functionally identical to regular
11905 tracepoints, so don't take lack of support as a reason
11906 to give up on the trace run. */
11907 error (_("Target does not support static tracepoints"));
11908 }
11909 /* If the tracepoint has a conditional, make it into an agent
11910 expression and append to the definition. */
11911 if (loc->cond)
11912 {
11913 /* Only test support at download time, we may not know target
11914 capabilities at definition time. */
11915 if (remote_supports_cond_tracepoints ())
11916 {
11917 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
11918 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
11919 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
11920 aexpr->len);
11921 pkt = buf + strlen (buf);
11922 for (ndx = 0; ndx < aexpr->len; ++ndx)
11923 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
11924 *pkt = '\0';
11925 do_cleanups (aexpr_chain);
11926 }
11927 else
11928 warning (_("Target does not support conditional tracepoints, "
11929 "ignoring tp %d cond"), b->number);
11930 }
11931
11932 if (b->commands || *default_collect)
11933 strcat (buf, "-");
11934 putpkt (buf);
11935 remote_get_noisy_reply (&target_buf, &target_buf_size);
11936 if (strcmp (target_buf, "OK"))
11937 error (_("Target does not support tracepoints."));
11938
11939 /* do_single_steps (t); */
11940 if (tdp_actions)
11941 {
11942 for (ndx = 0; tdp_actions[ndx]; ndx++)
11943 {
11944 QUIT; /* Allow user to bail out with ^C. */
11945 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
11946 b->number, addrbuf, /* address */
11947 tdp_actions[ndx],
11948 ((tdp_actions[ndx + 1] || stepping_actions)
11949 ? '-' : 0));
11950 putpkt (buf);
11951 remote_get_noisy_reply (&target_buf,
11952 &target_buf_size);
11953 if (strcmp (target_buf, "OK"))
11954 error (_("Error on target while setting tracepoints."));
11955 }
11956 }
11957 if (stepping_actions)
11958 {
11959 for (ndx = 0; stepping_actions[ndx]; ndx++)
11960 {
11961 QUIT; /* Allow user to bail out with ^C. */
11962 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
11963 b->number, addrbuf, /* address */
11964 ((ndx == 0) ? "S" : ""),
11965 stepping_actions[ndx],
11966 (stepping_actions[ndx + 1] ? "-" : ""));
11967 putpkt (buf);
11968 remote_get_noisy_reply (&target_buf,
11969 &target_buf_size);
11970 if (strcmp (target_buf, "OK"))
11971 error (_("Error on target while setting tracepoints."));
11972 }
11973 }
11974
11975 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
11976 {
11977 if (b->location != NULL)
11978 {
11979 strcpy (buf, "QTDPsrc:");
11980 encode_source_string (b->number, loc->address, "at",
11981 event_location_to_string (b->location),
11982 buf + strlen (buf), 2048 - strlen (buf));
11983 putpkt (buf);
11984 remote_get_noisy_reply (&target_buf, &target_buf_size);
11985 if (strcmp (target_buf, "OK"))
11986 warning (_("Target does not support source download."));
11987 }
11988 if (b->cond_string)
11989 {
11990 strcpy (buf, "QTDPsrc:");
11991 encode_source_string (b->number, loc->address,
11992 "cond", b->cond_string, buf + strlen (buf),
11993 2048 - strlen (buf));
11994 putpkt (buf);
11995 remote_get_noisy_reply (&target_buf, &target_buf_size);
11996 if (strcmp (target_buf, "OK"))
11997 warning (_("Target does not support source download."));
11998 }
11999 remote_download_command_source (b->number, loc->address,
12000 breakpoint_commands (b));
12001 }
12002
12003 do_cleanups (old_chain);
12004 }
12005
12006 static int
12007 remote_can_download_tracepoint (struct target_ops *self)
12008 {
12009 struct remote_state *rs = get_remote_state ();
12010 struct trace_status *ts;
12011 int status;
12012
12013 /* Don't try to install tracepoints until we've relocated our
12014 symbols, and fetched and merged the target's tracepoint list with
12015 ours. */
12016 if (rs->starting_up)
12017 return 0;
12018
12019 ts = current_trace_status ();
12020 status = remote_get_trace_status (self, ts);
12021
12022 if (status == -1 || !ts->running_known || !ts->running)
12023 return 0;
12024
12025 /* If we are in a tracing experiment, but remote stub doesn't support
12026 installing tracepoint in trace, we have to return. */
12027 if (!remote_supports_install_in_trace ())
12028 return 0;
12029
12030 return 1;
12031 }
12032
12033
12034 static void
12035 remote_download_trace_state_variable (struct target_ops *self,
12036 struct trace_state_variable *tsv)
12037 {
12038 struct remote_state *rs = get_remote_state ();
12039 char *p;
12040
12041 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12042 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12043 tsv->builtin);
12044 p = rs->buf + strlen (rs->buf);
12045 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12046 error (_("Trace state variable name too long for tsv definition packet"));
12047 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
12048 *p++ = '\0';
12049 putpkt (rs->buf);
12050 remote_get_noisy_reply (&target_buf, &target_buf_size);
12051 if (*target_buf == '\0')
12052 error (_("Target does not support this command."));
12053 if (strcmp (target_buf, "OK") != 0)
12054 error (_("Error on target while downloading trace state variable."));
12055 }
12056
12057 static void
12058 remote_enable_tracepoint (struct target_ops *self,
12059 struct bp_location *location)
12060 {
12061 struct remote_state *rs = get_remote_state ();
12062 char addr_buf[40];
12063
12064 sprintf_vma (addr_buf, location->address);
12065 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12066 location->owner->number, addr_buf);
12067 putpkt (rs->buf);
12068 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12069 if (*rs->buf == '\0')
12070 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12071 if (strcmp (rs->buf, "OK") != 0)
12072 error (_("Error on target while enabling tracepoint."));
12073 }
12074
12075 static void
12076 remote_disable_tracepoint (struct target_ops *self,
12077 struct bp_location *location)
12078 {
12079 struct remote_state *rs = get_remote_state ();
12080 char addr_buf[40];
12081
12082 sprintf_vma (addr_buf, location->address);
12083 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12084 location->owner->number, addr_buf);
12085 putpkt (rs->buf);
12086 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12087 if (*rs->buf == '\0')
12088 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12089 if (strcmp (rs->buf, "OK") != 0)
12090 error (_("Error on target while disabling tracepoint."));
12091 }
12092
12093 static void
12094 remote_trace_set_readonly_regions (struct target_ops *self)
12095 {
12096 asection *s;
12097 bfd *abfd = NULL;
12098 bfd_size_type size;
12099 bfd_vma vma;
12100 int anysecs = 0;
12101 int offset = 0;
12102
12103 if (!exec_bfd)
12104 return; /* No information to give. */
12105
12106 strcpy (target_buf, "QTro");
12107 offset = strlen (target_buf);
12108 for (s = exec_bfd->sections; s; s = s->next)
12109 {
12110 char tmp1[40], tmp2[40];
12111 int sec_length;
12112
12113 if ((s->flags & SEC_LOAD) == 0 ||
12114 /* (s->flags & SEC_CODE) == 0 || */
12115 (s->flags & SEC_READONLY) == 0)
12116 continue;
12117
12118 anysecs = 1;
12119 vma = bfd_get_section_vma (abfd, s);
12120 size = bfd_get_section_size (s);
12121 sprintf_vma (tmp1, vma);
12122 sprintf_vma (tmp2, vma + size);
12123 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
12124 if (offset + sec_length + 1 > target_buf_size)
12125 {
12126 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
12127 warning (_("\
12128 Too many sections for read-only sections definition packet."));
12129 break;
12130 }
12131 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
12132 tmp1, tmp2);
12133 offset += sec_length;
12134 }
12135 if (anysecs)
12136 {
12137 putpkt (target_buf);
12138 getpkt (&target_buf, &target_buf_size, 0);
12139 }
12140 }
12141
12142 static void
12143 remote_trace_start (struct target_ops *self)
12144 {
12145 putpkt ("QTStart");
12146 remote_get_noisy_reply (&target_buf, &target_buf_size);
12147 if (*target_buf == '\0')
12148 error (_("Target does not support this command."));
12149 if (strcmp (target_buf, "OK") != 0)
12150 error (_("Bogus reply from target: %s"), target_buf);
12151 }
12152
12153 static int
12154 remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
12155 {
12156 /* Initialize it just to avoid a GCC false warning. */
12157 char *p = NULL;
12158 /* FIXME we need to get register block size some other way. */
12159 extern int trace_regblock_size;
12160 enum packet_result result;
12161
12162 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
12163 return -1;
12164
12165 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
12166
12167 putpkt ("qTStatus");
12168
12169 TRY
12170 {
12171 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
12172 }
12173 CATCH (ex, RETURN_MASK_ERROR)
12174 {
12175 if (ex.error != TARGET_CLOSE_ERROR)
12176 {
12177 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12178 return -1;
12179 }
12180 throw_exception (ex);
12181 }
12182 END_CATCH
12183
12184 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12185
12186 /* If the remote target doesn't do tracing, flag it. */
12187 if (result == PACKET_UNKNOWN)
12188 return -1;
12189
12190 /* We're working with a live target. */
12191 ts->filename = NULL;
12192
12193 if (*p++ != 'T')
12194 error (_("Bogus trace status reply from target: %s"), target_buf);
12195
12196 /* Function 'parse_trace_status' sets default value of each field of
12197 'ts' at first, so we don't have to do it here. */
12198 parse_trace_status (p, ts);
12199
12200 return ts->running;
12201 }
12202
12203 static void
12204 remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
12205 struct uploaded_tp *utp)
12206 {
12207 struct remote_state *rs = get_remote_state ();
12208 char *reply;
12209 struct bp_location *loc;
12210 struct tracepoint *tp = (struct tracepoint *) bp;
12211 size_t size = get_remote_packet_size ();
12212
12213 if (tp)
12214 {
12215 tp->base.hit_count = 0;
12216 tp->traceframe_usage = 0;
12217 for (loc = tp->base.loc; loc; loc = loc->next)
12218 {
12219 /* If the tracepoint was never downloaded, don't go asking for
12220 any status. */
12221 if (tp->number_on_target == 0)
12222 continue;
12223 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12224 phex_nz (loc->address, 0));
12225 putpkt (rs->buf);
12226 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12227 if (reply && *reply)
12228 {
12229 if (*reply == 'V')
12230 parse_tracepoint_status (reply + 1, bp, utp);
12231 }
12232 }
12233 }
12234 else if (utp)
12235 {
12236 utp->hit_count = 0;
12237 utp->traceframe_usage = 0;
12238 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12239 phex_nz (utp->addr, 0));
12240 putpkt (rs->buf);
12241 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12242 if (reply && *reply)
12243 {
12244 if (*reply == 'V')
12245 parse_tracepoint_status (reply + 1, bp, utp);
12246 }
12247 }
12248 }
12249
12250 static void
12251 remote_trace_stop (struct target_ops *self)
12252 {
12253 putpkt ("QTStop");
12254 remote_get_noisy_reply (&target_buf, &target_buf_size);
12255 if (*target_buf == '\0')
12256 error (_("Target does not support this command."));
12257 if (strcmp (target_buf, "OK") != 0)
12258 error (_("Bogus reply from target: %s"), target_buf);
12259 }
12260
12261 static int
12262 remote_trace_find (struct target_ops *self,
12263 enum trace_find_type type, int num,
12264 CORE_ADDR addr1, CORE_ADDR addr2,
12265 int *tpp)
12266 {
12267 struct remote_state *rs = get_remote_state ();
12268 char *endbuf = rs->buf + get_remote_packet_size ();
12269 char *p, *reply;
12270 int target_frameno = -1, target_tracept = -1;
12271
12272 /* Lookups other than by absolute frame number depend on the current
12273 trace selected, so make sure it is correct on the remote end
12274 first. */
12275 if (type != tfind_number)
12276 set_remote_traceframe ();
12277
12278 p = rs->buf;
12279 strcpy (p, "QTFrame:");
12280 p = strchr (p, '\0');
12281 switch (type)
12282 {
12283 case tfind_number:
12284 xsnprintf (p, endbuf - p, "%x", num);
12285 break;
12286 case tfind_pc:
12287 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
12288 break;
12289 case tfind_tp:
12290 xsnprintf (p, endbuf - p, "tdp:%x", num);
12291 break;
12292 case tfind_range:
12293 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12294 phex_nz (addr2, 0));
12295 break;
12296 case tfind_outside:
12297 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12298 phex_nz (addr2, 0));
12299 break;
12300 default:
12301 error (_("Unknown trace find type %d"), type);
12302 }
12303
12304 putpkt (rs->buf);
12305 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
12306 if (*reply == '\0')
12307 error (_("Target does not support this command."));
12308
12309 while (reply && *reply)
12310 switch (*reply)
12311 {
12312 case 'F':
12313 p = ++reply;
12314 target_frameno = (int) strtol (p, &reply, 16);
12315 if (reply == p)
12316 error (_("Unable to parse trace frame number"));
12317 /* Don't update our remote traceframe number cache on failure
12318 to select a remote traceframe. */
12319 if (target_frameno == -1)
12320 return -1;
12321 break;
12322 case 'T':
12323 p = ++reply;
12324 target_tracept = (int) strtol (p, &reply, 16);
12325 if (reply == p)
12326 error (_("Unable to parse tracepoint number"));
12327 break;
12328 case 'O': /* "OK"? */
12329 if (reply[1] == 'K' && reply[2] == '\0')
12330 reply += 2;
12331 else
12332 error (_("Bogus reply from target: %s"), reply);
12333 break;
12334 default:
12335 error (_("Bogus reply from target: %s"), reply);
12336 }
12337 if (tpp)
12338 *tpp = target_tracept;
12339
12340 rs->remote_traceframe_number = target_frameno;
12341 return target_frameno;
12342 }
12343
12344 static int
12345 remote_get_trace_state_variable_value (struct target_ops *self,
12346 int tsvnum, LONGEST *val)
12347 {
12348 struct remote_state *rs = get_remote_state ();
12349 char *reply;
12350 ULONGEST uval;
12351
12352 set_remote_traceframe ();
12353
12354 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
12355 putpkt (rs->buf);
12356 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12357 if (reply && *reply)
12358 {
12359 if (*reply == 'V')
12360 {
12361 unpack_varlen_hex (reply + 1, &uval);
12362 *val = (LONGEST) uval;
12363 return 1;
12364 }
12365 }
12366 return 0;
12367 }
12368
12369 static int
12370 remote_save_trace_data (struct target_ops *self, const char *filename)
12371 {
12372 struct remote_state *rs = get_remote_state ();
12373 char *p, *reply;
12374
12375 p = rs->buf;
12376 strcpy (p, "QTSave:");
12377 p += strlen (p);
12378 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12379 error (_("Remote file name too long for trace save packet"));
12380 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
12381 *p++ = '\0';
12382 putpkt (rs->buf);
12383 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12384 if (*reply == '\0')
12385 error (_("Target does not support this command."));
12386 if (strcmp (reply, "OK") != 0)
12387 error (_("Bogus reply from target: %s"), reply);
12388 return 0;
12389 }
12390
12391 /* This is basically a memory transfer, but needs to be its own packet
12392 because we don't know how the target actually organizes its trace
12393 memory, plus we want to be able to ask for as much as possible, but
12394 not be unhappy if we don't get as much as we ask for. */
12395
12396 static LONGEST
12397 remote_get_raw_trace_data (struct target_ops *self,
12398 gdb_byte *buf, ULONGEST offset, LONGEST len)
12399 {
12400 struct remote_state *rs = get_remote_state ();
12401 char *reply;
12402 char *p;
12403 int rslt;
12404
12405 p = rs->buf;
12406 strcpy (p, "qTBuffer:");
12407 p += strlen (p);
12408 p += hexnumstr (p, offset);
12409 *p++ = ',';
12410 p += hexnumstr (p, len);
12411 *p++ = '\0';
12412
12413 putpkt (rs->buf);
12414 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12415 if (reply && *reply)
12416 {
12417 /* 'l' by itself means we're at the end of the buffer and
12418 there is nothing more to get. */
12419 if (*reply == 'l')
12420 return 0;
12421
12422 /* Convert the reply into binary. Limit the number of bytes to
12423 convert according to our passed-in buffer size, rather than
12424 what was returned in the packet; if the target is
12425 unexpectedly generous and gives us a bigger reply than we
12426 asked for, we don't want to crash. */
12427 rslt = hex2bin (target_buf, buf, len);
12428 return rslt;
12429 }
12430
12431 /* Something went wrong, flag as an error. */
12432 return -1;
12433 }
12434
12435 static void
12436 remote_set_disconnected_tracing (struct target_ops *self, int val)
12437 {
12438 struct remote_state *rs = get_remote_state ();
12439
12440 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
12441 {
12442 char *reply;
12443
12444 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
12445 putpkt (rs->buf);
12446 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12447 if (*reply == '\0')
12448 error (_("Target does not support this command."));
12449 if (strcmp (reply, "OK") != 0)
12450 error (_("Bogus reply from target: %s"), reply);
12451 }
12452 else if (val)
12453 warning (_("Target does not support disconnected tracing."));
12454 }
12455
12456 static int
12457 remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12458 {
12459 struct thread_info *info = find_thread_ptid (ptid);
12460
12461 if (info && info->priv)
12462 return info->priv->core;
12463 return -1;
12464 }
12465
12466 static void
12467 remote_set_circular_trace_buffer (struct target_ops *self, int val)
12468 {
12469 struct remote_state *rs = get_remote_state ();
12470 char *reply;
12471
12472 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
12473 putpkt (rs->buf);
12474 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12475 if (*reply == '\0')
12476 error (_("Target does not support this command."));
12477 if (strcmp (reply, "OK") != 0)
12478 error (_("Bogus reply from target: %s"), reply);
12479 }
12480
12481 static struct traceframe_info *
12482 remote_traceframe_info (struct target_ops *self)
12483 {
12484 char *text;
12485
12486 text = target_read_stralloc (&current_target,
12487 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
12488 if (text != NULL)
12489 {
12490 struct traceframe_info *info;
12491 struct cleanup *back_to = make_cleanup (xfree, text);
12492
12493 info = parse_traceframe_info (text);
12494 do_cleanups (back_to);
12495 return info;
12496 }
12497
12498 return NULL;
12499 }
12500
12501 /* Handle the qTMinFTPILen packet. Returns the minimum length of
12502 instruction on which a fast tracepoint may be placed. Returns -1
12503 if the packet is not supported, and 0 if the minimum instruction
12504 length is unknown. */
12505
12506 static int
12507 remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
12508 {
12509 struct remote_state *rs = get_remote_state ();
12510 char *reply;
12511
12512 /* If we're not debugging a process yet, the IPA can't be
12513 loaded. */
12514 if (!target_has_execution)
12515 return 0;
12516
12517 /* Make sure the remote is pointing at the right process. */
12518 set_general_process ();
12519
12520 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
12521 putpkt (rs->buf);
12522 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12523 if (*reply == '\0')
12524 return -1;
12525 else
12526 {
12527 ULONGEST min_insn_len;
12528
12529 unpack_varlen_hex (reply, &min_insn_len);
12530
12531 return (int) min_insn_len;
12532 }
12533 }
12534
12535 static void
12536 remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
12537 {
12538 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
12539 {
12540 struct remote_state *rs = get_remote_state ();
12541 char *buf = rs->buf;
12542 char *endbuf = rs->buf + get_remote_packet_size ();
12543 enum packet_result result;
12544
12545 gdb_assert (val >= 0 || val == -1);
12546 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
12547 /* Send -1 as literal "-1" to avoid host size dependency. */
12548 if (val < 0)
12549 {
12550 *buf++ = '-';
12551 buf += hexnumstr (buf, (ULONGEST) -val);
12552 }
12553 else
12554 buf += hexnumstr (buf, (ULONGEST) val);
12555
12556 putpkt (rs->buf);
12557 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12558 result = packet_ok (rs->buf,
12559 &remote_protocol_packets[PACKET_QTBuffer_size]);
12560
12561 if (result != PACKET_OK)
12562 warning (_("Bogus reply from target: %s"), rs->buf);
12563 }
12564 }
12565
12566 static int
12567 remote_set_trace_notes (struct target_ops *self,
12568 const char *user, const char *notes,
12569 const char *stop_notes)
12570 {
12571 struct remote_state *rs = get_remote_state ();
12572 char *reply;
12573 char *buf = rs->buf;
12574 char *endbuf = rs->buf + get_remote_packet_size ();
12575 int nbytes;
12576
12577 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
12578 if (user)
12579 {
12580 buf += xsnprintf (buf, endbuf - buf, "user:");
12581 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
12582 buf += 2 * nbytes;
12583 *buf++ = ';';
12584 }
12585 if (notes)
12586 {
12587 buf += xsnprintf (buf, endbuf - buf, "notes:");
12588 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
12589 buf += 2 * nbytes;
12590 *buf++ = ';';
12591 }
12592 if (stop_notes)
12593 {
12594 buf += xsnprintf (buf, endbuf - buf, "tstop:");
12595 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
12596 buf += 2 * nbytes;
12597 *buf++ = ';';
12598 }
12599 /* Ensure the buffer is terminated. */
12600 *buf = '\0';
12601
12602 putpkt (rs->buf);
12603 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12604 if (*reply == '\0')
12605 return 0;
12606
12607 if (strcmp (reply, "OK") != 0)
12608 error (_("Bogus reply from target: %s"), reply);
12609
12610 return 1;
12611 }
12612
12613 static int
12614 remote_use_agent (struct target_ops *self, int use)
12615 {
12616 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
12617 {
12618 struct remote_state *rs = get_remote_state ();
12619
12620 /* If the stub supports QAgent. */
12621 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
12622 putpkt (rs->buf);
12623 getpkt (&rs->buf, &rs->buf_size, 0);
12624
12625 if (strcmp (rs->buf, "OK") == 0)
12626 {
12627 use_agent = use;
12628 return 1;
12629 }
12630 }
12631
12632 return 0;
12633 }
12634
12635 static int
12636 remote_can_use_agent (struct target_ops *self)
12637 {
12638 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
12639 }
12640
12641 struct btrace_target_info
12642 {
12643 /* The ptid of the traced thread. */
12644 ptid_t ptid;
12645
12646 /* The obtained branch trace configuration. */
12647 struct btrace_config conf;
12648 };
12649
12650 /* Reset our idea of our target's btrace configuration. */
12651
12652 static void
12653 remote_btrace_reset (void)
12654 {
12655 struct remote_state *rs = get_remote_state ();
12656
12657 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
12658 }
12659
12660 /* Check whether the target supports branch tracing. */
12661
12662 static int
12663 remote_supports_btrace (struct target_ops *self, enum btrace_format format)
12664 {
12665 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
12666 return 0;
12667 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
12668 return 0;
12669
12670 switch (format)
12671 {
12672 case BTRACE_FORMAT_NONE:
12673 return 0;
12674
12675 case BTRACE_FORMAT_BTS:
12676 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
12677
12678 case BTRACE_FORMAT_PT:
12679 /* The trace is decoded on the host. Even if our target supports it,
12680 we still need to have libipt to decode the trace. */
12681 #if defined (HAVE_LIBIPT)
12682 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
12683 #else /* !defined (HAVE_LIBIPT) */
12684 return 0;
12685 #endif /* !defined (HAVE_LIBIPT) */
12686 }
12687
12688 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
12689 }
12690
12691 /* Synchronize the configuration with the target. */
12692
12693 static void
12694 btrace_sync_conf (const struct btrace_config *conf)
12695 {
12696 struct packet_config *packet;
12697 struct remote_state *rs;
12698 char *buf, *pos, *endbuf;
12699
12700 rs = get_remote_state ();
12701 buf = rs->buf;
12702 endbuf = buf + get_remote_packet_size ();
12703
12704 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
12705 if (packet_config_support (packet) == PACKET_ENABLE
12706 && conf->bts.size != rs->btrace_config.bts.size)
12707 {
12708 pos = buf;
12709 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12710 conf->bts.size);
12711
12712 putpkt (buf);
12713 getpkt (&buf, &rs->buf_size, 0);
12714
12715 if (packet_ok (buf, packet) == PACKET_ERROR)
12716 {
12717 if (buf[0] == 'E' && buf[1] == '.')
12718 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
12719 else
12720 error (_("Failed to configure the BTS buffer size."));
12721 }
12722
12723 rs->btrace_config.bts.size = conf->bts.size;
12724 }
12725
12726 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
12727 if (packet_config_support (packet) == PACKET_ENABLE
12728 && conf->pt.size != rs->btrace_config.pt.size)
12729 {
12730 pos = buf;
12731 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12732 conf->pt.size);
12733
12734 putpkt (buf);
12735 getpkt (&buf, &rs->buf_size, 0);
12736
12737 if (packet_ok (buf, packet) == PACKET_ERROR)
12738 {
12739 if (buf[0] == 'E' && buf[1] == '.')
12740 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
12741 else
12742 error (_("Failed to configure the trace buffer size."));
12743 }
12744
12745 rs->btrace_config.pt.size = conf->pt.size;
12746 }
12747 }
12748
12749 /* Read the current thread's btrace configuration from the target and
12750 store it into CONF. */
12751
12752 static void
12753 btrace_read_config (struct btrace_config *conf)
12754 {
12755 char *xml;
12756
12757 xml = target_read_stralloc (&current_target,
12758 TARGET_OBJECT_BTRACE_CONF, "");
12759 if (xml != NULL)
12760 {
12761 struct cleanup *cleanup;
12762
12763 cleanup = make_cleanup (xfree, xml);
12764 parse_xml_btrace_conf (conf, xml);
12765 do_cleanups (cleanup);
12766 }
12767 }
12768
12769 /* Enable branch tracing. */
12770
12771 static struct btrace_target_info *
12772 remote_enable_btrace (struct target_ops *self, ptid_t ptid,
12773 const struct btrace_config *conf)
12774 {
12775 struct btrace_target_info *tinfo = NULL;
12776 struct packet_config *packet = NULL;
12777 struct remote_state *rs = get_remote_state ();
12778 char *buf = rs->buf;
12779 char *endbuf = rs->buf + get_remote_packet_size ();
12780
12781 switch (conf->format)
12782 {
12783 case BTRACE_FORMAT_BTS:
12784 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
12785 break;
12786
12787 case BTRACE_FORMAT_PT:
12788 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
12789 break;
12790 }
12791
12792 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
12793 error (_("Target does not support branch tracing."));
12794
12795 btrace_sync_conf (conf);
12796
12797 set_general_thread (ptid);
12798
12799 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12800 putpkt (rs->buf);
12801 getpkt (&rs->buf, &rs->buf_size, 0);
12802
12803 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12804 {
12805 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12806 error (_("Could not enable branch tracing for %s: %s"),
12807 target_pid_to_str (ptid), rs->buf + 2);
12808 else
12809 error (_("Could not enable branch tracing for %s."),
12810 target_pid_to_str (ptid));
12811 }
12812
12813 tinfo = XCNEW (struct btrace_target_info);
12814 tinfo->ptid = ptid;
12815
12816 /* If we fail to read the configuration, we lose some information, but the
12817 tracing itself is not impacted. */
12818 TRY
12819 {
12820 btrace_read_config (&tinfo->conf);
12821 }
12822 CATCH (err, RETURN_MASK_ERROR)
12823 {
12824 if (err.message != NULL)
12825 warning ("%s", err.message);
12826 }
12827 END_CATCH
12828
12829 return tinfo;
12830 }
12831
12832 /* Disable branch tracing. */
12833
12834 static void
12835 remote_disable_btrace (struct target_ops *self,
12836 struct btrace_target_info *tinfo)
12837 {
12838 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
12839 struct remote_state *rs = get_remote_state ();
12840 char *buf = rs->buf;
12841 char *endbuf = rs->buf + get_remote_packet_size ();
12842
12843 if (packet_config_support (packet) != PACKET_ENABLE)
12844 error (_("Target does not support branch tracing."));
12845
12846 set_general_thread (tinfo->ptid);
12847
12848 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12849 putpkt (rs->buf);
12850 getpkt (&rs->buf, &rs->buf_size, 0);
12851
12852 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12853 {
12854 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12855 error (_("Could not disable branch tracing for %s: %s"),
12856 target_pid_to_str (tinfo->ptid), rs->buf + 2);
12857 else
12858 error (_("Could not disable branch tracing for %s."),
12859 target_pid_to_str (tinfo->ptid));
12860 }
12861
12862 xfree (tinfo);
12863 }
12864
12865 /* Teardown branch tracing. */
12866
12867 static void
12868 remote_teardown_btrace (struct target_ops *self,
12869 struct btrace_target_info *tinfo)
12870 {
12871 /* We must not talk to the target during teardown. */
12872 xfree (tinfo);
12873 }
12874
12875 /* Read the branch trace. */
12876
12877 static enum btrace_error
12878 remote_read_btrace (struct target_ops *self,
12879 struct btrace_data *btrace,
12880 struct btrace_target_info *tinfo,
12881 enum btrace_read_type type)
12882 {
12883 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
12884 struct cleanup *cleanup;
12885 const char *annex;
12886 char *xml;
12887
12888 if (packet_config_support (packet) != PACKET_ENABLE)
12889 error (_("Target does not support branch tracing."));
12890
12891 #if !defined(HAVE_LIBEXPAT)
12892 error (_("Cannot process branch tracing result. XML parsing not supported."));
12893 #endif
12894
12895 switch (type)
12896 {
12897 case BTRACE_READ_ALL:
12898 annex = "all";
12899 break;
12900 case BTRACE_READ_NEW:
12901 annex = "new";
12902 break;
12903 case BTRACE_READ_DELTA:
12904 annex = "delta";
12905 break;
12906 default:
12907 internal_error (__FILE__, __LINE__,
12908 _("Bad branch tracing read type: %u."),
12909 (unsigned int) type);
12910 }
12911
12912 xml = target_read_stralloc (&current_target,
12913 TARGET_OBJECT_BTRACE, annex);
12914 if (xml == NULL)
12915 return BTRACE_ERR_UNKNOWN;
12916
12917 cleanup = make_cleanup (xfree, xml);
12918 parse_xml_btrace (btrace, xml);
12919 do_cleanups (cleanup);
12920
12921 return BTRACE_ERR_NONE;
12922 }
12923
12924 static const struct btrace_config *
12925 remote_btrace_conf (struct target_ops *self,
12926 const struct btrace_target_info *tinfo)
12927 {
12928 return &tinfo->conf;
12929 }
12930
12931 static int
12932 remote_augmented_libraries_svr4_read (struct target_ops *self)
12933 {
12934 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
12935 == PACKET_ENABLE);
12936 }
12937
12938 /* Implementation of to_load. */
12939
12940 static void
12941 remote_load (struct target_ops *self, const char *name, int from_tty)
12942 {
12943 generic_load (name, from_tty);
12944 }
12945
12946 /* Accepts an integer PID; returns a string representing a file that
12947 can be opened on the remote side to get the symbols for the child
12948 process. Returns NULL if the operation is not supported. */
12949
12950 static char *
12951 remote_pid_to_exec_file (struct target_ops *self, int pid)
12952 {
12953 static char *filename = NULL;
12954 struct inferior *inf;
12955 char *annex = NULL;
12956
12957 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
12958 return NULL;
12959
12960 if (filename != NULL)
12961 xfree (filename);
12962
12963 inf = find_inferior_pid (pid);
12964 if (inf == NULL)
12965 internal_error (__FILE__, __LINE__,
12966 _("not currently attached to process %d"), pid);
12967
12968 if (!inf->fake_pid_p)
12969 {
12970 const int annex_size = 9;
12971
12972 annex = (char *) alloca (annex_size);
12973 xsnprintf (annex, annex_size, "%x", pid);
12974 }
12975
12976 filename = target_read_stralloc (&current_target,
12977 TARGET_OBJECT_EXEC_FILE, annex);
12978
12979 return filename;
12980 }
12981
12982 /* Implement the to_can_do_single_step target_ops method. */
12983
12984 static int
12985 remote_can_do_single_step (struct target_ops *ops)
12986 {
12987 /* We can only tell whether target supports single step or not by
12988 supported s and S vCont actions if the stub supports vContSupported
12989 feature. If the stub doesn't support vContSupported feature,
12990 we have conservatively to think target doesn't supports single
12991 step. */
12992 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
12993 {
12994 struct remote_state *rs = get_remote_state ();
12995
12996 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
12997 remote_vcont_probe (rs);
12998
12999 return rs->supports_vCont.s && rs->supports_vCont.S;
13000 }
13001 else
13002 return 0;
13003 }
13004
13005 /* Implementation of the to_execution_direction method for the remote
13006 target. */
13007
13008 static enum exec_direction_kind
13009 remote_execution_direction (struct target_ops *self)
13010 {
13011 struct remote_state *rs = get_remote_state ();
13012
13013 return rs->last_resume_exec_dir;
13014 }
13015
13016 static void
13017 init_remote_ops (void)
13018 {
13019 remote_ops.to_shortname = "remote";
13020 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
13021 remote_ops.to_doc =
13022 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
13023 Specify the serial device it is connected to\n\
13024 (e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
13025 remote_ops.to_open = remote_open;
13026 remote_ops.to_close = remote_close;
13027 remote_ops.to_detach = remote_detach;
13028 remote_ops.to_disconnect = remote_disconnect;
13029 remote_ops.to_resume = remote_resume;
13030 remote_ops.to_wait = remote_wait;
13031 remote_ops.to_fetch_registers = remote_fetch_registers;
13032 remote_ops.to_store_registers = remote_store_registers;
13033 remote_ops.to_prepare_to_store = remote_prepare_to_store;
13034 remote_ops.to_files_info = remote_files_info;
13035 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13036 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
13037 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13038 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13039 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13040 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
13041 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13042 remote_ops.to_stopped_data_address = remote_stopped_data_address;
13043 remote_ops.to_watchpoint_addr_within_range =
13044 remote_watchpoint_addr_within_range;
13045 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13046 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13047 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
13048 remote_ops.to_region_ok_for_hw_watchpoint
13049 = remote_region_ok_for_hw_watchpoint;
13050 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13051 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
13052 remote_ops.to_kill = remote_kill;
13053 remote_ops.to_load = remote_load;
13054 remote_ops.to_mourn_inferior = remote_mourn;
13055 remote_ops.to_pass_signals = remote_pass_signals;
13056 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
13057 remote_ops.to_program_signals = remote_program_signals;
13058 remote_ops.to_thread_alive = remote_thread_alive;
13059 remote_ops.to_thread_name = remote_thread_name;
13060 remote_ops.to_update_thread_list = remote_update_thread_list;
13061 remote_ops.to_pid_to_str = remote_pid_to_str;
13062 remote_ops.to_extra_thread_info = remote_threads_extra_info;
13063 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
13064 remote_ops.to_stop = remote_stop;
13065 remote_ops.to_interrupt = remote_interrupt;
13066 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
13067 remote_ops.to_xfer_partial = remote_xfer_partial;
13068 remote_ops.to_rcmd = remote_rcmd;
13069 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
13070 remote_ops.to_log_command = serial_log_command;
13071 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
13072 remote_ops.to_stratum = process_stratum;
13073 remote_ops.to_has_all_memory = default_child_has_all_memory;
13074 remote_ops.to_has_memory = default_child_has_memory;
13075 remote_ops.to_has_stack = default_child_has_stack;
13076 remote_ops.to_has_registers = default_child_has_registers;
13077 remote_ops.to_has_execution = default_child_has_execution;
13078 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
13079 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
13080 remote_ops.to_magic = OPS_MAGIC;
13081 remote_ops.to_memory_map = remote_memory_map;
13082 remote_ops.to_flash_erase = remote_flash_erase;
13083 remote_ops.to_flash_done = remote_flash_done;
13084 remote_ops.to_read_description = remote_read_description;
13085 remote_ops.to_search_memory = remote_search_memory;
13086 remote_ops.to_can_async_p = remote_can_async_p;
13087 remote_ops.to_is_async_p = remote_is_async_p;
13088 remote_ops.to_async = remote_async;
13089 remote_ops.to_thread_events = remote_thread_events;
13090 remote_ops.to_can_do_single_step = remote_can_do_single_step;
13091 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13092 remote_ops.to_terminal_ours = remote_terminal_ours;
13093 remote_ops.to_supports_non_stop = remote_supports_non_stop;
13094 remote_ops.to_supports_multi_process = remote_supports_multi_process;
13095 remote_ops.to_supports_disable_randomization
13096 = remote_supports_disable_randomization;
13097 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
13098 remote_ops.to_fileio_open = remote_hostio_open;
13099 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13100 remote_ops.to_fileio_pread = remote_hostio_pread;
13101 remote_ops.to_fileio_fstat = remote_hostio_fstat;
13102 remote_ops.to_fileio_close = remote_hostio_close;
13103 remote_ops.to_fileio_unlink = remote_hostio_unlink;
13104 remote_ops.to_fileio_readlink = remote_hostio_readlink;
13105 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
13106 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
13107 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
13108 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
13109 remote_ops.to_trace_init = remote_trace_init;
13110 remote_ops.to_download_tracepoint = remote_download_tracepoint;
13111 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
13112 remote_ops.to_download_trace_state_variable
13113 = remote_download_trace_state_variable;
13114 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13115 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
13116 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13117 remote_ops.to_trace_start = remote_trace_start;
13118 remote_ops.to_get_trace_status = remote_get_trace_status;
13119 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
13120 remote_ops.to_trace_stop = remote_trace_stop;
13121 remote_ops.to_trace_find = remote_trace_find;
13122 remote_ops.to_get_trace_state_variable_value
13123 = remote_get_trace_state_variable_value;
13124 remote_ops.to_save_trace_data = remote_save_trace_data;
13125 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
13126 remote_ops.to_upload_trace_state_variables
13127 = remote_upload_trace_state_variables;
13128 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
13129 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
13130 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
13131 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
13132 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
13133 remote_ops.to_set_trace_notes = remote_set_trace_notes;
13134 remote_ops.to_core_of_thread = remote_core_of_thread;
13135 remote_ops.to_verify_memory = remote_verify_memory;
13136 remote_ops.to_get_tib_address = remote_get_tib_address;
13137 remote_ops.to_set_permissions = remote_set_permissions;
13138 remote_ops.to_static_tracepoint_marker_at
13139 = remote_static_tracepoint_marker_at;
13140 remote_ops.to_static_tracepoint_markers_by_strid
13141 = remote_static_tracepoint_markers_by_strid;
13142 remote_ops.to_traceframe_info = remote_traceframe_info;
13143 remote_ops.to_use_agent = remote_use_agent;
13144 remote_ops.to_can_use_agent = remote_can_use_agent;
13145 remote_ops.to_supports_btrace = remote_supports_btrace;
13146 remote_ops.to_enable_btrace = remote_enable_btrace;
13147 remote_ops.to_disable_btrace = remote_disable_btrace;
13148 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13149 remote_ops.to_read_btrace = remote_read_btrace;
13150 remote_ops.to_btrace_conf = remote_btrace_conf;
13151 remote_ops.to_augmented_libraries_svr4_read =
13152 remote_augmented_libraries_svr4_read;
13153 remote_ops.to_follow_fork = remote_follow_fork;
13154 remote_ops.to_follow_exec = remote_follow_exec;
13155 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13156 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13157 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13158 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13159 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13160 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
13161 remote_ops.to_execution_direction = remote_execution_direction;
13162 }
13163
13164 /* Set up the extended remote vector by making a copy of the standard
13165 remote vector and adding to it. */
13166
13167 static void
13168 init_extended_remote_ops (void)
13169 {
13170 extended_remote_ops = remote_ops;
13171
13172 extended_remote_ops.to_shortname = "extended-remote";
13173 extended_remote_ops.to_longname =
13174 "Extended remote serial target in gdb-specific protocol";
13175 extended_remote_ops.to_doc =
13176 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
13177 Specify the serial device it is connected to (e.g. /dev/ttya).";
13178 extended_remote_ops.to_open = extended_remote_open;
13179 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
13180 extended_remote_ops.to_detach = extended_remote_detach;
13181 extended_remote_ops.to_attach = extended_remote_attach;
13182 extended_remote_ops.to_post_attach = extended_remote_post_attach;
13183 extended_remote_ops.to_supports_disable_randomization
13184 = extended_remote_supports_disable_randomization;
13185 }
13186
13187 static int
13188 remote_can_async_p (struct target_ops *ops)
13189 {
13190 struct remote_state *rs = get_remote_state ();
13191
13192 if (!target_async_permitted)
13193 /* We only enable async when the user specifically asks for it. */
13194 return 0;
13195
13196 /* We're async whenever the serial device is. */
13197 return serial_can_async_p (rs->remote_desc);
13198 }
13199
13200 static int
13201 remote_is_async_p (struct target_ops *ops)
13202 {
13203 struct remote_state *rs = get_remote_state ();
13204
13205 if (!target_async_permitted)
13206 /* We only enable async when the user specifically asks for it. */
13207 return 0;
13208
13209 /* We're async whenever the serial device is. */
13210 return serial_is_async_p (rs->remote_desc);
13211 }
13212
13213 /* Pass the SERIAL event on and up to the client. One day this code
13214 will be able to delay notifying the client of an event until the
13215 point where an entire packet has been received. */
13216
13217 static serial_event_ftype remote_async_serial_handler;
13218
13219 static void
13220 remote_async_serial_handler (struct serial *scb, void *context)
13221 {
13222 /* Don't propogate error information up to the client. Instead let
13223 the client find out about the error by querying the target. */
13224 inferior_event_handler (INF_REG_EVENT, NULL);
13225 }
13226
13227 static void
13228 remote_async_inferior_event_handler (gdb_client_data data)
13229 {
13230 inferior_event_handler (INF_REG_EVENT, NULL);
13231 }
13232
13233 static void
13234 remote_async (struct target_ops *ops, int enable)
13235 {
13236 struct remote_state *rs = get_remote_state ();
13237
13238 if (enable)
13239 {
13240 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
13241
13242 /* If there are pending events in the stop reply queue tell the
13243 event loop to process them. */
13244 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13245 mark_async_event_handler (remote_async_inferior_event_token);
13246 /* For simplicity, below we clear the pending events token
13247 without remembering whether it is marked, so here we always
13248 mark it. If there's actually no pending notification to
13249 process, this ends up being a no-op (other than a spurious
13250 event-loop wakeup). */
13251 if (target_is_non_stop_p ())
13252 mark_async_event_handler (rs->notif_state->get_pending_events_token);
13253 }
13254 else
13255 {
13256 serial_async (rs->remote_desc, NULL, NULL);
13257 /* If the core is disabling async, it doesn't want to be
13258 disturbed with target events. Clear all async event sources
13259 too. */
13260 clear_async_event_handler (remote_async_inferior_event_token);
13261 if (target_is_non_stop_p ())
13262 clear_async_event_handler (rs->notif_state->get_pending_events_token);
13263 }
13264 }
13265
13266 /* Implementation of the to_thread_events method. */
13267
13268 static void
13269 remote_thread_events (struct target_ops *ops, int enable)
13270 {
13271 struct remote_state *rs = get_remote_state ();
13272 size_t size = get_remote_packet_size ();
13273
13274 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13275 return;
13276
13277 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13278 putpkt (rs->buf);
13279 getpkt (&rs->buf, &rs->buf_size, 0);
13280
13281 switch (packet_ok (rs->buf,
13282 &remote_protocol_packets[PACKET_QThreadEvents]))
13283 {
13284 case PACKET_OK:
13285 if (strcmp (rs->buf, "OK") != 0)
13286 error (_("Remote refused setting thread events: %s"), rs->buf);
13287 break;
13288 case PACKET_ERROR:
13289 warning (_("Remote failure reply: %s"), rs->buf);
13290 break;
13291 case PACKET_UNKNOWN:
13292 break;
13293 }
13294 }
13295
13296 static void
13297 set_remote_cmd (char *args, int from_tty)
13298 {
13299 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
13300 }
13301
13302 static void
13303 show_remote_cmd (char *args, int from_tty)
13304 {
13305 /* We can't just use cmd_show_list here, because we want to skip
13306 the redundant "show remote Z-packet" and the legacy aliases. */
13307 struct cleanup *showlist_chain;
13308 struct cmd_list_element *list = remote_show_cmdlist;
13309 struct ui_out *uiout = current_uiout;
13310
13311 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
13312 for (; list != NULL; list = list->next)
13313 if (strcmp (list->name, "Z-packet") == 0)
13314 continue;
13315 else if (list->type == not_set_cmd)
13316 /* Alias commands are exactly like the original, except they
13317 don't have the normal type. */
13318 continue;
13319 else
13320 {
13321 struct cleanup *option_chain
13322 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
13323
13324 ui_out_field_string (uiout, "name", list->name);
13325 ui_out_text (uiout, ": ");
13326 if (list->type == show_cmd)
13327 do_show_command ((char *) NULL, from_tty, list);
13328 else
13329 cmd_func (list, NULL, from_tty);
13330 /* Close the tuple. */
13331 do_cleanups (option_chain);
13332 }
13333
13334 /* Close the tuple. */
13335 do_cleanups (showlist_chain);
13336 }
13337
13338
13339 /* Function to be called whenever a new objfile (shlib) is detected. */
13340 static void
13341 remote_new_objfile (struct objfile *objfile)
13342 {
13343 struct remote_state *rs = get_remote_state ();
13344
13345 if (rs->remote_desc != 0) /* Have a remote connection. */
13346 remote_check_symbols ();
13347 }
13348
13349 /* Pull all the tracepoints defined on the target and create local
13350 data structures representing them. We don't want to create real
13351 tracepoints yet, we don't want to mess up the user's existing
13352 collection. */
13353
13354 static int
13355 remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
13356 {
13357 struct remote_state *rs = get_remote_state ();
13358 char *p;
13359
13360 /* Ask for a first packet of tracepoint definition. */
13361 putpkt ("qTfP");
13362 getpkt (&rs->buf, &rs->buf_size, 0);
13363 p = rs->buf;
13364 while (*p && *p != 'l')
13365 {
13366 parse_tracepoint_definition (p, utpp);
13367 /* Ask for another packet of tracepoint definition. */
13368 putpkt ("qTsP");
13369 getpkt (&rs->buf, &rs->buf_size, 0);
13370 p = rs->buf;
13371 }
13372 return 0;
13373 }
13374
13375 static int
13376 remote_upload_trace_state_variables (struct target_ops *self,
13377 struct uploaded_tsv **utsvp)
13378 {
13379 struct remote_state *rs = get_remote_state ();
13380 char *p;
13381
13382 /* Ask for a first packet of variable definition. */
13383 putpkt ("qTfV");
13384 getpkt (&rs->buf, &rs->buf_size, 0);
13385 p = rs->buf;
13386 while (*p && *p != 'l')
13387 {
13388 parse_tsv_definition (p, utsvp);
13389 /* Ask for another packet of variable definition. */
13390 putpkt ("qTsV");
13391 getpkt (&rs->buf, &rs->buf_size, 0);
13392 p = rs->buf;
13393 }
13394 return 0;
13395 }
13396
13397 /* The "set/show range-stepping" show hook. */
13398
13399 static void
13400 show_range_stepping (struct ui_file *file, int from_tty,
13401 struct cmd_list_element *c,
13402 const char *value)
13403 {
13404 fprintf_filtered (file,
13405 _("Debugger's willingness to use range stepping "
13406 "is %s.\n"), value);
13407 }
13408
13409 /* The "set/show range-stepping" set hook. */
13410
13411 static void
13412 set_range_stepping (char *ignore_args, int from_tty,
13413 struct cmd_list_element *c)
13414 {
13415 struct remote_state *rs = get_remote_state ();
13416
13417 /* Whene enabling, check whether range stepping is actually
13418 supported by the target, and warn if not. */
13419 if (use_range_stepping)
13420 {
13421 if (rs->remote_desc != NULL)
13422 {
13423 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13424 remote_vcont_probe (rs);
13425
13426 if (packet_support (PACKET_vCont) == PACKET_ENABLE
13427 && rs->supports_vCont.r)
13428 return;
13429 }
13430
13431 warning (_("Range stepping is not supported by the current target"));
13432 }
13433 }
13434
13435 void
13436 _initialize_remote (void)
13437 {
13438 struct cmd_list_element *cmd;
13439 const char *cmd_name;
13440
13441 /* architecture specific data */
13442 remote_gdbarch_data_handle =
13443 gdbarch_data_register_post_init (init_remote_state);
13444 remote_g_packet_data_handle =
13445 gdbarch_data_register_pre_init (remote_g_packet_data_init);
13446
13447 remote_pspace_data
13448 = register_program_space_data_with_cleanup (NULL,
13449 remote_pspace_data_cleanup);
13450
13451 /* Initialize the per-target state. At the moment there is only one
13452 of these, not one per target. Only one target is active at a
13453 time. */
13454 remote_state = new_remote_state ();
13455
13456 init_remote_ops ();
13457 add_target (&remote_ops);
13458
13459 init_extended_remote_ops ();
13460 add_target (&extended_remote_ops);
13461
13462 /* Hook into new objfile notification. */
13463 observer_attach_new_objfile (remote_new_objfile);
13464 /* We're no longer interested in notification events of an inferior
13465 when it exits. */
13466 observer_attach_inferior_exit (discard_pending_stop_replies);
13467
13468 #if 0
13469 init_remote_threadtests ();
13470 #endif
13471
13472 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
13473 /* set/show remote ... */
13474
13475 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
13476 Remote protocol specific variables\n\
13477 Configure various remote-protocol specific variables such as\n\
13478 the packets being used"),
13479 &remote_set_cmdlist, "set remote ",
13480 0 /* allow-unknown */, &setlist);
13481 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
13482 Remote protocol specific variables\n\
13483 Configure various remote-protocol specific variables such as\n\
13484 the packets being used"),
13485 &remote_show_cmdlist, "show remote ",
13486 0 /* allow-unknown */, &showlist);
13487
13488 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13489 Compare section data on target to the exec file.\n\
13490 Argument is a single section name (default: all loaded sections).\n\
13491 To compare only read-only loaded sections, specify the -r option."),
13492 &cmdlist);
13493
13494 add_cmd ("packet", class_maintenance, packet_command, _("\
13495 Send an arbitrary packet to a remote target.\n\
13496 maintenance packet TEXT\n\
13497 If GDB is talking to an inferior via the GDB serial protocol, then\n\
13498 this command sends the string TEXT to the inferior, and displays the\n\
13499 response packet. GDB supplies the initial `$' character, and the\n\
13500 terminating `#' character and checksum."),
13501 &maintenancelist);
13502
13503 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
13504 Set whether to send break if interrupted."), _("\
13505 Show whether to send break if interrupted."), _("\
13506 If set, a break, instead of a cntrl-c, is sent to the remote target."),
13507 set_remotebreak, show_remotebreak,
13508 &setlist, &showlist);
13509 cmd_name = "remotebreak";
13510 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
13511 deprecate_cmd (cmd, "set remote interrupt-sequence");
13512 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
13513 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
13514 deprecate_cmd (cmd, "show remote interrupt-sequence");
13515
13516 add_setshow_enum_cmd ("interrupt-sequence", class_support,
13517 interrupt_sequence_modes, &interrupt_sequence_mode,
13518 _("\
13519 Set interrupt sequence to remote target."), _("\
13520 Show interrupt sequence to remote target."), _("\
13521 Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
13522 NULL, show_interrupt_sequence,
13523 &remote_set_cmdlist,
13524 &remote_show_cmdlist);
13525
13526 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
13527 &interrupt_on_connect, _("\
13528 Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13529 Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13530 If set, interrupt sequence is sent to remote target."),
13531 NULL, NULL,
13532 &remote_set_cmdlist, &remote_show_cmdlist);
13533
13534 /* Install commands for configuring memory read/write packets. */
13535
13536 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
13537 Set the maximum number of bytes per memory write packet (deprecated)."),
13538 &setlist);
13539 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
13540 Show the maximum number of bytes per memory write packet (deprecated)."),
13541 &showlist);
13542 add_cmd ("memory-write-packet-size", no_class,
13543 set_memory_write_packet_size, _("\
13544 Set the maximum number of bytes per memory-write packet.\n\
13545 Specify the number of bytes in a packet or 0 (zero) for the\n\
13546 default packet size. The actual limit is further reduced\n\
13547 dependent on the target. Specify ``fixed'' to disable the\n\
13548 further restriction and ``limit'' to enable that restriction."),
13549 &remote_set_cmdlist);
13550 add_cmd ("memory-read-packet-size", no_class,
13551 set_memory_read_packet_size, _("\
13552 Set the maximum number of bytes per memory-read packet.\n\
13553 Specify the number of bytes in a packet or 0 (zero) for the\n\
13554 default packet size. The actual limit is further reduced\n\
13555 dependent on the target. Specify ``fixed'' to disable the\n\
13556 further restriction and ``limit'' to enable that restriction."),
13557 &remote_set_cmdlist);
13558 add_cmd ("memory-write-packet-size", no_class,
13559 show_memory_write_packet_size,
13560 _("Show the maximum number of bytes per memory-write packet."),
13561 &remote_show_cmdlist);
13562 add_cmd ("memory-read-packet-size", no_class,
13563 show_memory_read_packet_size,
13564 _("Show the maximum number of bytes per memory-read packet."),
13565 &remote_show_cmdlist);
13566
13567 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
13568 &remote_hw_watchpoint_limit, _("\
13569 Set the maximum number of target hardware watchpoints."), _("\
13570 Show the maximum number of target hardware watchpoints."), _("\
13571 Specify a negative limit for unlimited."),
13572 NULL, NULL, /* FIXME: i18n: The maximum
13573 number of target hardware
13574 watchpoints is %s. */
13575 &remote_set_cmdlist, &remote_show_cmdlist);
13576 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
13577 &remote_hw_watchpoint_length_limit, _("\
13578 Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
13579 Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
13580 Specify a negative limit for unlimited."),
13581 NULL, NULL, /* FIXME: i18n: The maximum
13582 length (in bytes) of a target
13583 hardware watchpoint is %s. */
13584 &remote_set_cmdlist, &remote_show_cmdlist);
13585 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
13586 &remote_hw_breakpoint_limit, _("\
13587 Set the maximum number of target hardware breakpoints."), _("\
13588 Show the maximum number of target hardware breakpoints."), _("\
13589 Specify a negative limit for unlimited."),
13590 NULL, NULL, /* FIXME: i18n: The maximum
13591 number of target hardware
13592 breakpoints is %s. */
13593 &remote_set_cmdlist, &remote_show_cmdlist);
13594
13595 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
13596 &remote_address_size, _("\
13597 Set the maximum size of the address (in bits) in a memory packet."), _("\
13598 Show the maximum size of the address (in bits) in a memory packet."), NULL,
13599 NULL,
13600 NULL, /* FIXME: i18n: */
13601 &setlist, &showlist);
13602
13603 init_all_packet_configs ();
13604
13605 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
13606 "X", "binary-download", 1);
13607
13608 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
13609 "vCont", "verbose-resume", 0);
13610
13611 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
13612 "QPassSignals", "pass-signals", 0);
13613
13614 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
13615 "QCatchSyscalls", "catch-syscalls", 0);
13616
13617 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
13618 "QProgramSignals", "program-signals", 0);
13619
13620 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
13621 "qSymbol", "symbol-lookup", 0);
13622
13623 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
13624 "P", "set-register", 1);
13625
13626 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
13627 "p", "fetch-register", 1);
13628
13629 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
13630 "Z0", "software-breakpoint", 0);
13631
13632 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
13633 "Z1", "hardware-breakpoint", 0);
13634
13635 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
13636 "Z2", "write-watchpoint", 0);
13637
13638 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
13639 "Z3", "read-watchpoint", 0);
13640
13641 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
13642 "Z4", "access-watchpoint", 0);
13643
13644 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
13645 "qXfer:auxv:read", "read-aux-vector", 0);
13646
13647 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
13648 "qXfer:exec-file:read", "pid-to-exec-file", 0);
13649
13650 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
13651 "qXfer:features:read", "target-features", 0);
13652
13653 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
13654 "qXfer:libraries:read", "library-info", 0);
13655
13656 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
13657 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
13658
13659 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
13660 "qXfer:memory-map:read", "memory-map", 0);
13661
13662 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
13663 "qXfer:spu:read", "read-spu-object", 0);
13664
13665 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
13666 "qXfer:spu:write", "write-spu-object", 0);
13667
13668 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
13669 "qXfer:osdata:read", "osdata", 0);
13670
13671 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
13672 "qXfer:threads:read", "threads", 0);
13673
13674 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
13675 "qXfer:siginfo:read", "read-siginfo-object", 0);
13676
13677 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
13678 "qXfer:siginfo:write", "write-siginfo-object", 0);
13679
13680 add_packet_config_cmd
13681 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
13682 "qXfer:traceframe-info:read", "traceframe-info", 0);
13683
13684 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
13685 "qXfer:uib:read", "unwind-info-block", 0);
13686
13687 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
13688 "qGetTLSAddr", "get-thread-local-storage-address",
13689 0);
13690
13691 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
13692 "qGetTIBAddr", "get-thread-information-block-address",
13693 0);
13694
13695 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
13696 "bc", "reverse-continue", 0);
13697
13698 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
13699 "bs", "reverse-step", 0);
13700
13701 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
13702 "qSupported", "supported-packets", 0);
13703
13704 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
13705 "qSearch:memory", "search-memory", 0);
13706
13707 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
13708 "qTStatus", "trace-status", 0);
13709
13710 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
13711 "vFile:setfs", "hostio-setfs", 0);
13712
13713 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
13714 "vFile:open", "hostio-open", 0);
13715
13716 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
13717 "vFile:pread", "hostio-pread", 0);
13718
13719 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
13720 "vFile:pwrite", "hostio-pwrite", 0);
13721
13722 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
13723 "vFile:close", "hostio-close", 0);
13724
13725 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
13726 "vFile:unlink", "hostio-unlink", 0);
13727
13728 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
13729 "vFile:readlink", "hostio-readlink", 0);
13730
13731 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
13732 "vFile:fstat", "hostio-fstat", 0);
13733
13734 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
13735 "vAttach", "attach", 0);
13736
13737 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
13738 "vRun", "run", 0);
13739
13740 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
13741 "QStartNoAckMode", "noack", 0);
13742
13743 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
13744 "vKill", "kill", 0);
13745
13746 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
13747 "qAttached", "query-attached", 0);
13748
13749 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
13750 "ConditionalTracepoints",
13751 "conditional-tracepoints", 0);
13752
13753 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
13754 "ConditionalBreakpoints",
13755 "conditional-breakpoints", 0);
13756
13757 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
13758 "BreakpointCommands",
13759 "breakpoint-commands", 0);
13760
13761 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
13762 "FastTracepoints", "fast-tracepoints", 0);
13763
13764 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
13765 "TracepointSource", "TracepointSource", 0);
13766
13767 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
13768 "QAllow", "allow", 0);
13769
13770 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
13771 "StaticTracepoints", "static-tracepoints", 0);
13772
13773 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
13774 "InstallInTrace", "install-in-trace", 0);
13775
13776 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
13777 "qXfer:statictrace:read", "read-sdata-object", 0);
13778
13779 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
13780 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
13781
13782 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
13783 "QDisableRandomization", "disable-randomization", 0);
13784
13785 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
13786 "QAgent", "agent", 0);
13787
13788 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
13789 "QTBuffer:size", "trace-buffer-size", 0);
13790
13791 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
13792 "Qbtrace:off", "disable-btrace", 0);
13793
13794 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
13795 "Qbtrace:bts", "enable-btrace-bts", 0);
13796
13797 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
13798 "Qbtrace:pt", "enable-btrace-pt", 0);
13799
13800 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
13801 "qXfer:btrace", "read-btrace", 0);
13802
13803 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
13804 "qXfer:btrace-conf", "read-btrace-conf", 0);
13805
13806 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
13807 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
13808
13809 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
13810 "multiprocess-feature", "multiprocess-feature", 0);
13811
13812 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
13813 "swbreak-feature", "swbreak-feature", 0);
13814
13815 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
13816 "hwbreak-feature", "hwbreak-feature", 0);
13817
13818 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
13819 "fork-event-feature", "fork-event-feature", 0);
13820
13821 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
13822 "vfork-event-feature", "vfork-event-feature", 0);
13823
13824 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
13825 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
13826
13827 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
13828 "vContSupported", "verbose-resume-supported", 0);
13829
13830 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
13831 "exec-event-feature", "exec-event-feature", 0);
13832
13833 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
13834 "vCtrlC", "ctrl-c", 0);
13835
13836 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
13837 "QThreadEvents", "thread-events", 0);
13838
13839 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
13840 "N stop reply", "no-resumed-stop-reply", 0);
13841
13842 /* Assert that we've registered "set remote foo-packet" commands
13843 for all packet configs. */
13844 {
13845 int i;
13846
13847 for (i = 0; i < PACKET_MAX; i++)
13848 {
13849 /* Ideally all configs would have a command associated. Some
13850 still don't though. */
13851 int excepted;
13852
13853 switch (i)
13854 {
13855 case PACKET_QNonStop:
13856 case PACKET_EnableDisableTracepoints_feature:
13857 case PACKET_tracenz_feature:
13858 case PACKET_DisconnectedTracing_feature:
13859 case PACKET_augmented_libraries_svr4_read_feature:
13860 case PACKET_qCRC:
13861 /* Additions to this list need to be well justified:
13862 pre-existing packets are OK; new packets are not. */
13863 excepted = 1;
13864 break;
13865 default:
13866 excepted = 0;
13867 break;
13868 }
13869
13870 /* This catches both forgetting to add a config command, and
13871 forgetting to remove a packet from the exception list. */
13872 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
13873 }
13874 }
13875
13876 /* Keep the old ``set remote Z-packet ...'' working. Each individual
13877 Z sub-packet has its own set and show commands, but users may
13878 have sets to this variable in their .gdbinit files (or in their
13879 documentation). */
13880 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
13881 &remote_Z_packet_detect, _("\
13882 Set use of remote protocol `Z' packets"), _("\
13883 Show use of remote protocol `Z' packets "), _("\
13884 When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
13885 packets."),
13886 set_remote_protocol_Z_packet_cmd,
13887 show_remote_protocol_Z_packet_cmd,
13888 /* FIXME: i18n: Use of remote protocol
13889 `Z' packets is %s. */
13890 &remote_set_cmdlist, &remote_show_cmdlist);
13891
13892 add_prefix_cmd ("remote", class_files, remote_command, _("\
13893 Manipulate files on the remote system\n\
13894 Transfer files to and from the remote target system."),
13895 &remote_cmdlist, "remote ",
13896 0 /* allow-unknown */, &cmdlist);
13897
13898 add_cmd ("put", class_files, remote_put_command,
13899 _("Copy a local file to the remote system."),
13900 &remote_cmdlist);
13901
13902 add_cmd ("get", class_files, remote_get_command,
13903 _("Copy a remote file to the local system."),
13904 &remote_cmdlist);
13905
13906 add_cmd ("delete", class_files, remote_delete_command,
13907 _("Delete a remote file."),
13908 &remote_cmdlist);
13909
13910 add_setshow_string_noescape_cmd ("exec-file", class_files,
13911 &remote_exec_file_var, _("\
13912 Set the remote pathname for \"run\""), _("\
13913 Show the remote pathname for \"run\""), NULL,
13914 set_remote_exec_file,
13915 show_remote_exec_file,
13916 &remote_set_cmdlist,
13917 &remote_show_cmdlist);
13918
13919 add_setshow_boolean_cmd ("range-stepping", class_run,
13920 &use_range_stepping, _("\
13921 Enable or disable range stepping."), _("\
13922 Show whether target-assisted range stepping is enabled."), _("\
13923 If on, and the target supports it, when stepping a source line, GDB\n\
13924 tells the target to step the corresponding range of addresses itself instead\n\
13925 of issuing multiple single-steps. This speeds up source level\n\
13926 stepping. If off, GDB always issues single-steps, even if range\n\
13927 stepping is supported by the target. The default is on."),
13928 set_range_stepping,
13929 show_range_stepping,
13930 &setlist,
13931 &showlist);
13932
13933 /* Eventually initialize fileio. See fileio.c */
13934 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
13935
13936 /* Take advantage of the fact that the TID field is not used, to tag
13937 special ptids with it set to != 0. */
13938 magic_null_ptid = ptid_build (42000, -1, 1);
13939 not_sent_ptid = ptid_build (42000, -2, 1);
13940 any_thread_ptid = ptid_build (42000, 0, 1);
13941
13942 target_buf_size = 2048;
13943 target_buf = (char *) xmalloc (target_buf_size);
13944 }
13945
This page took 0.370061 seconds and 4 git commands to generate.