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