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