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