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