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