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