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