gold: Ignore def/ref from a dynamic object for special symbols
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
61baf725 3 Copyright (C) 1988-2017 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
c5aa993b 30/*#include "terminal.h" */
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
6867ae3e 39#include "observer.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
614c279d 45#include "filestuff.h"
9c3d6531 46#include "rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
438e1e42 50#include "gdb_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"
53ce3c39 63#include <sys/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"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
2ec845e7 75#include "common/scoped_restore.h"
0a2dde4a 76#include "environ.h"
f6327dcb 77#include "common/byte-vector.h"
35b1e5cc 78
94585166
DB
79/* Per-program-space data key. */
80static const struct program_space_data *remote_pspace_data;
81
82/* The variable registered as the control variable used by the
83 remote exec-file commands. While the remote exec-file setting is
84 per-program-space, the set/show machinery uses this as the
85 location of the remote exec-file value. */
86static char *remote_exec_file_var;
87
6765f3e5
DJ
88/* The size to align memory write packets, when practical. The protocol
89 does not guarantee any alignment, and gdb will generate short
90 writes and unaligned writes, but even as a best-effort attempt this
91 can improve bulk transfers. For instance, if a write is misaligned
92 relative to the target's data bus, the stub may need to make an extra
93 round trip fetching data from the target. This doesn't make a
94 huge difference, but it's easy to do, so we try to be helpful.
95
96 The alignment chosen is arbitrary; usually data bus width is
97 important here, not the possibly larger cache line size. */
98enum { REMOTE_ALIGN_WRITES = 16 };
99
23860348 100/* Prototypes for local functions. */
6d820c5c 101static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed 102static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
fee9eda9 103 int forever, int *is_notif);
6426a772 104
a14ed312 105static void remote_files_info (struct target_ops *ignore);
c906108c 106
f32dbf8c
MM
107static void remote_prepare_to_store (struct target_ops *self,
108 struct regcache *regcache);
c906108c 109
014f9477
TT
110static void remote_open_1 (const char *, int, struct target_ops *,
111 int extended_p);
c906108c 112
de90e03d 113static void remote_close (struct target_ops *self);
c906108c 114
cbb8991c
DB
115struct remote_state;
116
117static int remote_vkill (int pid, struct remote_state *rs);
118
8020350c
DB
119static void remote_kill_k (void);
120
136d6dae 121static void remote_mourn (struct target_ops *ops);
c906108c 122
a14ed312 123static void extended_remote_restart (void);
c906108c 124
6d820c5c 125static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 126
a14ed312 127static int readchar (int timeout);
c906108c 128
c33e31fd
PA
129static void remote_serial_write (const char *str, int len);
130
7d85a9c0 131static void remote_kill (struct target_ops *ops);
c906108c 132
6a109b6b 133static int remote_can_async_p (struct target_ops *);
75c99385 134
6a109b6b 135static int remote_is_async_p (struct target_ops *);
75c99385 136
6a3753b3 137static void remote_async (struct target_ops *ops, int enable);
75c99385 138
65706a29
PA
139static void remote_thread_events (struct target_ops *ops, int enable);
140
a14ed312 141static void interrupt_query (void);
c906108c 142
d62a8ae2
SM
143static void set_general_thread (ptid_t ptid);
144static void set_continue_thread (ptid_t ptid);
c906108c 145
a14ed312 146static void get_offsets (void);
c906108c 147
6d820c5c
DJ
148static void skip_frame (void);
149
150static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 151
a14ed312 152static int hexnumlen (ULONGEST num);
c906108c 153
a14ed312 154static void init_remote_ops (void);
c906108c 155
a14ed312 156static void init_extended_remote_ops (void);
c906108c 157
1eab8a48 158static void remote_stop (struct target_ops *self, ptid_t);
c906108c 159
a14ed312 160static int stubhex (int ch);
c906108c 161
a14ed312 162static int hexnumstr (char *, ULONGEST);
c906108c 163
a14ed312 164static int hexnumnstr (char *, ULONGEST, int);
2df3850c 165
a14ed312 166static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 167
baa336ce 168static void print_packet (const char *);
c906108c 169
a14ed312 170static int stub_unpack_int (char *buff, int fieldlength);
c906108c 171
39f77062 172static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 173
baa336ce 174static int putpkt_binary (const char *buf, int cnt);
c906108c 175
a14ed312 176static void check_binary_download (CORE_ADDR addr);
c906108c 177
5a2468f5 178struct packet_config;
5a2468f5 179
a14ed312 180static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 181
bb572ddd
DJ
182static void show_remote_protocol_packet_cmd (struct ui_file *file,
183 int from_tty,
184 struct cmd_list_element *c,
185 const char *value);
186
82f73884 187static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
256642e8 188static ptid_t read_ptid (const char *buf, const char **obuf);
82f73884 189
c378d69d 190static void remote_set_permissions (struct target_ops *self);
d914c394 191
8bd200f1
TT
192static int remote_get_trace_status (struct target_ops *self,
193 struct trace_status *ts);
d5551862 194
ab6617cc
TT
195static int remote_upload_tracepoints (struct target_ops *self,
196 struct uploaded_tp **utpp);
00bf0b85 197
181e3713
TT
198static int remote_upload_trace_state_variables (struct target_ops *self,
199 struct uploaded_tsv **utsvp);
00bf0b85 200
c8d104ad
PA
201static void remote_query_supported (void);
202
36d25514 203static void remote_check_symbols (void);
c8d104ad 204
74531fed 205struct stop_reply;
74531fed 206static void stop_reply_xfree (struct stop_reply *);
722247f1 207static void remote_parse_stop_reply (char *, struct stop_reply *);
74531fed 208static void push_stop_reply (struct stop_reply *);
bcc75809 209static void discard_pending_stop_replies_in_queue (struct remote_state *);
74531fed
PA
210static int peek_stop_reply (ptid_t ptid);
211
cbb8991c
DB
212struct threads_listing_context;
213static void remove_new_fork_children (struct threads_listing_context *);
214
74531fed 215static void remote_async_inferior_event_handler (gdb_client_data);
74531fed 216
e3594fd1 217static void remote_terminal_ours (struct target_ops *self);
d3fd5342 218
d962ef82
DJ
219static int remote_read_description_p (struct target_ops *target);
220
176a6961 221static void remote_console_output (char *msg);
dde08ee1 222
efcc2da7 223static int remote_supports_cond_breakpoints (struct target_ops *self);
b775012e 224
78eff0ec 225static int remote_can_run_breakpoint_commands (struct target_ops *self);
d3ce09f5 226
f4abbc16
MM
227static void remote_btrace_reset (void);
228
c0272db5
TW
229static void remote_btrace_maybe_reopen (void);
230
221e1a37
PA
231static int stop_reply_queue_length (void);
232
80152258
PA
233static void readahead_cache_invalidate (void);
234
048094ac
PA
235static void remote_unpush_and_throw (void);
236
b6bb3468
PA
237static struct remote_state *get_remote_state (void);
238
a6b151f1
DJ
239/* For "remote". */
240
241static struct cmd_list_element *remote_cmdlist;
242
bb572ddd
DJ
243/* For "set remote" and "show remote". */
244
245static struct cmd_list_element *remote_set_cmdlist;
246static struct cmd_list_element *remote_show_cmdlist;
247
d458bd84
PA
248/* Stub vCont actions support.
249
250 Each field is a boolean flag indicating whether the stub reports
251 support for the corresponding action. */
252
253struct vCont_action_support
254{
255 /* vCont;t */
256 int t;
c1e36e3e
PA
257
258 /* vCont;r */
259 int r;
750ce8d1
YQ
260
261 /* vCont;s */
262 int s;
263
264 /* vCont;S */
265 int S;
d458bd84
PA
266};
267
c1e36e3e
PA
268/* Controls whether GDB is willing to use range stepping. */
269
270static int use_range_stepping = 1;
271
0d031856
TT
272#define OPAQUETHREADBYTES 8
273
274/* a 64 bit opaque identifier */
275typedef unsigned char threadref[OPAQUETHREADBYTES];
276
277/* About this many threadisds fit in a packet. */
278
279#define MAXTHREADLISTRESULTS 32
280
6f8976bf
YQ
281/* The max number of chars in debug output. The rest of chars are
282 omitted. */
283
284#define REMOTE_DEBUG_MAX_CHAR 512
285
80152258
PA
286/* Data for the vFile:pread readahead cache. */
287
288struct readahead_cache
289{
290 /* The file descriptor for the file that is being cached. -1 if the
291 cache is invalid. */
292 int fd;
293
294 /* The offset into the file that the cache buffer corresponds
295 to. */
296 ULONGEST offset;
297
298 /* The buffer holding the cache contents. */
299 gdb_byte *buf;
300 /* The buffer's size. We try to read as much as fits into a packet
301 at a time. */
302 size_t bufsize;
303
304 /* Cache hit and miss counters. */
305 ULONGEST hit_count;
306 ULONGEST miss_count;
307};
308
ea9c271d
DJ
309/* Description of the remote protocol state for the currently
310 connected target. This is per-target state, and independent of the
311 selected architecture. */
312
313struct remote_state
314{
315 /* A buffer to use for incoming packets, and its current size. The
316 buffer is grown dynamically for larger incoming packets.
317 Outgoing packets may also be constructed in this buffer.
318 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
319 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
320 packets. */
321 char *buf;
322 long buf_size;
be2a5f71 323
1e51243a
PA
324 /* True if we're going through initial connection setup (finding out
325 about the remote side's threads, relocating symbols, etc.). */
326 int starting_up;
327
be2a5f71
DJ
328 /* If we negotiated packet size explicitly (and thus can bypass
329 heuristics for the largest packet size that will not overflow
330 a buffer in the stub), this will be set to that packet size.
331 Otherwise zero, meaning to use the guessed size. */
332 long explicit_packet_size;
2d717e4f
DJ
333
334 /* remote_wait is normally called when the target is running and
335 waits for a stop reply packet. But sometimes we need to call it
336 when the target is already stopped. We can send a "?" packet
337 and have remote_wait read the response. Or, if we already have
338 the response, we can stash it in BUF and tell remote_wait to
339 skip calling getpkt. This flag is set when BUF contains a
340 stop reply packet and the target is not waiting. */
341 int cached_wait_status;
a6f3e723
SL
342
343 /* True, if in no ack mode. That is, neither GDB nor the stub will
344 expect acks from each other. The connection is assumed to be
345 reliable. */
346 int noack_mode;
82f73884
PA
347
348 /* True if we're connected in extended remote mode. */
349 int extended;
350
e24a49d8
PA
351 /* True if we resumed the target and we're waiting for the target to
352 stop. In the mean time, we can't start another command/query.
353 The remote server wouldn't be ready to process it, so we'd
354 timeout waiting for a reply that would never come and eventually
355 we'd close the connection. This can happen in asynchronous mode
356 because we allow GDB commands while the target is running. */
357 int waiting_for_stop_reply;
74531fed 358
d458bd84
PA
359 /* The status of the stub support for the various vCont actions. */
360 struct vCont_action_support supports_vCont;
782b2b07 361
3a29589a
DJ
362 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
363 responded to that. */
364 int ctrlc_pending_p;
5d93a237 365
048094ac
PA
366 /* True if we saw a Ctrl-C while reading or writing from/to the
367 remote descriptor. At that point it is not safe to send a remote
368 interrupt packet, so we instead remember we saw the Ctrl-C and
369 process it once we're done with sending/receiving the current
370 packet, which should be shortly. If however that takes too long,
371 and the user presses Ctrl-C again, we offer to disconnect. */
372 int got_ctrlc_during_io;
373
5d93a237
TT
374 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
375 remote_open knows that we don't have a file open when the program
376 starts. */
377 struct serial *remote_desc;
47f8a51d
TT
378
379 /* These are the threads which we last sent to the remote system. The
380 TID member will be -1 for all or -2 for not sent yet. */
381 ptid_t general_thread;
382 ptid_t continue_thread;
262e1174
TT
383
384 /* This is the traceframe which we last selected on the remote system.
385 It will be -1 if no traceframe is selected. */
386 int remote_traceframe_number;
747dc59d
TT
387
388 char *last_pass_packet;
5e4a05c4
TT
389
390 /* The last QProgramSignals packet sent to the target. We bypass
391 sending a new program signals list down to the target if the new
392 packet is exactly the same as the last we sent. IOW, we only let
393 the target know about program signals list changes. */
394 char *last_program_signals_packet;
b73be471
TT
395
396 enum gdb_signal last_sent_signal;
280ceea3
TT
397
398 int last_sent_step;
8e88304f 399
3a00c802
PA
400 /* The execution direction of the last resume we got. */
401 enum exec_direction_kind last_resume_exec_dir;
402
8e88304f
TT
403 char *finished_object;
404 char *finished_annex;
405 ULONGEST finished_offset;
b80fafe3
TT
406
407 /* Should we try the 'ThreadInfo' query packet?
408
409 This variable (NOT available to the user: auto-detect only!)
410 determines whether GDB will use the new, simpler "ThreadInfo"
411 query or the older, more complex syntax for thread queries.
412 This is an auto-detect variable (set to true at each connect,
413 and set to false when the target fails to recognize it). */
414 int use_threadinfo_query;
415 int use_threadextra_query;
88b496c3 416
0d031856
TT
417 threadref echo_nextthread;
418 threadref nextthread;
419 threadref resultthreadlist[MAXTHREADLISTRESULTS];
5965e028
YQ
420
421 /* The state of remote notification. */
422 struct remote_notif_state *notif_state;
f4abbc16
MM
423
424 /* The branch trace configuration. */
425 struct btrace_config btrace_config;
15a201c8
GB
426
427 /* The argument to the last "vFile:setfs:" packet we sent, used
428 to avoid sending repeated unnecessary "vFile:setfs:" packets.
429 Initialized to -1 to indicate that no "vFile:setfs:" packet
430 has yet been sent. */
431 int fs_pid;
80152258
PA
432
433 /* A readahead cache for vFile:pread. Often, reading a binary
434 involves a sequence of small reads. E.g., when parsing an ELF
435 file. A readahead cache helps mostly the case of remote
436 debugging on a connection with higher latency, due to the
437 request/reply nature of the RSP. We only cache data for a single
438 file descriptor at a time. */
439 struct readahead_cache readahead_cache;
ea9c271d
DJ
440};
441
dc146f7c
VP
442/* Private data that we'll store in (struct thread_info)->private. */
443struct private_thread_info
444{
445 char *extra;
79efa585 446 char *name;
dc146f7c 447 int core;
799a2abe 448
f6327dcb
KB
449 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
450 sequence of bytes. */
451 gdb::byte_vector *thread_handle;
452
799a2abe
PA
453 /* Whether the target stopped for a breakpoint/watchpoint. */
454 enum target_stop_reason stop_reason;
455
456 /* This is set to the data address of the access causing the target
457 to stop for a watchpoint. */
458 CORE_ADDR watch_data_address;
85ad3aaf
PA
459
460 /* Fields used by the vCont action coalescing implemented in
461 remote_resume / remote_commit_resume. remote_resume stores each
462 thread's last resume request in these fields, so that a later
463 remote_commit_resume knows which is the proper action for this
464 thread to include in the vCont packet. */
465
466 /* True if the last target_resume call for this thread was a step
467 request, false if a continue request. */
468 int last_resume_step;
469
470 /* The signal specified in the last target_resume call for this
471 thread. */
472 enum gdb_signal last_resume_sig;
473
474 /* Whether this thread was already vCont-resumed on the remote
475 side. */
476 int vcont_resumed;
dc146f7c
VP
477};
478
479static void
480free_private_thread_info (struct private_thread_info *info)
481{
482 xfree (info->extra);
79efa585 483 xfree (info->name);
f6327dcb 484 delete info->thread_handle;
dc146f7c
VP
485 xfree (info);
486}
487
ea9c271d
DJ
488/* This data could be associated with a target, but we do not always
489 have access to the current target when we need it, so for now it is
490 static. This will be fine for as long as only one target is in use
491 at a time. */
cf792862 492static struct remote_state *remote_state;
ea9c271d
DJ
493
494static struct remote_state *
0b83947e 495get_remote_state_raw (void)
ea9c271d 496{
cf792862
TT
497 return remote_state;
498}
499
500/* Allocate a new struct remote_state with xmalloc, initialize it, and
501 return it. */
502
503static struct remote_state *
504new_remote_state (void)
505{
506 struct remote_state *result = XCNEW (struct remote_state);
507
508 /* The default buffer size is unimportant; it will be expanded
509 whenever a larger buffer is needed. */
510 result->buf_size = 400;
224c3ddb 511 result->buf = (char *) xmalloc (result->buf_size);
262e1174 512 result->remote_traceframe_number = -1;
b73be471 513 result->last_sent_signal = GDB_SIGNAL_0;
3a00c802 514 result->last_resume_exec_dir = EXEC_FORWARD;
15a201c8 515 result->fs_pid = -1;
cf792862
TT
516
517 return result;
ea9c271d
DJ
518}
519
520/* Description of the remote protocol for a given architecture. */
d01949b6 521
ad10f812
AC
522struct packet_reg
523{
524 long offset; /* Offset into G packet. */
525 long regnum; /* GDB's internal register number. */
526 LONGEST pnum; /* Remote protocol register number. */
b323314b 527 int in_g_packet; /* Always part of G packet. */
f5656ead 528 /* long size in bytes; == register_size (target_gdbarch (), regnum);
23860348 529 at present. */
f5656ead 530 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
c9f4d572 531 at present. */
ad10f812
AC
532};
533
ea9c271d 534struct remote_arch_state
d01949b6 535{
ad10f812
AC
536 /* Description of the remote protocol registers. */
537 long sizeof_g_packet;
b323314b
AC
538
539 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 540 (making an array gdbarch_num_regs in size). */
b323314b 541 struct packet_reg *regs;
ad10f812 542
d01949b6
AC
543 /* This is the size (in chars) of the first response to the ``g''
544 packet. It is used as a heuristic when determining the maximum
545 size of memory-read and memory-write packets. A target will
546 typically only reserve a buffer large enough to hold the ``g''
547 packet. The size does not include packet overhead (headers and
23860348 548 trailers). */
d01949b6
AC
549 long actual_register_packet_size;
550
551 /* This is the maximum size (in chars) of a non read/write packet.
23860348 552 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
553 long remote_packet_size;
554};
555
35b1e5cc
SS
556/* Utility: generate error from an incoming stub packet. */
557static void
558trace_error (char *buf)
559{
560 if (*buf++ != 'E')
561 return; /* not an error msg */
562 switch (*buf)
563 {
564 case '1': /* malformed packet error */
565 if (*++buf == '0') /* general case: */
566 error (_("remote.c: error in outgoing packet."));
567 else
568 error (_("remote.c: error in outgoing packet at field #%ld."),
569 strtol (buf, NULL, 16));
35b1e5cc
SS
570 default:
571 error (_("Target returns error code '%s'."), buf);
572 }
573}
574
575/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 576
35b1e5cc 577static char *
b6bb3468 578remote_get_noisy_reply ()
35b1e5cc 579{
b6bb3468
PA
580 struct remote_state *rs = get_remote_state ();
581
35b1e5cc
SS
582 do /* Loop on reply from remote stub. */
583 {
584 char *buf;
a744cf53 585
0df8b418 586 QUIT; /* Allow user to bail out with ^C. */
b6bb3468
PA
587 getpkt (&rs->buf, &rs->buf_size, 0);
588 buf = rs->buf;
ad91cd99 589 if (buf[0] == 'E')
35b1e5cc 590 trace_error (buf);
61012eef 591 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
592 {
593 ULONGEST ul;
594 CORE_ADDR from, to, org_to;
256642e8 595 const char *p, *pp;
dde08ee1 596 int adjusted_size = 0;
7556d4a4 597 int relocated = 0;
dde08ee1
PA
598
599 p = buf + strlen ("qRelocInsn:");
600 pp = unpack_varlen_hex (p, &ul);
601 if (*pp != ';')
cb91c06a 602 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
603 from = ul;
604
605 p = pp + 1;
a9cbf802 606 unpack_varlen_hex (p, &ul);
dde08ee1
PA
607 to = ul;
608
609 org_to = to;
610
492d29ea 611 TRY
dde08ee1 612 {
f5656ead 613 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 614 relocated = 1;
dde08ee1 615 }
492d29ea 616 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
617 {
618 if (ex.error == MEMORY_ERROR)
619 {
620 /* Propagate memory errors silently back to the
621 target. The stub may have limited the range of
622 addresses we can write to, for example. */
623 }
624 else
625 {
626 /* Something unexpectedly bad happened. Be verbose
627 so we can tell what, and propagate the error back
628 to the stub, so it doesn't get stuck waiting for
629 a response. */
630 exception_fprintf (gdb_stderr, ex,
631 _("warning: relocating instruction: "));
632 }
633 putpkt ("E01");
634 }
492d29ea 635 END_CATCH
7556d4a4
PA
636
637 if (relocated)
dde08ee1
PA
638 {
639 adjusted_size = to - org_to;
640
b6bb3468 641 xsnprintf (buf, rs->buf_size, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
642 putpkt (buf);
643 }
dde08ee1 644 }
ad91cd99 645 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
646 remote_console_output (buf + 1); /* 'O' message from stub */
647 else
0df8b418 648 return buf; /* Here's the actual reply. */
35b1e5cc
SS
649 }
650 while (1);
651}
3c3bea1c 652
d01949b6
AC
653/* Handle for retreving the remote protocol data from gdbarch. */
654static struct gdbarch_data *remote_gdbarch_data_handle;
655
ea9c271d 656static struct remote_arch_state *
5cd63fda 657get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 658{
5cd63fda 659 gdb_assert (gdbarch != NULL);
19ba03f4 660 return ((struct remote_arch_state *)
5cd63fda 661 gdbarch_data (gdbarch, remote_gdbarch_data_handle));
d01949b6
AC
662}
663
0b83947e
DJ
664/* Fetch the global remote target state. */
665
666static struct remote_state *
667get_remote_state (void)
668{
669 /* Make sure that the remote architecture state has been
670 initialized, because doing so might reallocate rs->buf. Any
671 function which calls getpkt also needs to be mindful of changes
672 to rs->buf, but this call limits the number of places which run
673 into trouble. */
5cd63fda 674 get_remote_arch_state (target_gdbarch ());
0b83947e
DJ
675
676 return get_remote_state_raw ();
677}
678
94585166
DB
679/* Cleanup routine for the remote module's pspace data. */
680
681static void
682remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
683{
19ba03f4 684 char *remote_exec_file = (char *) arg;
94585166
DB
685
686 xfree (remote_exec_file);
687}
688
689/* Fetch the remote exec-file from the current program space. */
690
691static const char *
692get_remote_exec_file (void)
693{
694 char *remote_exec_file;
695
19ba03f4
SM
696 remote_exec_file
697 = (char *) program_space_data (current_program_space,
698 remote_pspace_data);
94585166
DB
699 if (remote_exec_file == NULL)
700 return "";
701
702 return remote_exec_file;
703}
704
705/* Set the remote exec file for PSPACE. */
706
707static void
708set_pspace_remote_exec_file (struct program_space *pspace,
709 char *remote_exec_file)
710{
19ba03f4 711 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
712
713 xfree (old_file);
714 set_program_space_data (pspace, remote_pspace_data,
715 xstrdup (remote_exec_file));
716}
717
718/* The "set/show remote exec-file" set command hook. */
719
720static void
eb4c3f4a 721set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
722 struct cmd_list_element *c)
723{
724 gdb_assert (remote_exec_file_var != NULL);
725 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
726}
727
728/* The "set/show remote exec-file" show command hook. */
729
730static void
731show_remote_exec_file (struct ui_file *file, int from_tty,
732 struct cmd_list_element *cmd, const char *value)
733{
734 fprintf_filtered (file, "%s\n", remote_exec_file_var);
735}
736
74ca34ce
DJ
737static int
738compare_pnums (const void *lhs_, const void *rhs_)
739{
19ba03f4
SM
740 const struct packet_reg * const *lhs
741 = (const struct packet_reg * const *) lhs_;
742 const struct packet_reg * const *rhs
743 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
744
745 if ((*lhs)->pnum < (*rhs)->pnum)
746 return -1;
747 else if ((*lhs)->pnum == (*rhs)->pnum)
748 return 0;
749 else
750 return 1;
751}
752
c21236dc
PA
753static int
754map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 755{
74ca34ce 756 int regnum, num_remote_regs, offset;
74ca34ce 757 struct packet_reg **remote_regs;
ea9c271d 758
4a22f64d 759 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 760 {
c21236dc 761 struct packet_reg *r = &regs[regnum];
baef701f 762
4a22f64d 763 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
764 /* Do not try to fetch zero-sized (placeholder) registers. */
765 r->pnum = -1;
766 else
767 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
768
b323314b 769 r->regnum = regnum;
74ca34ce
DJ
770 }
771
772 /* Define the g/G packet format as the contents of each register
773 with a remote protocol number, in order of ascending protocol
774 number. */
775
224c3ddb 776 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 777 for (num_remote_regs = 0, regnum = 0;
4a22f64d 778 regnum < gdbarch_num_regs (gdbarch);
f57d151a 779 regnum++)
c21236dc
PA
780 if (regs[regnum].pnum != -1)
781 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 782
74ca34ce
DJ
783 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
784 compare_pnums);
785
786 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
787 {
788 remote_regs[regnum]->in_g_packet = 1;
789 remote_regs[regnum]->offset = offset;
4a22f64d 790 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
791 }
792
c21236dc
PA
793 return offset;
794}
795
796/* Given the architecture described by GDBARCH, return the remote
797 protocol register's number and the register's offset in the g/G
798 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
799 If the target does not have a mapping for REGNUM, return false,
800 otherwise, return true. */
801
802int
803remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
804 int *pnum, int *poffset)
805{
c21236dc
PA
806 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
807
b80406ac 808 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 809
b80406ac 810 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
811
812 *pnum = regs[regnum].pnum;
813 *poffset = regs[regnum].offset;
814
c21236dc
PA
815 return *pnum != -1;
816}
817
818static void *
819init_remote_state (struct gdbarch *gdbarch)
820{
821 struct remote_state *rs = get_remote_state_raw ();
822 struct remote_arch_state *rsa;
823
824 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
825
826 /* Use the architecture to build a regnum<->pnum table, which will be
827 1:1 unless a feature set specifies otherwise. */
828 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
829 gdbarch_num_regs (gdbarch),
830 struct packet_reg);
831
74ca34ce
DJ
832 /* Record the maximum possible size of the g packet - it may turn out
833 to be smaller. */
c21236dc 834 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
74ca34ce 835
0df8b418 836 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
837 remote stubs have a hardwired buffer size of 400 bytes
838 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
839 as the maximum packet-size to ensure that the packet and an extra
840 NUL character can always fit in the buffer. This stops GDB
841 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
842 already a full buffer (As of 1999-12-04 that was most stubs). */
843 rsa->remote_packet_size = 400 - 1;
d01949b6 844
ea9c271d
DJ
845 /* This one is filled in when a ``g'' packet is received. */
846 rsa->actual_register_packet_size = 0;
847
848 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
849 default, adjust the size accordingly. Remember that each byte is
850 encoded as two characters. 32 is the overhead for the packet
851 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 852 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 853 little. */
ea9c271d
DJ
854 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
855 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 856
ea9c271d
DJ
857 /* Make sure that the packet buffer is plenty big enough for
858 this architecture. */
859 if (rs->buf_size < rsa->remote_packet_size)
860 {
861 rs->buf_size = 2 * rsa->remote_packet_size;
224c3ddb 862 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
ea9c271d 863 }
6d820c5c 864
ea9c271d
DJ
865 return rsa;
866}
867
868/* Return the current allowed size of a remote packet. This is
869 inferred from the current architecture, and should be used to
870 limit the length of outgoing packets. */
871static long
872get_remote_packet_size (void)
873{
be2a5f71 874 struct remote_state *rs = get_remote_state ();
5cd63fda 875 remote_arch_state *rsa = get_remote_arch_state (target_gdbarch ());
ea9c271d 876
be2a5f71
DJ
877 if (rs->explicit_packet_size)
878 return rs->explicit_packet_size;
879
ea9c271d 880 return rsa->remote_packet_size;
d01949b6
AC
881}
882
ad10f812 883static struct packet_reg *
5cd63fda
PA
884packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
885 long regnum)
ad10f812 886{
5cd63fda 887 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
888 return NULL;
889 else
ad10f812 890 {
ea9c271d 891 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 892
b323314b
AC
893 gdb_assert (r->regnum == regnum);
894 return r;
ad10f812 895 }
ad10f812
AC
896}
897
898static struct packet_reg *
5cd63fda
PA
899packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
900 LONGEST pnum)
ad10f812 901{
b323314b 902 int i;
a744cf53 903
5cd63fda 904 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 905 {
ea9c271d 906 struct packet_reg *r = &rsa->regs[i];
a744cf53 907
b323314b
AC
908 if (r->pnum == pnum)
909 return r;
ad10f812
AC
910 }
911 return NULL;
d01949b6
AC
912}
913
c906108c
SS
914static struct target_ops remote_ops;
915
916static struct target_ops extended_remote_ops;
917
6426a772
JM
918/* FIXME: cagney/1999-09-23: Even though getpkt was called with
919 ``forever'' still use the normal timeout mechanism. This is
920 currently used by the ASYNC code to guarentee that target reads
921 during the initial connect always time-out. Once getpkt has been
922 modified to return a timeout indication and, in turn
923 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 924 this can go away. */
6426a772
JM
925static int wait_forever_enabled_p = 1;
926
9a7071a8
JB
927/* Allow the user to specify what sequence to send to the remote
928 when he requests a program interruption: Although ^C is usually
929 what remote systems expect (this is the default, here), it is
930 sometimes preferable to send a break. On other systems such
931 as the Linux kernel, a break followed by g, which is Magic SysRq g
932 is required in order to interrupt the execution. */
933const char interrupt_sequence_control_c[] = "Ctrl-C";
934const char interrupt_sequence_break[] = "BREAK";
935const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 936static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
937 {
938 interrupt_sequence_control_c,
939 interrupt_sequence_break,
940 interrupt_sequence_break_g,
941 NULL
942 };
943static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
944
945static void
946show_interrupt_sequence (struct ui_file *file, int from_tty,
947 struct cmd_list_element *c,
948 const char *value)
949{
950 if (interrupt_sequence_mode == interrupt_sequence_control_c)
951 fprintf_filtered (file,
952 _("Send the ASCII ETX character (Ctrl-c) "
953 "to the remote target to interrupt the "
954 "execution of the program.\n"));
955 else if (interrupt_sequence_mode == interrupt_sequence_break)
956 fprintf_filtered (file,
957 _("send a break signal to the remote target "
958 "to interrupt the execution of the program.\n"));
959 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
960 fprintf_filtered (file,
961 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
962 "the remote target to interrupt the execution "
963 "of Linux kernel.\n"));
964 else
965 internal_error (__FILE__, __LINE__,
966 _("Invalid value for interrupt_sequence_mode: %s."),
967 interrupt_sequence_mode);
968}
6426a772 969
9a7071a8
JB
970/* This boolean variable specifies whether interrupt_sequence is sent
971 to the remote target when gdb connects to it.
972 This is mostly needed when you debug the Linux kernel: The Linux kernel
973 expects BREAK g which is Magic SysRq g for connecting gdb. */
974static int interrupt_on_connect = 0;
c906108c 975
9a7071a8
JB
976/* This variable is used to implement the "set/show remotebreak" commands.
977 Since these commands are now deprecated in favor of "set/show remote
978 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
979static int remote_break;
980
9a7071a8 981static void
eb4c3f4a 982set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
983{
984 if (remote_break)
985 interrupt_sequence_mode = interrupt_sequence_break;
986 else
987 interrupt_sequence_mode = interrupt_sequence_control_c;
988}
989
990static void
991show_remotebreak (struct ui_file *file, int from_tty,
992 struct cmd_list_element *c,
993 const char *value)
994{
995}
996
c906108c
SS
997/* This variable sets the number of bits in an address that are to be
998 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 999 leading zeros, the entire address would be sent. This variable
c906108c
SS
1000 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1001 initial implementation of remote.c restricted the address sent in
1002 memory packets to ``host::sizeof long'' bytes - (typically 32
1003 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1004 address was never sent. Since fixing this bug may cause a break in
1005 some remote targets this variable is principly provided to
23860348 1006 facilitate backward compatibility. */
c906108c 1007
883b9c6c 1008static unsigned int remote_address_size;
c906108c 1009
11cf8741 1010\f
11cf8741 1011/* User configurable variables for the number of characters in a
ea9c271d
DJ
1012 memory read/write packet. MIN (rsa->remote_packet_size,
1013 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1014 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1015 (speed up transfers). The variables ``preferred_*'' (the user
1016 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1017 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1018
1019struct memory_packet_config
1020{
a121b7c1 1021 const char *name;
11cf8741
JM
1022 long size;
1023 int fixed_p;
1024};
1025
a5c0808e
PA
1026/* The default max memory-write-packet-size. The 16k is historical.
1027 (It came from older GDB's using alloca for buffers and the
1028 knowledge (folklore?) that some hosts don't cope very well with
1029 large alloca calls.) */
1030#define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1031
1032/* The minimum remote packet size for memory transfers. Ensures we
1033 can write at least one byte. */
1034#define MIN_MEMORY_PACKET_SIZE 20
1035
11cf8741
JM
1036/* Compute the current size of a read/write packet. Since this makes
1037 use of ``actual_register_packet_size'' the computation is dynamic. */
1038
1039static long
1040get_memory_packet_size (struct memory_packet_config *config)
1041{
d01949b6 1042 struct remote_state *rs = get_remote_state ();
5cd63fda 1043 remote_arch_state *rsa = get_remote_arch_state (target_gdbarch ());
ea9c271d 1044
11cf8741
JM
1045 long what_they_get;
1046 if (config->fixed_p)
1047 {
1048 if (config->size <= 0)
a5c0808e 1049 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
11cf8741
JM
1050 else
1051 what_they_get = config->size;
1052 }
1053 else
1054 {
ea9c271d 1055 what_they_get = get_remote_packet_size ();
23860348 1056 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1057 if (config->size > 0
1058 && what_they_get > config->size)
1059 what_they_get = config->size;
be2a5f71
DJ
1060
1061 /* Limit it to the size of the targets ``g'' response unless we have
1062 permission from the stub to use a larger packet size. */
1063 if (rs->explicit_packet_size == 0
1064 && rsa->actual_register_packet_size > 0
1065 && what_they_get > rsa->actual_register_packet_size)
1066 what_they_get = rsa->actual_register_packet_size;
11cf8741 1067 }
a5c0808e
PA
1068 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1069 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1070
1071 /* Make sure there is room in the global buffer for this packet
1072 (including its trailing NUL byte). */
1073 if (rs->buf_size < what_they_get + 1)
1074 {
1075 rs->buf_size = 2 * what_they_get;
224c3ddb 1076 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
6d820c5c
DJ
1077 }
1078
11cf8741
JM
1079 return what_they_get;
1080}
1081
0df8b418 1082/* Update the size of a read/write packet. If they user wants
23860348 1083 something really big then do a sanity check. */
11cf8741
JM
1084
1085static void
ac88e2de 1086set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1087{
1088 int fixed_p = config->fixed_p;
1089 long size = config->size;
a744cf53 1090
11cf8741 1091 if (args == NULL)
8a3fe4f8 1092 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1093 else if (strcmp (args, "hard") == 0
1094 || strcmp (args, "fixed") == 0)
1095 fixed_p = 1;
1096 else if (strcmp (args, "soft") == 0
1097 || strcmp (args, "limit") == 0)
1098 fixed_p = 0;
1099 else
1100 {
1101 char *end;
a744cf53 1102
11cf8741
JM
1103 size = strtoul (args, &end, 0);
1104 if (args == end)
8a3fe4f8 1105 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1106
1107 /* Instead of explicitly capping the size of a packet to or
1108 disallowing it, the user is allowed to set the size to
1109 something arbitrarily large. */
11cf8741 1110 }
a5c0808e
PA
1111
1112 /* So that the query shows the correct value. */
1113 if (size <= 0)
1114 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1115
23860348 1116 /* Extra checks? */
11cf8741
JM
1117 if (fixed_p && !config->fixed_p)
1118 {
e2e0b3e5
AC
1119 if (! query (_("The target may not be able to correctly handle a %s\n"
1120 "of %ld bytes. Change the packet size? "),
11cf8741 1121 config->name, size))
8a3fe4f8 1122 error (_("Packet size not changed."));
11cf8741 1123 }
23860348 1124 /* Update the config. */
11cf8741
JM
1125 config->fixed_p = fixed_p;
1126 config->size = size;
1127}
1128
1129static void
1130show_memory_packet_size (struct memory_packet_config *config)
1131{
a3f17187 1132 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1133 if (config->fixed_p)
a3f17187 1134 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
1135 get_memory_packet_size (config));
1136 else
a3f17187 1137 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
1138 get_memory_packet_size (config));
1139}
1140
1141static struct memory_packet_config memory_write_packet_config =
1142{
1143 "memory-write-packet-size",
1144};
1145
1146static void
ac88e2de 1147set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1148{
1149 set_memory_packet_size (args, &memory_write_packet_config);
1150}
1151
1152static void
ac88e2de 1153show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1154{
1155 show_memory_packet_size (&memory_write_packet_config);
1156}
1157
1158static long
1159get_memory_write_packet_size (void)
1160{
1161 return get_memory_packet_size (&memory_write_packet_config);
1162}
1163
1164static struct memory_packet_config memory_read_packet_config =
1165{
1166 "memory-read-packet-size",
1167};
1168
1169static void
ac88e2de 1170set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1171{
1172 set_memory_packet_size (args, &memory_read_packet_config);
1173}
1174
1175static void
ac88e2de 1176show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1177{
1178 show_memory_packet_size (&memory_read_packet_config);
1179}
1180
1181static long
1182get_memory_read_packet_size (void)
1183{
1184 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1185
11cf8741
JM
1186 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1187 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1188 increased beyond this. */
1189 if (size > get_remote_packet_size ())
1190 size = get_remote_packet_size ();
11cf8741
JM
1191 return size;
1192}
1193
11cf8741 1194\f
5a2468f5 1195/* Generic configuration support for packets the stub optionally
0df8b418 1196 supports. Allows the user to specify the use of the packet as well
23860348 1197 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
1198
1199enum packet_support
1200 {
1201 PACKET_SUPPORT_UNKNOWN = 0,
1202 PACKET_ENABLE,
1203 PACKET_DISABLE
1204 };
1205
5a2468f5
JM
1206struct packet_config
1207 {
bb572ddd
DJ
1208 const char *name;
1209 const char *title;
4082afcc
PA
1210
1211 /* If auto, GDB auto-detects support for this packet or feature,
1212 either through qSupported, or by trying the packet and looking
1213 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1214 packet. If false, the packet is disabled. Configs that don't
1215 have an associated command always have this set to auto. */
7f19b9a2 1216 enum auto_boolean detect;
4082afcc
PA
1217
1218 /* Does the target support this packet? */
5a2468f5
JM
1219 enum packet_support support;
1220 };
1221
d471ea57 1222/* Analyze a packet's return value and update the packet config
23860348 1223 accordingly. */
d471ea57
AC
1224
1225enum packet_result
1226{
1227 PACKET_ERROR,
1228 PACKET_OK,
1229 PACKET_UNKNOWN
1230};
1231
4082afcc
PA
1232static enum packet_support packet_config_support (struct packet_config *config);
1233static enum packet_support packet_support (int packet);
5a2468f5
JM
1234
1235static void
fba45db2 1236show_packet_config_cmd (struct packet_config *config)
5a2468f5 1237{
a121b7c1 1238 const char *support = "internal-error";
a744cf53 1239
4082afcc 1240 switch (packet_config_support (config))
5a2468f5
JM
1241 {
1242 case PACKET_ENABLE:
1243 support = "enabled";
1244 break;
1245 case PACKET_DISABLE:
1246 support = "disabled";
1247 break;
1248 case PACKET_SUPPORT_UNKNOWN:
1249 support = "unknown";
1250 break;
1251 }
1252 switch (config->detect)
1253 {
7f19b9a2 1254 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1255 printf_filtered (_("Support for the `%s' packet "
1256 "is auto-detected, currently %s.\n"),
37a105a1 1257 config->name, support);
5a2468f5 1258 break;
7f19b9a2
AC
1259 case AUTO_BOOLEAN_TRUE:
1260 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1261 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1262 config->name, support);
8e248173 1263 break;
5a2468f5
JM
1264 }
1265}
1266
1267static void
bb572ddd
DJ
1268add_packet_config_cmd (struct packet_config *config, const char *name,
1269 const char *title, int legacy)
d471ea57 1270{
5a2468f5
JM
1271 char *set_doc;
1272 char *show_doc;
d471ea57 1273 char *cmd_name;
3ed07be4 1274
5a2468f5
JM
1275 config->name = name;
1276 config->title = title;
b435e160
AC
1277 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1278 name, title);
3e43a32a
MS
1279 show_doc = xstrprintf ("Show current use of remote "
1280 "protocol `%s' (%s) packet",
b435e160 1281 name, title);
d471ea57 1282 /* set/show TITLE-packet {auto,on,off} */
b435e160 1283 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1284 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1285 &config->detect, set_doc,
1286 show_doc, NULL, /* help_doc */
4082afcc 1287 NULL,
bb572ddd
DJ
1288 show_remote_protocol_packet_cmd,
1289 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1290 /* The command code copies the documentation strings. */
1291 xfree (set_doc);
1292 xfree (show_doc);
23860348 1293 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1294 if (legacy)
1295 {
1296 char *legacy_name;
a744cf53 1297
b435e160 1298 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1299 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1300 &remote_set_cmdlist);
d471ea57 1301 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1302 &remote_show_cmdlist);
d471ea57 1303 }
5a2468f5
JM
1304}
1305
d471ea57 1306static enum packet_result
a76d924d 1307packet_check_result (const char *buf)
5a2468f5 1308{
d471ea57 1309 if (buf[0] != '\0')
5a2468f5 1310 {
d471ea57 1311 /* The stub recognized the packet request. Check that the
23860348 1312 operation succeeded. */
a76d924d
DJ
1313 if (buf[0] == 'E'
1314 && isxdigit (buf[1]) && isxdigit (buf[2])
1315 && buf[3] == '\0')
1316 /* "Enn" - definitly an error. */
1317 return PACKET_ERROR;
1318
1319 /* Always treat "E." as an error. This will be used for
1320 more verbose error messages, such as E.memtypes. */
1321 if (buf[0] == 'E' && buf[1] == '.')
1322 return PACKET_ERROR;
1323
1324 /* The packet may or may not be OK. Just assume it is. */
1325 return PACKET_OK;
1326 }
1327 else
1328 /* The stub does not support the packet. */
1329 return PACKET_UNKNOWN;
1330}
1331
1332static enum packet_result
1333packet_ok (const char *buf, struct packet_config *config)
1334{
1335 enum packet_result result;
1336
4082afcc
PA
1337 if (config->detect != AUTO_BOOLEAN_TRUE
1338 && config->support == PACKET_DISABLE)
1339 internal_error (__FILE__, __LINE__,
1340 _("packet_ok: attempt to use a disabled packet"));
1341
a76d924d
DJ
1342 result = packet_check_result (buf);
1343 switch (result)
1344 {
1345 case PACKET_OK:
1346 case PACKET_ERROR:
1347 /* The stub recognized the packet request. */
4082afcc 1348 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1349 {
d471ea57
AC
1350 if (remote_debug)
1351 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1352 "Packet %s (%s) is supported\n",
1353 config->name, config->title);
d471ea57 1354 config->support = PACKET_ENABLE;
d471ea57 1355 }
a76d924d
DJ
1356 break;
1357 case PACKET_UNKNOWN:
23860348 1358 /* The stub does not support the packet. */
4082afcc
PA
1359 if (config->detect == AUTO_BOOLEAN_AUTO
1360 && config->support == PACKET_ENABLE)
d471ea57 1361 {
4082afcc
PA
1362 /* If the stub previously indicated that the packet was
1363 supported then there is a protocol error. */
1364 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1365 config->name, config->title);
1366 }
1367 else if (config->detect == AUTO_BOOLEAN_TRUE)
1368 {
1369 /* The user set it wrong. */
1370 error (_("Enabled packet %s (%s) not recognized by stub"),
1371 config->name, config->title);
d471ea57 1372 }
4082afcc
PA
1373
1374 if (remote_debug)
1375 fprintf_unfiltered (gdb_stdlog,
1376 "Packet %s (%s) is NOT supported\n",
1377 config->name, config->title);
1378 config->support = PACKET_DISABLE;
a76d924d 1379 break;
5a2468f5 1380 }
a76d924d
DJ
1381
1382 return result;
5a2468f5
JM
1383}
1384
444abaca
DJ
1385enum {
1386 PACKET_vCont = 0,
1387 PACKET_X,
1388 PACKET_qSymbol,
1389 PACKET_P,
1390 PACKET_p,
1391 PACKET_Z0,
1392 PACKET_Z1,
1393 PACKET_Z2,
1394 PACKET_Z3,
1395 PACKET_Z4,
15a201c8 1396 PACKET_vFile_setfs,
a6b151f1
DJ
1397 PACKET_vFile_open,
1398 PACKET_vFile_pread,
1399 PACKET_vFile_pwrite,
1400 PACKET_vFile_close,
1401 PACKET_vFile_unlink,
b9e7b9c3 1402 PACKET_vFile_readlink,
0a93529c 1403 PACKET_vFile_fstat,
0876f84a 1404 PACKET_qXfer_auxv,
23181151 1405 PACKET_qXfer_features,
c78fa86a 1406 PACKET_qXfer_exec_file,
cfa9d6d9 1407 PACKET_qXfer_libraries,
2268b414 1408 PACKET_qXfer_libraries_svr4,
fd79ecee 1409 PACKET_qXfer_memory_map,
0e7f50da
UW
1410 PACKET_qXfer_spu_read,
1411 PACKET_qXfer_spu_write,
07e059b5 1412 PACKET_qXfer_osdata,
dc146f7c 1413 PACKET_qXfer_threads,
0fb4aa4b 1414 PACKET_qXfer_statictrace_read,
b3b9301e 1415 PACKET_qXfer_traceframe_info,
169081d0 1416 PACKET_qXfer_uib,
711e434b 1417 PACKET_qGetTIBAddr,
444abaca 1418 PACKET_qGetTLSAddr,
be2a5f71 1419 PACKET_qSupported,
bd3eecc3 1420 PACKET_qTStatus,
89be2091 1421 PACKET_QPassSignals,
82075af2 1422 PACKET_QCatchSyscalls,
9b224c5e 1423 PACKET_QProgramSignals,
bc3b087d 1424 PACKET_QSetWorkingDir,
aefd8b33 1425 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1426 PACKET_QEnvironmentHexEncoded,
1427 PACKET_QEnvironmentReset,
1428 PACKET_QEnvironmentUnset,
936d2992 1429 PACKET_qCRC,
08388c79 1430 PACKET_qSearch_memory,
2d717e4f
DJ
1431 PACKET_vAttach,
1432 PACKET_vRun,
a6f3e723 1433 PACKET_QStartNoAckMode,
82f73884 1434 PACKET_vKill,
4aa995e1
PA
1435 PACKET_qXfer_siginfo_read,
1436 PACKET_qXfer_siginfo_write,
0b16c5cf 1437 PACKET_qAttached,
4082afcc
PA
1438
1439 /* Support for conditional tracepoints. */
782b2b07 1440 PACKET_ConditionalTracepoints,
4082afcc
PA
1441
1442 /* Support for target-side breakpoint conditions. */
3788aec7 1443 PACKET_ConditionalBreakpoints,
4082afcc
PA
1444
1445 /* Support for target-side breakpoint commands. */
d3ce09f5 1446 PACKET_BreakpointCommands,
4082afcc
PA
1447
1448 /* Support for fast tracepoints. */
7a697b8d 1449 PACKET_FastTracepoints,
4082afcc
PA
1450
1451 /* Support for static tracepoints. */
0fb4aa4b 1452 PACKET_StaticTracepoints,
4082afcc
PA
1453
1454 /* Support for installing tracepoints while a trace experiment is
1455 running. */
1e4d1764 1456 PACKET_InstallInTrace,
4082afcc 1457
40ab02ce
MS
1458 PACKET_bc,
1459 PACKET_bs,
409873ef 1460 PACKET_TracepointSource,
d914c394 1461 PACKET_QAllow,
78d85199 1462 PACKET_qXfer_fdpic,
03583c20 1463 PACKET_QDisableRandomization,
d1feda86 1464 PACKET_QAgent,
f6f899bf 1465 PACKET_QTBuffer_size,
9accd112
MM
1466 PACKET_Qbtrace_off,
1467 PACKET_Qbtrace_bts,
b20a6524 1468 PACKET_Qbtrace_pt,
9accd112 1469 PACKET_qXfer_btrace,
4082afcc
PA
1470
1471 /* Support for the QNonStop packet. */
1472 PACKET_QNonStop,
1473
65706a29
PA
1474 /* Support for the QThreadEvents packet. */
1475 PACKET_QThreadEvents,
1476
4082afcc
PA
1477 /* Support for multi-process extensions. */
1478 PACKET_multiprocess_feature,
1479
1480 /* Support for enabling and disabling tracepoints while a trace
1481 experiment is running. */
1482 PACKET_EnableDisableTracepoints_feature,
1483
1484 /* Support for collecting strings using the tracenz bytecode. */
1485 PACKET_tracenz_feature,
1486
1487 /* Support for continuing to run a trace experiment while GDB is
1488 disconnected. */
1489 PACKET_DisconnectedTracing_feature,
1490
1491 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1492 PACKET_augmented_libraries_svr4_read_feature,
1493
f4abbc16
MM
1494 /* Support for the qXfer:btrace-conf:read packet. */
1495 PACKET_qXfer_btrace_conf,
1496
d33501a5
MM
1497 /* Support for the Qbtrace-conf:bts:size packet. */
1498 PACKET_Qbtrace_conf_bts_size,
1499
f7e6eed5
PA
1500 /* Support for swbreak+ feature. */
1501 PACKET_swbreak_feature,
1502
1503 /* Support for hwbreak+ feature. */
1504 PACKET_hwbreak_feature,
1505
89245bc0
DB
1506 /* Support for fork events. */
1507 PACKET_fork_event_feature,
1508
1509 /* Support for vfork events. */
1510 PACKET_vfork_event_feature,
1511
b20a6524
MM
1512 /* Support for the Qbtrace-conf:pt:size packet. */
1513 PACKET_Qbtrace_conf_pt_size,
1514
94585166
DB
1515 /* Support for exec events. */
1516 PACKET_exec_event_feature,
1517
750ce8d1
YQ
1518 /* Support for query supported vCont actions. */
1519 PACKET_vContSupported,
1520
de979965
PA
1521 /* Support remote CTRL-C. */
1522 PACKET_vCtrlC,
1523
f2faf941
PA
1524 /* Support TARGET_WAITKIND_NO_RESUMED. */
1525 PACKET_no_resumed,
1526
444abaca
DJ
1527 PACKET_MAX
1528};
506fb367 1529
444abaca 1530static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 1531
f7e6eed5
PA
1532/* Returns the packet's corresponding "set remote foo-packet" command
1533 state. See struct packet_config for more details. */
1534
1535static enum auto_boolean
1536packet_set_cmd_state (int packet)
1537{
1538 return remote_protocol_packets[packet].detect;
1539}
1540
4082afcc
PA
1541/* Returns whether a given packet or feature is supported. This takes
1542 into account the state of the corresponding "set remote foo-packet"
1543 command, which may be used to bypass auto-detection. */
dc8acb97 1544
4082afcc
PA
1545static enum packet_support
1546packet_config_support (struct packet_config *config)
1547{
1548 switch (config->detect)
444abaca 1549 {
4082afcc
PA
1550 case AUTO_BOOLEAN_TRUE:
1551 return PACKET_ENABLE;
1552 case AUTO_BOOLEAN_FALSE:
1553 return PACKET_DISABLE;
1554 case AUTO_BOOLEAN_AUTO:
1555 return config->support;
1556 default:
1557 gdb_assert_not_reached (_("bad switch"));
444abaca 1558 }
4082afcc
PA
1559}
1560
1561/* Same as packet_config_support, but takes the packet's enum value as
1562 argument. */
1563
1564static enum packet_support
1565packet_support (int packet)
1566{
1567 struct packet_config *config = &remote_protocol_packets[packet];
1568
1569 return packet_config_support (config);
dc8acb97
MS
1570}
1571
5a2468f5 1572static void
444abaca
DJ
1573show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1574 struct cmd_list_element *c,
1575 const char *value)
5a2468f5 1576{
444abaca 1577 struct packet_config *packet;
5a2468f5 1578
444abaca
DJ
1579 for (packet = remote_protocol_packets;
1580 packet < &remote_protocol_packets[PACKET_MAX];
1581 packet++)
1582 {
1583 if (&packet->detect == c->var)
1584 {
1585 show_packet_config_cmd (packet);
1586 return;
1587 }
1588 }
9b20d036 1589 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1590 c->name);
5a2468f5
JM
1591}
1592
d471ea57
AC
1593/* Should we try one of the 'Z' requests? */
1594
1595enum Z_packet_type
1596{
1597 Z_PACKET_SOFTWARE_BP,
1598 Z_PACKET_HARDWARE_BP,
1599 Z_PACKET_WRITE_WP,
1600 Z_PACKET_READ_WP,
1601 Z_PACKET_ACCESS_WP,
1602 NR_Z_PACKET_TYPES
1603};
96baa820 1604
d471ea57 1605/* For compatibility with older distributions. Provide a ``set remote
23860348 1606 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1607
7f19b9a2 1608static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1609
1610static void
eb4c3f4a 1611set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 1612 struct cmd_list_element *c)
96baa820 1613{
d471ea57 1614 int i;
a744cf53 1615
d471ea57 1616 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 1617 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
1618}
1619
1620static void
08546159
AC
1621show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1622 struct cmd_list_element *c,
1623 const char *value)
96baa820 1624{
d471ea57 1625 int i;
a744cf53 1626
d471ea57
AC
1627 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1628 {
444abaca 1629 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1630 }
96baa820
JM
1631}
1632
4082afcc
PA
1633/* Returns true if the multi-process extensions are in effect. */
1634
1635static int
1636remote_multi_process_p (struct remote_state *rs)
1637{
1638 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1639}
1640
de0d863e
DB
1641/* Returns true if fork events are supported. */
1642
1643static int
1644remote_fork_event_p (struct remote_state *rs)
1645{
1646 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1647}
1648
c269dbdb
DB
1649/* Returns true if vfork events are supported. */
1650
1651static int
1652remote_vfork_event_p (struct remote_state *rs)
1653{
1654 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1655}
1656
d46addbb
DB
1657/* Returns true if exec events are supported. */
1658
1659static int
1660remote_exec_event_p (struct remote_state *rs)
1661{
1662 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1663}
1664
cbb8991c
DB
1665/* Insert fork catchpoint target routine. If fork events are enabled
1666 then return success, nothing more to do. */
1667
1668static int
1669remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1670{
1671 struct remote_state *rs = get_remote_state ();
1672
1673 return !remote_fork_event_p (rs);
1674}
1675
1676/* Remove fork catchpoint target routine. Nothing to do, just
1677 return success. */
1678
1679static int
1680remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1681{
1682 return 0;
1683}
1684
1685/* Insert vfork catchpoint target routine. If vfork events are enabled
1686 then return success, nothing more to do. */
1687
1688static int
1689remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1690{
1691 struct remote_state *rs = get_remote_state ();
1692
1693 return !remote_vfork_event_p (rs);
1694}
1695
1696/* Remove vfork catchpoint target routine. Nothing to do, just
1697 return success. */
1698
1699static int
1700remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1701{
1702 return 0;
1703}
1704
d46addbb
DB
1705/* Insert exec catchpoint target routine. If exec events are
1706 enabled, just return success. */
1707
1708static int
1709remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1710{
1711 struct remote_state *rs = get_remote_state ();
1712
1713 return !remote_exec_event_p (rs);
1714}
1715
1716/* Remove exec catchpoint target routine. Nothing to do, just
1717 return success. */
1718
1719static int
1720remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1721{
1722 return 0;
1723}
1724
74531fed
PA
1725\f
1726/* Asynchronous signal handle registered as event loop source for
1727 when we have pending events ready to be passed to the core. */
1728
1729static struct async_event_handler *remote_async_inferior_event_token;
1730
c906108c
SS
1731\f
1732
79d7f229
PA
1733static ptid_t magic_null_ptid;
1734static ptid_t not_sent_ptid;
1735static ptid_t any_thread_ptid;
1736
0b16c5cf
PA
1737/* Find out if the stub attached to PID (and hence GDB should offer to
1738 detach instead of killing it when bailing out). */
1739
1740static int
1741remote_query_attached (int pid)
1742{
1743 struct remote_state *rs = get_remote_state ();
bba74b36 1744 size_t size = get_remote_packet_size ();
0b16c5cf 1745
4082afcc 1746 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
1747 return 0;
1748
1749 if (remote_multi_process_p (rs))
bba74b36 1750 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 1751 else
bba74b36 1752 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
1753
1754 putpkt (rs->buf);
1755 getpkt (&rs->buf, &rs->buf_size, 0);
1756
1757 switch (packet_ok (rs->buf,
1554e9be 1758 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1759 {
1760 case PACKET_OK:
1761 if (strcmp (rs->buf, "1") == 0)
1762 return 1;
1763 break;
1764 case PACKET_ERROR:
1765 warning (_("Remote failure reply: %s"), rs->buf);
1766 break;
1767 case PACKET_UNKNOWN:
1768 break;
1769 }
1770
1771 return 0;
1772}
1773
49c62f2e
PA
1774/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1775 has been invented by GDB, instead of reported by the target. Since
1776 we can be connected to a remote system before before knowing about
1777 any inferior, mark the target with execution when we find the first
1778 inferior. If ATTACHED is 1, then we had just attached to this
1779 inferior. If it is 0, then we just created this inferior. If it
1780 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
1781 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1782 attempt to open this inferior's executable as the main executable
1783 if no main executable is open already. */
1941c569
PA
1784
1785static struct inferior *
1b6e6f5c
GB
1786remote_add_inferior (int fake_pid_p, int pid, int attached,
1787 int try_open_exec)
1941c569 1788{
1941c569
PA
1789 struct inferior *inf;
1790
0b16c5cf
PA
1791 /* Check whether this process we're learning about is to be
1792 considered attached, or if is to be considered to have been
1793 spawned by the stub. */
1794 if (attached == -1)
1795 attached = remote_query_attached (pid);
1796
f5656ead 1797 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
1798 {
1799 /* If the target shares code across all inferiors, then every
1800 attach adds a new inferior. */
1801 inf = add_inferior (pid);
1802
1803 /* ... and every inferior is bound to the same program space.
1804 However, each inferior may still have its own address
1805 space. */
1806 inf->aspace = maybe_new_address_space ();
1807 inf->pspace = current_program_space;
1808 }
1809 else
1810 {
1811 /* In the traditional debugging scenario, there's a 1-1 match
1812 between program/address spaces. We simply bind the inferior
1813 to the program space's address space. */
1814 inf = current_inferior ();
1815 inferior_appeared (inf, pid);
1816 }
1941c569 1817
0b16c5cf 1818 inf->attach_flag = attached;
49c62f2e 1819 inf->fake_pid_p = fake_pid_p;
0b16c5cf 1820
1b6e6f5c
GB
1821 /* If no main executable is currently open then attempt to
1822 open the file that was executed to create this inferior. */
835205d0 1823 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 1824 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 1825
1941c569
PA
1826 return inf;
1827}
1828
85ad3aaf
PA
1829static struct private_thread_info *
1830 get_private_info_thread (struct thread_info *info);
1831
1941c569
PA
1832/* Add thread PTID to GDB's thread list. Tag it as executing/running
1833 according to RUNNING. */
1834
c906108c 1835static void
0d5b594f 1836remote_add_thread (ptid_t ptid, int running, int executing)
c906108c 1837{
b7ea362b 1838 struct remote_state *rs = get_remote_state ();
85ad3aaf 1839 struct thread_info *thread;
b7ea362b
PA
1840
1841 /* GDB historically didn't pull threads in the initial connection
1842 setup. If the remote target doesn't even have a concept of
1843 threads (e.g., a bare-metal target), even if internally we
1844 consider that a single-threaded target, mentioning a new thread
1845 might be confusing to the user. Be silent then, preserving the
1846 age old behavior. */
1847 if (rs->starting_up)
85ad3aaf 1848 thread = add_thread_silent (ptid);
b7ea362b 1849 else
85ad3aaf 1850 thread = add_thread (ptid);
1941c569 1851
85ad3aaf 1852 get_private_info_thread (thread)->vcont_resumed = executing;
0d5b594f 1853 set_executing (ptid, executing);
1941c569
PA
1854 set_running (ptid, running);
1855}
1856
1857/* Come here when we learn about a thread id from the remote target.
1858 It may be the first time we hear about such thread, so take the
1859 opportunity to add it to GDB's thread list. In case this is the
1860 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
1861 GDB's inferior list as well. EXECUTING indicates whether the
1862 thread is (internally) executing or stopped. */
1941c569
PA
1863
1864static void
0d5b594f 1865remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 1866{
0d5b594f
PA
1867 /* In non-stop mode, we assume new found threads are (externally)
1868 running until proven otherwise with a stop reply. In all-stop,
1869 we can only get here if all threads are stopped. */
1870 int running = target_is_non_stop_p () ? 1 : 0;
1871
c906108c
SS
1872 /* If this is a new thread, add it to GDB's thread list.
1873 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1874
1875 if (in_thread_list (currthread) && is_exited (currthread))
1876 {
1877 /* We're seeing an event on a thread id we knew had exited.
1878 This has to be a new thread reusing the old id. Add it. */
0d5b594f 1879 remote_add_thread (currthread, running, executing);
82f73884
PA
1880 return;
1881 }
1882
79d7f229 1883 if (!in_thread_list (currthread))
c0a2216e 1884 {
1941c569 1885 struct inferior *inf = NULL;
bad34192 1886 int pid = ptid_get_pid (currthread);
1941c569 1887
bad34192
PA
1888 if (ptid_is_pid (inferior_ptid)
1889 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1890 {
1891 /* inferior_ptid has no thread member yet. This can happen
1892 with the vAttach -> remote_wait,"TAAthread:" path if the
1893 stub doesn't support qC. This is the first stop reported
1894 after an attach, so this is the main thread. Update the
1895 ptid in the thread list. */
bad34192
PA
1896 if (in_thread_list (pid_to_ptid (pid)))
1897 thread_change_ptid (inferior_ptid, currthread);
1898 else
1899 {
0d5b594f 1900 remote_add_thread (currthread, running, executing);
bad34192
PA
1901 inferior_ptid = currthread;
1902 }
dc146f7c 1903 return;
c0a2216e 1904 }
82f73884
PA
1905
1906 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1907 {
1908 /* inferior_ptid is not set yet. This can happen with the
1909 vRun -> remote_wait,"TAAthread:" path if the stub
1910 doesn't support qC. This is the first stop reported
1911 after an attach, so this is the main thread. Update the
1912 ptid in the thread list. */
dc146f7c 1913 thread_change_ptid (inferior_ptid, currthread);
82f73884 1914 return;
c0a2216e 1915 }
82f73884 1916
29c87f7f
PA
1917 /* When connecting to a target remote, or to a target
1918 extended-remote which already was debugging an inferior, we
1919 may not know about it yet. Add it before adding its child
1920 thread, so notifications are emitted in a sensible order. */
1921 if (!in_inferior_list (ptid_get_pid (currthread)))
49c62f2e
PA
1922 {
1923 struct remote_state *rs = get_remote_state ();
1924 int fake_pid_p = !remote_multi_process_p (rs);
1925
1926 inf = remote_add_inferior (fake_pid_p,
1b6e6f5c 1927 ptid_get_pid (currthread), -1, 1);
49c62f2e 1928 }
29c87f7f 1929
82f73884 1930 /* This is really a new thread. Add it. */
0d5b594f 1931 remote_add_thread (currthread, running, executing);
1941c569
PA
1932
1933 /* If we found a new inferior, let the common code do whatever
1934 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
1935 breakpoints), unless we're just setting up an all-stop
1936 connection. */
1941c569 1937 if (inf != NULL)
b7ea362b
PA
1938 {
1939 struct remote_state *rs = get_remote_state ();
1940
6efcd9a8 1941 if (!rs->starting_up)
0d5b594f 1942 notice_new_inferior (currthread, executing, 0);
b7ea362b 1943 }
c0a2216e 1944 }
c906108c
SS
1945}
1946
85ad3aaf 1947/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 1948
70221824 1949static struct private_thread_info *
85ad3aaf 1950get_private_info_thread (struct thread_info *thread)
dc146f7c 1951{
85ad3aaf 1952 gdb_assert (thread != NULL);
dc146f7c 1953
85ad3aaf 1954 if (thread->priv == NULL)
dc146f7c 1955 {
85ad3aaf
PA
1956 struct private_thread_info *priv = XNEW (struct private_thread_info);
1957
1958 thread->private_dtor = free_private_thread_info;
1959 thread->priv = priv;
1960
1961 priv->core = -1;
1962 priv->extra = NULL;
1963 priv->name = NULL;
1964 priv->name = NULL;
1965 priv->last_resume_step = 0;
1966 priv->last_resume_sig = GDB_SIGNAL_0;
1967 priv->vcont_resumed = 0;
f6327dcb 1968 priv->thread_handle = nullptr;
dc146f7c
VP
1969 }
1970
85ad3aaf
PA
1971 return thread->priv;
1972}
1973
1974/* Return PTID's private thread data, creating it if necessary. */
1975
1976static struct private_thread_info *
1977get_private_info_ptid (ptid_t ptid)
1978{
1979 struct thread_info *info = find_thread_ptid (ptid);
1980
1981 return get_private_info_thread (info);
dc146f7c
VP
1982}
1983
74531fed
PA
1984/* Call this function as a result of
1985 1) A halt indication (T packet) containing a thread id
1986 2) A direct query of currthread
0df8b418 1987 3) Successful execution of set thread */
74531fed
PA
1988
1989static void
47f8a51d 1990record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 1991{
47f8a51d 1992 rs->general_thread = currthread;
74531fed
PA
1993}
1994
89be2091
DJ
1995/* If 'QPassSignals' is supported, tell the remote stub what signals
1996 it can simply pass through to the inferior without reporting. */
1997
1998static void
94bedb42
TT
1999remote_pass_signals (struct target_ops *self,
2000 int numsigs, unsigned char *pass_signals)
89be2091 2001{
4082afcc 2002 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2003 {
2004 char *pass_packet, *p;
89be2091 2005 int count = 0, i;
747dc59d 2006 struct remote_state *rs = get_remote_state ();
89be2091
DJ
2007
2008 gdb_assert (numsigs < 256);
2009 for (i = 0; i < numsigs; i++)
2010 {
2455069d 2011 if (pass_signals[i])
89be2091
DJ
2012 count++;
2013 }
224c3ddb 2014 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2015 strcpy (pass_packet, "QPassSignals:");
2016 p = pass_packet + strlen (pass_packet);
2017 for (i = 0; i < numsigs; i++)
2018 {
2455069d 2019 if (pass_signals[i])
89be2091
DJ
2020 {
2021 if (i >= 16)
2022 *p++ = tohex (i >> 4);
2023 *p++ = tohex (i & 15);
2024 if (count)
2025 *p++ = ';';
2026 else
2027 break;
2028 count--;
2029 }
2030 }
2031 *p = 0;
747dc59d 2032 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2033 {
89be2091
DJ
2034 putpkt (pass_packet);
2035 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2036 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2037 if (rs->last_pass_packet)
2038 xfree (rs->last_pass_packet);
2039 rs->last_pass_packet = pass_packet;
89be2091
DJ
2040 }
2041 else
2042 xfree (pass_packet);
2043 }
2044}
2045
82075af2
JS
2046/* If 'QCatchSyscalls' is supported, tell the remote stub
2047 to report syscalls to GDB. */
2048
2049static int
2050remote_set_syscall_catchpoint (struct target_ops *self,
2051 int pid, int needed, int any_count,
2052 int table_size, int *table)
2053{
b80406ac 2054 const char *catch_packet;
82075af2
JS
2055 enum packet_result result;
2056 int n_sysno = 0;
2057
2058 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2059 {
2060 /* Not supported. */
2061 return 1;
2062 }
2063
2064 if (needed && !any_count)
2065 {
2066 int i;
2067
2068 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2069 for (i = 0; i < table_size; i++)
2070 {
2071 if (table[i] != 0)
2072 n_sysno++;
2073 }
2074 }
2075
2076 if (remote_debug)
2077 {
2078 fprintf_unfiltered (gdb_stdlog,
2079 "remote_set_syscall_catchpoint "
2080 "pid %d needed %d any_count %d n_sysno %d\n",
2081 pid, needed, any_count, n_sysno);
2082 }
2083
1b81856f 2084 std::string built_packet;
82075af2
JS
2085 if (needed)
2086 {
2087 /* Prepare a packet with the sysno list, assuming max 8+1
2088 characters for a sysno. If the resulting packet size is too
2089 big, fallback on the non-selective packet. */
2090 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2091 built_packet.reserve (maxpktsz);
2092 built_packet = "QCatchSyscalls:1";
82075af2
JS
2093 if (!any_count)
2094 {
82075af2 2095 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
1b81856f 2096 for (int i = 0; i < table_size; i++)
82075af2
JS
2097 {
2098 if (table[i] != 0)
1b81856f 2099 string_appendf (built_packet, ";%x", i);
82075af2
JS
2100 }
2101 }
1b81856f 2102 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2103 {
2104 /* catch_packet too big. Fallback to less efficient
2105 non selective mode, with GDB doing the filtering. */
b80406ac 2106 catch_packet = "QCatchSyscalls:1";
82075af2 2107 }
b80406ac 2108 else
1b81856f 2109 catch_packet = built_packet.c_str ();
82075af2
JS
2110 }
2111 else
b80406ac 2112 catch_packet = "QCatchSyscalls:0";
82075af2 2113
b80406ac 2114 struct remote_state *rs = get_remote_state ();
82075af2 2115
b80406ac
TT
2116 putpkt (catch_packet);
2117 getpkt (&rs->buf, &rs->buf_size, 0);
2118 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2119 if (result == PACKET_OK)
2120 return 0;
2121 else
2122 return -1;
82075af2
JS
2123}
2124
9b224c5e
PA
2125/* If 'QProgramSignals' is supported, tell the remote stub what
2126 signals it should pass through to the inferior when detaching. */
2127
2128static void
daf5e9b6
TT
2129remote_program_signals (struct target_ops *self,
2130 int numsigs, unsigned char *signals)
9b224c5e 2131{
4082afcc 2132 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2133 {
2134 char *packet, *p;
2135 int count = 0, i;
5e4a05c4 2136 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2137
2138 gdb_assert (numsigs < 256);
2139 for (i = 0; i < numsigs; i++)
2140 {
2141 if (signals[i])
2142 count++;
2143 }
224c3ddb 2144 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2145 strcpy (packet, "QProgramSignals:");
2146 p = packet + strlen (packet);
2147 for (i = 0; i < numsigs; i++)
2148 {
2149 if (signal_pass_state (i))
2150 {
2151 if (i >= 16)
2152 *p++ = tohex (i >> 4);
2153 *p++ = tohex (i & 15);
2154 if (count)
2155 *p++ = ';';
2156 else
2157 break;
2158 count--;
2159 }
2160 }
2161 *p = 0;
5e4a05c4
TT
2162 if (!rs->last_program_signals_packet
2163 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2164 {
9b224c5e
PA
2165 putpkt (packet);
2166 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2167 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2168 xfree (rs->last_program_signals_packet);
2169 rs->last_program_signals_packet = packet;
9b224c5e
PA
2170 }
2171 else
2172 xfree (packet);
2173 }
2174}
2175
79d7f229
PA
2176/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2177 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2178 thread. If GEN is set, set the general thread, if not, then set
2179 the step/continue thread. */
c906108c 2180static void
d62a8ae2 2181set_thread (ptid_t ptid, int gen)
c906108c 2182{
d01949b6 2183 struct remote_state *rs = get_remote_state ();
47f8a51d 2184 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2185 char *buf = rs->buf;
79d7f229 2186 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2187
79d7f229 2188 if (ptid_equal (state, ptid))
c906108c
SS
2189 return;
2190
79d7f229
PA
2191 *buf++ = 'H';
2192 *buf++ = gen ? 'g' : 'c';
2193 if (ptid_equal (ptid, magic_null_ptid))
2194 xsnprintf (buf, endbuf - buf, "0");
2195 else if (ptid_equal (ptid, any_thread_ptid))
2196 xsnprintf (buf, endbuf - buf, "0");
2197 else if (ptid_equal (ptid, minus_one_ptid))
2198 xsnprintf (buf, endbuf - buf, "-1");
2199 else
82f73884 2200 write_ptid (buf, endbuf, ptid);
79d7f229 2201 putpkt (rs->buf);
6d820c5c 2202 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2203 if (gen)
47f8a51d 2204 rs->general_thread = ptid;
c906108c 2205 else
47f8a51d 2206 rs->continue_thread = ptid;
c906108c 2207}
79d7f229
PA
2208
2209static void
d62a8ae2 2210set_general_thread (ptid_t ptid)
79d7f229
PA
2211{
2212 set_thread (ptid, 1);
2213}
2214
2215static void
d62a8ae2 2216set_continue_thread (ptid_t ptid)
79d7f229
PA
2217{
2218 set_thread (ptid, 0);
2219}
2220
3c9c4b83
PA
2221/* Change the remote current process. Which thread within the process
2222 ends up selected isn't important, as long as it is the same process
2223 as what INFERIOR_PTID points to.
2224
2225 This comes from that fact that there is no explicit notion of
2226 "selected process" in the protocol. The selected process for
2227 general operations is the process the selected general thread
2228 belongs to. */
2229
2230static void
2231set_general_process (void)
2232{
2233 struct remote_state *rs = get_remote_state ();
2234
2235 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2236 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2237 return;
2238
2239 /* We only need to change the remote current thread if it's pointing
2240 at some other process. */
47f8a51d 2241 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
2242 set_general_thread (inferior_ptid);
2243}
2244
c906108c 2245\f
7d1a114c
PA
2246/* Return nonzero if this is the main thread that we made up ourselves
2247 to model non-threaded targets as single-threaded. */
c906108c
SS
2248
2249static int
7d1a114c 2250remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
c906108c 2251{
c0a2216e
PA
2252 if (ptid_equal (ptid, magic_null_ptid))
2253 /* The main thread is always alive. */
2254 return 1;
2255
ba348170 2256 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
c0a2216e
PA
2257 /* The main thread is always alive. This can happen after a
2258 vAttach, if the remote side doesn't support
2259 multi-threading. */
2260 return 1;
2261
7d1a114c
PA
2262 return 0;
2263}
2264
2265/* Return nonzero if the thread PTID is still alive on the remote
2266 system. */
2267
2268static int
2269remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2270{
2271 struct remote_state *rs = get_remote_state ();
2272 char *p, *endp;
2273
2274 /* Check if this is a thread that we made up ourselves to model
2275 non-threaded targets as single-threaded. */
2276 if (remote_thread_always_alive (ops, ptid))
2277 return 1;
2278
82f73884
PA
2279 p = rs->buf;
2280 endp = rs->buf + get_remote_packet_size ();
2281
2282 *p++ = 'T';
2283 write_ptid (p, endp, ptid);
2284
2e9f7625 2285 putpkt (rs->buf);
6d820c5c 2286 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2287 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2288}
2289
79efa585
SM
2290/* Return a pointer to a thread name if we know it and NULL otherwise.
2291 The thread_info object owns the memory for the name. */
2292
2293static const char *
2294remote_thread_name (struct target_ops *ops, struct thread_info *info)
2295{
2296 if (info->priv != NULL)
2297 return info->priv->name;
2298
2299 return NULL;
2300}
2301
c906108c
SS
2302/* About these extended threadlist and threadinfo packets. They are
2303 variable length packets but, the fields within them are often fixed
2304 length. They are redundent enough to send over UDP as is the
2305 remote protocol in general. There is a matching unit test module
2306 in libstub. */
2307
23860348 2308/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2309 libstub protocol encoding, and remote.c. It is not particularly
23860348 2310 changable. */
cce74817
JM
2311
2312/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2313 Plan to fix this. */
cce74817 2314
23860348 2315typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2316
9d1f7ab2 2317/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2318 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2319
2320struct gdb_ext_thread_info
c5aa993b 2321 {
23860348 2322 threadref threadid; /* External form of thread reference. */
2bc416ba 2323 int active; /* Has state interesting to GDB?
23860348 2324 regs, stack. */
2bc416ba 2325 char display[256]; /* Brief state display, name,
cedea757 2326 blocked/suspended. */
23860348 2327 char shortname[32]; /* To be used to name threads. */
2bc416ba 2328 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2329 whatever. */
c5aa993b 2330 };
cce74817
JM
2331
2332/* The volume of remote transfers can be limited by submitting
2333 a mask containing bits specifying the desired information.
2334 Use a union of these values as the 'selection' parameter to
0df8b418 2335 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2336
2337#define TAG_THREADID 1
2338#define TAG_EXISTS 2
2339#define TAG_DISPLAY 4
2340#define TAG_THREADNAME 8
c5aa993b 2341#define TAG_MOREDISPLAY 16
cce74817 2342
23860348 2343#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2344
a14ed312 2345static char *unpack_nibble (char *buf, int *val);
cce74817 2346
a14ed312 2347static char *unpack_byte (char *buf, int *value);
cce74817 2348
a14ed312 2349static char *pack_int (char *buf, int value);
cce74817 2350
a14ed312 2351static char *unpack_int (char *buf, int *value);
cce74817 2352
a14ed312 2353static char *unpack_string (char *src, char *dest, int length);
cce74817 2354
23860348 2355static char *pack_threadid (char *pkt, threadref *id);
cce74817 2356
23860348 2357static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2358
23860348 2359void int_to_threadref (threadref *id, int value);
cce74817 2360
23860348 2361static int threadref_to_int (threadref *ref);
cce74817 2362
23860348 2363static void copy_threadref (threadref *dest, threadref *src);
cce74817 2364
23860348 2365static int threadmatch (threadref *dest, threadref *src);
cce74817 2366
2bc416ba 2367static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2368 threadref *id);
cce74817 2369
a14ed312 2370static int remote_unpack_thread_info_response (char *pkt,
23860348 2371 threadref *expectedref,
a14ed312
KB
2372 struct gdb_ext_thread_info
2373 *info);
cce74817
JM
2374
2375
2bc416ba 2376static int remote_get_threadinfo (threadref *threadid,
23860348 2377 int fieldset, /*TAG mask */
a14ed312 2378 struct gdb_ext_thread_info *info);
cce74817 2379
a14ed312
KB
2380static char *pack_threadlist_request (char *pkt, int startflag,
2381 int threadcount,
23860348 2382 threadref *nextthread);
cce74817 2383
a14ed312
KB
2384static int parse_threadlist_response (char *pkt,
2385 int result_limit,
23860348 2386 threadref *original_echo,
2bc416ba 2387 threadref *resultlist,
23860348 2388 int *doneflag);
cce74817 2389
a14ed312 2390static int remote_get_threadlist (int startflag,
23860348 2391 threadref *nextthread,
a14ed312
KB
2392 int result_limit,
2393 int *done,
2bc416ba 2394 int *result_count,
23860348 2395 threadref *threadlist);
cce74817 2396
23860348 2397typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 2398
a14ed312
KB
2399static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2400 void *context, int looplimit);
cce74817 2401
23860348 2402static int remote_newthread_step (threadref *ref, void *context);
cce74817 2403
82f73884
PA
2404
2405/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2406 buffer we're allowed to write to. Returns
2407 BUF+CHARACTERS_WRITTEN. */
2408
2409static char *
2410write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2411{
2412 int pid, tid;
2413 struct remote_state *rs = get_remote_state ();
2414
2415 if (remote_multi_process_p (rs))
2416 {
2417 pid = ptid_get_pid (ptid);
2418 if (pid < 0)
2419 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2420 else
2421 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2422 }
ba348170 2423 tid = ptid_get_lwp (ptid);
82f73884
PA
2424 if (tid < 0)
2425 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2426 else
2427 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2428
2429 return buf;
2430}
2431
256642e8
PA
2432/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2433 last parsed char. Returns null_ptid if no thread id is found, and
2434 throws an error if the thread id has an invalid format. */
82f73884
PA
2435
2436static ptid_t
256642e8 2437read_ptid (const char *buf, const char **obuf)
82f73884 2438{
256642e8
PA
2439 const char *p = buf;
2440 const char *pp;
82f73884 2441 ULONGEST pid = 0, tid = 0;
82f73884
PA
2442
2443 if (*p == 'p')
2444 {
2445 /* Multi-process ptid. */
2446 pp = unpack_varlen_hex (p + 1, &pid);
2447 if (*pp != '.')
b37520b6 2448 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2449
2450 p = pp;
2451 pp = unpack_varlen_hex (p + 1, &tid);
2452 if (obuf)
2453 *obuf = pp;
ba348170 2454 return ptid_build (pid, tid, 0);
82f73884
PA
2455 }
2456
2457 /* No multi-process. Just a tid. */
2458 pp = unpack_varlen_hex (p, &tid);
2459
c9f35b34
KB
2460 /* Return null_ptid when no thread id is found. */
2461 if (p == pp)
2462 {
2463 if (obuf)
2464 *obuf = pp;
2465 return null_ptid;
2466 }
2467
82f73884 2468 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2469 what's in inferior_ptid, unless it's null at this point. If so,
2470 then since there's no way to know the pid of the reported
2471 threads, use the magic number. */
2472 if (ptid_equal (inferior_ptid, null_ptid))
2473 pid = ptid_get_pid (magic_null_ptid);
2474 else
2475 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2476
2477 if (obuf)
2478 *obuf = pp;
ba348170 2479 return ptid_build (pid, tid, 0);
82f73884
PA
2480}
2481
c906108c 2482static int
fba45db2 2483stubhex (int ch)
c906108c
SS
2484{
2485 if (ch >= 'a' && ch <= 'f')
2486 return ch - 'a' + 10;
2487 if (ch >= '0' && ch <= '9')
2488 return ch - '0';
2489 if (ch >= 'A' && ch <= 'F')
2490 return ch - 'A' + 10;
2491 return -1;
2492}
2493
2494static int
fba45db2 2495stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2496{
2497 int nibble;
2498 int retval = 0;
2499
2500 while (fieldlength)
2501 {
2502 nibble = stubhex (*buff++);
2503 retval |= nibble;
2504 fieldlength--;
2505 if (fieldlength)
2506 retval = retval << 4;
2507 }
2508 return retval;
2509}
2510
c906108c 2511static char *
fba45db2 2512unpack_nibble (char *buf, int *val)
c906108c 2513{
b7589f7d 2514 *val = fromhex (*buf++);
c906108c
SS
2515 return buf;
2516}
2517
c906108c 2518static char *
fba45db2 2519unpack_byte (char *buf, int *value)
c906108c
SS
2520{
2521 *value = stub_unpack_int (buf, 2);
2522 return buf + 2;
2523}
2524
2525static char *
fba45db2 2526pack_int (char *buf, int value)
c906108c
SS
2527{
2528 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2529 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2530 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2531 buf = pack_hex_byte (buf, (value & 0xff));
2532 return buf;
2533}
2534
2535static char *
fba45db2 2536unpack_int (char *buf, int *value)
c906108c
SS
2537{
2538 *value = stub_unpack_int (buf, 8);
2539 return buf + 8;
2540}
2541
23860348 2542#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2543static char *pack_string (char *pkt, char *string);
c906108c
SS
2544
2545static char *
fba45db2 2546pack_string (char *pkt, char *string)
c906108c
SS
2547{
2548 char ch;
2549 int len;
2550
2551 len = strlen (string);
2552 if (len > 200)
23860348 2553 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2554 pkt = pack_hex_byte (pkt, len);
2555 while (len-- > 0)
2556 {
2557 ch = *string++;
2558 if ((ch == '\0') || (ch == '#'))
23860348 2559 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2560 *pkt++ = ch;
2561 }
2562 return pkt;
2563}
2564#endif /* 0 (unused) */
2565
2566static char *
fba45db2 2567unpack_string (char *src, char *dest, int length)
c906108c
SS
2568{
2569 while (length--)
2570 *dest++ = *src++;
2571 *dest = '\0';
2572 return src;
2573}
2574
2575static char *
fba45db2 2576pack_threadid (char *pkt, threadref *id)
c906108c
SS
2577{
2578 char *limit;
2579 unsigned char *altid;
2580
2581 altid = (unsigned char *) id;
2582 limit = pkt + BUF_THREAD_ID_SIZE;
2583 while (pkt < limit)
2584 pkt = pack_hex_byte (pkt, *altid++);
2585 return pkt;
2586}
2587
2588
2589static char *
fba45db2 2590unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2591{
2592 char *altref;
2593 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2594 int x, y;
2595
2596 altref = (char *) id;
2597
2598 while (inbuf < limit)
2599 {
2600 x = stubhex (*inbuf++);
2601 y = stubhex (*inbuf++);
2602 *altref++ = (x << 4) | y;
2603 }
2604 return inbuf;
2605}
2606
2607/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2608 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2609 to use 64bit thread references internally. This is an adapter
2610 function. */
2611
2612void
fba45db2 2613int_to_threadref (threadref *id, int value)
c906108c
SS
2614{
2615 unsigned char *scan;
2616
2617 scan = (unsigned char *) id;
2618 {
2619 int i = 4;
2620 while (i--)
2621 *scan++ = 0;
2622 }
2623 *scan++ = (value >> 24) & 0xff;
2624 *scan++ = (value >> 16) & 0xff;
2625 *scan++ = (value >> 8) & 0xff;
2626 *scan++ = (value & 0xff);
2627}
2628
2629static int
fba45db2 2630threadref_to_int (threadref *ref)
c906108c
SS
2631{
2632 int i, value = 0;
2633 unsigned char *scan;
2634
cfd77fa1 2635 scan = *ref;
c906108c
SS
2636 scan += 4;
2637 i = 4;
2638 while (i-- > 0)
2639 value = (value << 8) | ((*scan++) & 0xff);
2640 return value;
2641}
2642
2643static void
fba45db2 2644copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2645{
2646 int i;
2647 unsigned char *csrc, *cdest;
2648
2649 csrc = (unsigned char *) src;
2650 cdest = (unsigned char *) dest;
2651 i = 8;
2652 while (i--)
2653 *cdest++ = *csrc++;
2654}
2655
2656static int
fba45db2 2657threadmatch (threadref *dest, threadref *src)
c906108c 2658{
23860348 2659 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2660#if 0
2661 unsigned char *srcp, *destp;
2662 int i, result;
2663 srcp = (char *) src;
2664 destp = (char *) dest;
2665
2666 result = 1;
2667 while (i-- > 0)
2668 result &= (*srcp++ == *destp++) ? 1 : 0;
2669 return result;
2670#endif
2671 return 1;
2672}
2673
2674/*
c5aa993b
JM
2675 threadid:1, # always request threadid
2676 context_exists:2,
2677 display:4,
2678 unique_name:8,
2679 more_display:16
2680 */
c906108c
SS
2681
2682/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2683
2684static char *
fba45db2 2685pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2686{
23860348
MS
2687 *pkt++ = 'q'; /* Info Query */
2688 *pkt++ = 'P'; /* process or thread info */
2689 pkt = pack_int (pkt, mode); /* mode */
c906108c 2690 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2691 *pkt = '\0'; /* terminate */
c906108c
SS
2692 return pkt;
2693}
2694
23860348 2695/* These values tag the fields in a thread info response packet. */
c906108c 2696/* Tagging the fields allows us to request specific fields and to
23860348 2697 add more fields as time goes by. */
c906108c 2698
23860348 2699#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 2700#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 2701 fetch registers and its stack? */
c5aa993b 2702#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 2703#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 2704#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 2705 the process. */
c906108c
SS
2706
2707static int
fba45db2
KB
2708remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2709 struct gdb_ext_thread_info *info)
c906108c 2710{
d01949b6 2711 struct remote_state *rs = get_remote_state ();
c906108c 2712 int mask, length;
cfd77fa1 2713 int tag;
c906108c 2714 threadref ref;
6d820c5c 2715 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
2716 int retval = 1;
2717
23860348 2718 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
2719 info->active = 0;
2720 info->display[0] = '\0';
2721 info->shortname[0] = '\0';
2722 info->more_display[0] = '\0';
2723
23860348
MS
2724 /* Assume the characters indicating the packet type have been
2725 stripped. */
c906108c
SS
2726 pkt = unpack_int (pkt, &mask); /* arg mask */
2727 pkt = unpack_threadid (pkt, &ref);
2728
2729 if (mask == 0)
8a3fe4f8 2730 warning (_("Incomplete response to threadinfo request."));
c906108c 2731 if (!threadmatch (&ref, expectedref))
23860348 2732 { /* This is an answer to a different request. */
8a3fe4f8 2733 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
2734 return 0;
2735 }
2736 copy_threadref (&info->threadid, &ref);
2737
23860348 2738 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 2739
23860348
MS
2740 /* Packets are terminated with nulls. */
2741 while ((pkt < limit) && mask && *pkt)
c906108c
SS
2742 {
2743 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
2744 pkt = unpack_byte (pkt, &length); /* length */
2745 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 2746 {
8a3fe4f8 2747 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
2748 retval = 0;
2749 break;
2750 }
2751 if (tag == TAG_THREADID)
2752 {
2753 if (length != 16)
2754 {
8a3fe4f8 2755 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
2756 retval = 0;
2757 break;
2758 }
2759 pkt = unpack_threadid (pkt, &ref);
2760 mask = mask & ~TAG_THREADID;
2761 continue;
2762 }
2763 if (tag == TAG_EXISTS)
2764 {
2765 info->active = stub_unpack_int (pkt, length);
2766 pkt += length;
2767 mask = mask & ~(TAG_EXISTS);
2768 if (length > 8)
2769 {
8a3fe4f8 2770 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
2771 retval = 0;
2772 break;
2773 }
2774 continue;
2775 }
2776 if (tag == TAG_THREADNAME)
2777 {
2778 pkt = unpack_string (pkt, &info->shortname[0], length);
2779 mask = mask & ~TAG_THREADNAME;
2780 continue;
2781 }
2782 if (tag == TAG_DISPLAY)
2783 {
2784 pkt = unpack_string (pkt, &info->display[0], length);
2785 mask = mask & ~TAG_DISPLAY;
2786 continue;
2787 }
2788 if (tag == TAG_MOREDISPLAY)
2789 {
2790 pkt = unpack_string (pkt, &info->more_display[0], length);
2791 mask = mask & ~TAG_MOREDISPLAY;
2792 continue;
2793 }
8a3fe4f8 2794 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2795 break; /* Not a tag we know about. */
c906108c
SS
2796 }
2797 return retval;
2798}
2799
2800static int
fba45db2
KB
2801remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2802 struct gdb_ext_thread_info *info)
c906108c 2803{
d01949b6 2804 struct remote_state *rs = get_remote_state ();
c906108c 2805 int result;
c906108c 2806
2e9f7625
DJ
2807 pack_threadinfo_request (rs->buf, fieldset, threadid);
2808 putpkt (rs->buf);
6d820c5c 2809 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2810
2811 if (rs->buf[0] == '\0')
2812 return 0;
2813
2e9f7625 2814 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2815 threadid, info);
c906108c
SS
2816 return result;
2817}
2818
c906108c
SS
2819/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2820
2821static char *
fba45db2
KB
2822pack_threadlist_request (char *pkt, int startflag, int threadcount,
2823 threadref *nextthread)
c906108c
SS
2824{
2825 *pkt++ = 'q'; /* info query packet */
2826 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2827 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2828 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2829 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2830 *pkt = '\0';
2831 return pkt;
2832}
2833
2834/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2835
2836static int
fba45db2
KB
2837parse_threadlist_response (char *pkt, int result_limit,
2838 threadref *original_echo, threadref *resultlist,
2839 int *doneflag)
c906108c 2840{
d01949b6 2841 struct remote_state *rs = get_remote_state ();
c906108c
SS
2842 char *limit;
2843 int count, resultcount, done;
2844
2845 resultcount = 0;
2846 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2847 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2848 /* done parse past here */
c906108c
SS
2849 pkt = unpack_byte (pkt, &count); /* count field */
2850 pkt = unpack_nibble (pkt, &done);
2851 /* The first threadid is the argument threadid. */
2852 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2853 while ((count-- > 0) && (pkt < limit))
2854 {
2855 pkt = unpack_threadid (pkt, resultlist++);
2856 if (resultcount++ >= result_limit)
2857 break;
2858 }
2859 if (doneflag)
2860 *doneflag = done;
2861 return resultcount;
2862}
2863
6dc54d91
PA
2864/* Fetch the next batch of threads from the remote. Returns -1 if the
2865 qL packet is not supported, 0 on error and 1 on success. */
2866
c906108c 2867static int
fba45db2
KB
2868remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2869 int *done, int *result_count, threadref *threadlist)
c906108c 2870{
d01949b6 2871 struct remote_state *rs = get_remote_state ();
c906108c
SS
2872 int result = 1;
2873
23860348 2874 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
2875 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2876 >= get_remote_packet_size ())
ea9c271d 2877 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2878
6d820c5c
DJ
2879 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2880 putpkt (rs->buf);
2881 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 2882 if (*rs->buf == '\0')
6dc54d91
PA
2883 {
2884 /* Packet not supported. */
2885 return -1;
2886 }
2887
2888 *result_count =
2889 parse_threadlist_response (rs->buf + 2, result_limit,
2890 &rs->echo_nextthread, threadlist, done);
c906108c 2891
0d031856 2892 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 2893 {
23860348
MS
2894 /* FIXME: This is a good reason to drop the packet. */
2895 /* Possably, there is a duplicate response. */
c906108c
SS
2896 /* Possabilities :
2897 retransmit immediatly - race conditions
2898 retransmit after timeout - yes
2899 exit
2900 wait for packet, then exit
2901 */
8a3fe4f8 2902 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2903 return 0; /* I choose simply exiting. */
c906108c
SS
2904 }
2905 if (*result_count <= 0)
2906 {
2907 if (*done != 1)
2908 {
8a3fe4f8 2909 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2910 result = 0;
2911 }
2912 return result; /* break; */
2913 }
2914 if (*result_count > result_limit)
2915 {
2916 *result_count = 0;
8a3fe4f8 2917 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2918 return 0;
2919 }
2920 return result;
2921}
2922
6dc54d91
PA
2923/* Fetch the list of remote threads, with the qL packet, and call
2924 STEPFUNCTION for each thread found. Stops iterating and returns 1
2925 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2926 STEPFUNCTION returns false. If the packet is not supported,
2927 returns -1. */
c906108c 2928
c906108c 2929static int
fba45db2
KB
2930remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2931 int looplimit)
c906108c 2932{
0d031856 2933 struct remote_state *rs = get_remote_state ();
c906108c
SS
2934 int done, i, result_count;
2935 int startflag = 1;
2936 int result = 1;
2937 int loopcount = 0;
c906108c
SS
2938
2939 done = 0;
2940 while (!done)
2941 {
2942 if (loopcount++ > looplimit)
2943 {
2944 result = 0;
8a3fe4f8 2945 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2946 break;
2947 }
6dc54d91
PA
2948 result = remote_get_threadlist (startflag, &rs->nextthread,
2949 MAXTHREADLISTRESULTS,
2950 &done, &result_count,
2951 rs->resultthreadlist);
2952 if (result <= 0)
2953 break;
23860348 2954 /* Clear for later iterations. */
c906108c
SS
2955 startflag = 0;
2956 /* Setup to resume next batch of thread references, set nextthread. */
2957 if (result_count >= 1)
0d031856
TT
2958 copy_threadref (&rs->nextthread,
2959 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
2960 i = 0;
2961 while (result_count--)
6dc54d91
PA
2962 {
2963 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2964 {
2965 result = 0;
2966 break;
2967 }
2968 }
c906108c
SS
2969 }
2970 return result;
2971}
2972
6dc54d91
PA
2973/* A thread found on the remote target. */
2974
2975typedef struct thread_item
2976{
2977 /* The thread's PTID. */
2978 ptid_t ptid;
2979
2980 /* The thread's extra info. May be NULL. */
2981 char *extra;
2982
79efa585
SM
2983 /* The thread's name. May be NULL. */
2984 char *name;
2985
6dc54d91
PA
2986 /* The core the thread was running on. -1 if not known. */
2987 int core;
f6327dcb
KB
2988
2989 /* The thread handle associated with the thread. */
2990 gdb::byte_vector *thread_handle;
2991
6dc54d91
PA
2992} thread_item_t;
2993DEF_VEC_O(thread_item_t);
2994
2995/* Context passed around to the various methods listing remote
2996 threads. As new threads are found, they're added to the ITEMS
2997 vector. */
2998
2999struct threads_listing_context
3000{
3001 /* The threads found on the remote target. */
3002 VEC (thread_item_t) *items;
3003};
3004
80134cf5
PA
3005/* Discard the contents of the constructed thread listing context. */
3006
3007static void
3008clear_threads_listing_context (void *p)
3009{
19ba03f4
SM
3010 struct threads_listing_context *context
3011 = (struct threads_listing_context *) p;
80134cf5
PA
3012 int i;
3013 struct thread_item *item;
3014
3015 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
79efa585
SM
3016 {
3017 xfree (item->extra);
3018 xfree (item->name);
f6327dcb 3019 delete item->thread_handle;
79efa585 3020 }
80134cf5
PA
3021
3022 VEC_free (thread_item_t, context->items);
3023}
3024
cbb8991c
DB
3025/* Remove the thread specified as the related_pid field of WS
3026 from the CONTEXT list. */
3027
3028static void
3029threads_listing_context_remove (struct target_waitstatus *ws,
3030 struct threads_listing_context *context)
3031{
3032 struct thread_item *item;
3033 int i;
3034 ptid_t child_ptid = ws->value.related_pid;
3035
3036 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
3037 {
3038 if (ptid_equal (item->ptid, child_ptid))
3039 {
3040 VEC_ordered_remove (thread_item_t, context->items, i);
3041 break;
3042 }
3043 }
3044}
3045
c906108c 3046static int
6dc54d91 3047remote_newthread_step (threadref *ref, void *data)
c906108c 3048{
19ba03f4
SM
3049 struct threads_listing_context *context
3050 = (struct threads_listing_context *) data;
6dc54d91 3051 struct thread_item item;
79d7f229 3052 int pid = ptid_get_pid (inferior_ptid);
39f77062 3053
6dc54d91
PA
3054 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
3055 item.core = -1;
2e3b657e 3056 item.name = NULL;
6dc54d91 3057 item.extra = NULL;
f6327dcb 3058 item.thread_handle = nullptr;
6dc54d91
PA
3059
3060 VEC_safe_push (thread_item_t, context->items, &item);
3061
c906108c
SS
3062 return 1; /* continue iterator */
3063}
3064
3065#define CRAZY_MAX_THREADS 1000
3066
39f77062
KB
3067static ptid_t
3068remote_current_thread (ptid_t oldpid)
c906108c 3069{
d01949b6 3070 struct remote_state *rs = get_remote_state ();
c906108c
SS
3071
3072 putpkt ("qC");
6d820c5c 3073 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3074 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3075 {
256642e8 3076 const char *obuf;
c9f35b34
KB
3077 ptid_t result;
3078
3079 result = read_ptid (&rs->buf[2], &obuf);
3080 if (*obuf != '\0' && remote_debug)
3081 fprintf_unfiltered (gdb_stdlog,
3082 "warning: garbage in qC reply\n");
3083
3084 return result;
3085 }
c906108c
SS
3086 else
3087 return oldpid;
3088}
3089
6dc54d91 3090/* List remote threads using the deprecated qL packet. */
cce74817 3091
6dc54d91
PA
3092static int
3093remote_get_threads_with_ql (struct target_ops *ops,
3094 struct threads_listing_context *context)
c906108c 3095{
6dc54d91
PA
3096 if (remote_threadlist_iterator (remote_newthread_step, context,
3097 CRAZY_MAX_THREADS) >= 0)
3098 return 1;
3099
3100 return 0;
c906108c
SS
3101}
3102
dc146f7c
VP
3103#if defined(HAVE_LIBEXPAT)
3104
dc146f7c
VP
3105static void
3106start_thread (struct gdb_xml_parser *parser,
3107 const struct gdb_xml_element *element,
3108 void *user_data, VEC(gdb_xml_value_s) *attributes)
3109{
19ba03f4
SM
3110 struct threads_listing_context *data
3111 = (struct threads_listing_context *) user_data;
dc146f7c
VP
3112
3113 struct thread_item item;
3114 char *id;
3d2c1d41 3115 struct gdb_xml_value *attr;
dc146f7c 3116
19ba03f4 3117 id = (char *) xml_find_attribute (attributes, "id")->value;
dc146f7c
VP
3118 item.ptid = read_ptid (id, NULL);
3119
3d2c1d41
PA
3120 attr = xml_find_attribute (attributes, "core");
3121 if (attr != NULL)
3122 item.core = *(ULONGEST *) attr->value;
dc146f7c
VP
3123 else
3124 item.core = -1;
3125
79efa585 3126 attr = xml_find_attribute (attributes, "name");
e1961661 3127 item.name = attr != NULL ? xstrdup ((const char *) attr->value) : NULL;
79efa585 3128
f6327dcb
KB
3129 attr = xml_find_attribute (attributes, "handle");
3130 if (attr != NULL)
3131 {
3132 item.thread_handle = new gdb::byte_vector
3133 (strlen ((const char *) attr->value) / 2);
3134 hex2bin ((const char *) attr->value, item.thread_handle->data (),
3135 item.thread_handle->size ());
3136 }
3137 else
3138 item.thread_handle = nullptr;
3139
dc146f7c
VP
3140 item.extra = 0;
3141
3142 VEC_safe_push (thread_item_t, data->items, &item);
3143}
3144
3145static void
3146end_thread (struct gdb_xml_parser *parser,
3147 const struct gdb_xml_element *element,
3148 void *user_data, const char *body_text)
3149{
19ba03f4
SM
3150 struct threads_listing_context *data
3151 = (struct threads_listing_context *) user_data;
dc146f7c
VP
3152
3153 if (body_text && *body_text)
2ae2a0b7 3154 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
dc146f7c
VP
3155}
3156
3157const struct gdb_xml_attribute thread_attributes[] = {
3158 { "id", GDB_XML_AF_NONE, NULL, NULL },
3159 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3160 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3161 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3162 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3163};
3164
3165const struct gdb_xml_element thread_children[] = {
3166 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3167};
3168
3169const struct gdb_xml_element threads_children[] = {
3170 { "thread", thread_attributes, thread_children,
3171 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3172 start_thread, end_thread },
3173 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3174};
3175
3176const struct gdb_xml_element threads_elements[] = {
3177 { "threads", NULL, threads_children,
3178 GDB_XML_EF_NONE, NULL, NULL },
3179 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3180};
3181
3182#endif
3183
6dc54d91 3184/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3185
6dc54d91
PA
3186static int
3187remote_get_threads_with_qxfer (struct target_ops *ops,
3188 struct threads_listing_context *context)
0f71a2f6 3189{
dc146f7c 3190#if defined(HAVE_LIBEXPAT)
4082afcc 3191 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3192 {
b7b030ad
TT
3193 gdb::unique_xmalloc_ptr<char> xml
3194 = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3195
6dc54d91 3196 if (xml != NULL && *xml != '\0')
dc146f7c 3197 {
6dc54d91 3198 gdb_xml_parse_quick (_("threads"), "threads.dtd",
b7b030ad 3199 threads_elements, xml.get (), context);
dc146f7c
VP
3200 }
3201
6dc54d91 3202 return 1;
dc146f7c
VP
3203 }
3204#endif
3205
6dc54d91
PA
3206 return 0;
3207}
3208
3209/* List remote threads using qfThreadInfo/qsThreadInfo. */
3210
3211static int
3212remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3213 struct threads_listing_context *context)
3214{
3215 struct remote_state *rs = get_remote_state ();
3216
b80fafe3 3217 if (rs->use_threadinfo_query)
9d1f7ab2 3218 {
256642e8 3219 const char *bufp;
6dc54d91 3220
9d1f7ab2 3221 putpkt ("qfThreadInfo");
6d820c5c 3222 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3223 bufp = rs->buf;
9d1f7ab2 3224 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3225 {
9d1f7ab2
MS
3226 while (*bufp++ == 'm') /* reply contains one or more TID */
3227 {
3228 do
3229 {
6dc54d91
PA
3230 struct thread_item item;
3231
3232 item.ptid = read_ptid (bufp, &bufp);
3233 item.core = -1;
2e3b657e 3234 item.name = NULL;
6dc54d91 3235 item.extra = NULL;
f6327dcb 3236 item.thread_handle = nullptr;
6dc54d91
PA
3237
3238 VEC_safe_push (thread_item_t, context->items, &item);
9d1f7ab2
MS
3239 }
3240 while (*bufp++ == ','); /* comma-separated list */
3241 putpkt ("qsThreadInfo");
6d820c5c 3242 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3243 bufp = rs->buf;
9d1f7ab2 3244 }
6dc54d91
PA
3245 return 1;
3246 }
3247 else
3248 {
3249 /* Packet not recognized. */
3250 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3251 }
3252 }
3253
6dc54d91
PA
3254 return 0;
3255}
3256
e8032dde 3257/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3258 targets. */
3259
3260static void
e8032dde 3261remote_update_thread_list (struct target_ops *ops)
6dc54d91 3262{
6dc54d91
PA
3263 struct threads_listing_context context;
3264 struct cleanup *old_chain;
ab970af1 3265 int got_list = 0;
e8032dde 3266
6dc54d91
PA
3267 context.items = NULL;
3268 old_chain = make_cleanup (clear_threads_listing_context, &context);
3269
3270 /* We have a few different mechanisms to fetch the thread list. Try
3271 them all, starting with the most preferred one first, falling
3272 back to older methods. */
3273 if (remote_get_threads_with_qxfer (ops, &context)
3274 || remote_get_threads_with_qthreadinfo (ops, &context)
3275 || remote_get_threads_with_ql (ops, &context))
3276 {
3277 int i;
3278 struct thread_item *item;
ab970af1
PA
3279 struct thread_info *tp, *tmp;
3280
3281 got_list = 1;
3282
7d1a114c
PA
3283 if (VEC_empty (thread_item_t, context.items)
3284 && remote_thread_always_alive (ops, inferior_ptid))
3285 {
3286 /* Some targets don't really support threads, but still
3287 reply an (empty) thread list in response to the thread
3288 listing packets, instead of replying "packet not
3289 supported". Exit early so we don't delete the main
3290 thread. */
3291 do_cleanups (old_chain);
3292 return;
3293 }
3294
ab970af1
PA
3295 /* CONTEXT now holds the current thread list on the remote
3296 target end. Delete GDB-side threads no longer found on the
3297 target. */
8a06aea7 3298 ALL_THREADS_SAFE (tp, tmp)
cbb8991c 3299 {
ab970af1
PA
3300 for (i = 0;
3301 VEC_iterate (thread_item_t, context.items, i, item);
3302 ++i)
3303 {
3304 if (ptid_equal (item->ptid, tp->ptid))
3305 break;
3306 }
3307
3308 if (i == VEC_length (thread_item_t, context.items))
3309 {
3310 /* Not found. */
3311 delete_thread (tp->ptid);
3312 }
cbb8991c
DB
3313 }
3314
3315 /* Remove any unreported fork child threads from CONTEXT so
3316 that we don't interfere with follow fork, which is where
3317 creation of such threads is handled. */
3318 remove_new_fork_children (&context);
74531fed 3319
ab970af1 3320 /* And now add threads we don't know about yet to our list. */
6dc54d91
PA
3321 for (i = 0;
3322 VEC_iterate (thread_item_t, context.items, i, item);
3323 ++i)
3324 {
3325 if (!ptid_equal (item->ptid, null_ptid))
3326 {
3327 struct private_thread_info *info;
3328 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3329 executing until proven otherwise with a stop reply.
3330 In all-stop, we can only get here if all threads are
6dc54d91 3331 stopped. */
0d5b594f 3332 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3333
0d5b594f 3334 remote_notice_new_inferior (item->ptid, executing);
6dc54d91 3335
85ad3aaf 3336 info = get_private_info_ptid (item->ptid);
6dc54d91
PA
3337 info->core = item->core;
3338 info->extra = item->extra;
3339 item->extra = NULL;
79efa585
SM
3340 info->name = item->name;
3341 item->name = NULL;
f6327dcb
KB
3342 info->thread_handle = item->thread_handle;
3343 item->thread_handle = nullptr;
6dc54d91
PA
3344 }
3345 }
3346 }
3347
ab970af1
PA
3348 if (!got_list)
3349 {
3350 /* If no thread listing method is supported, then query whether
3351 each known thread is alive, one by one, with the T packet.
3352 If the target doesn't support threads at all, then this is a
3353 no-op. See remote_thread_alive. */
3354 prune_threads ();
3355 }
3356
6dc54d91 3357 do_cleanups (old_chain);
9d1f7ab2
MS
3358}
3359
802188a7 3360/*
9d1f7ab2
MS
3361 * Collect a descriptive string about the given thread.
3362 * The target may say anything it wants to about the thread
3363 * (typically info about its blocked / runnable state, name, etc.).
3364 * This string will appear in the info threads display.
802188a7 3365 *
9d1f7ab2
MS
3366 * Optional: targets are not required to implement this function.
3367 */
3368
7a114964 3369static const char *
c15906d8 3370remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
9d1f7ab2 3371{
d01949b6 3372 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3373 int result;
3374 int set;
3375 threadref id;
3376 struct gdb_ext_thread_info threadinfo;
23860348 3377 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
3378 int n = 0; /* position in display_buf */
3379
5d93a237 3380 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3381 internal_error (__FILE__, __LINE__,
e2e0b3e5 3382 _("remote_threads_extra_info"));
9d1f7ab2 3383
60e569b9 3384 if (ptid_equal (tp->ptid, magic_null_ptid)
ba348170 3385 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
60e569b9
PA
3386 /* This is the main thread which was added by GDB. The remote
3387 server doesn't know about it. */
3388 return NULL;
3389
4082afcc 3390 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c
VP
3391 {
3392 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 3393
fe978cb0
PA
3394 if (info && info->priv)
3395 return info->priv->extra;
dc146f7c
VP
3396 else
3397 return NULL;
3398 }
3399
b80fafe3 3400 if (rs->use_threadextra_query)
9d1f7ab2 3401 {
82f73884
PA
3402 char *b = rs->buf;
3403 char *endb = rs->buf + get_remote_packet_size ();
3404
3405 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3406 b += strlen (b);
3407 write_ptid (b, endb, tp->ptid);
3408
2e9f7625 3409 putpkt (rs->buf);
6d820c5c 3410 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3411 if (rs->buf[0] != 0)
9d1f7ab2 3412 {
325fac50 3413 n = std::min (strlen (rs->buf) / 2, sizeof (display_buf));
2e9f7625 3414 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 3415 display_buf [result] = '\0';
9d1f7ab2
MS
3416 return display_buf;
3417 }
0f71a2f6 3418 }
9d1f7ab2
MS
3419
3420 /* If the above query fails, fall back to the old method. */
b80fafe3 3421 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3422 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3423 | TAG_MOREDISPLAY | TAG_DISPLAY;
ba348170 3424 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
9d1f7ab2
MS
3425 if (remote_get_threadinfo (&id, set, &threadinfo))
3426 if (threadinfo.active)
0f71a2f6 3427 {
9d1f7ab2 3428 if (*threadinfo.shortname)
2bc416ba 3429 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 3430 " Name: %s,", threadinfo.shortname);
9d1f7ab2 3431 if (*threadinfo.display)
2bc416ba 3432 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3433 " State: %s,", threadinfo.display);
9d1f7ab2 3434 if (*threadinfo.more_display)
2bc416ba 3435 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3436 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
3437
3438 if (n > 0)
c5aa993b 3439 {
23860348 3440 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
3441 if (',' == display_buf[n-1])
3442 display_buf[n-1] = ' ';
3443 return display_buf;
c5aa993b 3444 }
0f71a2f6 3445 }
9d1f7ab2 3446 return NULL;
0f71a2f6 3447}
c906108c 3448\f
c5aa993b 3449
0fb4aa4b 3450static int
61fc905d 3451remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
0fb4aa4b
PA
3452 struct static_tracepoint_marker *marker)
3453{
3454 struct remote_state *rs = get_remote_state ();
3455 char *p = rs->buf;
3456
bba74b36 3457 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3458 p += strlen (p);
3459 p += hexnumstr (p, addr);
3460 putpkt (rs->buf);
3461 getpkt (&rs->buf, &rs->buf_size, 0);
3462 p = rs->buf;
3463
3464 if (*p == 'E')
3465 error (_("Remote failure reply: %s"), p);
3466
3467 if (*p++ == 'm')
3468 {
256642e8 3469 parse_static_tracepoint_marker_definition (p, NULL, marker);
0fb4aa4b
PA
3470 return 1;
3471 }
3472
3473 return 0;
3474}
3475
0fb4aa4b 3476static VEC(static_tracepoint_marker_p) *
c686c57f
TT
3477remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3478 const char *strid)
0fb4aa4b
PA
3479{
3480 struct remote_state *rs = get_remote_state ();
3481 VEC(static_tracepoint_marker_p) *markers = NULL;
3482 struct static_tracepoint_marker *marker = NULL;
3483 struct cleanup *old_chain;
256642e8 3484 const char *p;
0fb4aa4b
PA
3485
3486 /* Ask for a first packet of static tracepoint marker
3487 definition. */
3488 putpkt ("qTfSTM");
3489 getpkt (&rs->buf, &rs->buf_size, 0);
3490 p = rs->buf;
3491 if (*p == 'E')
3492 error (_("Remote failure reply: %s"), p);
3493
3494 old_chain = make_cleanup (free_current_marker, &marker);
3495
3496 while (*p++ == 'm')
3497 {
3498 if (marker == NULL)
3499 marker = XCNEW (struct static_tracepoint_marker);
3500
3501 do
3502 {
3503 parse_static_tracepoint_marker_definition (p, &p, marker);
3504
3505 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3506 {
3507 VEC_safe_push (static_tracepoint_marker_p,
3508 markers, marker);
3509 marker = NULL;
3510 }
3511 else
3512 {
3513 release_static_tracepoint_marker (marker);
3514 memset (marker, 0, sizeof (*marker));
3515 }
3516 }
3517 while (*p++ == ','); /* comma-separated list */
3518 /* Ask for another packet of static tracepoint definition. */
3519 putpkt ("qTsSTM");
3520 getpkt (&rs->buf, &rs->buf_size, 0);
3521 p = rs->buf;
3522 }
3523
3524 do_cleanups (old_chain);
3525 return markers;
3526}
3527
3528\f
10760264
JB
3529/* Implement the to_get_ada_task_ptid function for the remote targets. */
3530
3531static ptid_t
1e6b91a4 3532remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
10760264 3533{
ba348170 3534 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
10760264
JB
3535}
3536\f
3537
24b06219 3538/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3539
3540static void
fba45db2 3541extended_remote_restart (void)
c906108c 3542{
d01949b6 3543 struct remote_state *rs = get_remote_state ();
c906108c
SS
3544
3545 /* Send the restart command; for reasons I don't understand the
3546 remote side really expects a number after the "R". */
ea9c271d 3547 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3548 putpkt (rs->buf);
c906108c 3549
ad9a8f3f 3550 remote_fileio_reset ();
c906108c
SS
3551}
3552\f
3553/* Clean up connection to a remote debugger. */
3554
c906108c 3555static void
de90e03d 3556remote_close (struct target_ops *self)
c906108c 3557{
5d93a237
TT
3558 struct remote_state *rs = get_remote_state ();
3559
3560 if (rs->remote_desc == NULL)
d3fd5342
PA
3561 return; /* already closed */
3562
048094ac 3563 /* Make sure we leave stdin registered in the event loop. */
e3594fd1 3564 remote_terminal_ours (self);
ce5ce7ed 3565
5d93a237
TT
3566 serial_close (rs->remote_desc);
3567 rs->remote_desc = NULL;
ce5ce7ed
PA
3568
3569 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3570 of all the inferiors and their threads we were controlling.
3571 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3572 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3573 inferior_ptid = null_ptid;
f67fd822 3574 discard_all_inferiors ();
ce5ce7ed 3575
f48ff2a7
YQ
3576 /* We are closing the remote target, so we should discard
3577 everything of this target. */
bcc75809 3578 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3579
3580 if (remote_async_inferior_event_token)
3581 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3582
5965e028 3583 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3584
3585 trace_reset_local_state ();
c906108c
SS
3586}
3587
23860348 3588/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3589
3590static void
fba45db2 3591get_offsets (void)
c906108c 3592{
d01949b6 3593 struct remote_state *rs = get_remote_state ();
2e9f7625 3594 char *buf;
085dd6e6 3595 char *ptr;
31d99776
DJ
3596 int lose, num_segments = 0, do_sections, do_segments;
3597 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3598 struct section_offsets *offs;
31d99776
DJ
3599 struct symfile_segment_data *data;
3600
3601 if (symfile_objfile == NULL)
3602 return;
c906108c
SS
3603
3604 putpkt ("qOffsets");
6d820c5c 3605 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3606 buf = rs->buf;
c906108c
SS
3607
3608 if (buf[0] == '\000')
3609 return; /* Return silently. Stub doesn't support
23860348 3610 this command. */
c906108c
SS
3611 if (buf[0] == 'E')
3612 {
8a3fe4f8 3613 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3614 return;
3615 }
3616
3617 /* Pick up each field in turn. This used to be done with scanf, but
3618 scanf will make trouble if CORE_ADDR size doesn't match
3619 conversion directives correctly. The following code will work
3620 with any size of CORE_ADDR. */
3621 text_addr = data_addr = bss_addr = 0;
3622 ptr = buf;
3623 lose = 0;
3624
61012eef 3625 if (startswith (ptr, "Text="))
c906108c
SS
3626 {
3627 ptr += 5;
3628 /* Don't use strtol, could lose on big values. */
3629 while (*ptr && *ptr != ';')
3630 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3631
61012eef 3632 if (startswith (ptr, ";Data="))
31d99776
DJ
3633 {
3634 ptr += 6;
3635 while (*ptr && *ptr != ';')
3636 data_addr = (data_addr << 4) + fromhex (*ptr++);
3637 }
3638 else
3639 lose = 1;
3640
61012eef 3641 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
3642 {
3643 ptr += 5;
3644 while (*ptr && *ptr != ';')
3645 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3646
31d99776
DJ
3647 if (bss_addr != data_addr)
3648 warning (_("Target reported unsupported offsets: %s"), buf);
3649 }
3650 else
3651 lose = 1;
3652 }
61012eef 3653 else if (startswith (ptr, "TextSeg="))
c906108c 3654 {
31d99776
DJ
3655 ptr += 8;
3656 /* Don't use strtol, could lose on big values. */
c906108c 3657 while (*ptr && *ptr != ';')
31d99776
DJ
3658 text_addr = (text_addr << 4) + fromhex (*ptr++);
3659 num_segments = 1;
3660
61012eef 3661 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
3662 {
3663 ptr += 9;
3664 while (*ptr && *ptr != ';')
3665 data_addr = (data_addr << 4) + fromhex (*ptr++);
3666 num_segments++;
3667 }
c906108c
SS
3668 }
3669 else
3670 lose = 1;
3671
3672 if (lose)
8a3fe4f8 3673 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3674 else if (*ptr != '\0')
3675 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3676
802188a7 3677 offs = ((struct section_offsets *)
a39a16c4 3678 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3679 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3680 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3681
31d99776
DJ
3682 data = get_symfile_segment_data (symfile_objfile->obfd);
3683 do_segments = (data != NULL);
3684 do_sections = num_segments == 0;
c906108c 3685
28c32713 3686 if (num_segments > 0)
31d99776 3687 {
31d99776
DJ
3688 segments[0] = text_addr;
3689 segments[1] = data_addr;
3690 }
28c32713
JB
3691 /* If we have two segments, we can still try to relocate everything
3692 by assuming that the .text and .data offsets apply to the whole
3693 text and data segments. Convert the offsets given in the packet
3694 to base addresses for symfile_map_offsets_to_segments. */
3695 else if (data && data->num_segments == 2)
3696 {
3697 segments[0] = data->segment_bases[0] + text_addr;
3698 segments[1] = data->segment_bases[1] + data_addr;
3699 num_segments = 2;
3700 }
8d385431
DJ
3701 /* If the object file has only one segment, assume that it is text
3702 rather than data; main programs with no writable data are rare,
3703 but programs with no code are useless. Of course the code might
3704 have ended up in the data segment... to detect that we would need
3705 the permissions here. */
3706 else if (data && data->num_segments == 1)
3707 {
3708 segments[0] = data->segment_bases[0] + text_addr;
3709 num_segments = 1;
3710 }
28c32713
JB
3711 /* There's no way to relocate by segment. */
3712 else
3713 do_segments = 0;
31d99776
DJ
3714
3715 if (do_segments)
3716 {
3717 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3718 offs, num_segments, segments);
3719
3720 if (ret == 0 && !do_sections)
3e43a32a
MS
3721 error (_("Can not handle qOffsets TextSeg "
3722 "response with this symbol file"));
31d99776
DJ
3723
3724 if (ret > 0)
3725 do_sections = 0;
3726 }
c906108c 3727
9ef895d6
DJ
3728 if (data)
3729 free_symfile_segment_data (data);
31d99776
DJ
3730
3731 if (do_sections)
3732 {
3733 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3734
3e43a32a
MS
3735 /* This is a temporary kludge to force data and bss to use the
3736 same offsets because that's what nlmconv does now. The real
3737 solution requires changes to the stub and remote.c that I
3738 don't have time to do right now. */
31d99776
DJ
3739
3740 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3741 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3742 }
c906108c
SS
3743
3744 objfile_relocate (symfile_objfile, offs);
3745}
3746
9a7071a8
JB
3747/* Send interrupt_sequence to remote target. */
3748static void
eeae04df 3749send_interrupt_sequence (void)
9a7071a8 3750{
5d93a237
TT
3751 struct remote_state *rs = get_remote_state ();
3752
9a7071a8 3753 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 3754 remote_serial_write ("\x03", 1);
9a7071a8 3755 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 3756 serial_send_break (rs->remote_desc);
9a7071a8
JB
3757 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3758 {
5d93a237 3759 serial_send_break (rs->remote_desc);
c33e31fd 3760 remote_serial_write ("g", 1);
9a7071a8
JB
3761 }
3762 else
3763 internal_error (__FILE__, __LINE__,
3764 _("Invalid value for interrupt_sequence_mode: %s."),
3765 interrupt_sequence_mode);
3766}
3767
3405876a
PA
3768
3769/* If STOP_REPLY is a T stop reply, look for the "thread" register,
3770 and extract the PTID. Returns NULL_PTID if not found. */
3771
3772static ptid_t
3773stop_reply_extract_thread (char *stop_reply)
3774{
3775 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3776 {
256642e8 3777 const char *p;
3405876a
PA
3778
3779 /* Txx r:val ; r:val (...) */
3780 p = &stop_reply[3];
3781
3782 /* Look for "register" named "thread". */
3783 while (*p != '\0')
3784 {
256642e8 3785 const char *p1;
3405876a
PA
3786
3787 p1 = strchr (p, ':');
3788 if (p1 == NULL)
3789 return null_ptid;
3790
3791 if (strncmp (p, "thread", p1 - p) == 0)
3792 return read_ptid (++p1, &p);
3793
3794 p1 = strchr (p, ';');
3795 if (p1 == NULL)
3796 return null_ptid;
3797 p1++;
3798
3799 p = p1;
3800 }
3801 }
3802
3803 return null_ptid;
3804}
3805
b7ea362b
PA
3806/* Determine the remote side's current thread. If we have a stop
3807 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3808 "thread" register we can extract the current thread from. If not,
3809 ask the remote which is the current thread with qC. The former
3810 method avoids a roundtrip. */
3811
3812static ptid_t
3813get_current_thread (char *wait_status)
3814{
6a49a997 3815 ptid_t ptid = null_ptid;
b7ea362b
PA
3816
3817 /* Note we don't use remote_parse_stop_reply as that makes use of
3818 the target architecture, which we haven't yet fully determined at
3819 this point. */
3820 if (wait_status != NULL)
3821 ptid = stop_reply_extract_thread (wait_status);
3822 if (ptid_equal (ptid, null_ptid))
3823 ptid = remote_current_thread (inferior_ptid);
3824
3825 return ptid;
3826}
3827
49c62f2e
PA
3828/* Query the remote target for which is the current thread/process,
3829 add it to our tables, and update INFERIOR_PTID. The caller is
3830 responsible for setting the state such that the remote end is ready
3405876a
PA
3831 to return the current thread.
3832
3833 This function is called after handling the '?' or 'vRun' packets,
3834 whose response is a stop reply from which we can also try
3835 extracting the thread. If the target doesn't support the explicit
3836 qC query, we infer the current thread from that stop reply, passed
3837 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
3838
3839static void
3405876a 3840add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
3841{
3842 struct remote_state *rs = get_remote_state ();
3843 int fake_pid_p = 0;
49c62f2e
PA
3844
3845 inferior_ptid = null_ptid;
3846
b7ea362b 3847 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 3848 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 3849
87215ad1 3850 if (curr_ptid != null_ptid)
49c62f2e
PA
3851 {
3852 if (!remote_multi_process_p (rs))
3853 fake_pid_p = 1;
49c62f2e
PA
3854 }
3855 else
3856 {
3857 /* Without this, some commands which require an active target
3858 (such as kill) won't work. This variable serves (at least)
3859 double duty as both the pid of the target process (if it has
3860 such), and as a flag indicating that a target is active. */
87215ad1 3861 curr_ptid = magic_null_ptid;
49c62f2e
PA
3862 fake_pid_p = 1;
3863 }
3864
87215ad1 3865 remote_add_inferior (fake_pid_p, ptid_get_pid (curr_ptid), -1, 1);
49c62f2e 3866
87215ad1
SDJ
3867 /* Add the main thread and switch to it. Don't try reading
3868 registers yet, since we haven't fetched the target description
3869 yet. */
3870 thread_info *tp = add_thread_silent (curr_ptid);
3871 switch_to_thread_no_regs (tp);
49c62f2e
PA
3872}
3873
6efcd9a8
PA
3874/* Print info about a thread that was found already stopped on
3875 connection. */
3876
3877static void
3878print_one_stopped_thread (struct thread_info *thread)
3879{
3880 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3881
3882 switch_to_thread (thread->ptid);
3883 stop_pc = get_frame_pc (get_current_frame ());
3884 set_current_sal_from_frame (get_current_frame ());
3885
3886 thread->suspend.waitstatus_pending_p = 0;
3887
3888 if (ws->kind == TARGET_WAITKIND_STOPPED)
3889 {
3890 enum gdb_signal sig = ws->value.sig;
3891
3892 if (signal_print_state (sig))
3893 observer_notify_signal_received (sig);
3894 }
3895 observer_notify_normal_stop (NULL, 1);
3896}
3897
221e1a37
PA
3898/* Process all initial stop replies the remote side sent in response
3899 to the ? packet. These indicate threads that were already stopped
3900 on initial connection. We mark these threads as stopped and print
3901 their current frame before giving the user the prompt. */
3902
3903static void
6efcd9a8 3904process_initial_stop_replies (int from_tty)
221e1a37
PA
3905{
3906 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
3907 struct inferior *inf;
3908 struct thread_info *thread;
3909 struct thread_info *selected = NULL;
3910 struct thread_info *lowest_stopped = NULL;
3911 struct thread_info *first = NULL;
221e1a37
PA
3912
3913 /* Consume the initial pending events. */
3914 while (pending_stop_replies-- > 0)
3915 {
3916 ptid_t waiton_ptid = minus_one_ptid;
3917 ptid_t event_ptid;
3918 struct target_waitstatus ws;
3919 int ignore_event = 0;
6efcd9a8 3920 struct thread_info *thread;
221e1a37
PA
3921
3922 memset (&ws, 0, sizeof (ws));
3923 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3924 if (remote_debug)
3925 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3926
3927 switch (ws.kind)
3928 {
3929 case TARGET_WAITKIND_IGNORE:
3930 case TARGET_WAITKIND_NO_RESUMED:
3931 case TARGET_WAITKIND_SIGNALLED:
3932 case TARGET_WAITKIND_EXITED:
3933 /* We shouldn't see these, but if we do, just ignore. */
3934 if (remote_debug)
3935 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3936 ignore_event = 1;
3937 break;
3938
3939 case TARGET_WAITKIND_EXECD:
3940 xfree (ws.value.execd_pathname);
3941 break;
3942 default:
3943 break;
3944 }
3945
3946 if (ignore_event)
3947 continue;
3948
6efcd9a8 3949 thread = find_thread_ptid (event_ptid);
221e1a37
PA
3950
3951 if (ws.kind == TARGET_WAITKIND_STOPPED)
3952 {
3953 enum gdb_signal sig = ws.value.sig;
3954
3955 /* Stubs traditionally report SIGTRAP as initial signal,
3956 instead of signal 0. Suppress it. */
3957 if (sig == GDB_SIGNAL_TRAP)
3958 sig = GDB_SIGNAL_0;
6efcd9a8
PA
3959 thread->suspend.stop_signal = sig;
3960 ws.value.sig = sig;
3961 }
221e1a37 3962
6efcd9a8
PA
3963 thread->suspend.waitstatus = ws;
3964
3965 if (ws.kind != TARGET_WAITKIND_STOPPED
3966 || ws.value.sig != GDB_SIGNAL_0)
3967 thread->suspend.waitstatus_pending_p = 1;
3968
3969 set_executing (event_ptid, 0);
3970 set_running (event_ptid, 0);
85ad3aaf 3971 thread->priv->vcont_resumed = 0;
6efcd9a8
PA
3972 }
3973
3974 /* "Notice" the new inferiors before anything related to
3975 registers/memory. */
3976 ALL_INFERIORS (inf)
3977 {
3978 if (inf->pid == 0)
3979 continue;
3980
3981 inf->needs_setup = 1;
3982
3983 if (non_stop)
3984 {
3985 thread = any_live_thread_of_process (inf->pid);
3986 notice_new_inferior (thread->ptid,
3987 thread->state == THREAD_RUNNING,
3988 from_tty);
3989 }
3990 }
3991
3992 /* If all-stop on top of non-stop, pause all threads. Note this
3993 records the threads' stop pc, so must be done after "noticing"
3994 the inferiors. */
3995 if (!non_stop)
3996 {
3997 stop_all_threads ();
3998
3999 /* If all threads of an inferior were already stopped, we
4000 haven't setup the inferior yet. */
4001 ALL_INFERIORS (inf)
4002 {
4003 if (inf->pid == 0)
4004 continue;
221e1a37 4005
6efcd9a8
PA
4006 if (inf->needs_setup)
4007 {
4008 thread = any_live_thread_of_process (inf->pid);
4009 switch_to_thread_no_regs (thread);
4010 setup_inferior (0);
4011 }
4012 }
221e1a37 4013 }
6efcd9a8
PA
4014
4015 /* Now go over all threads that are stopped, and print their current
4016 frame. If all-stop, then if there's a signalled thread, pick
4017 that as current. */
4018 ALL_NON_EXITED_THREADS (thread)
4019 {
6efcd9a8
PA
4020 if (first == NULL)
4021 first = thread;
4022
4023 if (!non_stop)
4024 set_running (thread->ptid, 0);
4025 else if (thread->state != THREAD_STOPPED)
4026 continue;
4027
6efcd9a8
PA
4028 if (selected == NULL
4029 && thread->suspend.waitstatus_pending_p)
4030 selected = thread;
4031
5d5658a1
PA
4032 if (lowest_stopped == NULL
4033 || thread->inf->num < lowest_stopped->inf->num
4034 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4035 lowest_stopped = thread;
4036
4037 if (non_stop)
4038 print_one_stopped_thread (thread);
4039 }
4040
4041 /* In all-stop, we only print the status of one thread, and leave
4042 others with their status pending. */
4043 if (!non_stop)
4044 {
4045 thread = selected;
4046 if (thread == NULL)
4047 thread = lowest_stopped;
4048 if (thread == NULL)
4049 thread = first;
4050
4051 print_one_stopped_thread (thread);
4052 }
4053
4054 /* For "info program". */
4055 thread = inferior_thread ();
4056 if (thread->state == THREAD_STOPPED)
4057 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4058}
4059
048094ac
PA
4060/* Start the remote connection and sync state. */
4061
9cbc821d 4062static void
04bd08de 4063remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
c906108c 4064{
c8d104ad
PA
4065 struct remote_state *rs = get_remote_state ();
4066 struct packet_config *noack_config;
2d717e4f 4067 char *wait_status = NULL;
8621d6a9 4068
048094ac
PA
4069 /* Signal other parts that we're going through the initial setup,
4070 and so things may not be stable yet. E.g., we don't try to
4071 install tracepoints until we've relocated symbols. Also, a
4072 Ctrl-C before we're connected and synced up can't interrupt the
4073 target. Instead, it offers to drop the (potentially wedged)
4074 connection. */
4075 rs->starting_up = 1;
4076
522002f9 4077 QUIT;
c906108c 4078
9a7071a8
JB
4079 if (interrupt_on_connect)
4080 send_interrupt_sequence ();
4081
57e12211 4082 /* Ack any packet which the remote side has already sent. */
048094ac 4083 remote_serial_write ("+", 1);
1e51243a 4084
c8d104ad
PA
4085 /* The first packet we send to the target is the optional "supported
4086 packets" request. If the target can answer this, it will tell us
4087 which later probes to skip. */
4088 remote_query_supported ();
4089
d914c394 4090 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4091 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
c378d69d 4092 remote_set_permissions (target);
d914c394 4093
57809e5e
JK
4094 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4095 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4096 as a reply to known packet. For packet "vFile:setfs:" it is an
4097 invalid reply and GDB would return error in
4098 remote_hostio_set_filesystem, making remote files access impossible.
4099 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4100 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4101 {
4102 const char v_mustreplyempty[] = "vMustReplyEmpty";
4103
4104 putpkt (v_mustreplyempty);
4105 getpkt (&rs->buf, &rs->buf_size, 0);
4106 if (strcmp (rs->buf, "OK") == 0)
4107 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4108 else if (strcmp (rs->buf, "") != 0)
4109 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4110 rs->buf);
4111 }
4112
c8d104ad
PA
4113 /* Next, we possibly activate noack mode.
4114
4115 If the QStartNoAckMode packet configuration is set to AUTO,
4116 enable noack mode if the stub reported a wish for it with
4117 qSupported.
4118
4119 If set to TRUE, then enable noack mode even if the stub didn't
4120 report it in qSupported. If the stub doesn't reply OK, the
4121 session ends with an error.
4122
4123 If FALSE, then don't activate noack mode, regardless of what the
4124 stub claimed should be the default with qSupported. */
4125
4126 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4127 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4128 {
4129 putpkt ("QStartNoAckMode");
4130 getpkt (&rs->buf, &rs->buf_size, 0);
4131 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4132 rs->noack_mode = 1;
4133 }
4134
04bd08de 4135 if (extended_p)
5fe04517
PA
4136 {
4137 /* Tell the remote that we are using the extended protocol. */
4138 putpkt ("!");
4139 getpkt (&rs->buf, &rs->buf_size, 0);
4140 }
4141
9b224c5e
PA
4142 /* Let the target know which signals it is allowed to pass down to
4143 the program. */
4144 update_signals_program_target ();
4145
d962ef82
DJ
4146 /* Next, if the target can specify a description, read it. We do
4147 this before anything involving memory or registers. */
4148 target_find_description ();
4149
6c95b8df
PA
4150 /* Next, now that we know something about the target, update the
4151 address spaces in the program spaces. */
4152 update_address_spaces ();
4153
50c71eaf
PA
4154 /* On OSs where the list of libraries is global to all
4155 processes, we fetch them early. */
f5656ead 4156 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4157 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4158
6efcd9a8 4159 if (target_is_non_stop_p ())
74531fed 4160 {
4082afcc 4161 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4162 error (_("Non-stop mode requested, but remote "
4163 "does not support non-stop"));
74531fed
PA
4164
4165 putpkt ("QNonStop:1");
4166 getpkt (&rs->buf, &rs->buf_size, 0);
4167
4168 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4169 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4170
4171 /* Find about threads and processes the stub is already
4172 controlling. We default to adding them in the running state.
4173 The '?' query below will then tell us about which threads are
4174 stopped. */
e8032dde 4175 remote_update_thread_list (target);
74531fed 4176 }
4082afcc 4177 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4178 {
4179 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4180 Request it explicitly. */
74531fed
PA
4181 putpkt ("QNonStop:0");
4182 getpkt (&rs->buf, &rs->buf_size, 0);
4183
4184 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4185 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4186 }
4187
a0743c90
YQ
4188 /* Upload TSVs regardless of whether the target is running or not. The
4189 remote stub, such as GDBserver, may have some predefined or builtin
4190 TSVs, even if the target is not running. */
8bd200f1 4191 if (remote_get_trace_status (target, current_trace_status ()) != -1)
a0743c90
YQ
4192 {
4193 struct uploaded_tsv *uploaded_tsvs = NULL;
4194
181e3713 4195 remote_upload_trace_state_variables (target, &uploaded_tsvs);
a0743c90
YQ
4196 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4197 }
4198
2d717e4f
DJ
4199 /* Check whether the target is running now. */
4200 putpkt ("?");
4201 getpkt (&rs->buf, &rs->buf_size, 0);
4202
6efcd9a8 4203 if (!target_is_non_stop_p ())
2d717e4f 4204 {
74531fed 4205 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4206 {
04bd08de 4207 if (!extended_p)
74531fed 4208 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4209
4210 /* We're connected, but not running. Drop out before we
4211 call start_remote. */
e278ad5b 4212 rs->starting_up = 0;
c35b1492 4213 return;
2d717e4f
DJ
4214 }
4215 else
74531fed 4216 {
74531fed 4217 /* Save the reply for later. */
224c3ddb 4218 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4219 strcpy (wait_status, rs->buf);
4220 }
4221
b7ea362b 4222 /* Fetch thread list. */
e8032dde 4223 target_update_thread_list ();
b7ea362b 4224
74531fed
PA
4225 /* Let the stub know that we want it to return the thread. */
4226 set_continue_thread (minus_one_ptid);
4227
b7ea362b
PA
4228 if (thread_count () == 0)
4229 {
4230 /* Target has no concept of threads at all. GDB treats
4231 non-threaded target as single-threaded; add a main
4232 thread. */
4233 add_current_inferior_and_thread (wait_status);
4234 }
4235 else
4236 {
4237 /* We have thread information; select the thread the target
4238 says should be current. If we're reconnecting to a
4239 multi-threaded program, this will ideally be the thread
4240 that last reported an event before GDB disconnected. */
4241 inferior_ptid = get_current_thread (wait_status);
4242 if (ptid_equal (inferior_ptid, null_ptid))
4243 {
4244 /* Odd... The target was able to list threads, but not
4245 tell us which thread was current (no "thread"
4246 register in T stop reply?). Just pick the first
4247 thread in the thread list then. */
c9f35b34
KB
4248
4249 if (remote_debug)
4250 fprintf_unfiltered (gdb_stdlog,
4251 "warning: couldn't determine remote "
4252 "current thread; picking first in list.\n");
4253
b7ea362b
PA
4254 inferior_ptid = thread_list->ptid;
4255 }
4256 }
74531fed 4257
6e586cc5
YQ
4258 /* init_wait_for_inferior should be called before get_offsets in order
4259 to manage `inserted' flag in bp loc in a correct state.
4260 breakpoint_init_inferior, called from init_wait_for_inferior, set
4261 `inserted' flag to 0, while before breakpoint_re_set, called from
4262 start_remote, set `inserted' flag to 1. In the initialization of
4263 inferior, breakpoint_init_inferior should be called first, and then
4264 breakpoint_re_set can be called. If this order is broken, state of
4265 `inserted' flag is wrong, and cause some problems on breakpoint
4266 manipulation. */
4267 init_wait_for_inferior ();
4268
74531fed
PA
4269 get_offsets (); /* Get text, data & bss offsets. */
4270
d962ef82
DJ
4271 /* If we could not find a description using qXfer, and we know
4272 how to do it some other way, try again. This is not
4273 supported for non-stop; it could be, but it is tricky if
4274 there are no stopped threads when we connect. */
04bd08de 4275 if (remote_read_description_p (target)
f5656ead 4276 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4277 {
4278 target_clear_description ();
4279 target_find_description ();
4280 }
4281
74531fed
PA
4282 /* Use the previously fetched status. */
4283 gdb_assert (wait_status != NULL);
4284 strcpy (rs->buf, wait_status);
4285 rs->cached_wait_status = 1;
4286
04bd08de 4287 start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4288 }
4289 else
4290 {
68c97600
PA
4291 /* Clear WFI global state. Do this before finding about new
4292 threads and inferiors, and setting the current inferior.
4293 Otherwise we would clear the proceed status of the current
4294 inferior when we want its stop_soon state to be preserved
4295 (see notice_new_inferior). */
4296 init_wait_for_inferior ();
4297
74531fed
PA
4298 /* In non-stop, we will either get an "OK", meaning that there
4299 are no stopped threads at this time; or, a regular stop
4300 reply. In the latter case, there may be more than one thread
4301 stopped --- we pull them all out using the vStopped
4302 mechanism. */
4303 if (strcmp (rs->buf, "OK") != 0)
4304 {
722247f1 4305 struct notif_client *notif = &notif_client_stop;
2d717e4f 4306
722247f1
YQ
4307 /* remote_notif_get_pending_replies acks this one, and gets
4308 the rest out. */
f48ff2a7 4309 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
4310 = remote_notif_parse (notif, rs->buf);
4311 remote_notif_get_pending_events (notif);
74531fed 4312 }
2d717e4f 4313
74531fed
PA
4314 if (thread_count () == 0)
4315 {
04bd08de 4316 if (!extended_p)
74531fed 4317 error (_("The target is not running (try extended-remote?)"));
82f73884 4318
c35b1492
PA
4319 /* We're connected, but not running. Drop out before we
4320 call start_remote. */
e278ad5b 4321 rs->starting_up = 0;
c35b1492
PA
4322 return;
4323 }
74531fed 4324
74531fed
PA
4325 /* In non-stop mode, any cached wait status will be stored in
4326 the stop reply queue. */
4327 gdb_assert (wait_status == NULL);
f0223081 4328
2455069d 4329 /* Report all signals during attach/startup. */
94bedb42 4330 remote_pass_signals (target, 0, NULL);
221e1a37
PA
4331
4332 /* If there are already stopped threads, mark them stopped and
4333 report their stops before giving the prompt to the user. */
6efcd9a8 4334 process_initial_stop_replies (from_tty);
221e1a37
PA
4335
4336 if (target_can_async_p ())
4337 target_async (1);
74531fed 4338 }
c8d104ad 4339
c8d104ad
PA
4340 /* If we connected to a live target, do some additional setup. */
4341 if (target_has_execution)
4342 {
f4ccffad 4343 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4344 remote_check_symbols ();
c8d104ad 4345 }
50c71eaf 4346
d5551862
SS
4347 /* Possibly the target has been engaged in a trace run started
4348 previously; find out where things are at. */
8bd200f1 4349 if (remote_get_trace_status (target, current_trace_status ()) != -1)
d5551862 4350 {
00bf0b85 4351 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4352
00bf0b85
SS
4353 if (current_trace_status ()->running)
4354 printf_filtered (_("Trace is already running on the target.\n"));
4355
ab6617cc 4356 remote_upload_tracepoints (target, &uploaded_tps);
00bf0b85
SS
4357
4358 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4359 }
4360
c0272db5
TW
4361 /* Possibly the target has been engaged in a btrace record started
4362 previously; find out where things are at. */
4363 remote_btrace_maybe_reopen ();
4364
1e51243a
PA
4365 /* The thread and inferior lists are now synchronized with the
4366 target, our symbols have been relocated, and we're merged the
4367 target's tracepoints with ours. We're done with basic start
4368 up. */
4369 rs->starting_up = 0;
4370
a25a5a45
PA
4371 /* Maybe breakpoints are global and need to be inserted now. */
4372 if (breakpoints_should_be_inserted_now ())
50c71eaf 4373 insert_breakpoints ();
c906108c
SS
4374}
4375
4376/* Open a connection to a remote debugger.
4377 NAME is the filename used for communication. */
4378
4379static void
014f9477 4380remote_open (const char *name, int from_tty)
c906108c 4381{
75c99385 4382 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
4383}
4384
c906108c
SS
4385/* Open a connection to a remote debugger using the extended
4386 remote gdb protocol. NAME is the filename used for communication. */
4387
4388static void
014f9477 4389extended_remote_open (const char *name, int from_tty)
c906108c 4390{
75c99385 4391 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
4392}
4393
ca4f7f8b
PA
4394/* Reset all packets back to "unknown support". Called when opening a
4395 new connection to a remote target. */
c906108c 4396
d471ea57 4397static void
ca4f7f8b 4398reset_all_packet_configs_support (void)
d471ea57
AC
4399{
4400 int i;
a744cf53 4401
444abaca 4402 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4403 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4404}
4405
ca4f7f8b
PA
4406/* Initialize all packet configs. */
4407
4408static void
4409init_all_packet_configs (void)
4410{
4411 int i;
4412
4413 for (i = 0; i < PACKET_MAX; i++)
4414 {
4415 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4416 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4417 }
4418}
4419
23860348 4420/* Symbol look-up. */
dc8acb97
MS
4421
4422static void
36d25514 4423remote_check_symbols (void)
dc8acb97 4424{
d01949b6 4425 struct remote_state *rs = get_remote_state ();
dc8acb97 4426 char *msg, *reply, *tmp;
dc8acb97 4427 int end;
28170b88 4428 long reply_size;
a5c0808e 4429 struct cleanup *old_chain;
dc8acb97 4430
63154eca
PA
4431 /* The remote side has no concept of inferiors that aren't running
4432 yet, it only knows about running processes. If we're connected
4433 but our current inferior is not running, we should not invite the
4434 remote target to request symbol lookups related to its
4435 (unrelated) current process. */
4436 if (!target_has_execution)
4437 return;
4438
4082afcc 4439 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4440 return;
4441
63154eca
PA
4442 /* Make sure the remote is pointing at the right process. Note
4443 there's no way to select "no process". */
3c9c4b83
PA
4444 set_general_process ();
4445
6d820c5c
DJ
4446 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4447 because we need both at the same time. */
224c3ddb 4448 msg = (char *) xmalloc (get_remote_packet_size ());
a5c0808e 4449 old_chain = make_cleanup (xfree, msg);
28170b88
MK
4450 reply = (char *) xmalloc (get_remote_packet_size ());
4451 make_cleanup (free_current_contents, &reply);
4452 reply_size = get_remote_packet_size ();
6d820c5c 4453
23860348 4454 /* Invite target to request symbol lookups. */
dc8acb97
MS
4455
4456 putpkt ("qSymbol::");
28170b88
MK
4457 getpkt (&reply, &reply_size, 0);
4458 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4459
61012eef 4460 while (startswith (reply, "qSymbol:"))
dc8acb97 4461 {
77e371c0
TT
4462 struct bound_minimal_symbol sym;
4463
dc8acb97 4464 tmp = &reply[8];
cfd77fa1 4465 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
4466 msg[end] = '\0';
4467 sym = lookup_minimal_symbol (msg, NULL, NULL);
3b7344d5 4468 if (sym.minsym == NULL)
ea9c271d 4469 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 4470 else
2bbe3cc1 4471 {
f5656ead 4472 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4473 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4474
4475 /* If this is a function address, return the start of code
4476 instead of any data function descriptor. */
f5656ead 4477 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
4478 sym_addr,
4479 &current_target);
4480
4481 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4482 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
4483 }
4484
dc8acb97 4485 putpkt (msg);
28170b88 4486 getpkt (&reply, &reply_size, 0);
dc8acb97 4487 }
a5c0808e
PA
4488
4489 do_cleanups (old_chain);
dc8acb97
MS
4490}
4491
9db8d71f 4492static struct serial *
baa336ce 4493remote_serial_open (const char *name)
9db8d71f
DJ
4494{
4495 static int udp_warning = 0;
4496
4497 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4498 of in ser-tcp.c, because it is the remote protocol assuming that the
4499 serial connection is reliable and not the serial connection promising
4500 to be. */
61012eef 4501 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4502 {
3e43a32a
MS
4503 warning (_("The remote protocol may be unreliable over UDP.\n"
4504 "Some events may be lost, rendering further debugging "
4505 "impossible."));
9db8d71f
DJ
4506 udp_warning = 1;
4507 }
4508
4509 return serial_open (name);
4510}
4511
d914c394
SS
4512/* Inform the target of our permission settings. The permission flags
4513 work without this, but if the target knows the settings, it can do
4514 a couple things. First, it can add its own check, to catch cases
4515 that somehow manage to get by the permissions checks in target
4516 methods. Second, if the target is wired to disallow particular
4517 settings (for instance, a system in the field that is not set up to
4518 be able to stop at a breakpoint), it can object to any unavailable
4519 permissions. */
4520
4521void
c378d69d 4522remote_set_permissions (struct target_ops *self)
d914c394
SS
4523{
4524 struct remote_state *rs = get_remote_state ();
4525
bba74b36
YQ
4526 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4527 "WriteReg:%x;WriteMem:%x;"
4528 "InsertBreak:%x;InsertTrace:%x;"
4529 "InsertFastTrace:%x;Stop:%x",
4530 may_write_registers, may_write_memory,
4531 may_insert_breakpoints, may_insert_tracepoints,
4532 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4533 putpkt (rs->buf);
4534 getpkt (&rs->buf, &rs->buf_size, 0);
4535
4536 /* If the target didn't like the packet, warn the user. Do not try
4537 to undo the user's settings, that would just be maddening. */
4538 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 4539 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
4540}
4541
be2a5f71
DJ
4542/* This type describes each known response to the qSupported
4543 packet. */
4544struct protocol_feature
4545{
4546 /* The name of this protocol feature. */
4547 const char *name;
4548
4549 /* The default for this protocol feature. */
4550 enum packet_support default_support;
4551
4552 /* The function to call when this feature is reported, or after
4553 qSupported processing if the feature is not supported.
4554 The first argument points to this structure. The second
4555 argument indicates whether the packet requested support be
4556 enabled, disabled, or probed (or the default, if this function
4557 is being called at the end of processing and this feature was
4558 not reported). The third argument may be NULL; if not NULL, it
4559 is a NUL-terminated string taken from the packet following
4560 this feature's name and an equals sign. */
4561 void (*func) (const struct protocol_feature *, enum packet_support,
4562 const char *);
4563
4564 /* The corresponding packet for this feature. Only used if
4565 FUNC is remote_supported_packet. */
4566 int packet;
4567};
4568
be2a5f71
DJ
4569static void
4570remote_supported_packet (const struct protocol_feature *feature,
4571 enum packet_support support,
4572 const char *argument)
4573{
4574 if (argument)
4575 {
4576 warning (_("Remote qSupported response supplied an unexpected value for"
4577 " \"%s\"."), feature->name);
4578 return;
4579 }
4580
4082afcc 4581 remote_protocol_packets[feature->packet].support = support;
be2a5f71 4582}
be2a5f71
DJ
4583
4584static void
4585remote_packet_size (const struct protocol_feature *feature,
4586 enum packet_support support, const char *value)
4587{
4588 struct remote_state *rs = get_remote_state ();
4589
4590 int packet_size;
4591 char *value_end;
4592
4593 if (support != PACKET_ENABLE)
4594 return;
4595
4596 if (value == NULL || *value == '\0')
4597 {
4598 warning (_("Remote target reported \"%s\" without a size."),
4599 feature->name);
4600 return;
4601 }
4602
4603 errno = 0;
4604 packet_size = strtol (value, &value_end, 16);
4605 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4606 {
4607 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4608 feature->name, value);
4609 return;
4610 }
4611
be2a5f71
DJ
4612 /* Record the new maximum packet size. */
4613 rs->explicit_packet_size = packet_size;
4614}
4615
dc473cfb 4616static const struct protocol_feature remote_protocol_features[] = {
0876f84a 4617 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 4618 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 4619 PACKET_qXfer_auxv },
c78fa86a
GB
4620 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4621 PACKET_qXfer_exec_file },
23181151
DJ
4622 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4623 PACKET_qXfer_features },
cfa9d6d9
DJ
4624 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4625 PACKET_qXfer_libraries },
2268b414
JK
4626 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4627 PACKET_qXfer_libraries_svr4 },
ced63ec0 4628 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 4629 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 4630 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4631 PACKET_qXfer_memory_map },
4de6483e
UW
4632 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4633 PACKET_qXfer_spu_read },
4634 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4635 PACKET_qXfer_spu_write },
07e059b5
VP
4636 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4637 PACKET_qXfer_osdata },
dc146f7c
VP
4638 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4639 PACKET_qXfer_threads },
b3b9301e
PA
4640 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4641 PACKET_qXfer_traceframe_info },
89be2091
DJ
4642 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4643 PACKET_QPassSignals },
82075af2
JS
4644 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4645 PACKET_QCatchSyscalls },
9b224c5e
PA
4646 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4647 PACKET_QProgramSignals },
bc3b087d
SDJ
4648 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
4649 PACKET_QSetWorkingDir },
aefd8b33
SDJ
4650 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
4651 PACKET_QStartupWithShell },
0a2dde4a
SDJ
4652 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
4653 PACKET_QEnvironmentHexEncoded },
4654 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
4655 PACKET_QEnvironmentReset },
4656 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
4657 PACKET_QEnvironmentUnset },
a6f3e723
SL
4658 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4659 PACKET_QStartNoAckMode },
4082afcc
PA
4660 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4661 PACKET_multiprocess_feature },
4662 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
4663 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4664 PACKET_qXfer_siginfo_read },
4665 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4666 PACKET_qXfer_siginfo_write },
4082afcc 4667 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 4668 PACKET_ConditionalTracepoints },
4082afcc 4669 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 4670 PACKET_ConditionalBreakpoints },
4082afcc 4671 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 4672 PACKET_BreakpointCommands },
4082afcc 4673 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 4674 PACKET_FastTracepoints },
4082afcc 4675 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 4676 PACKET_StaticTracepoints },
4082afcc 4677 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 4678 PACKET_InstallInTrace},
4082afcc
PA
4679 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4680 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
4681 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4682 PACKET_bc },
4683 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4684 PACKET_bs },
409873ef
SS
4685 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4686 PACKET_TracepointSource },
d914c394
SS
4687 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4688 PACKET_QAllow },
4082afcc
PA
4689 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4690 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
4691 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4692 PACKET_qXfer_fdpic },
169081d0
TG
4693 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4694 PACKET_qXfer_uib },
03583c20
UW
4695 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4696 PACKET_QDisableRandomization },
d1feda86 4697 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4698 { "QTBuffer:size", PACKET_DISABLE,
4699 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 4700 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
4701 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4702 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 4703 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 4704 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
4705 PACKET_qXfer_btrace },
4706 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
4707 PACKET_qXfer_btrace_conf },
4708 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
4709 PACKET_Qbtrace_conf_bts_size },
4710 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 4711 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
4712 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4713 PACKET_fork_event_feature },
4714 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4715 PACKET_vfork_event_feature },
94585166
DB
4716 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4717 PACKET_exec_event_feature },
b20a6524 4718 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 4719 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
4720 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4721 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 4722 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
4723};
4724
c8d5aac9
L
4725static char *remote_support_xml;
4726
4727/* Register string appended to "xmlRegisters=" in qSupported query. */
4728
4729void
6e39997a 4730register_remote_support_xml (const char *xml)
c8d5aac9
L
4731{
4732#if defined(HAVE_LIBEXPAT)
4733 if (remote_support_xml == NULL)
c4f7c687 4734 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4735 else
4736 {
4737 char *copy = xstrdup (remote_support_xml + 13);
4738 char *p = strtok (copy, ",");
4739
4740 do
4741 {
4742 if (strcmp (p, xml) == 0)
4743 {
4744 /* already there */
4745 xfree (copy);
4746 return;
4747 }
4748 }
4749 while ((p = strtok (NULL, ",")) != NULL);
4750 xfree (copy);
4751
94b0dee1
PA
4752 remote_support_xml = reconcat (remote_support_xml,
4753 remote_support_xml, ",", xml,
4754 (char *) NULL);
c8d5aac9
L
4755 }
4756#endif
4757}
4758
4759static char *
4760remote_query_supported_append (char *msg, const char *append)
4761{
4762 if (msg)
94b0dee1 4763 return reconcat (msg, msg, ";", append, (char *) NULL);
c8d5aac9
L
4764 else
4765 return xstrdup (append);
4766}
4767
be2a5f71
DJ
4768static void
4769remote_query_supported (void)
4770{
4771 struct remote_state *rs = get_remote_state ();
4772 char *next;
4773 int i;
4774 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4775
4776 /* The packet support flags are handled differently for this packet
4777 than for most others. We treat an error, a disabled packet, and
4778 an empty response identically: any features which must be reported
4779 to be used will be automatically disabled. An empty buffer
4780 accomplishes this, since that is also the representation for a list
4781 containing no features. */
4782
4783 rs->buf[0] = 0;
4082afcc 4784 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 4785 {
c8d5aac9 4786 char *q = NULL;
94b0dee1 4787 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
c8d5aac9 4788
73b8c1fd
PA
4789 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4790 q = remote_query_supported_append (q, "multiprocess+");
c8d5aac9 4791
f7e6eed5
PA
4792 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4793 q = remote_query_supported_append (q, "swbreak+");
4794 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4795 q = remote_query_supported_append (q, "hwbreak+");
4796
dde08ee1
PA
4797 q = remote_query_supported_append (q, "qRelocInsn+");
4798
8020350c
DB
4799 if (packet_set_cmd_state (PACKET_fork_event_feature)
4800 != AUTO_BOOLEAN_FALSE)
4801 q = remote_query_supported_append (q, "fork-events+");
4802 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4803 != AUTO_BOOLEAN_FALSE)
4804 q = remote_query_supported_append (q, "vfork-events+");
4805 if (packet_set_cmd_state (PACKET_exec_event_feature)
4806 != AUTO_BOOLEAN_FALSE)
4807 q = remote_query_supported_append (q, "exec-events+");
89245bc0 4808
750ce8d1
YQ
4809 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4810 q = remote_query_supported_append (q, "vContSupported+");
4811
65706a29
PA
4812 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4813 q = remote_query_supported_append (q, "QThreadEvents+");
4814
f2faf941
PA
4815 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4816 q = remote_query_supported_append (q, "no-resumed+");
4817
b35d5edb
PA
4818 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4819 the qSupported:xmlRegisters=i386 handling. */
4820 if (remote_support_xml != NULL)
4821 q = remote_query_supported_append (q, remote_support_xml);
4822
dde08ee1
PA
4823 q = reconcat (q, "qSupported:", q, (char *) NULL);
4824 putpkt (q);
82f73884 4825
94b0dee1
PA
4826 do_cleanups (old_chain);
4827
be2a5f71
DJ
4828 getpkt (&rs->buf, &rs->buf_size, 0);
4829
4830 /* If an error occured, warn, but do not return - just reset the
4831 buffer to empty and go on to disable features. */
4832 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4833 == PACKET_ERROR)
4834 {
4835 warning (_("Remote failure reply: %s"), rs->buf);
4836 rs->buf[0] = 0;
4837 }
4838 }
4839
4840 memset (seen, 0, sizeof (seen));
4841
4842 next = rs->buf;
4843 while (*next)
4844 {
4845 enum packet_support is_supported;
4846 char *p, *end, *name_end, *value;
4847
4848 /* First separate out this item from the rest of the packet. If
4849 there's another item after this, we overwrite the separator
4850 (terminated strings are much easier to work with). */
4851 p = next;
4852 end = strchr (p, ';');
4853 if (end == NULL)
4854 {
4855 end = p + strlen (p);
4856 next = end;
4857 }
4858 else
4859 {
89be2091
DJ
4860 *end = '\0';
4861 next = end + 1;
4862
be2a5f71
DJ
4863 if (end == p)
4864 {
4865 warning (_("empty item in \"qSupported\" response"));
4866 continue;
4867 }
be2a5f71
DJ
4868 }
4869
4870 name_end = strchr (p, '=');
4871 if (name_end)
4872 {
4873 /* This is a name=value entry. */
4874 is_supported = PACKET_ENABLE;
4875 value = name_end + 1;
4876 *name_end = '\0';
4877 }
4878 else
4879 {
4880 value = NULL;
4881 switch (end[-1])
4882 {
4883 case '+':
4884 is_supported = PACKET_ENABLE;
4885 break;
4886
4887 case '-':
4888 is_supported = PACKET_DISABLE;
4889 break;
4890
4891 case '?':
4892 is_supported = PACKET_SUPPORT_UNKNOWN;
4893 break;
4894
4895 default:
3e43a32a
MS
4896 warning (_("unrecognized item \"%s\" "
4897 "in \"qSupported\" response"), p);
be2a5f71
DJ
4898 continue;
4899 }
4900 end[-1] = '\0';
4901 }
4902
4903 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4904 if (strcmp (remote_protocol_features[i].name, p) == 0)
4905 {
4906 const struct protocol_feature *feature;
4907
4908 seen[i] = 1;
4909 feature = &remote_protocol_features[i];
4910 feature->func (feature, is_supported, value);
4911 break;
4912 }
4913 }
4914
4915 /* If we increased the packet size, make sure to increase the global
4916 buffer size also. We delay this until after parsing the entire
4917 qSupported packet, because this is the same buffer we were
4918 parsing. */
4919 if (rs->buf_size < rs->explicit_packet_size)
4920 {
4921 rs->buf_size = rs->explicit_packet_size;
224c3ddb 4922 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
4923 }
4924
4925 /* Handle the defaults for unmentioned features. */
4926 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4927 if (!seen[i])
4928 {
4929 const struct protocol_feature *feature;
4930
4931 feature = &remote_protocol_features[i];
4932 feature->func (feature, feature->default_support, NULL);
4933 }
4934}
4935
048094ac
PA
4936/* Serial QUIT handler for the remote serial descriptor.
4937
4938 Defers handling a Ctrl-C until we're done with the current
4939 command/response packet sequence, unless:
4940
4941 - We're setting up the connection. Don't send a remote interrupt
4942 request, as we're not fully synced yet. Quit immediately
4943 instead.
4944
4945 - The target has been resumed in the foreground
223ffa71 4946 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
4947 packet, and we're blocked waiting for the stop reply, thus a
4948 Ctrl-C should be immediately sent to the target.
4949
4950 - We get a second Ctrl-C while still within the same serial read or
4951 write. In that case the serial is seemingly wedged --- offer to
4952 quit/disconnect.
4953
4954 - We see a second Ctrl-C without target response, after having
4955 previously interrupted the target. In that case the target/stub
4956 is probably wedged --- offer to quit/disconnect.
4957*/
4958
4959static void
4960remote_serial_quit_handler (void)
4961{
4962 struct remote_state *rs = get_remote_state ();
4963
4964 if (check_quit_flag ())
4965 {
4966 /* If we're starting up, we're not fully synced yet. Quit
4967 immediately. */
4968 if (rs->starting_up)
4969 quit ();
4970 else if (rs->got_ctrlc_during_io)
4971 {
4972 if (query (_("The target is not responding to GDB commands.\n"
4973 "Stop debugging it? ")))
4974 remote_unpush_and_throw ();
4975 }
4976 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 4977 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
4978 interrupt_query ();
4979 /* All-stop protocol, and blocked waiting for stop reply. Send
4980 an interrupt request. */
223ffa71 4981 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
048094ac
PA
4982 target_interrupt (inferior_ptid);
4983 else
4984 rs->got_ctrlc_during_io = 1;
4985 }
4986}
4987
78a095c3
JK
4988/* Remove any of the remote.c targets from target stack. Upper targets depend
4989 on it so remove them first. */
4990
4991static void
4992remote_unpush_target (void)
4993{
915ef8b1 4994 pop_all_targets_at_and_above (process_stratum);
78a095c3 4995}
be2a5f71 4996
048094ac
PA
4997static void
4998remote_unpush_and_throw (void)
4999{
5000 remote_unpush_target ();
5001 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
5002}
5003
c906108c 5004static void
014f9477 5005remote_open_1 (const char *name, int from_tty,
3e43a32a 5006 struct target_ops *target, int extended_p)
c906108c 5007{
d01949b6 5008 struct remote_state *rs = get_remote_state ();
a6f3e723 5009
c906108c 5010 if (name == 0)
8a3fe4f8 5011 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5012 "serial device is attached to the remote system\n"
8a3fe4f8 5013 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5014
23860348 5015 /* See FIXME above. */
c6ebd6cf 5016 if (!target_async_permitted)
92d1e331 5017 wait_forever_enabled_p = 1;
6426a772 5018
2d717e4f 5019 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5020 Ask this question first, before target_preopen has a chance to kill
5021 anything. */
5d93a237 5022 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 5023 {
78a095c3
JK
5024 if (from_tty
5025 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5026 error (_("Still connected."));
5027 }
5028
78a095c3 5029 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5030 target_preopen (from_tty);
5031
89be2091 5032 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
5033 xfree (rs->last_pass_packet);
5034 rs->last_pass_packet = NULL;
89be2091 5035
9b224c5e
PA
5036 /* Make sure we send the program signals list the next time we
5037 resume. */
5e4a05c4
TT
5038 xfree (rs->last_program_signals_packet);
5039 rs->last_program_signals_packet = NULL;
9b224c5e 5040
ad9a8f3f 5041 remote_fileio_reset ();
1dd41f16
NS
5042 reopen_exec_file ();
5043 reread_symbols ();
5044
5d93a237
TT
5045 rs->remote_desc = remote_serial_open (name);
5046 if (!rs->remote_desc)
c906108c
SS
5047 perror_with_name (name);
5048
5049 if (baud_rate != -1)
5050 {
5d93a237 5051 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5052 {
9b74d5d3
KB
5053 /* The requested speed could not be set. Error out to
5054 top level after closing remote_desc. Take care to
5055 set remote_desc to NULL to avoid closing remote_desc
5056 more than once. */
5d93a237
TT
5057 serial_close (rs->remote_desc);
5058 rs->remote_desc = NULL;
c906108c
SS
5059 perror_with_name (name);
5060 }
5061 }
5062
236af5e3 5063 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5064 serial_raw (rs->remote_desc);
c906108c
SS
5065
5066 /* If there is something sitting in the buffer we might take it as a
5067 response to a command, which would be bad. */
5d93a237 5068 serial_flush_input (rs->remote_desc);
c906108c
SS
5069
5070 if (from_tty)
5071 {
5072 puts_filtered ("Remote debugging using ");
5073 puts_filtered (name);
5074 puts_filtered ("\n");
5075 }
23860348 5076 push_target (target); /* Switch to using remote target now. */
c906108c 5077
74531fed
PA
5078 /* Register extra event sources in the event loop. */
5079 remote_async_inferior_event_token
5080 = create_async_event_handler (remote_async_inferior_event_handler,
5081 NULL);
5965e028 5082 rs->notif_state = remote_notif_state_allocate ();
74531fed 5083
be2a5f71
DJ
5084 /* Reset the target state; these things will be queried either by
5085 remote_query_supported or as they are needed. */
ca4f7f8b 5086 reset_all_packet_configs_support ();
74531fed 5087 rs->cached_wait_status = 0;
be2a5f71 5088 rs->explicit_packet_size = 0;
a6f3e723 5089 rs->noack_mode = 0;
82f73884 5090 rs->extended = extended_p;
e24a49d8 5091 rs->waiting_for_stop_reply = 0;
3a29589a 5092 rs->ctrlc_pending_p = 0;
048094ac 5093 rs->got_ctrlc_during_io = 0;
802188a7 5094
47f8a51d
TT
5095 rs->general_thread = not_sent_ptid;
5096 rs->continue_thread = not_sent_ptid;
262e1174 5097 rs->remote_traceframe_number = -1;
c906108c 5098
3a00c802
PA
5099 rs->last_resume_exec_dir = EXEC_FORWARD;
5100
9d1f7ab2 5101 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5102 rs->use_threadinfo_query = 1;
5103 rs->use_threadextra_query = 1;
9d1f7ab2 5104
80152258
PA
5105 readahead_cache_invalidate ();
5106
c6ebd6cf 5107 if (target_async_permitted)
92d1e331 5108 {
92d1e331
DJ
5109 /* FIXME: cagney/1999-09-23: During the initial connection it is
5110 assumed that the target is already ready and able to respond to
0df8b418 5111 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5112 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5113 around this. Eventually a mechanism that allows
92d1e331 5114 wait_for_inferior() to expect/get timeouts will be
23860348 5115 implemented. */
92d1e331
DJ
5116 wait_forever_enabled_p = 0;
5117 }
5118
23860348 5119 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5120 no_shared_libraries (NULL, 0);
f78f6cf1 5121
74531fed
PA
5122 /* Start afresh. */
5123 init_thread_list ();
5124
36918e70 5125 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5126 target (we'd otherwise be in an inconsistent state) and then
5127 propogate the error on up the exception chain. This ensures that
5128 the caller doesn't stumble along blindly assuming that the
5129 function succeeded. The CLI doesn't have this problem but other
5130 UI's, such as MI do.
36918e70
AC
5131
5132 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5133 this function should return an error indication letting the
ce2826aa 5134 caller restore the previous state. Unfortunately the command
36918e70
AC
5135 ``target remote'' is directly wired to this function making that
5136 impossible. On a positive note, the CLI side of this problem has
5137 been fixed - the function set_cmd_context() makes it possible for
5138 all the ``target ....'' commands to share a common callback
5139 function. See cli-dump.c. */
109c3e39 5140 {
2d717e4f 5141
492d29ea 5142 TRY
04bd08de
TT
5143 {
5144 remote_start_remote (from_tty, target, extended_p);
5145 }
492d29ea 5146 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5147 {
c8d104ad
PA
5148 /* Pop the partially set up target - unless something else did
5149 already before throwing the exception. */
5d93a237 5150 if (rs->remote_desc != NULL)
78a095c3 5151 remote_unpush_target ();
c6ebd6cf 5152 if (target_async_permitted)
109c3e39
AC
5153 wait_forever_enabled_p = 1;
5154 throw_exception (ex);
5155 }
492d29ea 5156 END_CATCH
109c3e39 5157 }
c906108c 5158
f4abbc16
MM
5159 remote_btrace_reset ();
5160
c6ebd6cf 5161 if (target_async_permitted)
92d1e331 5162 wait_forever_enabled_p = 1;
43ff13b4
JM
5163}
5164
de0d863e
DB
5165/* Detach the specified process. */
5166
5167static void
5168remote_detach_pid (int pid)
5169{
5170 struct remote_state *rs = get_remote_state ();
5171
5172 if (remote_multi_process_p (rs))
5173 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5174 else
5175 strcpy (rs->buf, "D");
5176
5177 putpkt (rs->buf);
5178 getpkt (&rs->buf, &rs->buf_size, 0);
5179
5180 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5181 ;
5182 else if (rs->buf[0] == '\0')
5183 error (_("Remote doesn't know how to detach"));
5184 else
5185 error (_("Can't detach process."));
5186}
5187
5188/* This detaches a program to which we previously attached, using
5189 inferior_ptid to identify the process. After this is done, GDB
5190 can be used to debug some other program. We better not have left
5191 any breakpoints in the target program or it'll die when it hits
5192 one. */
c906108c
SS
5193
5194static void
de0d863e 5195remote_detach_1 (const char *args, int from_tty)
c906108c 5196{
82f73884 5197 int pid = ptid_get_pid (inferior_ptid);
d01949b6 5198 struct remote_state *rs = get_remote_state ();
de0d863e
DB
5199 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5200 int is_fork_parent;
c906108c
SS
5201
5202 if (args)
8a3fe4f8 5203 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 5204
2d717e4f
DJ
5205 if (!target_has_execution)
5206 error (_("No process to detach from."));
5207
0f48b757 5208 target_announce_detach (from_tty);
7cee1e54 5209
c906108c 5210 /* Tell the remote target to detach. */
de0d863e 5211 remote_detach_pid (pid);
82f73884 5212
8020350c
DB
5213 /* Exit only if this is the only active inferior. */
5214 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5215 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5216
de0d863e
DB
5217 /* Check to see if we are detaching a fork parent. Note that if we
5218 are detaching a fork child, tp == NULL. */
5219 is_fork_parent = (tp != NULL
5220 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5221
5222 /* If doing detach-on-fork, we don't mourn, because that will delete
5223 breakpoints that should be available for the followed inferior. */
5224 if (!is_fork_parent)
bc1e6c81 5225 target_mourn_inferior (inferior_ptid);
de0d863e
DB
5226 else
5227 {
5228 inferior_ptid = null_ptid;
5229 detach_inferior (pid);
5230 }
2d717e4f
DJ
5231}
5232
5233static void
52554a0e 5234remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5235{
de0d863e 5236 remote_detach_1 (args, from_tty);
2d717e4f
DJ
5237}
5238
5239static void
52554a0e 5240extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5241{
de0d863e
DB
5242 remote_detach_1 (args, from_tty);
5243}
5244
5245/* Target follow-fork function for remote targets. On entry, and
5246 at return, the current inferior is the fork parent.
5247
5248 Note that although this is currently only used for extended-remote,
5249 it is named remote_follow_fork in anticipation of using it for the
5250 remote target as well. */
5251
5252static int
5253remote_follow_fork (struct target_ops *ops, int follow_child,
5254 int detach_fork)
5255{
5256 struct remote_state *rs = get_remote_state ();
c269dbdb 5257 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5258
c269dbdb
DB
5259 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5260 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5261 {
5262 /* When following the parent and detaching the child, we detach
5263 the child here. For the case of following the child and
5264 detaching the parent, the detach is done in the target-
5265 independent follow fork code in infrun.c. We can't use
5266 target_detach when detaching an unfollowed child because
5267 the client side doesn't know anything about the child. */
5268 if (detach_fork && !follow_child)
5269 {
5270 /* Detach the fork child. */
5271 ptid_t child_ptid;
5272 pid_t child_pid;
5273
5274 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5275 child_pid = ptid_get_pid (child_ptid);
5276
5277 remote_detach_pid (child_pid);
5278 detach_inferior (child_pid);
5279 }
5280 }
5281 return 0;
c906108c
SS
5282}
5283
94585166
DB
5284/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5285 in the program space of the new inferior. On entry and at return the
5286 current inferior is the exec'ing inferior. INF is the new exec'd
5287 inferior, which may be the same as the exec'ing inferior unless
5288 follow-exec-mode is "new". */
5289
5290static void
5291remote_follow_exec (struct target_ops *ops,
5292 struct inferior *inf, char *execd_pathname)
5293{
5294 /* We know that this is a target file name, so if it has the "target:"
5295 prefix we strip it off before saving it in the program space. */
5296 if (is_target_filename (execd_pathname))
5297 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5298
5299 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5300}
5301
6ad8ae5c
DJ
5302/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5303
43ff13b4 5304static void
fee354ee 5305remote_disconnect (struct target_ops *target, const char *args, int from_tty)
43ff13b4 5306{
43ff13b4 5307 if (args)
2d717e4f 5308 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5309
8020350c
DB
5310 /* Make sure we unpush even the extended remote targets. Calling
5311 target_mourn_inferior won't unpush, and remote_mourn won't
5312 unpush if there is more than one inferior left. */
5313 unpush_target (target);
5314 generic_mourn_inferior ();
2d717e4f 5315
43ff13b4
JM
5316 if (from_tty)
5317 puts_filtered ("Ending remote debugging.\n");
5318}
5319
2d717e4f
DJ
5320/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5321 be chatty about it. */
5322
5323static void
20f796c9
GB
5324extended_remote_attach (struct target_ops *target, const char *args,
5325 int from_tty)
2d717e4f
DJ
5326{
5327 struct remote_state *rs = get_remote_state ();
be86555c 5328 int pid;
96ef3384 5329 char *wait_status = NULL;
2d717e4f 5330
74164c56 5331 pid = parse_pid_to_attach (args);
2d717e4f 5332
74164c56
JK
5333 /* Remote PID can be freely equal to getpid, do not check it here the same
5334 way as in other targets. */
2d717e4f 5335
4082afcc 5336 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5337 error (_("This target does not support attaching to a process"));
5338
7cee1e54
PA
5339 if (from_tty)
5340 {
5341 char *exec_file = get_exec_file (0);
5342
5343 if (exec_file)
5344 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5345 target_pid_to_str (pid_to_ptid (pid)));
5346 else
5347 printf_unfiltered (_("Attaching to %s\n"),
5348 target_pid_to_str (pid_to_ptid (pid)));
5349
5350 gdb_flush (gdb_stdout);
5351 }
5352
bba74b36 5353 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5354 putpkt (rs->buf);
5355 getpkt (&rs->buf, &rs->buf_size, 0);
5356
4082afcc
PA
5357 switch (packet_ok (rs->buf,
5358 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5359 {
4082afcc 5360 case PACKET_OK:
6efcd9a8 5361 if (!target_is_non_stop_p ())
74531fed
PA
5362 {
5363 /* Save the reply for later. */
224c3ddb 5364 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5365 strcpy (wait_status, rs->buf);
5366 }
5367 else if (strcmp (rs->buf, "OK") != 0)
5368 error (_("Attaching to %s failed with: %s"),
5369 target_pid_to_str (pid_to_ptid (pid)),
5370 rs->buf);
4082afcc
PA
5371 break;
5372 case PACKET_UNKNOWN:
5373 error (_("This target does not support attaching to a process"));
5374 default:
5375 error (_("Attaching to %s failed"),
5376 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 5377 }
2d717e4f 5378
1b6e6f5c 5379 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5380
2d717e4f 5381 inferior_ptid = pid_to_ptid (pid);
79d7f229 5382
6efcd9a8 5383 if (target_is_non_stop_p ())
bad34192
PA
5384 {
5385 struct thread_info *thread;
79d7f229 5386
bad34192 5387 /* Get list of threads. */
e8032dde 5388 remote_update_thread_list (target);
82f73884 5389
bad34192
PA
5390 thread = first_thread_of_process (pid);
5391 if (thread)
5392 inferior_ptid = thread->ptid;
5393 else
5394 inferior_ptid = pid_to_ptid (pid);
5395
5396 /* Invalidate our notion of the remote current thread. */
47f8a51d 5397 record_currthread (rs, minus_one_ptid);
bad34192 5398 }
74531fed 5399 else
bad34192
PA
5400 {
5401 /* Now, if we have thread information, update inferior_ptid. */
5402 inferior_ptid = remote_current_thread (inferior_ptid);
5403
5404 /* Add the main thread to the thread list. */
5405 add_thread_silent (inferior_ptid);
5406 }
c0a2216e 5407
96ef3384
UW
5408 /* Next, if the target can specify a description, read it. We do
5409 this before anything involving memory or registers. */
5410 target_find_description ();
5411
6efcd9a8 5412 if (!target_is_non_stop_p ())
74531fed
PA
5413 {
5414 /* Use the previously fetched status. */
5415 gdb_assert (wait_status != NULL);
5416
5417 if (target_can_async_p ())
5418 {
722247f1
YQ
5419 struct notif_event *reply
5420 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 5421
722247f1 5422 push_stop_reply ((struct stop_reply *) reply);
74531fed 5423
6a3753b3 5424 target_async (1);
74531fed
PA
5425 }
5426 else
5427 {
5428 gdb_assert (wait_status != NULL);
5429 strcpy (rs->buf, wait_status);
5430 rs->cached_wait_status = 1;
5431 }
5432 }
5433 else
5434 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5435}
5436
b9c1d481
AS
5437/* Implementation of the to_post_attach method. */
5438
5439static void
5440extended_remote_post_attach (struct target_ops *ops, int pid)
5441{
6efcd9a8
PA
5442 /* Get text, data & bss offsets. */
5443 get_offsets ();
5444
b9c1d481
AS
5445 /* In certain cases GDB might not have had the chance to start
5446 symbol lookup up until now. This could happen if the debugged
5447 binary is not using shared libraries, the vsyscall page is not
5448 present (on Linux) and the binary itself hadn't changed since the
5449 debugging process was started. */
5450 if (symfile_objfile != NULL)
5451 remote_check_symbols();
5452}
5453
c906108c 5454\f
506fb367
DJ
5455/* Check for the availability of vCont. This function should also check
5456 the response. */
c906108c
SS
5457
5458static void
6d820c5c 5459remote_vcont_probe (struct remote_state *rs)
c906108c 5460{
2e9f7625 5461 char *buf;
6d820c5c 5462
2e9f7625
DJ
5463 strcpy (rs->buf, "vCont?");
5464 putpkt (rs->buf);
6d820c5c 5465 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5466 buf = rs->buf;
c906108c 5467
506fb367 5468 /* Make sure that the features we assume are supported. */
61012eef 5469 if (startswith (buf, "vCont"))
506fb367
DJ
5470 {
5471 char *p = &buf[5];
750ce8d1 5472 int support_c, support_C;
506fb367 5473
750ce8d1
YQ
5474 rs->supports_vCont.s = 0;
5475 rs->supports_vCont.S = 0;
506fb367
DJ
5476 support_c = 0;
5477 support_C = 0;
d458bd84 5478 rs->supports_vCont.t = 0;
c1e36e3e 5479 rs->supports_vCont.r = 0;
506fb367
DJ
5480 while (p && *p == ';')
5481 {
5482 p++;
5483 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5484 rs->supports_vCont.s = 1;
506fb367 5485 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5486 rs->supports_vCont.S = 1;
506fb367
DJ
5487 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5488 support_c = 1;
5489 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5490 support_C = 1;
74531fed 5491 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5492 rs->supports_vCont.t = 1;
c1e36e3e
PA
5493 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5494 rs->supports_vCont.r = 1;
506fb367
DJ
5495
5496 p = strchr (p, ';');
5497 }
c906108c 5498
750ce8d1
YQ
5499 /* If c, and C are not all supported, we can't use vCont. Clearing
5500 BUF will make packet_ok disable the packet. */
5501 if (!support_c || !support_C)
506fb367
DJ
5502 buf[0] = 0;
5503 }
c906108c 5504
444abaca 5505 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5506}
c906108c 5507
0d8f58ca
PA
5508/* Helper function for building "vCont" resumptions. Write a
5509 resumption to P. ENDP points to one-passed-the-end of the buffer
5510 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5511 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5512 resumed thread should be single-stepped and/or signalled. If PTID
5513 equals minus_one_ptid, then all threads are resumed; if PTID
5514 represents a process, then all threads of the process are resumed;
5515 the thread to be stepped and/or signalled is given in the global
5516 INFERIOR_PTID. */
5517
5518static char *
5519append_resumption (char *p, char *endp,
2ea28649 5520 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
5521{
5522 struct remote_state *rs = get_remote_state ();
5523
a493e3e2 5524 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5525 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5526 else if (step
5527 /* GDB is willing to range step. */
5528 && use_range_stepping
5529 /* Target supports range stepping. */
5530 && rs->supports_vCont.r
5531 /* We don't currently support range stepping multiple
5532 threads with a wildcard (though the protocol allows it,
5533 so stubs shouldn't make an active effort to forbid
5534 it). */
5535 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5536 {
5537 struct thread_info *tp;
5538
5539 if (ptid_equal (ptid, minus_one_ptid))
5540 {
5541 /* If we don't know about the target thread's tid, then
5542 we're resuming magic_null_ptid (see caller). */
5543 tp = find_thread_ptid (magic_null_ptid);
5544 }
5545 else
5546 tp = find_thread_ptid (ptid);
5547 gdb_assert (tp != NULL);
5548
5549 if (tp->control.may_range_step)
5550 {
5551 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5552
5553 p += xsnprintf (p, endp - p, ";r%s,%s",
5554 phex_nz (tp->control.step_range_start,
5555 addr_size),
5556 phex_nz (tp->control.step_range_end,
5557 addr_size));
5558 }
5559 else
5560 p += xsnprintf (p, endp - p, ";s");
5561 }
0d8f58ca
PA
5562 else if (step)
5563 p += xsnprintf (p, endp - p, ";s");
a493e3e2 5564 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
5565 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5566 else
5567 p += xsnprintf (p, endp - p, ";c");
5568
5569 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5570 {
5571 ptid_t nptid;
5572
5573 /* All (-1) threads of process. */
ba348170 5574 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
0d8f58ca
PA
5575
5576 p += xsnprintf (p, endp - p, ":");
5577 p = write_ptid (p, endp, nptid);
5578 }
5579 else if (!ptid_equal (ptid, minus_one_ptid))
5580 {
5581 p += xsnprintf (p, endp - p, ":");
5582 p = write_ptid (p, endp, ptid);
5583 }
5584
5585 return p;
5586}
5587
799a2abe
PA
5588/* Clear the thread's private info on resume. */
5589
5590static void
5591resume_clear_thread_private_info (struct thread_info *thread)
5592{
5593 if (thread->priv != NULL)
5594 {
5595 thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5596 thread->priv->watch_data_address = 0;
5597 }
5598}
5599
e5ef252a
PA
5600/* Append a vCont continue-with-signal action for threads that have a
5601 non-zero stop signal. */
5602
5603static char *
5604append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5605{
5606 struct thread_info *thread;
5607
034f788c 5608 ALL_NON_EXITED_THREADS (thread)
e5ef252a
PA
5609 if (ptid_match (thread->ptid, ptid)
5610 && !ptid_equal (inferior_ptid, thread->ptid)
70509625 5611 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
5612 {
5613 p = append_resumption (p, endp, thread->ptid,
5614 0, thread->suspend.stop_signal);
5615 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 5616 resume_clear_thread_private_info (thread);
e5ef252a
PA
5617 }
5618
5619 return p;
5620}
5621
7b68ffbb
PA
5622/* Set the target running, using the packets that use Hc
5623 (c/s/C/S). */
5624
5625static void
5626remote_resume_with_hc (struct target_ops *ops,
5627 ptid_t ptid, int step, enum gdb_signal siggnal)
5628{
5629 struct remote_state *rs = get_remote_state ();
5630 struct thread_info *thread;
5631 char *buf;
5632
5633 rs->last_sent_signal = siggnal;
5634 rs->last_sent_step = step;
5635
5636 /* The c/s/C/S resume packets use Hc, so set the continue
5637 thread. */
5638 if (ptid_equal (ptid, minus_one_ptid))
5639 set_continue_thread (any_thread_ptid);
5640 else
5641 set_continue_thread (ptid);
5642
5643 ALL_NON_EXITED_THREADS (thread)
5644 resume_clear_thread_private_info (thread);
5645
5646 buf = rs->buf;
5647 if (execution_direction == EXEC_REVERSE)
5648 {
5649 /* We don't pass signals to the target in reverse exec mode. */
5650 if (info_verbose && siggnal != GDB_SIGNAL_0)
5651 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5652 siggnal);
5653
5654 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5655 error (_("Remote reverse-step not supported."));
5656 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5657 error (_("Remote reverse-continue not supported."));
5658
5659 strcpy (buf, step ? "bs" : "bc");
5660 }
5661 else if (siggnal != GDB_SIGNAL_0)
5662 {
5663 buf[0] = step ? 'S' : 'C';
5664 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5665 buf[2] = tohex (((int) siggnal) & 0xf);
5666 buf[3] = '\0';
5667 }
5668 else
5669 strcpy (buf, step ? "s" : "c");
5670
5671 putpkt (buf);
5672}
5673
506fb367
DJ
5674/* Resume the remote inferior by using a "vCont" packet. The thread
5675 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
5676 resumed thread should be single-stepped and/or signalled. If PTID
5677 equals minus_one_ptid, then all threads are resumed; the thread to
5678 be stepped and/or signalled is given in the global INFERIOR_PTID.
5679 This function returns non-zero iff it resumes the inferior.
44eaed12 5680
7b68ffbb
PA
5681 This function issues a strict subset of all possible vCont commands
5682 at the moment. */
44eaed12 5683
506fb367 5684static int
7b68ffbb 5685remote_resume_with_vcont (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
5686{
5687 struct remote_state *rs = get_remote_state ();
82f73884
PA
5688 char *p;
5689 char *endp;
44eaed12 5690
7b68ffbb
PA
5691 /* No reverse execution actions defined for vCont. */
5692 if (execution_direction == EXEC_REVERSE)
5693 return 0;
5694
4082afcc 5695 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6d820c5c 5696 remote_vcont_probe (rs);
44eaed12 5697
4082afcc 5698 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 5699 return 0;
44eaed12 5700
82f73884
PA
5701 p = rs->buf;
5702 endp = rs->buf + get_remote_packet_size ();
5703
506fb367
DJ
5704 /* If we could generate a wider range of packets, we'd have to worry
5705 about overflowing BUF. Should there be a generic
5706 "multi-part-packet" packet? */
5707
0d8f58ca
PA
5708 p += xsnprintf (p, endp - p, "vCont");
5709
79d7f229 5710 if (ptid_equal (ptid, magic_null_ptid))
c906108c 5711 {
79d7f229
PA
5712 /* MAGIC_NULL_PTID means that we don't have any active threads,
5713 so we don't have any TID numbers the inferior will
5714 understand. Make sure to only send forms that do not specify
5715 a TID. */
a9cbf802 5716 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 5717 }
0d8f58ca 5718 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 5719 {
0d8f58ca
PA
5720 /* Resume all threads (of all processes, or of a single
5721 process), with preference for INFERIOR_PTID. This assumes
5722 inferior_ptid belongs to the set of all threads we are about
5723 to resume. */
a493e3e2 5724 if (step || siggnal != GDB_SIGNAL_0)
82f73884 5725 {
0d8f58ca
PA
5726 /* Step inferior_ptid, with or without signal. */
5727 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 5728 }
0d8f58ca 5729
e5ef252a
PA
5730 /* Also pass down any pending signaled resumption for other
5731 threads not the current. */
5732 p = append_pending_thread_resumptions (p, endp, ptid);
5733
0d8f58ca 5734 /* And continue others without a signal. */
a493e3e2 5735 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
5736 }
5737 else
506fb367
DJ
5738 {
5739 /* Scheduler locking; resume only PTID. */
a9cbf802 5740 append_resumption (p, endp, ptid, step, siggnal);
506fb367 5741 }
c906108c 5742
82f73884
PA
5743 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5744 putpkt (rs->buf);
506fb367 5745
6efcd9a8 5746 if (target_is_non_stop_p ())
74531fed
PA
5747 {
5748 /* In non-stop, the stub replies to vCont with "OK". The stop
5749 reply will be reported asynchronously by means of a `%Stop'
5750 notification. */
5751 getpkt (&rs->buf, &rs->buf_size, 0);
5752 if (strcmp (rs->buf, "OK") != 0)
5753 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5754 }
5755
506fb367 5756 return 1;
c906108c 5757}
43ff13b4 5758
506fb367
DJ
5759/* Tell the remote machine to resume. */
5760
43ff13b4 5761static void
28439f5e 5762remote_resume (struct target_ops *ops,
2ea28649 5763 ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 5764{
d01949b6 5765 struct remote_state *rs = get_remote_state ();
43ff13b4 5766
85ad3aaf
PA
5767 /* When connected in non-stop mode, the core resumes threads
5768 individually. Resuming remote threads directly in target_resume
5769 would thus result in sending one packet per thread. Instead, to
5770 minimize roundtrip latency, here we just store the resume
5771 request; the actual remote resumption will be done in
5772 target_commit_resume / remote_commit_resume, where we'll be able
5773 to do vCont action coalescing. */
5774 if (target_is_non_stop_p () && execution_direction != EXEC_REVERSE)
5775 {
5776 struct private_thread_info *remote_thr;
5777
5778 if (ptid_equal (minus_one_ptid, ptid) || ptid_is_pid (ptid))
5779 remote_thr = get_private_info_ptid (inferior_ptid);
5780 else
5781 remote_thr = get_private_info_ptid (ptid);
5782 remote_thr->last_resume_step = step;
5783 remote_thr->last_resume_sig = siggnal;
5784 return;
5785 }
5786
722247f1
YQ
5787 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5788 (explained in remote-notif.c:handle_notification) so
5789 remote_notif_process is not called. We need find a place where
5790 it is safe to start a 'vNotif' sequence. It is good to do it
5791 before resuming inferior, because inferior was stopped and no RSP
5792 traffic at that moment. */
6efcd9a8 5793 if (!target_is_non_stop_p ())
5965e028 5794 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 5795
3a00c802
PA
5796 rs->last_resume_exec_dir = execution_direction;
5797
7b68ffbb
PA
5798 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
5799 if (!remote_resume_with_vcont (ptid, step, siggnal))
5800 remote_resume_with_hc (ops, ptid, step, siggnal);
43ff13b4 5801
2acceee2 5802 /* We are about to start executing the inferior, let's register it
0df8b418
MS
5803 with the event loop. NOTE: this is the one place where all the
5804 execution commands end up. We could alternatively do this in each
23860348 5805 of the execution commands in infcmd.c. */
2acceee2
JM
5806 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5807 into infcmd.c in order to allow inferior function calls to work
23860348 5808 NOT asynchronously. */
362646f5 5809 if (target_can_async_p ())
6a3753b3 5810 target_async (1);
e24a49d8
PA
5811
5812 /* We've just told the target to resume. The remote server will
5813 wait for the inferior to stop, and then send a stop reply. In
5814 the mean time, we can't start another command/query ourselves
74531fed
PA
5815 because the stub wouldn't be ready to process it. This applies
5816 only to the base all-stop protocol, however. In non-stop (which
5817 only supports vCont), the stub replies with an "OK", and is
5818 immediate able to process further serial input. */
6efcd9a8 5819 if (!target_is_non_stop_p ())
74531fed 5820 rs->waiting_for_stop_reply = 1;
43ff13b4 5821}
85ad3aaf
PA
5822
5823static void check_pending_events_prevent_wildcard_vcont
5824 (int *may_global_wildcard_vcont);
5825static int is_pending_fork_parent_thread (struct thread_info *thread);
5826
5827/* Private per-inferior info for target remote processes. */
5828
5829struct private_inferior
5830{
5831 /* Whether we can send a wildcard vCont for this process. */
5832 int may_wildcard_vcont;
5833};
5834
5835/* Structure used to track the construction of a vCont packet in the
5836 outgoing packet buffer. This is used to send multiple vCont
5837 packets if we have more actions than would fit a single packet. */
5838
5839struct vcont_builder
5840{
5841 /* Pointer to the first action. P points here if no action has been
5842 appended yet. */
5843 char *first_action;
5844
5845 /* Where the next action will be appended. */
5846 char *p;
5847
5848 /* The end of the buffer. Must never write past this. */
5849 char *endp;
5850};
5851
5852/* Prepare the outgoing buffer for a new vCont packet. */
5853
5854static void
5855vcont_builder_restart (struct vcont_builder *builder)
5856{
5857 struct remote_state *rs = get_remote_state ();
5858
5859 builder->p = rs->buf;
5860 builder->endp = rs->buf + get_remote_packet_size ();
5861 builder->p += xsnprintf (builder->p, builder->endp - builder->p, "vCont");
5862 builder->first_action = builder->p;
5863}
5864
5865/* If the vCont packet being built has any action, send it to the
5866 remote end. */
5867
5868static void
5869vcont_builder_flush (struct vcont_builder *builder)
5870{
5871 struct remote_state *rs;
5872
5873 if (builder->p == builder->first_action)
5874 return;
5875
5876 rs = get_remote_state ();
5877 putpkt (rs->buf);
5878 getpkt (&rs->buf, &rs->buf_size, 0);
5879 if (strcmp (rs->buf, "OK") != 0)
5880 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5881}
5882
5883/* The largest action is range-stepping, with its two addresses. This
5884 is more than sufficient. If a new, bigger action is created, it'll
5885 quickly trigger a failed assertion in append_resumption (and we'll
5886 just bump this). */
5887#define MAX_ACTION_SIZE 200
5888
5889/* Append a new vCont action in the outgoing packet being built. If
5890 the action doesn't fit the packet along with previous actions, push
5891 what we've got so far to the remote end and start over a new vCont
5892 packet (with the new action). */
5893
5894static void
5895vcont_builder_push_action (struct vcont_builder *builder,
5896 ptid_t ptid, int step, enum gdb_signal siggnal)
5897{
5898 char buf[MAX_ACTION_SIZE + 1];
5899 char *endp;
5900 size_t rsize;
5901
5902 endp = append_resumption (buf, buf + sizeof (buf),
5903 ptid, step, siggnal);
5904
5905 /* Check whether this new action would fit in the vCont packet along
5906 with previous actions. If not, send what we've got so far and
5907 start a new vCont packet. */
5908 rsize = endp - buf;
5909 if (rsize > builder->endp - builder->p)
5910 {
5911 vcont_builder_flush (builder);
5912 vcont_builder_restart (builder);
5913
5914 /* Should now fit. */
5915 gdb_assert (rsize <= builder->endp - builder->p);
5916 }
5917
5918 memcpy (builder->p, buf, rsize);
5919 builder->p += rsize;
5920 *builder->p = '\0';
5921}
5922
5923/* to_commit_resume implementation. */
5924
5925static void
5926remote_commit_resume (struct target_ops *ops)
5927{
5928 struct remote_state *rs = get_remote_state ();
5929 struct inferior *inf;
5930 struct thread_info *tp;
5931 int any_process_wildcard;
5932 int may_global_wildcard_vcont;
5933 struct vcont_builder vcont_builder;
5934
5935 /* If connected in all-stop mode, we'd send the remote resume
5936 request directly from remote_resume. Likewise if
5937 reverse-debugging, as there are no defined vCont actions for
5938 reverse execution. */
5939 if (!target_is_non_stop_p () || execution_direction == EXEC_REVERSE)
5940 return;
5941
5942 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
5943 instead of resuming all threads of each process individually.
5944 However, if any thread of a process must remain halted, we can't
5945 send wildcard resumes and must send one action per thread.
5946
5947 Care must be taken to not resume threads/processes the server
5948 side already told us are stopped, but the core doesn't know about
5949 yet, because the events are still in the vStopped notification
5950 queue. For example:
5951
5952 #1 => vCont s:p1.1;c
5953 #2 <= OK
5954 #3 <= %Stopped T05 p1.1
5955 #4 => vStopped
5956 #5 <= T05 p1.2
5957 #6 => vStopped
5958 #7 <= OK
5959 #8 (infrun handles the stop for p1.1 and continues stepping)
5960 #9 => vCont s:p1.1;c
5961
5962 The last vCont above would resume thread p1.2 by mistake, because
5963 the server has no idea that the event for p1.2 had not been
5964 handled yet.
5965
5966 The server side must similarly ignore resume actions for the
5967 thread that has a pending %Stopped notification (and any other
5968 threads with events pending), until GDB acks the notification
5969 with vStopped. Otherwise, e.g., the following case is
5970 mishandled:
5971
5972 #1 => g (or any other packet)
5973 #2 <= [registers]
5974 #3 <= %Stopped T05 p1.2
5975 #4 => vCont s:p1.1;c
5976 #5 <= OK
5977
5978 Above, the server must not resume thread p1.2. GDB can't know
5979 that p1.2 stopped until it acks the %Stopped notification, and
5980 since from GDB's perspective all threads should be running, it
5981 sends a "c" action.
5982
5983 Finally, special care must also be given to handling fork/vfork
5984 events. A (v)fork event actually tells us that two processes
5985 stopped -- the parent and the child. Until we follow the fork,
5986 we must not resume the child. Therefore, if we have a pending
5987 fork follow, we must not send a global wildcard resume action
5988 (vCont;c). We can still send process-wide wildcards though. */
5989
5990 /* Start by assuming a global wildcard (vCont;c) is possible. */
5991 may_global_wildcard_vcont = 1;
5992
5993 /* And assume every process is individually wildcard-able too. */
5994 ALL_NON_EXITED_INFERIORS (inf)
5995 {
5996 if (inf->priv == NULL)
5997 inf->priv = XNEW (struct private_inferior);
5998 inf->priv->may_wildcard_vcont = 1;
5999 }
6000
6001 /* Check for any pending events (not reported or processed yet) and
6002 disable process and global wildcard resumes appropriately. */
6003 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
6004
6005 ALL_NON_EXITED_THREADS (tp)
6006 {
6007 /* If a thread of a process is not meant to be resumed, then we
6008 can't wildcard that process. */
6009 if (!tp->executing)
6010 {
6011 tp->inf->priv->may_wildcard_vcont = 0;
6012
6013 /* And if we can't wildcard a process, we can't wildcard
6014 everything either. */
6015 may_global_wildcard_vcont = 0;
6016 continue;
6017 }
6018
6019 /* If a thread is the parent of an unfollowed fork, then we
6020 can't do a global wildcard, as that would resume the fork
6021 child. */
6022 if (is_pending_fork_parent_thread (tp))
6023 may_global_wildcard_vcont = 0;
6024 }
6025
6026 /* Now let's build the vCont packet(s). Actions must be appended
6027 from narrower to wider scopes (thread -> process -> global). If
6028 we end up with too many actions for a single packet vcont_builder
6029 flushes the current vCont packet to the remote side and starts a
6030 new one. */
6031 vcont_builder_restart (&vcont_builder);
6032
6033 /* Threads first. */
6034 ALL_NON_EXITED_THREADS (tp)
6035 {
6036 struct private_thread_info *remote_thr = tp->priv;
6037
6038 if (!tp->executing || remote_thr->vcont_resumed)
6039 continue;
6040
6041 gdb_assert (!thread_is_in_step_over_chain (tp));
6042
6043 if (!remote_thr->last_resume_step
6044 && remote_thr->last_resume_sig == GDB_SIGNAL_0
6045 && tp->inf->priv->may_wildcard_vcont)
6046 {
6047 /* We'll send a wildcard resume instead. */
6048 remote_thr->vcont_resumed = 1;
6049 continue;
6050 }
6051
6052 vcont_builder_push_action (&vcont_builder, tp->ptid,
6053 remote_thr->last_resume_step,
6054 remote_thr->last_resume_sig);
6055 remote_thr->vcont_resumed = 1;
6056 }
6057
6058 /* Now check whether we can send any process-wide wildcard. This is
6059 to avoid sending a global wildcard in the case nothing is
6060 supposed to be resumed. */
6061 any_process_wildcard = 0;
6062
6063 ALL_NON_EXITED_INFERIORS (inf)
6064 {
6065 if (inf->priv->may_wildcard_vcont)
6066 {
6067 any_process_wildcard = 1;
6068 break;
6069 }
6070 }
6071
6072 if (any_process_wildcard)
6073 {
6074 /* If all processes are wildcard-able, then send a single "c"
6075 action, otherwise, send an "all (-1) threads of process"
6076 continue action for each running process, if any. */
6077 if (may_global_wildcard_vcont)
6078 {
6079 vcont_builder_push_action (&vcont_builder, minus_one_ptid,
6080 0, GDB_SIGNAL_0);
6081 }
6082 else
6083 {
6084 ALL_NON_EXITED_INFERIORS (inf)
6085 {
6086 if (inf->priv->may_wildcard_vcont)
6087 {
6088 vcont_builder_push_action (&vcont_builder,
6089 pid_to_ptid (inf->pid),
6090 0, GDB_SIGNAL_0);
6091 }
6092 }
6093 }
6094 }
6095
6096 vcont_builder_flush (&vcont_builder);
6097}
6098
c906108c 6099\f
43ff13b4 6100
74531fed
PA
6101/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6102 thread, all threads of a remote process, or all threads of all
6103 processes. */
6104
6105static void
6106remote_stop_ns (ptid_t ptid)
6107{
6108 struct remote_state *rs = get_remote_state ();
6109 char *p = rs->buf;
6110 char *endp = rs->buf + get_remote_packet_size ();
74531fed 6111
4082afcc 6112 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
74531fed
PA
6113 remote_vcont_probe (rs);
6114
d458bd84 6115 if (!rs->supports_vCont.t)
74531fed
PA
6116 error (_("Remote server does not support stopping threads"));
6117
f91d3df5
PA
6118 if (ptid_equal (ptid, minus_one_ptid)
6119 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
6120 p += xsnprintf (p, endp - p, "vCont;t");
6121 else
6122 {
6123 ptid_t nptid;
6124
74531fed
PA
6125 p += xsnprintf (p, endp - p, "vCont;t:");
6126
6127 if (ptid_is_pid (ptid))
6128 /* All (-1) threads of process. */
ba348170 6129 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
74531fed
PA
6130 else
6131 {
6132 /* Small optimization: if we already have a stop reply for
6133 this thread, no use in telling the stub we want this
6134 stopped. */
6135 if (peek_stop_reply (ptid))
6136 return;
6137
6138 nptid = ptid;
6139 }
6140
a9cbf802 6141 write_ptid (p, endp, nptid);
74531fed
PA
6142 }
6143
6144 /* In non-stop, we get an immediate OK reply. The stop reply will
6145 come in asynchronously by notification. */
6146 putpkt (rs->buf);
6147 getpkt (&rs->buf, &rs->buf_size, 0);
6148 if (strcmp (rs->buf, "OK") != 0)
6149 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6150}
6151
bfedc46a
PA
6152/* All-stop version of target_interrupt. Sends a break or a ^C to
6153 interrupt the remote target. It is undefined which thread of which
6154 process reports the interrupt. */
74531fed
PA
6155
6156static void
de979965 6157remote_interrupt_as (void)
74531fed
PA
6158{
6159 struct remote_state *rs = get_remote_state ();
6160
3a29589a
DJ
6161 rs->ctrlc_pending_p = 1;
6162
74531fed
PA
6163 /* If the inferior is stopped already, but the core didn't know
6164 about it yet, just ignore the request. The cached wait status
6165 will be collected in remote_wait. */
6166 if (rs->cached_wait_status)
6167 return;
6168
9a7071a8
JB
6169 /* Send interrupt_sequence to remote target. */
6170 send_interrupt_sequence ();
74531fed
PA
6171}
6172
de979965
PA
6173/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6174 the remote target. It is undefined which thread of which process
e42de8c7
PA
6175 reports the interrupt. Throws an error if the packet is not
6176 supported by the server. */
de979965 6177
e42de8c7 6178static void
de979965
PA
6179remote_interrupt_ns (void)
6180{
6181 struct remote_state *rs = get_remote_state ();
6182 char *p = rs->buf;
6183 char *endp = rs->buf + get_remote_packet_size ();
6184
6185 xsnprintf (p, endp - p, "vCtrlC");
6186
6187 /* In non-stop, we get an immediate OK reply. The stop reply will
6188 come in asynchronously by notification. */
6189 putpkt (rs->buf);
6190 getpkt (&rs->buf, &rs->buf_size, 0);
6191
6192 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6193 {
6194 case PACKET_OK:
6195 break;
6196 case PACKET_UNKNOWN:
e42de8c7 6197 error (_("No support for interrupting the remote target."));
de979965
PA
6198 case PACKET_ERROR:
6199 error (_("Interrupting target failed: %s"), rs->buf);
6200 }
de979965
PA
6201}
6202
bfedc46a 6203/* Implement the to_stop function for the remote targets. */
74531fed 6204
c906108c 6205static void
1eab8a48 6206remote_stop (struct target_ops *self, ptid_t ptid)
c906108c 6207{
7a292a7a 6208 if (remote_debug)
0f71a2f6 6209 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6210
6efcd9a8 6211 if (target_is_non_stop_p ())
74531fed 6212 remote_stop_ns (ptid);
c906108c 6213 else
bfedc46a
PA
6214 {
6215 /* We don't currently have a way to transparently pause the
6216 remote target in all-stop mode. Interrupt it instead. */
de979965 6217 remote_interrupt_as ();
bfedc46a
PA
6218 }
6219}
6220
6221/* Implement the to_interrupt function for the remote targets. */
6222
6223static void
6224remote_interrupt (struct target_ops *self, ptid_t ptid)
6225{
e42de8c7
PA
6226 struct remote_state *rs = get_remote_state ();
6227
bfedc46a
PA
6228 if (remote_debug)
6229 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6230
e42de8c7
PA
6231 if (target_is_non_stop_p ())
6232 remote_interrupt_ns ();
bfedc46a 6233 else
e42de8c7 6234 remote_interrupt_as ();
c906108c
SS
6235}
6236
93692b58
PA
6237/* Implement the to_pass_ctrlc function for the remote targets. */
6238
6239static void
6240remote_pass_ctrlc (struct target_ops *self)
6241{
6242 struct remote_state *rs = get_remote_state ();
6243
6244 if (remote_debug)
6245 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6246
6247 /* If we're starting up, we're not fully synced yet. Quit
6248 immediately. */
6249 if (rs->starting_up)
6250 quit ();
6251 /* If ^C has already been sent once, offer to disconnect. */
6252 else if (rs->ctrlc_pending_p)
6253 interrupt_query ();
6254 else
6255 target_interrupt (inferior_ptid);
6256}
6257
c906108c
SS
6258/* Ask the user what to do when an interrupt is received. */
6259
6260static void
fba45db2 6261interrupt_query (void)
c906108c 6262{
abc56d60 6263 struct remote_state *rs = get_remote_state ();
c906108c 6264
abc56d60 6265 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6266 {
abc56d60
PA
6267 if (query (_("The target is not responding to interrupt requests.\n"
6268 "Stop debugging it? ")))
74531fed 6269 {
78a095c3 6270 remote_unpush_target ();
abc56d60 6271 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6272 }
6273 }
abc56d60
PA
6274 else
6275 {
6276 if (query (_("Interrupted while waiting for the program.\n"
6277 "Give up waiting? ")))
6278 quit ();
6279 }
c906108c
SS
6280}
6281
6426a772
JM
6282/* Enable/disable target terminal ownership. Most targets can use
6283 terminal groups to control terminal ownership. Remote targets are
6284 different in that explicit transfer of ownership to/from GDB/target
23860348 6285 is required. */
6426a772
JM
6286
6287static void
d2f640d4 6288remote_terminal_inferior (struct target_ops *self)
6426a772 6289{
6426a772
JM
6290 /* NOTE: At this point we could also register our selves as the
6291 recipient of all input. Any characters typed could then be
23860348 6292 passed on down to the target. */
6426a772
JM
6293}
6294
6295static void
e3594fd1 6296remote_terminal_ours (struct target_ops *self)
6426a772 6297{
6426a772
JM
6298}
6299
176a6961 6300static void
917317f4 6301remote_console_output (char *msg)
c906108c
SS
6302{
6303 char *p;
6304
c5aa993b 6305 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6306 {
6307 char tb[2];
6308 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6309
c906108c
SS
6310 tb[0] = c;
6311 tb[1] = 0;
43ff13b4 6312 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6313 }
00db5b94
PA
6314 gdb_flush (gdb_stdtarg);
6315}
74531fed 6316
74531fed
PA
6317DEF_VEC_O(cached_reg_t);
6318
722247f1 6319typedef struct stop_reply
74531fed 6320{
722247f1 6321 struct notif_event base;
74531fed 6322
722247f1 6323 /* The identifier of the thread about this event */
74531fed
PA
6324 ptid_t ptid;
6325
340e3c99 6326 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6327 connection, represented by a remote_state object, is closed,
6328 all the associated stop_reply events should be released. */
6329 struct remote_state *rs;
6330
74531fed
PA
6331 struct target_waitstatus ws;
6332
5cd63fda
PA
6333 /* The architecture associated with the expedited registers. */
6334 gdbarch *arch;
6335
15148d6a
PA
6336 /* Expedited registers. This makes remote debugging a bit more
6337 efficient for those targets that provide critical registers as
6338 part of their normal status mechanism (as another roundtrip to
6339 fetch them is avoided). */
74531fed
PA
6340 VEC(cached_reg_t) *regcache;
6341
f7e6eed5
PA
6342 enum target_stop_reason stop_reason;
6343
74531fed
PA
6344 CORE_ADDR watch_data_address;
6345
dc146f7c 6346 int core;
722247f1 6347} *stop_reply_p;
a744cf53 6348
722247f1
YQ
6349DECLARE_QUEUE_P (stop_reply_p);
6350DEFINE_QUEUE_P (stop_reply_p);
6351/* The list of already fetched and acknowledged stop events. This
6352 queue is used for notification Stop, and other notifications
6353 don't need queue for their events, because the notification events
6354 of Stop can't be consumed immediately, so that events should be
6355 queued first, and be consumed by remote_wait_{ns,as} one per
6356 time. Other notifications can consume their events immediately,
6357 so queue is not needed for them. */
6358static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
6359
6360static void
6361stop_reply_xfree (struct stop_reply *r)
6362{
f48ff2a7 6363 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6364}
6365
221e1a37
PA
6366/* Return the length of the stop reply queue. */
6367
6368static int
6369stop_reply_queue_length (void)
6370{
6371 return QUEUE_length (stop_reply_p, stop_reply_queue);
6372}
6373
722247f1
YQ
6374static void
6375remote_notif_stop_parse (struct notif_client *self, char *buf,
6376 struct notif_event *event)
6377{
6378 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6379}
6380
6381static void
6382remote_notif_stop_ack (struct notif_client *self, char *buf,
6383 struct notif_event *event)
6384{
6385 struct stop_reply *stop_reply = (struct stop_reply *) event;
6386
6387 /* acknowledge */
f5c4fcd9 6388 putpkt (self->ack_command);
722247f1
YQ
6389
6390 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6391 /* We got an unknown stop reply. */
6392 error (_("Unknown stop reply"));
6393
6394 push_stop_reply (stop_reply);
6395}
6396
6397static int
6398remote_notif_stop_can_get_pending_events (struct notif_client *self)
6399{
6400 /* We can't get pending events in remote_notif_process for
6401 notification stop, and we have to do this in remote_wait_ns
6402 instead. If we fetch all queued events from stub, remote stub
6403 may exit and we have no chance to process them back in
6404 remote_wait_ns. */
6405 mark_async_event_handler (remote_async_inferior_event_token);
6406 return 0;
6407}
6408
6409static void
6410stop_reply_dtr (struct notif_event *event)
6411{
6412 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6413 cached_reg_t *reg;
6414 int ix;
6415
6416 for (ix = 0;
6417 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6418 ix++)
6419 xfree (reg->data);
722247f1
YQ
6420
6421 VEC_free (cached_reg_t, r->regcache);
6422}
6423
6424static struct notif_event *
6425remote_notif_stop_alloc_reply (void)
6426{
8d749320
SM
6427 /* We cast to a pointer to the "base class". */
6428 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6429
6430 r->dtr = stop_reply_dtr;
6431
6432 return r;
6433}
6434
6435/* A client of notification Stop. */
6436
6437struct notif_client notif_client_stop =
6438{
6439 "Stop",
6440 "vStopped",
6441 remote_notif_stop_parse,
6442 remote_notif_stop_ack,
6443 remote_notif_stop_can_get_pending_events,
6444 remote_notif_stop_alloc_reply,
f48ff2a7 6445 REMOTE_NOTIF_STOP,
722247f1
YQ
6446};
6447
6448/* A parameter to pass data in and out. */
6449
6450struct queue_iter_param
6451{
6452 void *input;
6453 struct stop_reply *output;
6454};
6455
85ad3aaf 6456/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6457 the pid of the process that owns the threads we want to check, or
6458 -1 if we want to check all threads. */
6459
6460static int
6461is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6462 ptid_t thread_ptid)
6463{
6464 if (ws->kind == TARGET_WAITKIND_FORKED
6465 || ws->kind == TARGET_WAITKIND_VFORKED)
6466 {
6467 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6468 return 1;
6469 }
6470
6471 return 0;
6472}
6473
85ad3aaf
PA
6474/* Return the thread's pending status used to determine whether the
6475 thread is a fork parent stopped at a fork event. */
6476
6477static struct target_waitstatus *
6478thread_pending_fork_status (struct thread_info *thread)
6479{
6480 if (thread->suspend.waitstatus_pending_p)
6481 return &thread->suspend.waitstatus;
6482 else
6483 return &thread->pending_follow;
6484}
6485
6486/* Determine if THREAD is a pending fork parent thread. */
6487
6488static int
6489is_pending_fork_parent_thread (struct thread_info *thread)
6490{
6491 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6492 int pid = -1;
6493
6494 return is_pending_fork_parent (ws, pid, thread->ptid);
6495}
6496
cbb8991c
DB
6497/* Check whether EVENT is a fork event, and if it is, remove the
6498 fork child from the context list passed in DATA. */
6499
6500static int
6501remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6502 QUEUE_ITER (stop_reply_p) *iter,
6503 stop_reply_p event,
6504 void *data)
6505{
19ba03f4
SM
6506 struct queue_iter_param *param = (struct queue_iter_param *) data;
6507 struct threads_listing_context *context
6508 = (struct threads_listing_context *) param->input;
cbb8991c
DB
6509
6510 if (event->ws.kind == TARGET_WAITKIND_FORKED
65706a29
PA
6511 || event->ws.kind == TARGET_WAITKIND_VFORKED
6512 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6513 threads_listing_context_remove (&event->ws, context);
cbb8991c
DB
6514
6515 return 1;
6516}
6517
6518/* If CONTEXT contains any fork child threads that have not been
6519 reported yet, remove them from the CONTEXT list. If such a
6520 thread exists it is because we are stopped at a fork catchpoint
6521 and have not yet called follow_fork, which will set up the
6522 host-side data structures for the new process. */
6523
6524static void
6525remove_new_fork_children (struct threads_listing_context *context)
6526{
6527 struct thread_info * thread;
6528 int pid = -1;
6529 struct notif_client *notif = &notif_client_stop;
6530 struct queue_iter_param param;
6531
6532 /* For any threads stopped at a fork event, remove the corresponding
6533 fork child threads from the CONTEXT list. */
6534 ALL_NON_EXITED_THREADS (thread)
6535 {
85ad3aaf 6536 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6537
6538 if (is_pending_fork_parent (ws, pid, thread->ptid))
6539 {
6540 threads_listing_context_remove (ws, context);
6541 }
6542 }
6543
6544 /* Check for any pending fork events (not reported or processed yet)
6545 in process PID and remove those fork child threads from the
6546 CONTEXT list as well. */
6547 remote_notif_get_pending_events (notif);
6548 param.input = context;
6549 param.output = NULL;
6550 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6551 remove_child_of_pending_fork, &param);
6552}
6553
85ad3aaf
PA
6554/* Check whether EVENT would prevent a global or process wildcard
6555 vCont action. */
6556
6557static int
6558check_pending_event_prevents_wildcard_vcont_callback
6559 (QUEUE (stop_reply_p) *q,
6560 QUEUE_ITER (stop_reply_p) *iter,
6561 stop_reply_p event,
6562 void *data)
6563{
6564 struct inferior *inf;
6565 int *may_global_wildcard_vcont = (int *) data;
6566
6567 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6568 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6569 return 1;
6570
6571 if (event->ws.kind == TARGET_WAITKIND_FORKED
6572 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6573 *may_global_wildcard_vcont = 0;
6574
6575 inf = find_inferior_ptid (event->ptid);
6576
6577 /* This may be the first time we heard about this process.
6578 Regardless, we must not do a global wildcard resume, otherwise
6579 we'd resume this process too. */
6580 *may_global_wildcard_vcont = 0;
6581 if (inf != NULL)
6582 inf->priv->may_wildcard_vcont = 0;
6583
6584 return 1;
6585}
6586
6587/* Check whether any event pending in the vStopped queue would prevent
6588 a global or process wildcard vCont action. Clear
6589 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6590 and clear the event inferior's may_wildcard_vcont flag if we can't
6591 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6592
6593static void
6594check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard)
6595{
6596 struct notif_client *notif = &notif_client_stop;
6597
6598 remote_notif_get_pending_events (notif);
6599 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6600 check_pending_event_prevents_wildcard_vcont_callback,
6601 may_global_wildcard);
6602}
6603
f48ff2a7
YQ
6604/* Remove stop replies in the queue if its pid is equal to the given
6605 inferior's pid. */
722247f1
YQ
6606
6607static int
f48ff2a7
YQ
6608remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6609 QUEUE_ITER (stop_reply_p) *iter,
6610 stop_reply_p event,
6611 void *data)
722247f1 6612{
19ba03f4
SM
6613 struct queue_iter_param *param = (struct queue_iter_param *) data;
6614 struct inferior *inf = (struct inferior *) param->input;
722247f1 6615
f48ff2a7 6616 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
6617 {
6618 stop_reply_xfree (event);
6619 QUEUE_remove_elem (stop_reply_p, q, iter);
6620 }
6621
6622 return 1;
6623}
6624
f48ff2a7 6625/* Discard all pending stop replies of inferior INF. */
c906108c 6626
74531fed 6627static void
5f4cf0bb 6628discard_pending_stop_replies (struct inferior *inf)
c906108c 6629{
722247f1 6630 struct queue_iter_param param;
f48ff2a7
YQ
6631 struct stop_reply *reply;
6632 struct remote_state *rs = get_remote_state ();
6633 struct remote_notif_state *rns = rs->notif_state;
6634
6635 /* This function can be notified when an inferior exists. When the
6636 target is not remote, the notification state is NULL. */
6637 if (rs->remote_desc == NULL)
6638 return;
6639
6640 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 6641
74531fed 6642 /* Discard the in-flight notification. */
f48ff2a7 6643 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 6644 {
722247f1 6645 stop_reply_xfree (reply);
f48ff2a7 6646 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 6647 }
c906108c 6648
722247f1
YQ
6649 param.input = inf;
6650 param.output = NULL;
74531fed
PA
6651 /* Discard the stop replies we have already pulled with
6652 vStopped. */
722247f1 6653 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
6654 remove_stop_reply_for_inferior, &param);
6655}
6656
bcc75809
YQ
6657/* If its remote state is equal to the given remote state,
6658 remove EVENT from the stop reply queue. */
6659
6660static int
6661remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6662 QUEUE_ITER (stop_reply_p) *iter,
6663 stop_reply_p event,
6664 void *data)
6665{
19ba03f4
SM
6666 struct queue_iter_param *param = (struct queue_iter_param *) data;
6667 struct remote_state *rs = (struct remote_state *) param->input;
bcc75809
YQ
6668
6669 if (event->rs == rs)
6670 {
6671 stop_reply_xfree (event);
6672 QUEUE_remove_elem (stop_reply_p, q, iter);
6673 }
6674
6675 return 1;
6676}
6677
6678/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
6679
6680static void
bcc75809 6681discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
6682{
6683 struct queue_iter_param param;
6684
bcc75809 6685 param.input = rs;
f48ff2a7
YQ
6686 param.output = NULL;
6687 /* Discard the stop replies we have already pulled with
6688 vStopped. */
6689 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 6690 remove_stop_reply_of_remote_state, &param);
722247f1 6691}
74531fed 6692
722247f1
YQ
6693/* A parameter to pass data in and out. */
6694
6695static int
6696remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6697 QUEUE_ITER (stop_reply_p) *iter,
6698 stop_reply_p event,
6699 void *data)
6700{
19ba03f4
SM
6701 struct queue_iter_param *param = (struct queue_iter_param *) data;
6702 ptid_t *ptid = (ptid_t *) param->input;
722247f1
YQ
6703
6704 if (ptid_match (event->ptid, *ptid))
6705 {
6706 param->output = event;
6707 QUEUE_remove_elem (stop_reply_p, q, iter);
6708 return 0;
c8e38a49 6709 }
722247f1
YQ
6710
6711 return 1;
74531fed 6712}
43ff13b4 6713
722247f1
YQ
6714/* Remove the first reply in 'stop_reply_queue' which matches
6715 PTID. */
2e9f7625 6716
722247f1
YQ
6717static struct stop_reply *
6718remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 6719{
722247f1
YQ
6720 struct queue_iter_param param;
6721
6722 param.input = &ptid;
6723 param.output = NULL;
6724
6725 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6726 remote_notif_remove_once_on_match, &param);
6727 if (notif_debug)
6728 fprintf_unfiltered (gdb_stdlog,
6729 "notif: discard queued event: 'Stop' in %s\n",
6730 target_pid_to_str (ptid));
a744cf53 6731
722247f1 6732 return param.output;
74531fed 6733}
75c99385 6734
74531fed
PA
6735/* Look for a queued stop reply belonging to PTID. If one is found,
6736 remove it from the queue, and return it. Returns NULL if none is
6737 found. If there are still queued events left to process, tell the
6738 event loop to get back to target_wait soon. */
e24a49d8 6739
74531fed
PA
6740static struct stop_reply *
6741queued_stop_reply (ptid_t ptid)
6742{
722247f1 6743 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 6744
722247f1 6745 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
6746 /* There's still at least an event left. */
6747 mark_async_event_handler (remote_async_inferior_event_token);
6748
722247f1 6749 return r;
74531fed
PA
6750}
6751
6752/* Push a fully parsed stop reply in the stop reply queue. Since we
6753 know that we now have at least one queued event left to pass to the
6754 core side, tell the event loop to get back to target_wait soon. */
6755
6756static void
6757push_stop_reply (struct stop_reply *new_event)
6758{
722247f1 6759 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 6760
722247f1
YQ
6761 if (notif_debug)
6762 fprintf_unfiltered (gdb_stdlog,
6763 "notif: push 'Stop' %s to queue %d\n",
6764 target_pid_to_str (new_event->ptid),
6765 QUEUE_length (stop_reply_p,
6766 stop_reply_queue));
74531fed
PA
6767
6768 mark_async_event_handler (remote_async_inferior_event_token);
6769}
6770
722247f1
YQ
6771static int
6772stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6773 QUEUE_ITER (stop_reply_p) *iter,
6774 struct stop_reply *event,
6775 void *data)
6776{
19ba03f4 6777 ptid_t *ptid = (ptid_t *) data;
722247f1
YQ
6778
6779 return !(ptid_equal (*ptid, event->ptid)
6780 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6781}
6782
74531fed
PA
6783/* Returns true if we have a stop reply for PTID. */
6784
6785static int
6786peek_stop_reply (ptid_t ptid)
6787{
722247f1
YQ
6788 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6789 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
6790}
6791
26d56a93
SL
6792/* Helper for remote_parse_stop_reply. Return nonzero if the substring
6793 starting with P and ending with PEND matches PREFIX. */
6794
6795static int
6796strprefix (const char *p, const char *pend, const char *prefix)
6797{
6798 for ( ; p < pend; p++, prefix++)
6799 if (*p != *prefix)
6800 return 0;
6801 return *prefix == '\0';
6802}
6803
74531fed
PA
6804/* Parse the stop reply in BUF. Either the function succeeds, and the
6805 result is stored in EVENT, or throws an error. */
6806
6807static void
6808remote_parse_stop_reply (char *buf, struct stop_reply *event)
6809{
5cd63fda 6810 remote_arch_state *rsa = NULL;
74531fed 6811 ULONGEST addr;
256642e8 6812 const char *p;
94585166 6813 int skipregs = 0;
74531fed
PA
6814
6815 event->ptid = null_ptid;
bcc75809 6816 event->rs = get_remote_state ();
74531fed
PA
6817 event->ws.kind = TARGET_WAITKIND_IGNORE;
6818 event->ws.value.integer = 0;
f7e6eed5 6819 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 6820 event->regcache = NULL;
dc146f7c 6821 event->core = -1;
74531fed
PA
6822
6823 switch (buf[0])
6824 {
6825 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
6826 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6827 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6828 ss = signal number
6829 n... = register number
6830 r... = register contents
6831 */
6832
6833 p = &buf[3]; /* after Txx */
6834 while (*p)
6835 {
256642e8 6836 const char *p1;
cea39f65 6837 int fieldsize;
43ff13b4 6838
1f10ba14
PA
6839 p1 = strchr (p, ':');
6840 if (p1 == NULL)
6841 error (_("Malformed packet(a) (missing colon): %s\n\
6842Packet: '%s'\n"),
6843 p, buf);
6844 if (p == p1)
6845 error (_("Malformed packet(a) (missing register number): %s\n\
6846Packet: '%s'\n"),
6847 p, buf);
3c3bea1c 6848
1f10ba14
PA
6849 /* Some "registers" are actually extended stop information.
6850 Note if you're adding a new entry here: GDB 7.9 and
6851 earlier assume that all register "numbers" that start
6852 with an hex digit are real register numbers. Make sure
6853 the server only sends such a packet if it knows the
6854 client understands it. */
c8e38a49 6855
26d56a93 6856 if (strprefix (p, p1, "thread"))
1f10ba14 6857 event->ptid = read_ptid (++p1, &p);
82075af2
JS
6858 else if (strprefix (p, p1, "syscall_entry"))
6859 {
6860 ULONGEST sysno;
6861
6862 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6863 p = unpack_varlen_hex (++p1, &sysno);
6864 event->ws.value.syscall_number = (int) sysno;
6865 }
6866 else if (strprefix (p, p1, "syscall_return"))
6867 {
6868 ULONGEST sysno;
6869
6870 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6871 p = unpack_varlen_hex (++p1, &sysno);
6872 event->ws.value.syscall_number = (int) sysno;
6873 }
26d56a93
SL
6874 else if (strprefix (p, p1, "watch")
6875 || strprefix (p, p1, "rwatch")
6876 || strprefix (p, p1, "awatch"))
cea39f65 6877 {
f7e6eed5 6878 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
6879 p = unpack_varlen_hex (++p1, &addr);
6880 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 6881 }
26d56a93 6882 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
6883 {
6884 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6885
6886 /* Make sure the stub doesn't forget to indicate support
6887 with qSupported. */
6888 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6889 error (_("Unexpected swbreak stop reason"));
6890
6891 /* The value part is documented as "must be empty",
6892 though we ignore it, in case we ever decide to make
6893 use of it in a backward compatible way. */
8424cc97 6894 p = strchrnul (p1 + 1, ';');
f7e6eed5 6895 }
26d56a93 6896 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
6897 {
6898 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6899
6900 /* Make sure the stub doesn't forget to indicate support
6901 with qSupported. */
6902 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6903 error (_("Unexpected hwbreak stop reason"));
6904
6905 /* See above. */
8424cc97 6906 p = strchrnul (p1 + 1, ';');
f7e6eed5 6907 }
26d56a93 6908 else if (strprefix (p, p1, "library"))
cea39f65 6909 {
1f10ba14 6910 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 6911 p = strchrnul (p1 + 1, ';');
1f10ba14 6912 }
26d56a93 6913 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
6914 {
6915 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6916 /* p1 will indicate "begin" or "end", but it makes
6917 no difference for now, so ignore it. */
8424cc97 6918 p = strchrnul (p1 + 1, ';');
1f10ba14 6919 }
26d56a93 6920 else if (strprefix (p, p1, "core"))
1f10ba14
PA
6921 {
6922 ULONGEST c;
a744cf53 6923
1f10ba14
PA
6924 p = unpack_varlen_hex (++p1, &c);
6925 event->core = c;
cea39f65 6926 }
26d56a93 6927 else if (strprefix (p, p1, "fork"))
de0d863e
DB
6928 {
6929 event->ws.value.related_pid = read_ptid (++p1, &p);
6930 event->ws.kind = TARGET_WAITKIND_FORKED;
6931 }
26d56a93 6932 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
6933 {
6934 event->ws.value.related_pid = read_ptid (++p1, &p);
6935 event->ws.kind = TARGET_WAITKIND_VFORKED;
6936 }
26d56a93 6937 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
6938 {
6939 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 6940 p = strchrnul (p1 + 1, ';');
c269dbdb 6941 }
6ab24463 6942 else if (strprefix (p, p1, "exec"))
94585166
DB
6943 {
6944 ULONGEST ignored;
6945 char pathname[PATH_MAX];
6946 int pathlen;
6947
6948 /* Determine the length of the execd pathname. */
6949 p = unpack_varlen_hex (++p1, &ignored);
6950 pathlen = (p - p1) / 2;
6951
6952 /* Save the pathname for event reporting and for
6953 the next run command. */
6954 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6955 pathname[pathlen] = '\0';
6956
6957 /* This is freed during event handling. */
6958 event->ws.value.execd_pathname = xstrdup (pathname);
6959 event->ws.kind = TARGET_WAITKIND_EXECD;
6960
6961 /* Skip the registers included in this packet, since
6962 they may be for an architecture different from the
6963 one used by the original program. */
6964 skipregs = 1;
6965 }
65706a29
PA
6966 else if (strprefix (p, p1, "create"))
6967 {
6968 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 6969 p = strchrnul (p1 + 1, ';');
65706a29 6970 }
cea39f65
MS
6971 else
6972 {
1f10ba14 6973 ULONGEST pnum;
256642e8 6974 const char *p_temp;
1f10ba14 6975
94585166
DB
6976 if (skipregs)
6977 {
8424cc97 6978 p = strchrnul (p1 + 1, ';');
94585166
DB
6979 p++;
6980 continue;
6981 }
6982
1f10ba14
PA
6983 /* Maybe a real ``P'' register number. */
6984 p_temp = unpack_varlen_hex (p, &pnum);
6985 /* If the first invalid character is the colon, we got a
6986 register number. Otherwise, it's an unknown stop
6987 reason. */
6988 if (p_temp == p1)
6989 {
5cd63fda
PA
6990 /* If we haven't parsed the event's thread yet, find
6991 it now, in order to find the architecture of the
6992 reported expedited registers. */
6993 if (event->ptid == null_ptid)
6994 {
6995 const char *thr = strstr (p1 + 1, ";thread:");
6996 if (thr != NULL)
6997 event->ptid = read_ptid (thr + strlen (";thread:"),
6998 NULL);
6999 else
7000 event->ptid = magic_null_ptid;
7001 }
7002
7003 if (rsa == NULL)
7004 {
7005 inferior *inf = (event->ptid == null_ptid
7006 ? NULL
7007 : find_inferior_ptid (event->ptid));
7008 /* If this is the first time we learn anything
7009 about this process, skip the registers
7010 included in this packet, since we don't yet
7011 know which architecture to use to parse them.
7012 We'll determine the architecture later when
7013 we process the stop reply and retrieve the
7014 target description, via
7015 remote_notice_new_inferior ->
7016 post_create_inferior. */
7017 if (inf == NULL)
7018 {
7019 p = strchrnul (p1 + 1, ';');
7020 p++;
7021 continue;
7022 }
7023
7024 event->arch = inf->gdbarch;
7025 rsa = get_remote_arch_state (event->arch);
7026 }
7027
7028 packet_reg *reg
7029 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 7030 cached_reg_t cached_reg;
43ff13b4 7031
1f10ba14
PA
7032 if (reg == NULL)
7033 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 7034Packet: '%s'\n"),
1f10ba14 7035 hex_string (pnum), p, buf);
c8e38a49 7036
1f10ba14 7037 cached_reg.num = reg->regnum;
d1dff226 7038 cached_reg.data = (gdb_byte *)
5cd63fda 7039 xmalloc (register_size (event->arch, reg->regnum));
4100683b 7040
1f10ba14
PA
7041 p = p1 + 1;
7042 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 7043 register_size (event->arch, reg->regnum));
1f10ba14 7044 p += 2 * fieldsize;
5cd63fda 7045 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 7046 warning (_("Remote reply is too short: %s"), buf);
74531fed 7047
1f10ba14
PA
7048 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7049 }
7050 else
7051 {
7052 /* Not a number. Silently skip unknown optional
7053 info. */
8424cc97 7054 p = strchrnul (p1 + 1, ';');
1f10ba14 7055 }
cea39f65 7056 }
c8e38a49 7057
cea39f65
MS
7058 if (*p != ';')
7059 error (_("Remote register badly formatted: %s\nhere: %s"),
7060 buf, p);
7061 ++p;
7062 }
5b5596ff
PA
7063
7064 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7065 break;
7066
c8e38a49
PA
7067 /* fall through */
7068 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7069 {
7070 int sig;
7071
7072 event->ws.kind = TARGET_WAITKIND_STOPPED;
7073 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7074 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7075 event->ws.value.sig = (enum gdb_signal) sig;
7076 else
7077 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7078 }
c8e38a49 7079 break;
65706a29
PA
7080 case 'w': /* Thread exited. */
7081 {
256642e8 7082 const char *p;
65706a29
PA
7083 ULONGEST value;
7084
7085 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7086 p = unpack_varlen_hex (&buf[1], &value);
7087 event->ws.value.integer = value;
7088 if (*p != ';')
7089 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7090 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7091 break;
7092 }
c8e38a49
PA
7093 case 'W': /* Target exited. */
7094 case 'X':
7095 {
256642e8 7096 const char *p;
c8e38a49
PA
7097 int pid;
7098 ULONGEST value;
82f73884 7099
c8e38a49
PA
7100 /* GDB used to accept only 2 hex chars here. Stubs should
7101 only send more if they detect GDB supports multi-process
7102 support. */
7103 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7104
c8e38a49
PA
7105 if (buf[0] == 'W')
7106 {
7107 /* The remote process exited. */
74531fed
PA
7108 event->ws.kind = TARGET_WAITKIND_EXITED;
7109 event->ws.value.integer = value;
c8e38a49
PA
7110 }
7111 else
7112 {
7113 /* The remote process exited with a signal. */
74531fed 7114 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7115 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7116 event->ws.value.sig = (enum gdb_signal) value;
7117 else
7118 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7119 }
82f73884 7120
c8e38a49
PA
7121 /* If no process is specified, assume inferior_ptid. */
7122 pid = ptid_get_pid (inferior_ptid);
7123 if (*p == '\0')
7124 ;
7125 else if (*p == ';')
7126 {
7127 p++;
7128
0b24eb2d 7129 if (*p == '\0')
82f73884 7130 ;
61012eef 7131 else if (startswith (p, "process:"))
82f73884 7132 {
c8e38a49 7133 ULONGEST upid;
a744cf53 7134
c8e38a49
PA
7135 p += sizeof ("process:") - 1;
7136 unpack_varlen_hex (p, &upid);
7137 pid = upid;
82f73884
PA
7138 }
7139 else
7140 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7141 }
c8e38a49
PA
7142 else
7143 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
7144 event->ptid = pid_to_ptid (pid);
7145 }
7146 break;
f2faf941
PA
7147 case 'N':
7148 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7149 event->ptid = minus_one_ptid;
7150 break;
74531fed
PA
7151 }
7152
6efcd9a8 7153 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
74531fed
PA
7154 error (_("No process or thread specified in stop reply: %s"), buf);
7155}
7156
722247f1
YQ
7157/* When the stub wants to tell GDB about a new notification reply, it
7158 sends a notification (%Stop, for example). Those can come it at
7159 any time, hence, we have to make sure that any pending
7160 putpkt/getpkt sequence we're making is finished, before querying
7161 the stub for more events with the corresponding ack command
7162 (vStopped, for example). E.g., if we started a vStopped sequence
7163 immediately upon receiving the notification, something like this
7164 could happen:
74531fed
PA
7165
7166 1.1) --> Hg 1
7167 1.2) <-- OK
7168 1.3) --> g
7169 1.4) <-- %Stop
7170 1.5) --> vStopped
7171 1.6) <-- (registers reply to step #1.3)
7172
7173 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7174 query.
7175
796cb314 7176 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7177 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7178 doing whatever we were doing:
7179
7180 2.1) --> Hg 1
7181 2.2) <-- OK
7182 2.3) --> g
7183 2.4) <-- %Stop
7184 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7185 2.5) <-- (registers reply to step #2.3)
7186
7187 Eventualy after step #2.5, we return to the event loop, which
7188 notices there's an event on the
7189 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7190 associated callback --- the function below. At this point, we're
7191 always safe to start a vStopped sequence. :
7192
7193 2.6) --> vStopped
7194 2.7) <-- T05 thread:2
7195 2.8) --> vStopped
7196 2.9) --> OK
7197*/
7198
722247f1
YQ
7199void
7200remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
7201{
7202 struct remote_state *rs = get_remote_state ();
74531fed 7203
f48ff2a7 7204 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7205 {
722247f1
YQ
7206 if (notif_debug)
7207 fprintf_unfiltered (gdb_stdlog,
7208 "notif: process: '%s' ack pending event\n",
7209 nc->name);
74531fed 7210
722247f1 7211 /* acknowledge */
f48ff2a7
YQ
7212 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7213 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7214
7215 while (1)
7216 {
7217 getpkt (&rs->buf, &rs->buf_size, 0);
7218 if (strcmp (rs->buf, "OK") == 0)
7219 break;
7220 else
722247f1 7221 remote_notif_ack (nc, rs->buf);
74531fed
PA
7222 }
7223 }
722247f1
YQ
7224 else
7225 {
7226 if (notif_debug)
7227 fprintf_unfiltered (gdb_stdlog,
7228 "notif: process: '%s' no pending reply\n",
7229 nc->name);
7230 }
74531fed
PA
7231}
7232
74531fed
PA
7233/* Called when it is decided that STOP_REPLY holds the info of the
7234 event that is to be returned to the core. This function always
7235 destroys STOP_REPLY. */
7236
7237static ptid_t
7238process_stop_reply (struct stop_reply *stop_reply,
7239 struct target_waitstatus *status)
7240{
7241 ptid_t ptid;
7242
7243 *status = stop_reply->ws;
7244 ptid = stop_reply->ptid;
7245
7246 /* If no thread/process was reported by the stub, assume the current
7247 inferior. */
7248 if (ptid_equal (ptid, null_ptid))
7249 ptid = inferior_ptid;
7250
5f3563ea 7251 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7252 && status->kind != TARGET_WAITKIND_SIGNALLED
7253 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7254 {
799a2abe 7255 struct private_thread_info *remote_thr;
ee154bee 7256
5f3563ea
PA
7257 /* Expedited registers. */
7258 if (stop_reply->regcache)
7259 {
217f1f79 7260 struct regcache *regcache
5cd63fda 7261 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7262 cached_reg_t *reg;
7263 int ix;
7264
7265 for (ix = 0;
d1dff226 7266 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7267 ix++)
d1dff226 7268 {
217f1f79 7269 regcache_raw_supply (regcache, reg->num, reg->data);
d1dff226
AH
7270 xfree (reg->data);
7271 }
7272
5f3563ea
PA
7273 VEC_free (cached_reg_t, stop_reply->regcache);
7274 }
74531fed 7275
1941c569 7276 remote_notice_new_inferior (ptid, 0);
85ad3aaf 7277 remote_thr = get_private_info_ptid (ptid);
799a2abe
PA
7278 remote_thr->core = stop_reply->core;
7279 remote_thr->stop_reason = stop_reply->stop_reason;
7280 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7281 remote_thr->vcont_resumed = 0;
74531fed
PA
7282 }
7283
74531fed
PA
7284 stop_reply_xfree (stop_reply);
7285 return ptid;
7286}
7287
7288/* The non-stop mode version of target_wait. */
7289
7290static ptid_t
47608cb1 7291remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7292{
7293 struct remote_state *rs = get_remote_state ();
74531fed
PA
7294 struct stop_reply *stop_reply;
7295 int ret;
fee9eda9 7296 int is_notif = 0;
74531fed
PA
7297
7298 /* If in non-stop mode, get out of getpkt even if a
7299 notification is received. */
7300
7301 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7302 0 /* forever */, &is_notif);
74531fed
PA
7303 while (1)
7304 {
fee9eda9 7305 if (ret != -1 && !is_notif)
74531fed
PA
7306 switch (rs->buf[0])
7307 {
7308 case 'E': /* Error of some sort. */
7309 /* We're out of sync with the target now. Did it continue
7310 or not? We can't tell which thread it was in non-stop,
7311 so just ignore this. */
7312 warning (_("Remote failure reply: %s"), rs->buf);
7313 break;
7314 case 'O': /* Console output. */
7315 remote_console_output (rs->buf + 1);
7316 break;
7317 default:
7318 warning (_("Invalid remote reply: %s"), rs->buf);
7319 break;
7320 }
7321
7322 /* Acknowledge a pending stop reply that may have arrived in the
7323 mean time. */
f48ff2a7 7324 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7325 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7326
7327 /* If indeed we noticed a stop reply, we're done. */
7328 stop_reply = queued_stop_reply (ptid);
7329 if (stop_reply != NULL)
7330 return process_stop_reply (stop_reply, status);
7331
47608cb1 7332 /* Still no event. If we're just polling for an event, then
74531fed 7333 return to the event loop. */
47608cb1 7334 if (options & TARGET_WNOHANG)
74531fed
PA
7335 {
7336 status->kind = TARGET_WAITKIND_IGNORE;
7337 return minus_one_ptid;
7338 }
7339
47608cb1 7340 /* Otherwise do a blocking wait. */
74531fed 7341 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7342 1 /* forever */, &is_notif);
74531fed
PA
7343 }
7344}
7345
7346/* Wait until the remote machine stops, then return, storing status in
7347 STATUS just as `wait' would. */
7348
7349static ptid_t
47608cb1 7350remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7351{
7352 struct remote_state *rs = get_remote_state ();
74531fed 7353 ptid_t event_ptid = null_ptid;
cea39f65 7354 char *buf;
74531fed
PA
7355 struct stop_reply *stop_reply;
7356
47608cb1
PA
7357 again:
7358
74531fed
PA
7359 status->kind = TARGET_WAITKIND_IGNORE;
7360 status->value.integer = 0;
7361
7362 stop_reply = queued_stop_reply (ptid);
7363 if (stop_reply != NULL)
7364 return process_stop_reply (stop_reply, status);
7365
7366 if (rs->cached_wait_status)
7367 /* Use the cached wait status, but only once. */
7368 rs->cached_wait_status = 0;
7369 else
7370 {
7371 int ret;
722247f1 7372 int is_notif;
567420d1
PA
7373 int forever = ((options & TARGET_WNOHANG) == 0
7374 && wait_forever_enabled_p);
7375
7376 if (!rs->waiting_for_stop_reply)
7377 {
7378 status->kind = TARGET_WAITKIND_NO_RESUMED;
7379 return minus_one_ptid;
7380 }
74531fed 7381
74531fed
PA
7382 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7383 _never_ wait for ever -> test on target_is_async_p().
7384 However, before we do that we need to ensure that the caller
7385 knows how to take the target into/out of async mode. */
722247f1 7386 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 7387 forever, &is_notif);
722247f1
YQ
7388
7389 /* GDB gets a notification. Return to core as this event is
7390 not interesting. */
7391 if (ret != -1 && is_notif)
7392 return minus_one_ptid;
567420d1
PA
7393
7394 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7395 return minus_one_ptid;
74531fed
PA
7396 }
7397
7398 buf = rs->buf;
7399
3a29589a
DJ
7400 /* Assume that the target has acknowledged Ctrl-C unless we receive
7401 an 'F' or 'O' packet. */
7402 if (buf[0] != 'F' && buf[0] != 'O')
7403 rs->ctrlc_pending_p = 0;
7404
74531fed
PA
7405 switch (buf[0])
7406 {
7407 case 'E': /* Error of some sort. */
7408 /* We're out of sync with the target now. Did it continue or
7409 not? Not is more likely, so report a stop. */
29090fb6
LM
7410 rs->waiting_for_stop_reply = 0;
7411
74531fed
PA
7412 warning (_("Remote failure reply: %s"), buf);
7413 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7414 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7415 break;
7416 case 'F': /* File-I/O request. */
e42e5352
YQ
7417 /* GDB may access the inferior memory while handling the File-I/O
7418 request, but we don't want GDB accessing memory while waiting
7419 for a stop reply. See the comments in putpkt_binary. Set
7420 waiting_for_stop_reply to 0 temporarily. */
7421 rs->waiting_for_stop_reply = 0;
3a29589a
DJ
7422 remote_fileio_request (buf, rs->ctrlc_pending_p);
7423 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7424 /* GDB handled the File-I/O request, and the target is running
7425 again. Keep waiting for events. */
7426 rs->waiting_for_stop_reply = 1;
74531fed 7427 break;
f2faf941 7428 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7429 {
29090fb6
LM
7430 struct stop_reply *stop_reply;
7431
7432 /* There is a stop reply to handle. */
7433 rs->waiting_for_stop_reply = 0;
7434
7435 stop_reply
722247f1
YQ
7436 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7437 rs->buf);
74531fed 7438
74531fed 7439 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7440 break;
7441 }
7442 case 'O': /* Console output. */
7443 remote_console_output (buf + 1);
c8e38a49
PA
7444 break;
7445 case '\0':
b73be471 7446 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7447 {
7448 /* Zero length reply means that we tried 'S' or 'C' and the
7449 remote system doesn't support it. */
223ffa71 7450 target_terminal::ours_for_output ();
c8e38a49
PA
7451 printf_filtered
7452 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7453 gdb_signal_to_name (rs->last_sent_signal));
7454 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7455 target_terminal::inferior ();
c8e38a49 7456
f5c4fcd9
TT
7457 strcpy (buf, rs->last_sent_step ? "s" : "c");
7458 putpkt (buf);
c8e38a49 7459 break;
43ff13b4 7460 }
c8e38a49
PA
7461 /* else fallthrough */
7462 default:
7463 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7464 break;
43ff13b4 7465 }
c8e38a49 7466
f2faf941
PA
7467 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7468 return minus_one_ptid;
7469 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7470 {
7471 /* Nothing interesting happened. If we're doing a non-blocking
7472 poll, we're done. Otherwise, go back to waiting. */
7473 if (options & TARGET_WNOHANG)
7474 return minus_one_ptid;
7475 else
7476 goto again;
7477 }
74531fed
PA
7478 else if (status->kind != TARGET_WAITKIND_EXITED
7479 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
7480 {
7481 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 7482 record_currthread (rs, event_ptid);
82f73884
PA
7483 else
7484 event_ptid = inferior_ptid;
43ff13b4 7485 }
74531fed
PA
7486 else
7487 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7488 record_currthread (rs, minus_one_ptid);
79d7f229 7489
82f73884 7490 return event_ptid;
43ff13b4
JM
7491}
7492
74531fed
PA
7493/* Wait until the remote machine stops, then return, storing status in
7494 STATUS just as `wait' would. */
7495
c8e38a49 7496static ptid_t
117de6a9 7497remote_wait (struct target_ops *ops,
47608cb1 7498 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7499{
7500 ptid_t event_ptid;
7501
6efcd9a8 7502 if (target_is_non_stop_p ())
47608cb1 7503 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 7504 else
47608cb1 7505 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 7506
d9d41e78 7507 if (target_is_async_p ())
c8e38a49 7508 {
74531fed
PA
7509 /* If there are are events left in the queue tell the event loop
7510 to return here. */
722247f1 7511 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 7512 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 7513 }
c8e38a49
PA
7514
7515 return event_ptid;
7516}
7517
74ca34ce 7518/* Fetch a single register using a 'p' packet. */
c906108c 7519
b96ec7ac 7520static int
56be3814 7521fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac 7522{
ac7936df 7523 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7524 struct remote_state *rs = get_remote_state ();
2e9f7625 7525 char *buf, *p;
9890e433 7526 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7527 int i;
7528
4082afcc 7529 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7530 return 0;
7531
7532 if (reg->pnum == -1)
7533 return 0;
7534
2e9f7625 7535 p = rs->buf;
fcad0fa4 7536 *p++ = 'p';
74ca34ce 7537 p += hexnumstr (p, reg->pnum);
fcad0fa4 7538 *p++ = '\0';
1f4437a4
MS
7539 putpkt (rs->buf);
7540 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7541
2e9f7625
DJ
7542 buf = rs->buf;
7543
74ca34ce
DJ
7544 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7545 {
7546 case PACKET_OK:
7547 break;
7548 case PACKET_UNKNOWN:
7549 return 0;
7550 case PACKET_ERROR:
27a9c0bf 7551 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7552 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7553 reg->regnum),
7554 buf);
74ca34ce 7555 }
3f9a994c
JB
7556
7557 /* If this register is unfetchable, tell the regcache. */
7558 if (buf[0] == 'x')
8480adf2 7559 {
56be3814 7560 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 7561 return 1;
b96ec7ac 7562 }
b96ec7ac 7563
3f9a994c
JB
7564 /* Otherwise, parse and supply the value. */
7565 p = buf;
7566 i = 0;
7567 while (p[0] != 0)
7568 {
7569 if (p[1] == 0)
74ca34ce 7570 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7571
7572 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7573 p += 2;
7574 }
56be3814 7575 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 7576 return 1;
b96ec7ac
AC
7577}
7578
74ca34ce
DJ
7579/* Fetch the registers included in the target's 'g' packet. */
7580
29709017
DJ
7581static int
7582send_g_packet (void)
c906108c 7583{
d01949b6 7584 struct remote_state *rs = get_remote_state ();
cea39f65 7585 int buf_len;
c906108c 7586
bba74b36 7587 xsnprintf (rs->buf, get_remote_packet_size (), "g");
74ca34ce 7588 remote_send (&rs->buf, &rs->buf_size);
c906108c 7589
29709017
DJ
7590 /* We can get out of synch in various cases. If the first character
7591 in the buffer is not a hex character, assume that has happened
7592 and try to fetch another packet to read. */
7593 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7594 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7595 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7596 && rs->buf[0] != 'x') /* New: unavailable register value. */
7597 {
7598 if (remote_debug)
7599 fprintf_unfiltered (gdb_stdlog,
7600 "Bad register packet; fetching a new packet\n");
7601 getpkt (&rs->buf, &rs->buf_size, 0);
7602 }
7603
74ca34ce
DJ
7604 buf_len = strlen (rs->buf);
7605
7606 /* Sanity check the received packet. */
7607 if (buf_len % 2 != 0)
7608 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
7609
7610 return buf_len / 2;
7611}
7612
7613static void
56be3814 7614process_g_packet (struct regcache *regcache)
29709017 7615{
ac7936df 7616 struct gdbarch *gdbarch = regcache->arch ();
29709017 7617 struct remote_state *rs = get_remote_state ();
5cd63fda 7618 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
29709017
DJ
7619 int i, buf_len;
7620 char *p;
7621 char *regs;
7622
7623 buf_len = strlen (rs->buf);
7624
7625 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7626 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827
SM
7627 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7628 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
74ca34ce
DJ
7629
7630 /* Save the size of the packet sent to us by the target. It is used
7631 as a heuristic when determining the max size of packets that the
7632 target can safely receive. */
7633 if (rsa->actual_register_packet_size == 0)
7634 rsa->actual_register_packet_size = buf_len;
7635
7636 /* If this is smaller than we guessed the 'g' packet would be,
7637 update our records. A 'g' reply that doesn't include a register's
7638 value implies either that the register is not available, or that
7639 the 'p' packet must be used. */
7640 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7641 {
9dc193c3 7642 long sizeof_g_packet = buf_len / 2;
74ca34ce 7643
4a22f64d 7644 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7645 {
9dc193c3
LF
7646 long offset = rsa->regs[i].offset;
7647 long reg_size = register_size (gdbarch, i);
7648
74ca34ce
DJ
7649 if (rsa->regs[i].pnum == -1)
7650 continue;
7651
9dc193c3 7652 if (offset >= sizeof_g_packet)
74ca34ce 7653 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
7654 else if (offset + reg_size > sizeof_g_packet)
7655 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 7656 else
74ca34ce 7657 rsa->regs[i].in_g_packet = 1;
b96ec7ac 7658 }
9dc193c3
LF
7659
7660 /* Looks valid enough, we can assume this is the correct length
7661 for a 'g' packet. It's important not to adjust
7662 rsa->sizeof_g_packet if we have truncated registers otherwise
7663 this "if" won't be run the next time the method is called
7664 with a packet of the same size and one of the internal errors
7665 below will trigger instead. */
7666 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 7667 }
b323314b 7668
224c3ddb 7669 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
7670
7671 /* Unimplemented registers read as all bits zero. */
ea9c271d 7672 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 7673
c906108c
SS
7674 /* Reply describes registers byte by byte, each byte encoded as two
7675 hex characters. Suck them all up, then supply them to the
7676 register cacheing/storage mechanism. */
7677
74ca34ce 7678 p = rs->buf;
ea9c271d 7679 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 7680 {
74ca34ce
DJ
7681 if (p[0] == 0 || p[1] == 0)
7682 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7683 internal_error (__FILE__, __LINE__,
9b20d036 7684 _("unexpected end of 'g' packet reply"));
74ca34ce 7685
c906108c 7686 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 7687 regs[i] = 0; /* 'x' */
c906108c
SS
7688 else
7689 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7690 p += 2;
7691 }
7692
a744cf53
MS
7693 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7694 {
7695 struct packet_reg *r = &rsa->regs[i];
9dc193c3 7696 long reg_size = register_size (gdbarch, i);
a744cf53
MS
7697
7698 if (r->in_g_packet)
7699 {
9dc193c3 7700 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
a744cf53
MS
7701 /* This shouldn't happen - we adjusted in_g_packet above. */
7702 internal_error (__FILE__, __LINE__,
9b20d036 7703 _("unexpected end of 'g' packet reply"));
a744cf53
MS
7704 else if (rs->buf[r->offset * 2] == 'x')
7705 {
7706 gdb_assert (r->offset * 2 < strlen (rs->buf));
7707 /* The register isn't available, mark it as such (at
7708 the same time setting the value to zero). */
7709 regcache_raw_supply (regcache, r->regnum, NULL);
7710 }
7711 else
7712 regcache_raw_supply (regcache, r->regnum,
7713 regs + r->offset);
7714 }
7715 }
c906108c
SS
7716}
7717
29709017 7718static void
56be3814 7719fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
7720{
7721 send_g_packet ();
56be3814 7722 process_g_packet (regcache);
29709017
DJ
7723}
7724
e6e4e701
PA
7725/* Make the remote selected traceframe match GDB's selected
7726 traceframe. */
7727
7728static void
7729set_remote_traceframe (void)
7730{
7731 int newnum;
262e1174 7732 struct remote_state *rs = get_remote_state ();
e6e4e701 7733
262e1174 7734 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
7735 return;
7736
7737 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 7738 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
7739
7740 newnum = target_trace_find (tfind_number,
7741 get_traceframe_number (), 0, 0, NULL);
7742
7743 /* Should not happen. If it does, all bets are off. */
7744 if (newnum != get_traceframe_number ())
7745 warning (_("could not set remote traceframe"));
7746}
7747
74ca34ce 7748static void
28439f5e
PA
7749remote_fetch_registers (struct target_ops *ops,
7750 struct regcache *regcache, int regnum)
74ca34ce 7751{
ac7936df 7752 struct gdbarch *gdbarch = regcache->arch ();
5cd63fda 7753 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
74ca34ce
DJ
7754 int i;
7755
e6e4e701 7756 set_remote_traceframe ();
bcc0c096 7757 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7758
7759 if (regnum >= 0)
7760 {
5cd63fda 7761 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 7762
74ca34ce
DJ
7763 gdb_assert (reg != NULL);
7764
7765 /* If this register might be in the 'g' packet, try that first -
7766 we are likely to read more than one register. If this is the
7767 first 'g' packet, we might be overly optimistic about its
7768 contents, so fall back to 'p'. */
7769 if (reg->in_g_packet)
7770 {
56be3814 7771 fetch_registers_using_g (regcache);
74ca34ce
DJ
7772 if (reg->in_g_packet)
7773 return;
7774 }
7775
56be3814 7776 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
7777 return;
7778
7779 /* This register is not available. */
56be3814 7780 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
7781
7782 return;
7783 }
7784
56be3814 7785 fetch_registers_using_g (regcache);
74ca34ce 7786
5cd63fda 7787 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 7788 if (!rsa->regs[i].in_g_packet)
56be3814 7789 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
7790 {
7791 /* This register is not available. */
56be3814 7792 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
7793 }
7794}
7795
c906108c
SS
7796/* Prepare to store registers. Since we may send them all (using a
7797 'G' request), we have to read out the ones we don't want to change
7798 first. */
7799
c5aa993b 7800static void
f32dbf8c 7801remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 7802{
5cd63fda 7803 remote_arch_state *rsa = get_remote_arch_state (regcache->arch ());
cf0e1e0d 7804 int i;
cf0e1e0d 7805
c906108c 7806 /* Make sure the entire registers array is valid. */
4082afcc 7807 switch (packet_support (PACKET_P))
5a2468f5
JM
7808 {
7809 case PACKET_DISABLE:
7810 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 7811 /* Make sure all the necessary registers are cached. */
ac7936df 7812 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 7813 if (rsa->regs[i].in_g_packet)
8e368124 7814 regcache_raw_update (regcache, rsa->regs[i].regnum);
5a2468f5
JM
7815 break;
7816 case PACKET_ENABLE:
7817 break;
7818 }
7819}
7820
ad10f812 7821/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 7822 packet was not recognized. */
5a2468f5
JM
7823
7824static int
1f4437a4
MS
7825store_register_using_P (const struct regcache *regcache,
7826 struct packet_reg *reg)
5a2468f5 7827{
ac7936df 7828 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 7829 struct remote_state *rs = get_remote_state ();
5a2468f5 7830 /* Try storing a single register. */
6d820c5c 7831 char *buf = rs->buf;
9890e433 7832 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 7833 char *p;
5a2468f5 7834
4082afcc 7835 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
7836 return 0;
7837
7838 if (reg->pnum == -1)
7839 return 0;
7840
ea9c271d 7841 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 7842 p = buf + strlen (buf);
56be3814 7843 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 7844 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
7845 putpkt (rs->buf);
7846 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 7847
74ca34ce
DJ
7848 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7849 {
7850 case PACKET_OK:
7851 return 1;
7852 case PACKET_ERROR:
27a9c0bf
MS
7853 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7854 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
7855 case PACKET_UNKNOWN:
7856 return 0;
7857 default:
7858 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7859 }
c906108c
SS
7860}
7861
23860348
MS
7862/* Store register REGNUM, or all registers if REGNUM == -1, from the
7863 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
7864
7865static void
56be3814 7866store_registers_using_G (const struct regcache *regcache)
c906108c 7867{
d01949b6 7868 struct remote_state *rs = get_remote_state ();
5cd63fda 7869 remote_arch_state *rsa = get_remote_arch_state (regcache->arch ());
cfd77fa1 7870 gdb_byte *regs;
c906108c
SS
7871 char *p;
7872
193cb69f
AC
7873 /* Extract all the registers in the regcache copying them into a
7874 local buffer. */
7875 {
b323314b 7876 int i;
a744cf53 7877
224c3ddb 7878 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 7879 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 7880 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 7881 {
ea9c271d 7882 struct packet_reg *r = &rsa->regs[i];
a744cf53 7883
b323314b 7884 if (r->in_g_packet)
56be3814 7885 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
7886 }
7887 }
c906108c
SS
7888
7889 /* Command describes registers byte by byte,
7890 each byte encoded as two hex characters. */
6d820c5c 7891 p = rs->buf;
193cb69f 7892 *p++ = 'G';
74ca34ce 7893 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
7894 putpkt (rs->buf);
7895 getpkt (&rs->buf, &rs->buf_size, 0);
7896 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
7897 error (_("Could not write registers; remote failure reply '%s'"),
7898 rs->buf);
c906108c 7899}
74ca34ce
DJ
7900
7901/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7902 of the register cache buffer. FIXME: ignores errors. */
7903
7904static void
28439f5e
PA
7905remote_store_registers (struct target_ops *ops,
7906 struct regcache *regcache, int regnum)
74ca34ce 7907{
5cd63fda
PA
7908 struct gdbarch *gdbarch = regcache->arch ();
7909 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
74ca34ce
DJ
7910 int i;
7911
e6e4e701 7912 set_remote_traceframe ();
bcc0c096 7913 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7914
7915 if (regnum >= 0)
7916 {
5cd63fda 7917 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 7918
74ca34ce
DJ
7919 gdb_assert (reg != NULL);
7920
7921 /* Always prefer to store registers using the 'P' packet if
7922 possible; we often change only a small number of registers.
7923 Sometimes we change a larger number; we'd need help from a
7924 higher layer to know to use 'G'. */
56be3814 7925 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
7926 return;
7927
7928 /* For now, don't complain if we have no way to write the
7929 register. GDB loses track of unavailable registers too
7930 easily. Some day, this may be an error. We don't have
0df8b418 7931 any way to read the register, either... */
74ca34ce
DJ
7932 if (!reg->in_g_packet)
7933 return;
7934
56be3814 7935 store_registers_using_G (regcache);
74ca34ce
DJ
7936 return;
7937 }
7938
56be3814 7939 store_registers_using_G (regcache);
74ca34ce 7940
5cd63fda 7941 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 7942 if (!rsa->regs[i].in_g_packet)
56be3814 7943 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
7944 /* See above for why we do not issue an error here. */
7945 continue;
7946}
c906108c
SS
7947\f
7948
7949/* Return the number of hex digits in num. */
7950
7951static int
fba45db2 7952hexnumlen (ULONGEST num)
c906108c
SS
7953{
7954 int i;
7955
7956 for (i = 0; num != 0; i++)
7957 num >>= 4;
7958
325fac50 7959 return std::max (i, 1);
c906108c
SS
7960}
7961
2df3850c 7962/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
7963
7964static int
fba45db2 7965hexnumstr (char *buf, ULONGEST num)
c906108c 7966{
c906108c 7967 int len = hexnumlen (num);
a744cf53 7968
2df3850c
JM
7969 return hexnumnstr (buf, num, len);
7970}
7971
c906108c 7972
2df3850c 7973/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 7974
2df3850c 7975static int
fba45db2 7976hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
7977{
7978 int i;
7979
7980 buf[width] = '\0';
7981
7982 for (i = width - 1; i >= 0; i--)
c906108c 7983 {
c5aa993b 7984 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
7985 num >>= 4;
7986 }
7987
2df3850c 7988 return width;
c906108c
SS
7989}
7990
23860348 7991/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
7992
7993static CORE_ADDR
fba45db2 7994remote_address_masked (CORE_ADDR addr)
c906108c 7995{
883b9c6c 7996 unsigned int address_size = remote_address_size;
a744cf53 7997
911c95a5
UW
7998 /* If "remoteaddresssize" was not set, default to target address size. */
7999 if (!address_size)
f5656ead 8000 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
8001
8002 if (address_size > 0
8003 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
8004 {
8005 /* Only create a mask when that mask can safely be constructed
23860348 8006 in a ULONGEST variable. */
c906108c 8007 ULONGEST mask = 1;
a744cf53 8008
911c95a5 8009 mask = (mask << address_size) - 1;
c906108c
SS
8010 addr &= mask;
8011 }
8012 return addr;
8013}
8014
8015/* Determine whether the remote target supports binary downloading.
8016 This is accomplished by sending a no-op memory write of zero length
8017 to the target at the specified address. It does not suffice to send
23860348
MS
8018 the whole packet, since many stubs strip the eighth bit and
8019 subsequently compute a wrong checksum, which causes real havoc with
8020 remote_write_bytes.
7a292a7a 8021
96baa820 8022 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 8023 clean. In cases like this, the user should clear "remote
23860348 8024 X-packet". */
96baa820 8025
c906108c 8026static void
fba45db2 8027check_binary_download (CORE_ADDR addr)
c906108c 8028{
d01949b6 8029 struct remote_state *rs = get_remote_state ();
24b06219 8030
4082afcc 8031 switch (packet_support (PACKET_X))
c906108c 8032 {
96baa820
JM
8033 case PACKET_DISABLE:
8034 break;
8035 case PACKET_ENABLE:
8036 break;
8037 case PACKET_SUPPORT_UNKNOWN:
8038 {
96baa820 8039 char *p;
802188a7 8040
2e9f7625 8041 p = rs->buf;
96baa820
JM
8042 *p++ = 'X';
8043 p += hexnumstr (p, (ULONGEST) addr);
8044 *p++ = ',';
8045 p += hexnumstr (p, (ULONGEST) 0);
8046 *p++ = ':';
8047 *p = '\0';
802188a7 8048
2e9f7625 8049 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8050 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 8051
2e9f7625 8052 if (rs->buf[0] == '\0')
96baa820
JM
8053 {
8054 if (remote_debug)
8055 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8056 "binary downloading NOT "
8057 "supported by target\n");
444abaca 8058 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8059 }
8060 else
8061 {
8062 if (remote_debug)
8063 fprintf_unfiltered (gdb_stdlog,
64b9b334 8064 "binary downloading supported by target\n");
444abaca 8065 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8066 }
8067 break;
8068 }
c906108c
SS
8069 }
8070}
8071
124e13d9
SM
8072/* Helper function to resize the payload in order to try to get a good
8073 alignment. We try to write an amount of data such that the next write will
8074 start on an address aligned on REMOTE_ALIGN_WRITES. */
8075
8076static int
8077align_for_efficient_write (int todo, CORE_ADDR memaddr)
8078{
8079 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8080}
8081
c906108c
SS
8082/* Write memory data directly to the remote machine.
8083 This does not inform the data cache; the data cache uses this.
a76d924d 8084 HEADER is the starting part of the packet.
c906108c
SS
8085 MEMADDR is the address in the remote memory space.
8086 MYADDR is the address of the buffer in our space.
124e13d9
SM
8087 LEN_UNITS is the number of addressable units to write.
8088 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8089 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8090 should send data as binary ('X'), or hex-encoded ('M').
8091
8092 The function creates packet of the form
8093 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8094
124e13d9 8095 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8096
8097 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8098 are omitted.
8099
9b409511 8100 Return the transferred status, error or OK (an
124e13d9
SM
8101 'enum target_xfer_status' value). Save the number of addressable units
8102 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8103
8104 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8105 exchange between gdb and the stub could look like (?? in place of the
8106 checksum):
8107
8108 -> $m1000,4#??
8109 <- aaaabbbbccccdddd
8110
8111 -> $M1000,3:eeeeffffeeee#??
8112 <- OK
8113
8114 -> $m1000,4#??
8115 <- eeeeffffeeeedddd */
c906108c 8116
9b409511 8117static enum target_xfer_status
a76d924d 8118remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
124e13d9
SM
8119 const gdb_byte *myaddr, ULONGEST len_units,
8120 int unit_size, ULONGEST *xfered_len_units,
8121 char packet_format, int use_length)
c906108c 8122{
6d820c5c 8123 struct remote_state *rs = get_remote_state ();
cfd77fa1 8124 char *p;
a76d924d
DJ
8125 char *plen = NULL;
8126 int plenlen = 0;
124e13d9
SM
8127 int todo_units;
8128 int units_written;
8129 int payload_capacity_bytes;
8130 int payload_length_bytes;
a76d924d
DJ
8131
8132 if (packet_format != 'X' && packet_format != 'M')
8133 internal_error (__FILE__, __LINE__,
9b20d036 8134 _("remote_write_bytes_aux: bad packet format"));
c906108c 8135
124e13d9 8136 if (len_units == 0)
9b409511 8137 return TARGET_XFER_EOF;
b2182ed2 8138
124e13d9 8139 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8140
6d820c5c
DJ
8141 /* The packet buffer will be large enough for the payload;
8142 get_memory_packet_size ensures this. */
a76d924d 8143 rs->buf[0] = '\0';
c906108c 8144
a257b5bb 8145 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8146 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8147
124e13d9 8148 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8149 if (!use_length)
0df8b418 8150 /* The comma won't be used. */
124e13d9
SM
8151 payload_capacity_bytes += 1;
8152 payload_capacity_bytes -= strlen (header);
8153 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8154
a76d924d 8155 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8156
a76d924d
DJ
8157 strcat (rs->buf, header);
8158 p = rs->buf + strlen (header);
8159
8160 /* Compute a best guess of the number of bytes actually transfered. */
8161 if (packet_format == 'X')
c906108c 8162 {
23860348 8163 /* Best guess at number of bytes that will fit. */
325fac50
PA
8164 todo_units = std::min (len_units,
8165 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8166 if (use_length)
124e13d9 8167 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8168 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8169 }
8170 else
8171 {
124e13d9 8172 /* Number of bytes that will fit. */
325fac50
PA
8173 todo_units
8174 = std::min (len_units,
8175 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8176 if (use_length)
124e13d9 8177 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8178 todo_units = std::min (todo_units,
8179 (payload_capacity_bytes / unit_size) / 2);
917317f4 8180 }
a76d924d 8181
124e13d9 8182 if (todo_units <= 0)
3de11b2e 8183 internal_error (__FILE__, __LINE__,
405f8e94 8184 _("minimum packet size too small to write data"));
802188a7 8185
6765f3e5
DJ
8186 /* If we already need another packet, then try to align the end
8187 of this packet to a useful boundary. */
124e13d9
SM
8188 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8189 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8190
a257b5bb 8191 /* Append "<memaddr>". */
917317f4
JM
8192 memaddr = remote_address_masked (memaddr);
8193 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8194
a76d924d
DJ
8195 if (use_length)
8196 {
8197 /* Append ",". */
8198 *p++ = ',';
802188a7 8199
124e13d9
SM
8200 /* Append the length and retain its location and size. It may need to be
8201 adjusted once the packet body has been created. */
a76d924d 8202 plen = p;
124e13d9 8203 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8204 p += plenlen;
8205 }
a257b5bb
AC
8206
8207 /* Append ":". */
917317f4
JM
8208 *p++ = ':';
8209 *p = '\0';
802188a7 8210
a257b5bb 8211 /* Append the packet body. */
a76d924d 8212 if (packet_format == 'X')
917317f4 8213 {
917317f4
JM
8214 /* Binary mode. Send target system values byte by byte, in
8215 increasing byte addresses. Only escape certain critical
8216 characters. */
124e13d9
SM
8217 payload_length_bytes =
8218 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8219 &units_written, payload_capacity_bytes);
6765f3e5 8220
124e13d9 8221 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8222 a second try to keep the end of the packet aligned. Don't do
8223 this if the packet is tiny. */
124e13d9 8224 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8225 {
124e13d9
SM
8226 int new_todo_units;
8227
8228 new_todo_units = align_for_efficient_write (units_written, memaddr);
8229
8230 if (new_todo_units != units_written)
8231 payload_length_bytes =
8232 remote_escape_output (myaddr, new_todo_units, unit_size,
8233 (gdb_byte *) p, &units_written,
8234 payload_capacity_bytes);
6765f3e5
DJ
8235 }
8236
124e13d9
SM
8237 p += payload_length_bytes;
8238 if (use_length && units_written < todo_units)
c906108c 8239 {
802188a7 8240 /* Escape chars have filled up the buffer prematurely,
124e13d9 8241 and we have actually sent fewer units than planned.
917317f4
JM
8242 Fix-up the length field of the packet. Use the same
8243 number of characters as before. */
124e13d9
SM
8244 plen += hexnumnstr (plen, (ULONGEST) units_written,
8245 plenlen);
917317f4 8246 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8247 }
a76d924d
DJ
8248 }
8249 else
8250 {
917317f4
JM
8251 /* Normal mode: Send target system values byte by byte, in
8252 increasing byte addresses. Each byte is encoded as a two hex
8253 value. */
124e13d9
SM
8254 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8255 units_written = todo_units;
c906108c 8256 }
802188a7 8257
2e9f7625 8258 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8259 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8260
2e9f7625 8261 if (rs->buf[0] == 'E')
00d84524 8262 return TARGET_XFER_E_IO;
802188a7 8263
124e13d9
SM
8264 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8265 send fewer units than we'd planned. */
8266 *xfered_len_units = (ULONGEST) units_written;
9b409511 8267 return TARGET_XFER_OK;
c906108c
SS
8268}
8269
a76d924d
DJ
8270/* Write memory data directly to the remote machine.
8271 This does not inform the data cache; the data cache uses this.
8272 MEMADDR is the address in the remote memory space.
8273 MYADDR is the address of the buffer in our space.
8274 LEN is the number of bytes.
8275
9b409511
YQ
8276 Return the transferred status, error or OK (an
8277 'enum target_xfer_status' value). Save the number of bytes
8278 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8279
9b409511
YQ
8280static enum target_xfer_status
8281remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
124e13d9 8282 int unit_size, ULONGEST *xfered_len)
a76d924d 8283{
a121b7c1 8284 const char *packet_format = NULL;
a76d924d
DJ
8285
8286 /* Check whether the target supports binary download. */
8287 check_binary_download (memaddr);
8288
4082afcc 8289 switch (packet_support (PACKET_X))
a76d924d
DJ
8290 {
8291 case PACKET_ENABLE:
8292 packet_format = "X";
8293 break;
8294 case PACKET_DISABLE:
8295 packet_format = "M";
8296 break;
8297 case PACKET_SUPPORT_UNKNOWN:
8298 internal_error (__FILE__, __LINE__,
8299 _("remote_write_bytes: bad internal state"));
8300 default:
8301 internal_error (__FILE__, __LINE__, _("bad switch"));
8302 }
8303
8304 return remote_write_bytes_aux (packet_format,
124e13d9 8305 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8306 packet_format[0], 1);
a76d924d
DJ
8307}
8308
9217e74e
YQ
8309/* Read memory data directly from the remote machine.
8310 This does not use the data cache; the data cache uses this.
8311 MEMADDR is the address in the remote memory space.
8312 MYADDR is the address of the buffer in our space.
124e13d9
SM
8313 LEN_UNITS is the number of addressable memory units to read..
8314 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8315
8316 Return the transferred status, error or OK (an
8317 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8318 transferred in *XFERED_LEN_UNITS.
8319
8320 See the comment of remote_write_bytes_aux for an example of
8321 memory read/write exchange between gdb and the stub. */
9217e74e
YQ
8322
8323static enum target_xfer_status
124e13d9
SM
8324remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
8325 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8326{
8327 struct remote_state *rs = get_remote_state ();
124e13d9 8328 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8329 char *p;
124e13d9
SM
8330 int todo_units;
8331 int decoded_bytes;
9217e74e 8332
124e13d9 8333 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8334 /* The packet buffer will be large enough for the payload;
8335 get_memory_packet_size ensures this. */
8336
124e13d9 8337 /* Number of units that will fit. */
325fac50
PA
8338 todo_units = std::min (len_units,
8339 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8340
8341 /* Construct "m"<memaddr>","<len>". */
8342 memaddr = remote_address_masked (memaddr);
8343 p = rs->buf;
8344 *p++ = 'm';
8345 p += hexnumstr (p, (ULONGEST) memaddr);
8346 *p++ = ',';
124e13d9 8347 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8348 *p = '\0';
8349 putpkt (rs->buf);
8350 getpkt (&rs->buf, &rs->buf_size, 0);
8351 if (rs->buf[0] == 'E'
8352 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8353 && rs->buf[3] == '\0')
8354 return TARGET_XFER_E_IO;
8355 /* Reply describes memory byte by byte, each byte encoded as two hex
8356 characters. */
8357 p = rs->buf;
124e13d9 8358 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8359 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8360 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
9217e74e
YQ
8361 return TARGET_XFER_OK;
8362}
8363
b55fbac4
YQ
8364/* Using the set of read-only target sections of remote, read live
8365 read-only memory.
8acf9577
YQ
8366
8367 For interface/parameters/return description see target.h,
8368 to_xfer_partial. */
8369
8370static enum target_xfer_status
b55fbac4
YQ
8371remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
8372 ULONGEST memaddr, ULONGEST len,
124e13d9 8373 int unit_size, ULONGEST *xfered_len)
8acf9577
YQ
8374{
8375 struct target_section *secp;
8376 struct target_section_table *table;
8377
8378 secp = target_section_by_addr (ops, memaddr);
8379 if (secp != NULL
8380 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8381 secp->the_bfd_section)
8382 & SEC_READONLY))
8383 {
8384 struct target_section *p;
8385 ULONGEST memend = memaddr + len;
8386
8387 table = target_get_section_table (ops);
8388
8389 for (p = table->sections; p < table->sections_end; p++)
8390 {
8391 if (memaddr >= p->addr)
8392 {
8393 if (memend <= p->endaddr)
8394 {
8395 /* Entire transfer is within this section. */
124e13d9 8396 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8397 xfered_len);
8acf9577
YQ
8398 }
8399 else if (memaddr >= p->endaddr)
8400 {
8401 /* This section ends before the transfer starts. */
8402 continue;
8403 }
8404 else
8405 {
8406 /* This section overlaps the transfer. Just do half. */
8407 len = p->endaddr - memaddr;
124e13d9 8408 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8409 xfered_len);
8acf9577
YQ
8410 }
8411 }
8412 }
8413 }
8414
8415 return TARGET_XFER_EOF;
8416}
8417
9217e74e
YQ
8418/* Similar to remote_read_bytes_1, but it reads from the remote stub
8419 first if the requested memory is unavailable in traceframe.
8420 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8421
9b409511 8422static enum target_xfer_status
8acf9577 8423remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
124e13d9
SM
8424 gdb_byte *myaddr, ULONGEST len, int unit_size,
8425 ULONGEST *xfered_len)
c906108c 8426{
6b6aa828 8427 if (len == 0)
96c4f946 8428 return TARGET_XFER_EOF;
b2182ed2 8429
8acf9577
YQ
8430 if (get_traceframe_number () != -1)
8431 {
a79b1bc6 8432 std::vector<mem_range> available;
8acf9577
YQ
8433
8434 /* If we fail to get the set of available memory, then the
8435 target does not support querying traceframe info, and so we
8436 attempt reading from the traceframe anyway (assuming the
8437 target implements the old QTro packet then). */
8438 if (traceframe_available_memory (&available, memaddr, len))
8439 {
a79b1bc6 8440 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8441 {
8442 enum target_xfer_status res;
8443
8444 /* Don't read into the traceframe's available
8445 memory. */
a79b1bc6 8446 if (!available.empty ())
8acf9577
YQ
8447 {
8448 LONGEST oldlen = len;
8449
a79b1bc6 8450 len = available[0].start - memaddr;
8acf9577
YQ
8451 gdb_assert (len <= oldlen);
8452 }
8453
8acf9577 8454 /* This goes through the topmost target again. */
b55fbac4 8455 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
124e13d9 8456 len, unit_size, xfered_len);
8acf9577
YQ
8457 if (res == TARGET_XFER_OK)
8458 return TARGET_XFER_OK;
8459 else
8460 {
8461 /* No use trying further, we know some memory starting
8462 at MEMADDR isn't available. */
8463 *xfered_len = len;
8464 return TARGET_XFER_UNAVAILABLE;
8465 }
8466 }
8467
8468 /* Don't try to read more than how much is available, in
8469 case the target implements the deprecated QTro packet to
8470 cater for older GDBs (the target's knowledge of read-only
8471 sections may be outdated by now). */
a79b1bc6 8472 len = available[0].length;
8acf9577
YQ
8473 }
8474 }
8475
124e13d9 8476 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8477}
74531fed 8478
c906108c 8479\f
c906108c 8480
a76d924d
DJ
8481/* Sends a packet with content determined by the printf format string
8482 FORMAT and the remaining arguments, then gets the reply. Returns
8483 whether the packet was a success, a failure, or unknown. */
8484
77b64a49
PA
8485static enum packet_result remote_send_printf (const char *format, ...)
8486 ATTRIBUTE_PRINTF (1, 2);
8487
2c0b251b 8488static enum packet_result
a76d924d
DJ
8489remote_send_printf (const char *format, ...)
8490{
8491 struct remote_state *rs = get_remote_state ();
8492 int max_size = get_remote_packet_size ();
a76d924d 8493 va_list ap;
a744cf53 8494
a76d924d
DJ
8495 va_start (ap, format);
8496
8497 rs->buf[0] = '\0';
8498 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 8499 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8500
8501 if (putpkt (rs->buf) < 0)
8502 error (_("Communication problem with target."));
8503
8504 rs->buf[0] = '\0';
8505 getpkt (&rs->buf, &rs->buf_size, 0);
8506
8507 return packet_check_result (rs->buf);
8508}
8509
a76d924d
DJ
8510/* Flash writing can take quite some time. We'll set
8511 effectively infinite timeout for flash operations.
8512 In future, we'll need to decide on a better approach. */
8513static const int remote_flash_timeout = 1000;
8514
8515static void
8516remote_flash_erase (struct target_ops *ops,
8517 ULONGEST address, LONGEST length)
8518{
f5656ead 8519 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8520 enum packet_result ret;
2ec845e7
TT
8521 scoped_restore restore_timeout
8522 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8523
8524 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8525 phex (address, addr_size),
a76d924d
DJ
8526 phex (length, 4));
8527 switch (ret)
8528 {
8529 case PACKET_UNKNOWN:
8530 error (_("Remote target does not support flash erase"));
8531 case PACKET_ERROR:
8532 error (_("Error erasing flash with vFlashErase packet"));
8533 default:
8534 break;
8535 }
a76d924d
DJ
8536}
8537
9b409511
YQ
8538static enum target_xfer_status
8539remote_flash_write (struct target_ops *ops, ULONGEST address,
8540 ULONGEST length, ULONGEST *xfered_len,
8541 const gdb_byte *data)
a76d924d 8542{
2ec845e7
TT
8543 scoped_restore restore_timeout
8544 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8545 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8546 xfered_len,'X', 0);
a76d924d
DJ
8547}
8548
8549static void
8550remote_flash_done (struct target_ops *ops)
8551{
a76d924d 8552 int ret;
a76d924d 8553
2ec845e7
TT
8554 scoped_restore restore_timeout
8555 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8556
a76d924d 8557 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8558
8559 switch (ret)
8560 {
8561 case PACKET_UNKNOWN:
8562 error (_("Remote target does not support vFlashDone"));
8563 case PACKET_ERROR:
8564 error (_("Error finishing flash operation"));
8565 default:
8566 break;
8567 }
8568}
8569
c906108c 8570static void
fba45db2 8571remote_files_info (struct target_ops *ignore)
c906108c
SS
8572{
8573 puts_filtered ("Debugging a target over a serial line.\n");
8574}
8575\f
8576/* Stuff for dealing with the packets which are part of this protocol.
8577 See comment at top of file for details. */
8578
1927e618
PA
8579/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8580 error to higher layers. Called when a serial error is detected.
8581 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8582 the system error message for errno at function entry and final dot
8583 for output compatibility with throw_perror_with_name. */
1927e618
PA
8584
8585static void
8586unpush_and_perror (const char *string)
8587{
d6cb50a2 8588 int saved_errno = errno;
1927e618
PA
8589
8590 remote_unpush_target ();
d6cb50a2
JK
8591 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8592 safe_strerror (saved_errno));
1927e618
PA
8593}
8594
048094ac
PA
8595/* Read a single character from the remote end. The current quit
8596 handler is overridden to avoid quitting in the middle of packet
8597 sequence, as that would break communication with the remote server.
8598 See remote_serial_quit_handler for more detail. */
c906108c
SS
8599
8600static int
fba45db2 8601readchar (int timeout)
c906108c
SS
8602{
8603 int ch;
5d93a237 8604 struct remote_state *rs = get_remote_state ();
048094ac 8605
2ec845e7
TT
8606 {
8607 scoped_restore restore_quit
8608 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
c906108c 8609
2ec845e7 8610 rs->got_ctrlc_during_io = 0;
c906108c 8611
2ec845e7 8612 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8613
2ec845e7
TT
8614 if (rs->got_ctrlc_during_io)
8615 set_quit_flag ();
8616 }
048094ac 8617
2acceee2 8618 if (ch >= 0)
0876f84a 8619 return ch;
2acceee2
JM
8620
8621 switch ((enum serial_rc) ch)
c906108c
SS
8622 {
8623 case SERIAL_EOF:
78a095c3 8624 remote_unpush_target ();
598d3636 8625 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8626 /* no return */
c906108c 8627 case SERIAL_ERROR:
1927e618
PA
8628 unpush_and_perror (_("Remote communication error. "
8629 "Target disconnected."));
2acceee2 8630 /* no return */
c906108c 8631 case SERIAL_TIMEOUT:
2acceee2 8632 break;
c906108c 8633 }
2acceee2 8634 return ch;
c906108c
SS
8635}
8636
c33e31fd 8637/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8638 writing fails. The current quit handler is overridden to avoid
8639 quitting in the middle of packet sequence, as that would break
8640 communication with the remote server. See
8641 remote_serial_quit_handler for more detail. */
c33e31fd
PA
8642
8643static void
8644remote_serial_write (const char *str, int len)
8645{
5d93a237 8646 struct remote_state *rs = get_remote_state ();
048094ac 8647
2ec845e7
TT
8648 scoped_restore restore_quit
8649 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
048094ac
PA
8650
8651 rs->got_ctrlc_during_io = 0;
5d93a237
TT
8652
8653 if (serial_write (rs->remote_desc, str, len))
c33e31fd 8654 {
1927e618
PA
8655 unpush_and_perror (_("Remote communication error. "
8656 "Target disconnected."));
c33e31fd 8657 }
048094ac
PA
8658
8659 if (rs->got_ctrlc_during_io)
8660 set_quit_flag ();
c33e31fd
PA
8661}
8662
6d820c5c
DJ
8663/* Send the command in *BUF to the remote machine, and read the reply
8664 into *BUF. Report an error if we get an error reply. Resize
8665 *BUF using xrealloc if necessary to hold the result, and update
8666 *SIZEOF_BUF. */
c906108c
SS
8667
8668static void
6d820c5c
DJ
8669remote_send (char **buf,
8670 long *sizeof_buf)
c906108c 8671{
6d820c5c 8672 putpkt (*buf);
c2d11a7d 8673 getpkt (buf, sizeof_buf, 0);
c906108c 8674
6d820c5c
DJ
8675 if ((*buf)[0] == 'E')
8676 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
8677}
8678
b3ced9ba
PA
8679/* Return a string representing an escaped version of BUF, of len N.
8680 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 8681
b3ced9ba 8682static std::string
6e5abd65
PA
8683escape_buffer (const char *buf, int n)
8684{
d7e74731 8685 string_file stb;
6e5abd65 8686
d7e74731
PA
8687 stb.putstrn (buf, n, '\\');
8688 return std::move (stb.string ());
6e5abd65
PA
8689}
8690
c906108c
SS
8691/* Display a null-terminated packet on stdout, for debugging, using C
8692 string notation. */
8693
8694static void
baa336ce 8695print_packet (const char *buf)
c906108c
SS
8696{
8697 puts_filtered ("\"");
43e526b9 8698 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
8699 puts_filtered ("\"");
8700}
8701
8702int
baa336ce 8703putpkt (const char *buf)
c906108c
SS
8704{
8705 return putpkt_binary (buf, strlen (buf));
8706}
8707
8708/* Send a packet to the remote machine, with error checking. The data
23860348 8709 of the packet is in BUF. The string in BUF can be at most
ea9c271d 8710 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
8711 and for a possible /0 if we are debugging (remote_debug) and want
8712 to print the sent packet as a string. */
c906108c
SS
8713
8714static int
baa336ce 8715putpkt_binary (const char *buf, int cnt)
c906108c 8716{
2d717e4f 8717 struct remote_state *rs = get_remote_state ();
c906108c
SS
8718 int i;
8719 unsigned char csum = 0;
b80406ac
TT
8720 gdb::def_vector<char> data (cnt + 6);
8721 char *buf2 = data.data ();
085dd6e6 8722
c906108c
SS
8723 int ch;
8724 int tcount = 0;
8725 char *p;
8726
e24a49d8
PA
8727 /* Catch cases like trying to read memory or listing threads while
8728 we're waiting for a stop reply. The remote server wouldn't be
8729 ready to handle this request, so we'd hang and timeout. We don't
8730 have to worry about this in synchronous mode, because in that
8731 case it's not possible to issue a command while the target is
74531fed
PA
8732 running. This is not a problem in non-stop mode, because in that
8733 case, the stub is always ready to process serial input. */
6efcd9a8
PA
8734 if (!target_is_non_stop_p ()
8735 && target_is_async_p ()
8736 && rs->waiting_for_stop_reply)
9597b22a
DE
8737 {
8738 error (_("Cannot execute this command while the target is running.\n"
8739 "Use the \"interrupt\" command to stop the target\n"
8740 "and then try again."));
8741 }
e24a49d8 8742
2d717e4f
DJ
8743 /* We're sending out a new packet. Make sure we don't look at a
8744 stale cached response. */
8745 rs->cached_wait_status = 0;
8746
c906108c
SS
8747 /* Copy the packet into buffer BUF2, encapsulating it
8748 and giving it a checksum. */
8749
c906108c
SS
8750 p = buf2;
8751 *p++ = '$';
8752
8753 for (i = 0; i < cnt; i++)
8754 {
8755 csum += buf[i];
8756 *p++ = buf[i];
8757 }
8758 *p++ = '#';
8759 *p++ = tohex ((csum >> 4) & 0xf);
8760 *p++ = tohex (csum & 0xf);
8761
8762 /* Send it over and over until we get a positive ack. */
8763
8764 while (1)
8765 {
8766 int started_error_output = 0;
8767
8768 if (remote_debug)
8769 {
8770 *p = '\0';
b3ced9ba 8771
6f8976bf
YQ
8772 int len = (int) (p - buf2);
8773
8774 std::string str
8775 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
8776
8777 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
8778
8779 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
8780 {
8781 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
8782 str.length () - REMOTE_DEBUG_MAX_CHAR);
8783 }
8784
8785 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 8786
0f71a2f6 8787 gdb_flush (gdb_stdlog);
c906108c 8788 }
c33e31fd 8789 remote_serial_write (buf2, p - buf2);
c906108c 8790
a6f3e723
SL
8791 /* If this is a no acks version of the remote protocol, send the
8792 packet and move on. */
8793 if (rs->noack_mode)
8794 break;
8795
74531fed
PA
8796 /* Read until either a timeout occurs (-2) or '+' is read.
8797 Handle any notification that arrives in the mean time. */
c906108c
SS
8798 while (1)
8799 {
8800 ch = readchar (remote_timeout);
8801
c5aa993b 8802 if (remote_debug)
c906108c
SS
8803 {
8804 switch (ch)
8805 {
8806 case '+':
1216fa2c 8807 case '-':
c906108c
SS
8808 case SERIAL_TIMEOUT:
8809 case '$':
74531fed 8810 case '%':
c906108c
SS
8811 if (started_error_output)
8812 {
8813 putchar_unfiltered ('\n');
8814 started_error_output = 0;
8815 }
8816 }
8817 }
8818
8819 switch (ch)
8820 {
8821 case '+':
8822 if (remote_debug)
0f71a2f6 8823 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 8824 return 1;
1216fa2c
AC
8825 case '-':
8826 if (remote_debug)
8827 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 8828 /* FALLTHROUGH */
c906108c 8829 case SERIAL_TIMEOUT:
c5aa993b 8830 tcount++;
c906108c 8831 if (tcount > 3)
b80406ac 8832 return 0;
23860348 8833 break; /* Retransmit buffer. */
c906108c
SS
8834 case '$':
8835 {
40e3f985 8836 if (remote_debug)
2bc416ba 8837 fprintf_unfiltered (gdb_stdlog,
23860348 8838 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
8839 /* It's probably an old response sent because an ACK
8840 was lost. Gobble up the packet and ack it so it
8841 doesn't get retransmitted when we resend this
8842 packet. */
6d820c5c 8843 skip_frame ();
c33e31fd 8844 remote_serial_write ("+", 1);
23860348 8845 continue; /* Now, go look for +. */
c906108c 8846 }
74531fed
PA
8847
8848 case '%':
8849 {
8850 int val;
8851
8852 /* If we got a notification, handle it, and go back to looking
8853 for an ack. */
8854 /* We've found the start of a notification. Now
8855 collect the data. */
8856 val = read_frame (&rs->buf, &rs->buf_size);
8857 if (val >= 0)
8858 {
8859 if (remote_debug)
8860 {
b3ced9ba 8861 std::string str = escape_buffer (rs->buf, val);
6e5abd65 8862
6e5abd65
PA
8863 fprintf_unfiltered (gdb_stdlog,
8864 " Notification received: %s\n",
b3ced9ba 8865 str.c_str ());
74531fed 8866 }
5965e028 8867 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
8868 /* We're in sync now, rewait for the ack. */
8869 tcount = 0;
8870 }
8871 else
8872 {
8873 if (remote_debug)
8874 {
8875 if (!started_error_output)
8876 {
8877 started_error_output = 1;
8878 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8879 }
8880 fputc_unfiltered (ch & 0177, gdb_stdlog);
8881 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8882 }
8883 }
8884 continue;
8885 }
8886 /* fall-through */
c906108c
SS
8887 default:
8888 if (remote_debug)
8889 {
8890 if (!started_error_output)
8891 {
8892 started_error_output = 1;
0f71a2f6 8893 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 8894 }
0f71a2f6 8895 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
8896 }
8897 continue;
8898 }
23860348 8899 break; /* Here to retransmit. */
c906108c
SS
8900 }
8901
8902#if 0
8903 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
8904 able to get out next time we call QUIT, without anything as
8905 violent as interrupt_query. If we want to provide a way out of
8906 here without getting to the next QUIT, it should be based on
8907 hitting ^C twice as in remote_wait. */
c906108c
SS
8908 if (quit_flag)
8909 {
8910 quit_flag = 0;
8911 interrupt_query ();
8912 }
8913#endif
8914 }
a5c0808e 8915
a6f3e723 8916 return 0;
c906108c
SS
8917}
8918
6d820c5c
DJ
8919/* Come here after finding the start of a frame when we expected an
8920 ack. Do our best to discard the rest of this packet. */
8921
8922static void
8923skip_frame (void)
8924{
8925 int c;
8926
8927 while (1)
8928 {
8929 c = readchar (remote_timeout);
8930 switch (c)
8931 {
8932 case SERIAL_TIMEOUT:
8933 /* Nothing we can do. */
8934 return;
8935 case '#':
8936 /* Discard the two bytes of checksum and stop. */
8937 c = readchar (remote_timeout);
8938 if (c >= 0)
8939 c = readchar (remote_timeout);
8940
8941 return;
8942 case '*': /* Run length encoding. */
8943 /* Discard the repeat count. */
8944 c = readchar (remote_timeout);
8945 if (c < 0)
8946 return;
8947 break;
8948 default:
8949 /* A regular character. */
8950 break;
8951 }
8952 }
8953}
8954
c906108c 8955/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
8956 into *BUF, verifying the checksum, length, and handling run-length
8957 compression. NUL terminate the buffer. If there is not enough room,
8958 expand *BUF using xrealloc.
c906108c 8959
c2d11a7d
JM
8960 Returns -1 on error, number of characters in buffer (ignoring the
8961 trailing NULL) on success. (could be extended to return one of the
23860348 8962 SERIAL status indications). */
c2d11a7d
JM
8963
8964static long
6d820c5c
DJ
8965read_frame (char **buf_p,
8966 long *sizeof_buf)
c906108c
SS
8967{
8968 unsigned char csum;
c2d11a7d 8969 long bc;
c906108c 8970 int c;
6d820c5c 8971 char *buf = *buf_p;
a6f3e723 8972 struct remote_state *rs = get_remote_state ();
c906108c
SS
8973
8974 csum = 0;
c2d11a7d 8975 bc = 0;
c906108c
SS
8976
8977 while (1)
8978 {
8979 c = readchar (remote_timeout);
c906108c
SS
8980 switch (c)
8981 {
8982 case SERIAL_TIMEOUT:
8983 if (remote_debug)
0f71a2f6 8984 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 8985 return -1;
c906108c
SS
8986 case '$':
8987 if (remote_debug)
0f71a2f6
JM
8988 fputs_filtered ("Saw new packet start in middle of old one\n",
8989 gdb_stdlog);
23860348 8990 return -1; /* Start a new packet, count retries. */
c906108c
SS
8991 case '#':
8992 {
8993 unsigned char pktcsum;
e1b09194
AC
8994 int check_0 = 0;
8995 int check_1 = 0;
c906108c 8996
c2d11a7d 8997 buf[bc] = '\0';
c906108c 8998
e1b09194
AC
8999 check_0 = readchar (remote_timeout);
9000 if (check_0 >= 0)
9001 check_1 = readchar (remote_timeout);
802188a7 9002
e1b09194
AC
9003 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
9004 {
9005 if (remote_debug)
2bc416ba 9006 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 9007 gdb_stdlog);
e1b09194
AC
9008 return -1;
9009 }
9010 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
9011 {
9012 if (remote_debug)
2bc416ba 9013 fputs_filtered ("Communication error in checksum\n",
23860348 9014 gdb_stdlog);
40e3f985
FN
9015 return -1;
9016 }
c906108c 9017
a6f3e723
SL
9018 /* Don't recompute the checksum; with no ack packets we
9019 don't have any way to indicate a packet retransmission
9020 is necessary. */
9021 if (rs->noack_mode)
9022 return bc;
9023
e1b09194 9024 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9025 if (csum == pktcsum)
c2d11a7d 9026 return bc;
c906108c 9027
c5aa993b 9028 if (remote_debug)
c906108c 9029 {
b3ced9ba 9030 std::string str = escape_buffer (buf, bc);
6e5abd65 9031
6e5abd65 9032 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9033 "Bad checksum, sentsum=0x%x, "
9034 "csum=0x%x, buf=%s\n",
b3ced9ba 9035 pktcsum, csum, str.c_str ());
c906108c 9036 }
c2d11a7d 9037 /* Number of characters in buffer ignoring trailing
23860348 9038 NULL. */
c2d11a7d 9039 return -1;
c906108c 9040 }
23860348 9041 case '*': /* Run length encoding. */
c2c6d25f
JM
9042 {
9043 int repeat;
c906108c 9044
a744cf53 9045 csum += c;
b4501125
AC
9046 c = readchar (remote_timeout);
9047 csum += c;
23860348 9048 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9049
23860348 9050 /* The character before ``*'' is repeated. */
c2d11a7d 9051
6d820c5c 9052 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9053 {
6d820c5c
DJ
9054 if (bc + repeat - 1 >= *sizeof_buf - 1)
9055 {
9056 /* Make some more room in the buffer. */
9057 *sizeof_buf += repeat;
224c3ddb 9058 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
9059 buf = *buf_p;
9060 }
9061
c2d11a7d
JM
9062 memset (&buf[bc], buf[bc - 1], repeat);
9063 bc += repeat;
c2c6d25f
JM
9064 continue;
9065 }
9066
c2d11a7d 9067 buf[bc] = '\0';
6d820c5c 9068 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9069 return -1;
c2c6d25f 9070 }
c906108c 9071 default:
6d820c5c 9072 if (bc >= *sizeof_buf - 1)
c906108c 9073 {
6d820c5c
DJ
9074 /* Make some more room in the buffer. */
9075 *sizeof_buf *= 2;
224c3ddb 9076 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 9077 buf = *buf_p;
c906108c
SS
9078 }
9079
6d820c5c
DJ
9080 buf[bc++] = c;
9081 csum += c;
9082 continue;
c906108c
SS
9083 }
9084 }
9085}
9086
9087/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9088 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9089 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9090 rather than timing out; this is used (in synchronous mode) to wait
9091 for a target that is is executing user code to stop. */
d9fcf2fb
JM
9092/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9093 don't have to change all the calls to getpkt to deal with the
9094 return value, because at the moment I don't know what the right
23860348 9095 thing to do it for those. */
c906108c 9096void
6d820c5c
DJ
9097getpkt (char **buf,
9098 long *sizeof_buf,
c2d11a7d 9099 int forever)
d9fcf2fb 9100{
54887903 9101 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
9102}
9103
9104
9105/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9106 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9107 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9108 rather than timing out; this is used (in synchronous mode) to wait
9109 for a target that is is executing user code to stop. If FOREVER ==
9110 0, this function is allowed to time out gracefully and return an
74531fed
PA
9111 indication of this to the caller. Otherwise return the number of
9112 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
9113 enough reason to return to the caller. *IS_NOTIF is an output
9114 boolean that indicates whether *BUF holds a notification or not
9115 (a regular packet). */
74531fed 9116
3172dc30 9117static int
74531fed 9118getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 9119 int expecting_notif, int *is_notif)
c906108c 9120{
2d717e4f 9121 struct remote_state *rs = get_remote_state ();
c906108c
SS
9122 int c;
9123 int tries;
9124 int timeout;
df4b58fe 9125 int val = -1;
c906108c 9126
2d717e4f
DJ
9127 /* We're reading a new response. Make sure we don't look at a
9128 previously cached response. */
9129 rs->cached_wait_status = 0;
9130
6d820c5c 9131 strcpy (*buf, "timeout");
c906108c
SS
9132
9133 if (forever)
74531fed
PA
9134 timeout = watchdog > 0 ? watchdog : -1;
9135 else if (expecting_notif)
9136 timeout = 0; /* There should already be a char in the buffer. If
9137 not, bail out. */
c906108c
SS
9138 else
9139 timeout = remote_timeout;
9140
9141#define MAX_TRIES 3
9142
74531fed
PA
9143 /* Process any number of notifications, and then return when
9144 we get a packet. */
9145 for (;;)
c906108c 9146 {
d9c43928 9147 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9148 times. */
9149 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9150 {
74531fed
PA
9151 /* This can loop forever if the remote side sends us
9152 characters continuously, but if it pauses, we'll get
9153 SERIAL_TIMEOUT from readchar because of timeout. Then
9154 we'll count that as a retry.
9155
9156 Note that even when forever is set, we will only wait
9157 forever prior to the start of a packet. After that, we
9158 expect characters to arrive at a brisk pace. They should
9159 show up within remote_timeout intervals. */
9160 do
9161 c = readchar (timeout);
9162 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9163
9164 if (c == SERIAL_TIMEOUT)
9165 {
74531fed
PA
9166 if (expecting_notif)
9167 return -1; /* Don't complain, it's normal to not get
9168 anything in this case. */
9169
23860348 9170 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9171 {
78a095c3 9172 remote_unpush_target ();
598d3636
JK
9173 throw_error (TARGET_CLOSE_ERROR,
9174 _("Watchdog timeout has expired. "
9175 "Target detached."));
c906108c 9176 }
c906108c 9177 if (remote_debug)
0f71a2f6 9178 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9179 }
74531fed
PA
9180 else
9181 {
9182 /* We've found the start of a packet or notification.
9183 Now collect the data. */
9184 val = read_frame (buf, sizeof_buf);
9185 if (val >= 0)
9186 break;
9187 }
9188
c33e31fd 9189 remote_serial_write ("-", 1);
c906108c 9190 }
c906108c 9191
74531fed
PA
9192 if (tries > MAX_TRIES)
9193 {
9194 /* We have tried hard enough, and just can't receive the
9195 packet/notification. Give up. */
9196 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9197
74531fed
PA
9198 /* Skip the ack char if we're in no-ack mode. */
9199 if (!rs->noack_mode)
c33e31fd 9200 remote_serial_write ("+", 1);
74531fed
PA
9201 return -1;
9202 }
c906108c 9203
74531fed
PA
9204 /* If we got an ordinary packet, return that to our caller. */
9205 if (c == '$')
c906108c
SS
9206 {
9207 if (remote_debug)
43e526b9 9208 {
6f8976bf
YQ
9209 std::string str
9210 = escape_buffer (*buf,
9211 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9212
9213 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9214 str.c_str ());
9215
9216 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
9217 {
9218 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
9219 str.length () - REMOTE_DEBUG_MAX_CHAR);
9220 }
6e5abd65 9221
6f8976bf 9222 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9223 }
a6f3e723
SL
9224
9225 /* Skip the ack char if we're in no-ack mode. */
9226 if (!rs->noack_mode)
c33e31fd 9227 remote_serial_write ("+", 1);
fee9eda9
YQ
9228 if (is_notif != NULL)
9229 *is_notif = 0;
0876f84a 9230 return val;
c906108c
SS
9231 }
9232
74531fed
PA
9233 /* If we got a notification, handle it, and go back to looking
9234 for a packet. */
9235 else
9236 {
9237 gdb_assert (c == '%');
9238
9239 if (remote_debug)
9240 {
b3ced9ba 9241 std::string str = escape_buffer (*buf, val);
6e5abd65 9242
6e5abd65
PA
9243 fprintf_unfiltered (gdb_stdlog,
9244 " Notification received: %s\n",
b3ced9ba 9245 str.c_str ());
74531fed 9246 }
fee9eda9
YQ
9247 if (is_notif != NULL)
9248 *is_notif = 1;
c906108c 9249
5965e028 9250 handle_notification (rs->notif_state, *buf);
c906108c 9251
74531fed 9252 /* Notifications require no acknowledgement. */
a6f3e723 9253
74531fed 9254 if (expecting_notif)
fee9eda9 9255 return val;
74531fed
PA
9256 }
9257 }
9258}
9259
9260static int
9261getpkt_sane (char **buf, long *sizeof_buf, int forever)
9262{
fee9eda9 9263 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
9264}
9265
9266static int
fee9eda9
YQ
9267getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9268 int *is_notif)
74531fed 9269{
fee9eda9
YQ
9270 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9271 is_notif);
c906108c 9272}
74531fed 9273
cbb8991c
DB
9274/* Check whether EVENT is a fork event for the process specified
9275 by the pid passed in DATA, and if it is, kill the fork child. */
9276
9277static int
9278kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
9279 QUEUE_ITER (stop_reply_p) *iter,
9280 stop_reply_p event,
9281 void *data)
9282{
19ba03f4 9283 struct queue_iter_param *param = (struct queue_iter_param *) data;
cbb8991c
DB
9284 int parent_pid = *(int *) param->input;
9285
9286 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
9287 {
9288 struct remote_state *rs = get_remote_state ();
9289 int child_pid = ptid_get_pid (event->ws.value.related_pid);
9290 int res;
9291
9292 res = remote_vkill (child_pid, rs);
9293 if (res != 0)
9294 error (_("Can't kill fork child process %d"), child_pid);
9295 }
9296
9297 return 1;
9298}
9299
9300/* Kill any new fork children of process PID that haven't been
9301 processed by follow_fork. */
9302
9303static void
9304kill_new_fork_children (int pid, struct remote_state *rs)
9305{
9306 struct thread_info *thread;
9307 struct notif_client *notif = &notif_client_stop;
9308 struct queue_iter_param param;
9309
9310 /* Kill the fork child threads of any threads in process PID
9311 that are stopped at a fork event. */
9312 ALL_NON_EXITED_THREADS (thread)
9313 {
9314 struct target_waitstatus *ws = &thread->pending_follow;
9315
9316 if (is_pending_fork_parent (ws, pid, thread->ptid))
9317 {
9318 struct remote_state *rs = get_remote_state ();
9319 int child_pid = ptid_get_pid (ws->value.related_pid);
9320 int res;
9321
9322 res = remote_vkill (child_pid, rs);
9323 if (res != 0)
9324 error (_("Can't kill fork child process %d"), child_pid);
9325 }
9326 }
9327
9328 /* Check for any pending fork events (not reported or processed yet)
9329 in process PID and kill those fork child threads as well. */
9330 remote_notif_get_pending_events (notif);
9331 param.input = &pid;
9332 param.output = NULL;
9333 QUEUE_iterate (stop_reply_p, stop_reply_queue,
9334 kill_child_of_pending_fork, &param);
9335}
9336
c906108c 9337\f
8020350c
DB
9338/* Target hook to kill the current inferior. */
9339
c906108c 9340static void
7d85a9c0 9341remote_kill (struct target_ops *ops)
43ff13b4 9342{
8020350c
DB
9343 int res = -1;
9344 int pid = ptid_get_pid (inferior_ptid);
9345 struct remote_state *rs = get_remote_state ();
0fdf84ca 9346
8020350c 9347 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9348 {
8020350c
DB
9349 /* If we're stopped while forking and we haven't followed yet,
9350 kill the child task. We need to do this before killing the
9351 parent task because if this is a vfork then the parent will
9352 be sleeping. */
9353 kill_new_fork_children (pid, rs);
9354
9355 res = remote_vkill (pid, rs);
9356 if (res == 0)
0fdf84ca 9357 {
bc1e6c81 9358 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9359 return;
9360 }
8020350c 9361 }
0fdf84ca 9362
8020350c
DB
9363 /* If we are in 'target remote' mode and we are killing the only
9364 inferior, then we will tell gdbserver to exit and unpush the
9365 target. */
9366 if (res == -1 && !remote_multi_process_p (rs)
9367 && number_of_live_inferiors () == 1)
9368 {
9369 remote_kill_k ();
9370
9371 /* We've killed the remote end, we get to mourn it. If we are
9372 not in extended mode, mourning the inferior also unpushes
9373 remote_ops from the target stack, which closes the remote
9374 connection. */
bc1e6c81 9375 target_mourn_inferior (inferior_ptid);
8020350c
DB
9376
9377 return;
0fdf84ca 9378 }
43ff13b4 9379
8020350c 9380 error (_("Can't kill process"));
43ff13b4
JM
9381}
9382
8020350c
DB
9383/* Send a kill request to the target using the 'vKill' packet. */
9384
82f73884
PA
9385static int
9386remote_vkill (int pid, struct remote_state *rs)
9387{
4082afcc 9388 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9389 return -1;
9390
9391 /* Tell the remote target to detach. */
bba74b36 9392 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
9393 putpkt (rs->buf);
9394 getpkt (&rs->buf, &rs->buf_size, 0);
9395
4082afcc
PA
9396 switch (packet_ok (rs->buf,
9397 &remote_protocol_packets[PACKET_vKill]))
9398 {
9399 case PACKET_OK:
9400 return 0;
9401 case PACKET_ERROR:
9402 return 1;
9403 case PACKET_UNKNOWN:
9404 return -1;
9405 default:
9406 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9407 }
82f73884
PA
9408}
9409
8020350c
DB
9410/* Send a kill request to the target using the 'k' packet. */
9411
82f73884 9412static void
8020350c 9413remote_kill_k (void)
82f73884 9414{
8020350c
DB
9415 /* Catch errors so the user can quit from gdb even when we
9416 aren't on speaking terms with the remote system. */
9417 TRY
82f73884 9418 {
82f73884 9419 putpkt ("k");
82f73884 9420 }
8020350c
DB
9421 CATCH (ex, RETURN_MASK_ERROR)
9422 {
9423 if (ex.error == TARGET_CLOSE_ERROR)
9424 {
9425 /* If we got an (EOF) error that caused the target
9426 to go away, then we're done, that's what we wanted.
9427 "k" is susceptible to cause a premature EOF, given
9428 that the remote server isn't actually required to
9429 reply to "k", and it can happen that it doesn't
9430 even get to reply ACK to the "k". */
9431 return;
9432 }
82f73884 9433
8020350c
DB
9434 /* Otherwise, something went wrong. We didn't actually kill
9435 the target. Just propagate the exception, and let the
9436 user or higher layers decide what to do. */
9437 throw_exception (ex);
9438 }
9439 END_CATCH
82f73884
PA
9440}
9441
c906108c 9442static void
20f796c9 9443remote_mourn (struct target_ops *target)
c906108c 9444{
8020350c 9445 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9446
8020350c
DB
9447 /* In 'target remote' mode with one inferior, we close the connection. */
9448 if (!rs->extended && number_of_live_inferiors () <= 1)
9449 {
9450 unpush_target (target);
c906108c 9451
8020350c
DB
9452 /* remote_close takes care of doing most of the clean up. */
9453 generic_mourn_inferior ();
9454 return;
9455 }
c906108c 9456
e24a49d8
PA
9457 /* In case we got here due to an error, but we're going to stay
9458 connected. */
9459 rs->waiting_for_stop_reply = 0;
9460
dc1981d7
PA
9461 /* If the current general thread belonged to the process we just
9462 detached from or has exited, the remote side current general
9463 thread becomes undefined. Considering a case like this:
9464
9465 - We just got here due to a detach.
9466 - The process that we're detaching from happens to immediately
9467 report a global breakpoint being hit in non-stop mode, in the
9468 same thread we had selected before.
9469 - GDB attaches to this process again.
9470 - This event happens to be the next event we handle.
9471
9472 GDB would consider that the current general thread didn't need to
9473 be set on the stub side (with Hg), since for all it knew,
9474 GENERAL_THREAD hadn't changed.
9475
9476 Notice that although in all-stop mode, the remote server always
9477 sets the current thread to the thread reporting the stop event,
9478 that doesn't happen in non-stop mode; in non-stop, the stub *must
9479 not* change the current thread when reporting a breakpoint hit,
9480 due to the decoupling of event reporting and event handling.
9481
9482 To keep things simple, we always invalidate our notion of the
9483 current thread. */
47f8a51d 9484 record_currthread (rs, minus_one_ptid);
dc1981d7 9485
8020350c 9486 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9487 generic_mourn_inferior ();
9488
d729566a 9489 if (!have_inferiors ())
2d717e4f 9490 {
82f73884
PA
9491 if (!remote_multi_process_p (rs))
9492 {
9493 /* Check whether the target is running now - some remote stubs
9494 automatically restart after kill. */
9495 putpkt ("?");
9496 getpkt (&rs->buf, &rs->buf_size, 0);
9497
9498 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9499 {
3e43a32a
MS
9500 /* Assume that the target has been restarted. Set
9501 inferior_ptid so that bits of core GDB realizes
9502 there's something here, e.g., so that the user can
9503 say "kill" again. */
82f73884
PA
9504 inferior_ptid = magic_null_ptid;
9505 }
82f73884 9506 }
2d717e4f
DJ
9507 }
9508}
c906108c 9509
03583c20 9510static int
2bfc0540 9511extended_remote_supports_disable_randomization (struct target_ops *self)
03583c20 9512{
4082afcc 9513 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9514}
9515
9516static void
9517extended_remote_disable_randomization (int val)
9518{
9519 struct remote_state *rs = get_remote_state ();
9520 char *reply;
9521
bba74b36
YQ
9522 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9523 val);
03583c20 9524 putpkt (rs->buf);
b6bb3468 9525 reply = remote_get_noisy_reply ();
03583c20
UW
9526 if (*reply == '\0')
9527 error (_("Target does not support QDisableRandomization."));
9528 if (strcmp (reply, "OK") != 0)
9529 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9530}
9531
2d717e4f 9532static int
7c5ded6a 9533extended_remote_run (const std::string &args)
2d717e4f
DJ
9534{
9535 struct remote_state *rs = get_remote_state ();
2d717e4f 9536 int len;
94585166 9537 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9538
2d717e4f
DJ
9539 /* If the user has disabled vRun support, or we have detected that
9540 support is not available, do not try it. */
4082afcc 9541 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9542 return -1;
424163ea 9543
2d717e4f
DJ
9544 strcpy (rs->buf, "vRun;");
9545 len = strlen (rs->buf);
c906108c 9546
2d717e4f
DJ
9547 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9548 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9549 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9550 strlen (remote_exec_file));
2d717e4f 9551
7c5ded6a 9552 if (!args.empty ())
2d717e4f 9553 {
2d717e4f 9554 int i;
2d717e4f 9555
773a1edc 9556 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9557 for (i = 0; argv[i] != NULL; i++)
9558 {
9559 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9560 error (_("Argument list too long for run packet"));
9561 rs->buf[len++] = ';';
9f1b45b0
TT
9562 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9563 strlen (argv[i]));
2d717e4f 9564 }
2d717e4f
DJ
9565 }
9566
9567 rs->buf[len++] = '\0';
9568
9569 putpkt (rs->buf);
9570 getpkt (&rs->buf, &rs->buf_size, 0);
9571
4082afcc 9572 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9573 {
4082afcc 9574 case PACKET_OK:
3405876a 9575 /* We have a wait response. All is well. */
2d717e4f 9576 return 0;
4082afcc
PA
9577 case PACKET_UNKNOWN:
9578 return -1;
9579 case PACKET_ERROR:
2d717e4f
DJ
9580 if (remote_exec_file[0] == '\0')
9581 error (_("Running the default executable on the remote target failed; "
9582 "try \"set remote exec-file\"?"));
9583 else
9584 error (_("Running \"%s\" on the remote target failed"),
9585 remote_exec_file);
4082afcc
PA
9586 default:
9587 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9588 }
c906108c
SS
9589}
9590
0a2dde4a
SDJ
9591/* Helper function to send set/unset environment packets. ACTION is
9592 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9593 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9594 sent. */
9595
9596static void
9597send_environment_packet (struct remote_state *rs,
9598 const char *action,
9599 const char *packet,
9600 const char *value)
9601{
9602 /* Convert the environment variable to an hex string, which
9603 is the best format to be transmitted over the wire. */
9604 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9605 strlen (value));
9606
9607 xsnprintf (rs->buf, get_remote_packet_size (),
9608 "%s:%s", packet, encoded_value.c_str ());
9609
9610 putpkt (rs->buf);
9611 getpkt (&rs->buf, &rs->buf_size, 0);
9612 if (strcmp (rs->buf, "OK") != 0)
9613 warning (_("Unable to %s environment variable '%s' on remote."),
9614 action, value);
9615}
9616
9617/* Helper function to handle the QEnvironment* packets. */
9618
9619static void
9620extended_remote_environment_support (struct remote_state *rs)
9621{
9622 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9623 {
9624 putpkt ("QEnvironmentReset");
9625 getpkt (&rs->buf, &rs->buf_size, 0);
9626 if (strcmp (rs->buf, "OK") != 0)
9627 warning (_("Unable to reset environment on remote."));
9628 }
9629
9630 gdb_environ *e = &current_inferior ()->environment;
9631
9632 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9633 for (const std::string &el : e->user_set_env ())
9634 send_environment_packet (rs, "set", "QEnvironmentHexEncoded",
9635 el.c_str ());
9636
9637 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9638 for (const std::string &el : e->user_unset_env ())
9639 send_environment_packet (rs, "unset", "QEnvironmentUnset", el.c_str ());
9640}
9641
bc3b087d
SDJ
9642/* Helper function to set the current working directory for the
9643 inferior in the remote target. */
9644
9645static void
9646extended_remote_set_inferior_cwd (struct remote_state *rs)
9647{
9648 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9649 {
9650 const char *inferior_cwd = get_inferior_cwd ();
9651
9652 if (inferior_cwd != NULL)
9653 {
9654 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9655 strlen (inferior_cwd));
9656
9657 xsnprintf (rs->buf, get_remote_packet_size (),
9658 "QSetWorkingDir:%s", hexpath.c_str ());
9659 }
9660 else
9661 {
9662 /* An empty inferior_cwd means that the user wants us to
9663 reset the remote server's inferior's cwd. */
9664 xsnprintf (rs->buf, get_remote_packet_size (),
9665 "QSetWorkingDir:");
9666 }
9667
9668 putpkt (rs->buf);
9669 getpkt (&rs->buf, &rs->buf_size, 0);
9670 if (packet_ok (rs->buf,
9671 &remote_protocol_packets[PACKET_QSetWorkingDir])
9672 != PACKET_OK)
9673 error (_("\
9674Remote replied unexpectedly while setting the inferior's working\n\
9675directory: %s"),
9676 rs->buf);
9677
9678 }
9679}
9680
2d717e4f
DJ
9681/* In the extended protocol we want to be able to do things like
9682 "run" and have them basically work as expected. So we need
9683 a special create_inferior function. We support changing the
9684 executable file and the command line arguments, but not the
9685 environment. */
9686
43ff13b4 9687static void
77a19445 9688extended_remote_create_inferior (struct target_ops *ops,
7c5ded6a
SDJ
9689 const char *exec_file,
9690 const std::string &args,
77a19445 9691 char **env, int from_tty)
43ff13b4 9692{
3405876a
PA
9693 int run_worked;
9694 char *stop_reply;
9695 struct remote_state *rs = get_remote_state ();
94585166 9696 const char *remote_exec_file = get_remote_exec_file ();
3405876a 9697
43ff13b4 9698 /* If running asynchronously, register the target file descriptor
23860348 9699 with the event loop. */
75c99385 9700 if (target_can_async_p ())
6a3753b3 9701 target_async (1);
43ff13b4 9702
03583c20 9703 /* Disable address space randomization if requested (and supported). */
2bfc0540 9704 if (extended_remote_supports_disable_randomization (ops))
03583c20
UW
9705 extended_remote_disable_randomization (disable_randomization);
9706
aefd8b33
SDJ
9707 /* If startup-with-shell is on, we inform gdbserver to start the
9708 remote inferior using a shell. */
9709 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
9710 {
9711 xsnprintf (rs->buf, get_remote_packet_size (),
9712 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
9713 putpkt (rs->buf);
9714 getpkt (&rs->buf, &rs->buf_size, 0);
9715 if (strcmp (rs->buf, "OK") != 0)
9716 error (_("\
9717Remote replied unexpectedly while setting startup-with-shell: %s"),
9718 rs->buf);
9719 }
9720
0a2dde4a
SDJ
9721 extended_remote_environment_support (rs);
9722
bc3b087d
SDJ
9723 extended_remote_set_inferior_cwd (rs);
9724
43ff13b4 9725 /* Now restart the remote server. */
3405876a
PA
9726 run_worked = extended_remote_run (args) != -1;
9727 if (!run_worked)
2d717e4f
DJ
9728 {
9729 /* vRun was not supported. Fail if we need it to do what the
9730 user requested. */
9731 if (remote_exec_file[0])
9732 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 9733 if (!args.empty ())
2d717e4f 9734 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 9735
2d717e4f
DJ
9736 /* Fall back to "R". */
9737 extended_remote_restart ();
9738 }
424163ea 9739
6c95b8df
PA
9740 if (!have_inferiors ())
9741 {
9742 /* Clean up from the last time we ran, before we mark the target
9743 running again. This will mark breakpoints uninserted, and
9744 get_offsets may insert breakpoints. */
9745 init_thread_list ();
9746 init_wait_for_inferior ();
9747 }
45280a52 9748
3405876a
PA
9749 /* vRun's success return is a stop reply. */
9750 stop_reply = run_worked ? rs->buf : NULL;
9751 add_current_inferior_and_thread (stop_reply);
c0a2216e 9752
2d717e4f
DJ
9753 /* Get updated offsets, if the stub uses qOffsets. */
9754 get_offsets ();
2d717e4f 9755}
c906108c 9756\f
c5aa993b 9757
b775012e
LM
9758/* Given a location's target info BP_TGT and the packet buffer BUF, output
9759 the list of conditions (in agent expression bytecode format), if any, the
9760 target needs to evaluate. The output is placed into the packet buffer
bba74b36 9761 started from BUF and ended at BUF_END. */
b775012e
LM
9762
9763static int
9764remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
9765 struct bp_target_info *bp_tgt, char *buf,
9766 char *buf_end)
b775012e 9767{
3cde5c42 9768 if (bp_tgt->conditions.empty ())
b775012e
LM
9769 return 0;
9770
9771 buf += strlen (buf);
bba74b36 9772 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
9773 buf++;
9774
83621223 9775 /* Send conditions to the target. */
d538e36d 9776 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 9777 {
bba74b36 9778 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 9779 buf += strlen (buf);
3cde5c42 9780 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
9781 buf = pack_hex_byte (buf, aexpr->buf[i]);
9782 *buf = '\0';
9783 }
b775012e
LM
9784 return 0;
9785}
9786
d3ce09f5
SS
9787static void
9788remote_add_target_side_commands (struct gdbarch *gdbarch,
9789 struct bp_target_info *bp_tgt, char *buf)
9790{
3cde5c42 9791 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
9792 return;
9793
9794 buf += strlen (buf);
9795
9796 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9797 buf += strlen (buf);
9798
9799 /* Concatenate all the agent expressions that are commands into the
9800 cmds parameter. */
df97be55 9801 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
9802 {
9803 sprintf (buf, "X%x,", aexpr->len);
9804 buf += strlen (buf);
3cde5c42 9805 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
9806 buf = pack_hex_byte (buf, aexpr->buf[i]);
9807 *buf = '\0';
9808 }
d3ce09f5
SS
9809}
9810
8181d85f
DJ
9811/* Insert a breakpoint. On targets that have software breakpoint
9812 support, we ask the remote target to do the work; on targets
9813 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
9814
9815static int
3db08215
MM
9816remote_insert_breakpoint (struct target_ops *ops,
9817 struct gdbarch *gdbarch,
a6d9a66e 9818 struct bp_target_info *bp_tgt)
c906108c 9819{
d471ea57
AC
9820 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9821 If it succeeds, then set the support to PACKET_ENABLE. If it
9822 fails, and the user has explicitly requested the Z support then
23860348 9823 report an error, otherwise, mark it disabled and go on. */
802188a7 9824
4082afcc 9825 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9826 {
0d5ed153 9827 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 9828 struct remote_state *rs;
bba74b36 9829 char *p, *endbuf;
7c0f6dcc 9830 int bpsize;
4fff2411 9831
28439a30
PA
9832 /* Make sure the remote is pointing at the right process, if
9833 necessary. */
9834 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9835 set_general_process ();
9836
4fff2411
JZ
9837 rs = get_remote_state ();
9838 p = rs->buf;
bba74b36 9839 endbuf = rs->buf + get_remote_packet_size ();
802188a7 9840
96baa820
JM
9841 *(p++) = 'Z';
9842 *(p++) = '0';
9843 *(p++) = ',';
7c0f6dcc 9844 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 9845 p += hexnumstr (p, addr);
579c6ad9 9846 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 9847
efcc2da7 9848 if (remote_supports_cond_breakpoints (ops))
bba74b36 9849 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 9850
78eff0ec 9851 if (remote_can_run_breakpoint_commands (ops))
d3ce09f5
SS
9852 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9853
6d820c5c
DJ
9854 putpkt (rs->buf);
9855 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9856
6d820c5c 9857 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 9858 {
d471ea57
AC
9859 case PACKET_ERROR:
9860 return -1;
9861 case PACKET_OK:
9862 return 0;
9863 case PACKET_UNKNOWN:
9864 break;
96baa820
JM
9865 }
9866 }
c906108c 9867
0000e5cc
PA
9868 /* If this breakpoint has target-side commands but this stub doesn't
9869 support Z0 packets, throw error. */
3cde5c42 9870 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
9871 throw_error (NOT_SUPPORTED_ERROR, _("\
9872Target doesn't support breakpoints that have target side commands."));
9873
3db08215 9874 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
c906108c
SS
9875}
9876
9877static int
3db08215
MM
9878remote_remove_breakpoint (struct target_ops *ops,
9879 struct gdbarch *gdbarch,
73971819
PA
9880 struct bp_target_info *bp_tgt,
9881 enum remove_bp_reason reason)
c906108c 9882{
8181d85f 9883 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 9884 struct remote_state *rs = get_remote_state ();
96baa820 9885
4082afcc 9886 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9887 {
6d820c5c 9888 char *p = rs->buf;
bba74b36 9889 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 9890
28439a30
PA
9891 /* Make sure the remote is pointing at the right process, if
9892 necessary. */
9893 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9894 set_general_process ();
9895
96baa820
JM
9896 *(p++) = 'z';
9897 *(p++) = '0';
9898 *(p++) = ',';
9899
8181d85f
DJ
9900 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9901 p += hexnumstr (p, addr);
579c6ad9 9902 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 9903
6d820c5c
DJ
9904 putpkt (rs->buf);
9905 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9906
6d820c5c 9907 return (rs->buf[0] == 'E');
96baa820
JM
9908 }
9909
73971819 9910 return memory_remove_breakpoint (ops, gdbarch, bp_tgt, reason);
c906108c
SS
9911}
9912
f486487f 9913static enum Z_packet_type
d471ea57
AC
9914watchpoint_to_Z_packet (int type)
9915{
9916 switch (type)
9917 {
9918 case hw_write:
bb858e6a 9919 return Z_PACKET_WRITE_WP;
d471ea57
AC
9920 break;
9921 case hw_read:
bb858e6a 9922 return Z_PACKET_READ_WP;
d471ea57
AC
9923 break;
9924 case hw_access:
bb858e6a 9925 return Z_PACKET_ACCESS_WP;
d471ea57
AC
9926 break;
9927 default:
8e65ff28 9928 internal_error (__FILE__, __LINE__,
e2e0b3e5 9929 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
9930 }
9931}
9932
3c3bea1c 9933static int
f486487f
SM
9934remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9935 enum target_hw_bp_type type, struct expression *cond)
96baa820 9936{
d01949b6 9937 struct remote_state *rs = get_remote_state ();
bba74b36 9938 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9939 char *p;
d471ea57 9940 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 9941
4082afcc 9942 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 9943 return 1;
802188a7 9944
28439a30
PA
9945 /* Make sure the remote is pointing at the right process, if
9946 necessary. */
9947 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9948 set_general_process ();
9949
bba74b36 9950 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 9951 p = strchr (rs->buf, '\0');
96baa820
JM
9952 addr = remote_address_masked (addr);
9953 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9954 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 9955
6d820c5c
DJ
9956 putpkt (rs->buf);
9957 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9958
6d820c5c 9959 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9960 {
9961 case PACKET_ERROR:
d471ea57 9962 return -1;
85d721b8
PA
9963 case PACKET_UNKNOWN:
9964 return 1;
d471ea57
AC
9965 case PACKET_OK:
9966 return 0;
9967 }
8e65ff28 9968 internal_error (__FILE__, __LINE__,
e2e0b3e5 9969 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
9970}
9971
283002cf
MR
9972static int
9973remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9974 CORE_ADDR start, int length)
9975{
9976 CORE_ADDR diff = remote_address_masked (addr - start);
9977
9978 return diff < length;
9979}
9980
d471ea57 9981
3c3bea1c 9982static int
f486487f
SM
9983remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9984 enum target_hw_bp_type type, struct expression *cond)
96baa820 9985{
d01949b6 9986 struct remote_state *rs = get_remote_state ();
bba74b36 9987 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9988 char *p;
d471ea57
AC
9989 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9990
4082afcc 9991 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 9992 return -1;
802188a7 9993
28439a30
PA
9994 /* Make sure the remote is pointing at the right process, if
9995 necessary. */
9996 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9997 set_general_process ();
9998
bba74b36 9999 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 10000 p = strchr (rs->buf, '\0');
96baa820
JM
10001 addr = remote_address_masked (addr);
10002 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 10003 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
10004 putpkt (rs->buf);
10005 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10006
6d820c5c 10007 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
10008 {
10009 case PACKET_ERROR:
10010 case PACKET_UNKNOWN:
10011 return -1;
10012 case PACKET_OK:
10013 return 0;
10014 }
8e65ff28 10015 internal_error (__FILE__, __LINE__,
e2e0b3e5 10016 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
10017}
10018
3c3bea1c 10019
501eef12 10020int remote_hw_watchpoint_limit = -1;
480a3f21 10021int remote_hw_watchpoint_length_limit = -1;
501eef12 10022int remote_hw_breakpoint_limit = -1;
d471ea57 10023
480a3f21 10024static int
31568a15
TT
10025remote_region_ok_for_hw_watchpoint (struct target_ops *self,
10026 CORE_ADDR addr, int len)
480a3f21
PW
10027{
10028 if (remote_hw_watchpoint_length_limit == 0)
10029 return 0;
10030 else if (remote_hw_watchpoint_length_limit < 0)
10031 return 1;
10032 else if (len <= remote_hw_watchpoint_length_limit)
10033 return 1;
10034 else
10035 return 0;
10036}
10037
b9362cc7 10038static int
5461485a 10039remote_check_watch_resources (struct target_ops *self,
f486487f 10040 enum bptype type, int cnt, int ot)
96baa820 10041{
3c3bea1c
GS
10042 if (type == bp_hardware_breakpoint)
10043 {
10044 if (remote_hw_breakpoint_limit == 0)
10045 return 0;
501eef12
AC
10046 else if (remote_hw_breakpoint_limit < 0)
10047 return 1;
3c3bea1c
GS
10048 else if (cnt <= remote_hw_breakpoint_limit)
10049 return 1;
10050 }
10051 else
10052 {
10053 if (remote_hw_watchpoint_limit == 0)
10054 return 0;
501eef12
AC
10055 else if (remote_hw_watchpoint_limit < 0)
10056 return 1;
3c3bea1c
GS
10057 else if (ot)
10058 return -1;
10059 else if (cnt <= remote_hw_watchpoint_limit)
10060 return 1;
10061 }
10062 return -1;
10063}
10064
f7e6eed5
PA
10065/* The to_stopped_by_sw_breakpoint method of target remote. */
10066
10067static int
10068remote_stopped_by_sw_breakpoint (struct target_ops *ops)
10069{
799a2abe 10070 struct thread_info *thread = inferior_thread ();
f7e6eed5 10071
799a2abe
PA
10072 return (thread->priv != NULL
10073 && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT);
f7e6eed5
PA
10074}
10075
10076/* The to_supports_stopped_by_sw_breakpoint method of target
10077 remote. */
10078
10079static int
10080remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
10081{
f7e6eed5
PA
10082 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10083}
10084
10085/* The to_stopped_by_hw_breakpoint method of target remote. */
10086
10087static int
10088remote_stopped_by_hw_breakpoint (struct target_ops *ops)
10089{
799a2abe 10090 struct thread_info *thread = inferior_thread ();
f7e6eed5 10091
799a2abe
PA
10092 return (thread->priv != NULL
10093 && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT);
f7e6eed5
PA
10094}
10095
10096/* The to_supports_stopped_by_hw_breakpoint method of target
10097 remote. */
10098
10099static int
10100remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
10101{
f7e6eed5
PA
10102 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10103}
10104
b9362cc7 10105static int
6a109b6b 10106remote_stopped_by_watchpoint (struct target_ops *ops)
3c3bea1c 10107{
799a2abe 10108 struct thread_info *thread = inferior_thread ();
ee154bee 10109
799a2abe
PA
10110 return (thread->priv != NULL
10111 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT);
3c3bea1c
GS
10112}
10113
4aa7a7f5
JJ
10114static int
10115remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 10116{
799a2abe 10117 struct thread_info *thread = inferior_thread ();
a744cf53 10118
799a2abe
PA
10119 if (thread->priv != NULL
10120 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
4aa7a7f5 10121 {
799a2abe
PA
10122 *addr_p = thread->priv->watch_data_address;
10123 return 1;
4aa7a7f5
JJ
10124 }
10125
799a2abe 10126 return 0;
3c3bea1c
GS
10127}
10128
10129
10130static int
23a26771 10131remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10132 struct bp_target_info *bp_tgt)
3c3bea1c 10133{
0d5ed153 10134 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10135 struct remote_state *rs;
bba74b36 10136 char *p, *endbuf;
dd61ec5c 10137 char *message;
3c3bea1c 10138
4082afcc 10139 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10140 return -1;
2bc416ba 10141
28439a30
PA
10142 /* Make sure the remote is pointing at the right process, if
10143 necessary. */
10144 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10145 set_general_process ();
10146
4fff2411
JZ
10147 rs = get_remote_state ();
10148 p = rs->buf;
bba74b36 10149 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 10150
96baa820
JM
10151 *(p++) = 'Z';
10152 *(p++) = '1';
10153 *(p++) = ',';
802188a7 10154
0d5ed153 10155 addr = remote_address_masked (addr);
96baa820 10156 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10157 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10158
efcc2da7 10159 if (remote_supports_cond_breakpoints (self))
bba74b36 10160 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10161
78eff0ec 10162 if (remote_can_run_breakpoint_commands (self))
d3ce09f5
SS
10163 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10164
6d820c5c
DJ
10165 putpkt (rs->buf);
10166 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10167
6d820c5c 10168 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10169 {
10170 case PACKET_ERROR:
dd61ec5c
MW
10171 if (rs->buf[1] == '.')
10172 {
10173 message = strchr (rs->buf + 2, '.');
10174 if (message)
0316657e 10175 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10176 }
10177 return -1;
d471ea57
AC
10178 case PACKET_UNKNOWN:
10179 return -1;
10180 case PACKET_OK:
10181 return 0;
10182 }
8e65ff28 10183 internal_error (__FILE__, __LINE__,
e2e0b3e5 10184 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10185}
10186
d471ea57 10187
802188a7 10188static int
a64dc96c 10189remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10190 struct bp_target_info *bp_tgt)
96baa820 10191{
8181d85f 10192 CORE_ADDR addr;
d01949b6 10193 struct remote_state *rs = get_remote_state ();
6d820c5c 10194 char *p = rs->buf;
bba74b36 10195 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 10196
4082afcc 10197 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10198 return -1;
802188a7 10199
28439a30
PA
10200 /* Make sure the remote is pointing at the right process, if
10201 necessary. */
10202 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10203 set_general_process ();
10204
96baa820
JM
10205 *(p++) = 'z';
10206 *(p++) = '1';
10207 *(p++) = ',';
802188a7 10208
8181d85f 10209 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10210 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10211 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10212
6d820c5c
DJ
10213 putpkt (rs->buf);
10214 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 10215
6d820c5c 10216 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10217 {
10218 case PACKET_ERROR:
10219 case PACKET_UNKNOWN:
10220 return -1;
10221 case PACKET_OK:
10222 return 0;
10223 }
8e65ff28 10224 internal_error (__FILE__, __LINE__,
e2e0b3e5 10225 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10226}
96baa820 10227
4a5e7a5b
PA
10228/* Verify memory using the "qCRC:" request. */
10229
10230static int
10231remote_verify_memory (struct target_ops *ops,
10232 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10233{
10234 struct remote_state *rs = get_remote_state ();
10235 unsigned long host_crc, target_crc;
10236 char *tmp;
10237
936d2992
PA
10238 /* It doesn't make sense to use qCRC if the remote target is
10239 connected but not running. */
10240 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10241 {
10242 enum packet_result result;
28439a30 10243
936d2992
PA
10244 /* Make sure the remote is pointing at the right process. */
10245 set_general_process ();
4a5e7a5b 10246
936d2992
PA
10247 /* FIXME: assumes lma can fit into long. */
10248 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10249 (long) lma, (long) size);
10250 putpkt (rs->buf);
4a5e7a5b 10251
936d2992
PA
10252 /* Be clever; compute the host_crc before waiting for target
10253 reply. */
10254 host_crc = xcrc32 (data, size, 0xffffffff);
10255
10256 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 10257
936d2992
PA
10258 result = packet_ok (rs->buf,
10259 &remote_protocol_packets[PACKET_qCRC]);
10260 if (result == PACKET_ERROR)
10261 return -1;
10262 else if (result == PACKET_OK)
10263 {
10264 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10265 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10266
936d2992
PA
10267 return (host_crc == target_crc);
10268 }
10269 }
4a5e7a5b 10270
936d2992 10271 return simple_verify_memory (ops, data, lma, size);
4a5e7a5b
PA
10272}
10273
c906108c
SS
10274/* compare-sections command
10275
10276 With no arguments, compares each loadable section in the exec bfd
10277 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10278 Useful for verifying the image on the target against the exec file. */
e514a9d6 10279
c906108c 10280static void
ac88e2de 10281compare_sections_command (const char *args, int from_tty)
c906108c
SS
10282{
10283 asection *s;
948f8e3d 10284 gdb_byte *sectdata;
ce359b09 10285 const char *sectname;
c906108c
SS
10286 bfd_size_type size;
10287 bfd_vma lma;
10288 int matched = 0;
10289 int mismatched = 0;
4a5e7a5b 10290 int res;
95cf3b38 10291 int read_only = 0;
c906108c
SS
10292
10293 if (!exec_bfd)
8a3fe4f8 10294 error (_("command cannot be used without an exec file"));
c906108c 10295
28439a30
PA
10296 /* Make sure the remote is pointing at the right process. */
10297 set_general_process ();
10298
95cf3b38
DT
10299 if (args != NULL && strcmp (args, "-r") == 0)
10300 {
10301 read_only = 1;
10302 args = NULL;
10303 }
10304
c5aa993b 10305 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10306 {
10307 if (!(s->flags & SEC_LOAD))
0df8b418 10308 continue; /* Skip non-loadable section. */
c906108c 10309
95cf3b38
DT
10310 if (read_only && (s->flags & SEC_READONLY) == 0)
10311 continue; /* Skip writeable sections */
10312
2c500098 10313 size = bfd_get_section_size (s);
c906108c 10314 if (size == 0)
0df8b418 10315 continue; /* Skip zero-length section. */
c906108c 10316
ce359b09 10317 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10318 if (args && strcmp (args, sectname) != 0)
0df8b418 10319 continue; /* Not the section selected by user. */
c906108c 10320
0df8b418 10321 matched = 1; /* Do this section. */
c906108c 10322 lma = s->lma;
c906108c 10323
b80406ac
TT
10324 gdb::byte_vector sectdata (size);
10325 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10326
b80406ac 10327 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10328
10329 if (res == -1)
5af949e3 10330 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10331 paddress (target_gdbarch (), lma),
10332 paddress (target_gdbarch (), lma + size));
c906108c 10333
5af949e3 10334 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10335 paddress (target_gdbarch (), lma),
10336 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10337 if (res)
c906108c
SS
10338 printf_filtered ("matched.\n");
10339 else
c5aa993b
JM
10340 {
10341 printf_filtered ("MIS-MATCHED!\n");
10342 mismatched++;
10343 }
c906108c
SS
10344 }
10345 if (mismatched > 0)
936d2992 10346 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10347the loaded file\n"));
c906108c 10348 if (args && !matched)
a3f17187 10349 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10350}
10351
0e7f50da
UW
10352/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10353 into remote target. The number of bytes written to the remote
10354 target is returned, or -1 for error. */
10355
9b409511 10356static enum target_xfer_status
0e7f50da
UW
10357remote_write_qxfer (struct target_ops *ops, const char *object_name,
10358 const char *annex, const gdb_byte *writebuf,
9b409511 10359 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
0e7f50da
UW
10360 struct packet_config *packet)
10361{
10362 int i, buf_len;
10363 ULONGEST n;
0e7f50da
UW
10364 struct remote_state *rs = get_remote_state ();
10365 int max_size = get_memory_write_packet_size ();
10366
10367 if (packet->support == PACKET_DISABLE)
2ed4b548 10368 return TARGET_XFER_E_IO;
0e7f50da
UW
10369
10370 /* Insert header. */
10371 i = snprintf (rs->buf, max_size,
10372 "qXfer:%s:write:%s:%s:",
10373 object_name, annex ? annex : "",
10374 phex_nz (offset, sizeof offset));
10375 max_size -= (i + 1);
10376
10377 /* Escape as much data as fits into rs->buf. */
10378 buf_len = remote_escape_output
124e13d9 10379 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
10380
10381 if (putpkt_binary (rs->buf, i + buf_len) < 0
10382 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10383 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10384 return TARGET_XFER_E_IO;
0e7f50da
UW
10385
10386 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
10387
10388 *xfered_len = n;
10389 return TARGET_XFER_OK;
0e7f50da
UW
10390}
10391
0876f84a
DJ
10392/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10393 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10394 number of bytes read is returned, or 0 for EOF, or -1 for error.
10395 The number of bytes read may be less than LEN without indicating an
10396 EOF. PACKET is checked and updated to indicate whether the remote
10397 target supports this object. */
10398
9b409511 10399static enum target_xfer_status
0876f84a
DJ
10400remote_read_qxfer (struct target_ops *ops, const char *object_name,
10401 const char *annex,
10402 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9b409511 10403 ULONGEST *xfered_len,
0876f84a
DJ
10404 struct packet_config *packet)
10405{
0876f84a 10406 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10407 LONGEST i, n, packet_len;
10408
10409 if (packet->support == PACKET_DISABLE)
2ed4b548 10410 return TARGET_XFER_E_IO;
0876f84a
DJ
10411
10412 /* Check whether we've cached an end-of-object packet that matches
10413 this request. */
8e88304f 10414 if (rs->finished_object)
0876f84a 10415 {
8e88304f
TT
10416 if (strcmp (object_name, rs->finished_object) == 0
10417 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10418 && offset == rs->finished_offset)
9b409511
YQ
10419 return TARGET_XFER_EOF;
10420
0876f84a
DJ
10421
10422 /* Otherwise, we're now reading something different. Discard
10423 the cache. */
8e88304f
TT
10424 xfree (rs->finished_object);
10425 xfree (rs->finished_annex);
10426 rs->finished_object = NULL;
10427 rs->finished_annex = NULL;
0876f84a
DJ
10428 }
10429
10430 /* Request only enough to fit in a single packet. The actual data
10431 may not, since we don't know how much of it will need to be escaped;
10432 the target is free to respond with slightly less data. We subtract
10433 five to account for the response type and the protocol frame. */
768adc05 10434 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
0876f84a
DJ
10435 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10436 object_name, annex ? annex : "",
10437 phex_nz (offset, sizeof offset),
10438 phex_nz (n, sizeof n));
10439 i = putpkt (rs->buf);
10440 if (i < 0)
2ed4b548 10441 return TARGET_XFER_E_IO;
0876f84a
DJ
10442
10443 rs->buf[0] = '\0';
10444 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10445 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10446 return TARGET_XFER_E_IO;
0876f84a
DJ
10447
10448 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10449 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10450
10451 /* 'm' means there is (or at least might be) more data after this
10452 batch. That does not make sense unless there's at least one byte
10453 of data in this reply. */
10454 if (rs->buf[0] == 'm' && packet_len == 1)
10455 error (_("Remote qXfer reply contained no data."));
10456
10457 /* Got some data. */
bc20a4af
PA
10458 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10459 packet_len - 1, readbuf, n);
0876f84a
DJ
10460
10461 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10462 or possibly empty. If we have the final block of a non-empty
10463 object, record this fact to bypass a subsequent partial read. */
10464 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10465 {
8e88304f
TT
10466 rs->finished_object = xstrdup (object_name);
10467 rs->finished_annex = xstrdup (annex ? annex : "");
10468 rs->finished_offset = offset + i;
0876f84a
DJ
10469 }
10470
9b409511
YQ
10471 if (i == 0)
10472 return TARGET_XFER_EOF;
10473 else
10474 {
10475 *xfered_len = i;
10476 return TARGET_XFER_OK;
10477 }
0876f84a
DJ
10478}
10479
9b409511 10480static enum target_xfer_status
4b8a223f 10481remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5 10482 const char *annex, gdb_byte *readbuf,
9b409511
YQ
10483 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10484 ULONGEST *xfered_len)
c906108c 10485{
82f73884 10486 struct remote_state *rs;
c906108c 10487 int i;
6d820c5c 10488 char *p2;
1e3ff5ad 10489 char query_type;
124e13d9 10490 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10491
e6e4e701 10492 set_remote_traceframe ();
82f73884
PA
10493 set_general_thread (inferior_ptid);
10494
10495 rs = get_remote_state ();
10496
b2182ed2 10497 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10498 if (object == TARGET_OBJECT_MEMORY)
10499 {
2d717e4f
DJ
10500 /* If the remote target is connected but not running, we should
10501 pass this request down to a lower stratum (e.g. the executable
10502 file). */
10503 if (!target_has_execution)
9b409511 10504 return TARGET_XFER_EOF;
2d717e4f 10505
21e3b9b9 10506 if (writebuf != NULL)
124e13d9
SM
10507 return remote_write_bytes (offset, writebuf, len, unit_size,
10508 xfered_len);
21e3b9b9 10509 else
124e13d9
SM
10510 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
10511 xfered_len);
21e3b9b9
DJ
10512 }
10513
0df8b418 10514 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10515 if (object == TARGET_OBJECT_SPU)
10516 {
10517 if (readbuf)
10518 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9b409511
YQ
10519 xfered_len, &remote_protocol_packets
10520 [PACKET_qXfer_spu_read]);
0e7f50da
UW
10521 else
10522 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9b409511
YQ
10523 xfered_len, &remote_protocol_packets
10524 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10525 }
10526
4aa995e1
PA
10527 /* Handle extra signal info using qxfer packets. */
10528 if (object == TARGET_OBJECT_SIGNAL_INFO)
10529 {
10530 if (readbuf)
10531 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9b409511 10532 xfered_len, &remote_protocol_packets
4aa995e1
PA
10533 [PACKET_qXfer_siginfo_read]);
10534 else
3e43a32a 10535 return remote_write_qxfer (ops, "siginfo", annex,
9b409511 10536 writebuf, offset, len, xfered_len,
4aa995e1
PA
10537 &remote_protocol_packets
10538 [PACKET_qXfer_siginfo_write]);
10539 }
10540
0fb4aa4b
PA
10541 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10542 {
10543 if (readbuf)
3e43a32a 10544 return remote_read_qxfer (ops, "statictrace", annex,
9b409511 10545 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10546 &remote_protocol_packets
10547 [PACKET_qXfer_statictrace_read]);
10548 else
2ed4b548 10549 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10550 }
10551
a76d924d
DJ
10552 /* Only handle flash writes. */
10553 if (writebuf != NULL)
10554 {
a76d924d
DJ
10555 switch (object)
10556 {
10557 case TARGET_OBJECT_FLASH:
9b409511
YQ
10558 return remote_flash_write (ops, offset, len, xfered_len,
10559 writebuf);
a76d924d
DJ
10560
10561 default:
2ed4b548 10562 return TARGET_XFER_E_IO;
a76d924d
DJ
10563 }
10564 }
4b8a223f 10565
1e3ff5ad
AC
10566 /* Map pre-existing objects onto letters. DO NOT do this for new
10567 objects!!! Instead specify new query packets. */
10568 switch (object)
c906108c 10569 {
1e3ff5ad
AC
10570 case TARGET_OBJECT_AVR:
10571 query_type = 'R';
10572 break;
802188a7
RM
10573
10574 case TARGET_OBJECT_AUXV:
0876f84a
DJ
10575 gdb_assert (annex == NULL);
10576 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
9b409511 10577 xfered_len,
0876f84a 10578 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10579
23181151
DJ
10580 case TARGET_OBJECT_AVAILABLE_FEATURES:
10581 return remote_read_qxfer
9b409511 10582 (ops, "features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10583 &remote_protocol_packets[PACKET_qXfer_features]);
10584
cfa9d6d9
DJ
10585 case TARGET_OBJECT_LIBRARIES:
10586 return remote_read_qxfer
9b409511 10587 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10588 &remote_protocol_packets[PACKET_qXfer_libraries]);
10589
2268b414
JK
10590 case TARGET_OBJECT_LIBRARIES_SVR4:
10591 return remote_read_qxfer
9b409511 10592 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10593 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10594
fd79ecee
DJ
10595 case TARGET_OBJECT_MEMORY_MAP:
10596 gdb_assert (annex == NULL);
10597 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
9b409511 10598 xfered_len,
fd79ecee
DJ
10599 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10600
07e059b5
VP
10601 case TARGET_OBJECT_OSDATA:
10602 /* Should only get here if we're connected. */
5d93a237 10603 gdb_assert (rs->remote_desc);
07e059b5 10604 return remote_read_qxfer
9b409511 10605 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10606 &remote_protocol_packets[PACKET_qXfer_osdata]);
10607
dc146f7c
VP
10608 case TARGET_OBJECT_THREADS:
10609 gdb_assert (annex == NULL);
10610 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
9b409511 10611 xfered_len,
dc146f7c
VP
10612 &remote_protocol_packets[PACKET_qXfer_threads]);
10613
b3b9301e
PA
10614 case TARGET_OBJECT_TRACEFRAME_INFO:
10615 gdb_assert (annex == NULL);
10616 return remote_read_qxfer
9b409511 10617 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10618 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10619
10620 case TARGET_OBJECT_FDPIC:
10621 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
9b409511 10622 xfered_len,
78d85199 10623 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10624
10625 case TARGET_OBJECT_OPENVMS_UIB:
10626 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
9b409511 10627 xfered_len,
169081d0
TG
10628 &remote_protocol_packets[PACKET_qXfer_uib]);
10629
9accd112
MM
10630 case TARGET_OBJECT_BTRACE:
10631 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
9b409511 10632 xfered_len,
9accd112
MM
10633 &remote_protocol_packets[PACKET_qXfer_btrace]);
10634
f4abbc16
MM
10635 case TARGET_OBJECT_BTRACE_CONF:
10636 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10637 len, xfered_len,
10638 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10639
c78fa86a
GB
10640 case TARGET_OBJECT_EXEC_FILE:
10641 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10642 len, xfered_len,
10643 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10644
1e3ff5ad 10645 default:
2ed4b548 10646 return TARGET_XFER_E_IO;
c906108c
SS
10647 }
10648
0df8b418 10649 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10650 large enough let the caller deal with it. */
ea9c271d 10651 if (len < get_remote_packet_size ())
2ed4b548 10652 return TARGET_XFER_E_IO;
ea9c271d 10653 len = get_remote_packet_size ();
1e3ff5ad 10654
23860348 10655 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10656 if (!rs->remote_desc)
8a3fe4f8 10657 error (_("remote query is only available after target open"));
c906108c 10658
1e3ff5ad 10659 gdb_assert (annex != NULL);
4b8a223f 10660 gdb_assert (readbuf != NULL);
c906108c 10661
6d820c5c 10662 p2 = rs->buf;
c906108c
SS
10663 *p2++ = 'q';
10664 *p2++ = query_type;
10665
23860348
MS
10666 /* We used one buffer char for the remote protocol q command and
10667 another for the query type. As the remote protocol encapsulation
10668 uses 4 chars plus one extra in case we are debugging
10669 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10670 string. */
c906108c 10671 i = 0;
ea9c271d 10672 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10673 {
1e3ff5ad
AC
10674 /* Bad caller may have sent forbidden characters. */
10675 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10676 *p2++ = annex[i];
c906108c
SS
10677 i++;
10678 }
1e3ff5ad
AC
10679 *p2 = '\0';
10680 gdb_assert (annex[i] == '\0');
c906108c 10681
6d820c5c 10682 i = putpkt (rs->buf);
c5aa993b 10683 if (i < 0)
2ed4b548 10684 return TARGET_XFER_E_IO;
c906108c 10685
6d820c5c
DJ
10686 getpkt (&rs->buf, &rs->buf_size, 0);
10687 strcpy ((char *) readbuf, rs->buf);
c906108c 10688
9b409511
YQ
10689 *xfered_len = strlen ((char *) readbuf);
10690 return TARGET_XFER_OK;
c906108c
SS
10691}
10692
09c98b44
DB
10693/* Implementation of to_get_memory_xfer_limit. */
10694
10695static ULONGEST
10696remote_get_memory_xfer_limit (struct target_ops *ops)
10697{
10698 return get_memory_write_packet_size ();
10699}
10700
08388c79
DE
10701static int
10702remote_search_memory (struct target_ops* ops,
10703 CORE_ADDR start_addr, ULONGEST search_space_len,
10704 const gdb_byte *pattern, ULONGEST pattern_len,
10705 CORE_ADDR *found_addrp)
10706{
f5656ead 10707 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
10708 struct remote_state *rs = get_remote_state ();
10709 int max_size = get_memory_write_packet_size ();
10710 struct packet_config *packet =
10711 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
10712 /* Number of packet bytes used to encode the pattern;
10713 this could be more than PATTERN_LEN due to escape characters. */
08388c79 10714 int escaped_pattern_len;
0df8b418 10715 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
10716 int used_pattern_len;
10717 int i;
10718 int found;
10719 ULONGEST found_addr;
10720
10721 /* Don't go to the target if we don't have to.
10722 This is done before checking packet->support to avoid the possibility that
10723 a success for this edge case means the facility works in general. */
10724 if (pattern_len > search_space_len)
10725 return 0;
10726 if (pattern_len == 0)
10727 {
10728 *found_addrp = start_addr;
10729 return 1;
10730 }
10731
10732 /* If we already know the packet isn't supported, fall back to the simple
10733 way of searching memory. */
10734
4082afcc 10735 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10736 {
10737 /* Target doesn't provided special support, fall back and use the
10738 standard support (copy memory and do the search here). */
10739 return simple_search_memory (ops, start_addr, search_space_len,
10740 pattern, pattern_len, found_addrp);
10741 }
10742
28439a30
PA
10743 /* Make sure the remote is pointing at the right process. */
10744 set_general_process ();
10745
08388c79
DE
10746 /* Insert header. */
10747 i = snprintf (rs->buf, max_size,
10748 "qSearch:memory:%s;%s;",
5af949e3 10749 phex_nz (start_addr, addr_size),
08388c79
DE
10750 phex_nz (search_space_len, sizeof (search_space_len)));
10751 max_size -= (i + 1);
10752
10753 /* Escape as much data as fits into rs->buf. */
10754 escaped_pattern_len =
124e13d9 10755 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
08388c79
DE
10756 &used_pattern_len, max_size);
10757
10758 /* Bail if the pattern is too large. */
10759 if (used_pattern_len != pattern_len)
9b20d036 10760 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
10761
10762 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10763 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10764 || packet_ok (rs->buf, packet) != PACKET_OK)
10765 {
10766 /* The request may not have worked because the command is not
10767 supported. If so, fall back to the simple way. */
10768 if (packet->support == PACKET_DISABLE)
10769 {
10770 return simple_search_memory (ops, start_addr, search_space_len,
10771 pattern, pattern_len, found_addrp);
10772 }
10773 return -1;
10774 }
10775
10776 if (rs->buf[0] == '0')
10777 found = 0;
10778 else if (rs->buf[0] == '1')
10779 {
10780 found = 1;
10781 if (rs->buf[1] != ',')
10e0fa18 10782 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10783 unpack_varlen_hex (rs->buf + 2, &found_addr);
10784 *found_addrp = found_addr;
10785 }
10786 else
10e0fa18 10787 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10788
10789 return found;
10790}
10791
96baa820 10792static void
a30bf1f1 10793remote_rcmd (struct target_ops *self, const char *command,
d9fcf2fb 10794 struct ui_file *outbuf)
96baa820 10795{
d01949b6 10796 struct remote_state *rs = get_remote_state ();
2e9f7625 10797 char *p = rs->buf;
96baa820 10798
5d93a237 10799 if (!rs->remote_desc)
8a3fe4f8 10800 error (_("remote rcmd is only available after target open"));
96baa820 10801
23860348 10802 /* Send a NULL command across as an empty command. */
7be570e7
JM
10803 if (command == NULL)
10804 command = "";
10805
23860348 10806 /* The query prefix. */
2e9f7625
DJ
10807 strcpy (rs->buf, "qRcmd,");
10808 p = strchr (rs->buf, '\0');
96baa820 10809
3e43a32a
MS
10810 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10811 > get_remote_packet_size ())
8a3fe4f8 10812 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 10813
23860348 10814 /* Encode the actual command. */
a30bf1f1 10815 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 10816
6d820c5c 10817 if (putpkt (rs->buf) < 0)
8a3fe4f8 10818 error (_("Communication problem with target."));
96baa820
JM
10819
10820 /* get/display the response */
10821 while (1)
10822 {
2e9f7625
DJ
10823 char *buf;
10824
00bf0b85 10825 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 10826 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 10827 rs->buf[0] = '\0';
5b37825d
PW
10828 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10829 {
10830 /* Timeout. Continue to (try to) read responses.
10831 This is better than stopping with an error, assuming the stub
10832 is still executing the (long) monitor command.
10833 If needed, the user can interrupt gdb using C-c, obtaining
10834 an effect similar to stop on timeout. */
10835 continue;
10836 }
2e9f7625 10837 buf = rs->buf;
96baa820 10838 if (buf[0] == '\0')
8a3fe4f8 10839 error (_("Target does not support this command."));
96baa820
JM
10840 if (buf[0] == 'O' && buf[1] != 'K')
10841 {
23860348 10842 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
10843 continue;
10844 }
10845 if (strcmp (buf, "OK") == 0)
10846 break;
7be570e7
JM
10847 if (strlen (buf) == 3 && buf[0] == 'E'
10848 && isdigit (buf[1]) && isdigit (buf[2]))
10849 {
8a3fe4f8 10850 error (_("Protocol error with Rcmd"));
7be570e7 10851 }
96baa820
JM
10852 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10853 {
10854 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 10855
96baa820
JM
10856 fputc_unfiltered (c, outbuf);
10857 }
10858 break;
10859 }
10860}
10861
a664f67e 10862static std::vector<mem_region>
fd79ecee
DJ
10863remote_memory_map (struct target_ops *ops)
10864{
a664f67e 10865 std::vector<mem_region> result;
b7b030ad
TT
10866 gdb::unique_xmalloc_ptr<char> text
10867 = target_read_stralloc (&current_target, TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
10868
10869 if (text)
b7b030ad 10870 result = parse_memory_map (text.get ());
fd79ecee
DJ
10871
10872 return result;
10873}
10874
c906108c 10875static void
ac88e2de 10876packet_command (const char *args, int from_tty)
c906108c 10877{
d01949b6 10878 struct remote_state *rs = get_remote_state ();
c906108c 10879
5d93a237 10880 if (!rs->remote_desc)
8a3fe4f8 10881 error (_("command can only be used with remote target"));
c906108c 10882
c5aa993b 10883 if (!args)
8a3fe4f8 10884 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
10885
10886 puts_filtered ("sending: ");
10887 print_packet (args);
10888 puts_filtered ("\n");
10889 putpkt (args);
10890
6d820c5c 10891 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 10892 puts_filtered ("received: ");
6d820c5c 10893 print_packet (rs->buf);
c906108c
SS
10894 puts_filtered ("\n");
10895}
10896
10897#if 0
23860348 10898/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 10899
a14ed312 10900static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 10901
a14ed312 10902static void threadset_test_cmd (char *cmd, int tty);
c906108c 10903
a14ed312 10904static void threadalive_test (char *cmd, int tty);
c906108c 10905
a14ed312 10906static void threadlist_test_cmd (char *cmd, int tty);
c906108c 10907
23860348 10908int get_and_display_threadinfo (threadref *ref);
c906108c 10909
a14ed312 10910static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 10911
23860348 10912static int thread_display_step (threadref *ref, void *context);
c906108c 10913
a14ed312 10914static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 10915
a14ed312 10916static void init_remote_threadtests (void);
c906108c 10917
23860348 10918#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
10919
10920static void
0b39b52e 10921threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
10922{
10923 int sample_thread = SAMPLE_THREAD;
10924
a3f17187 10925 printf_filtered (_("Remote threadset test\n"));
79d7f229 10926 set_general_thread (sample_thread);
c906108c
SS
10927}
10928
10929
10930static void
0b39b52e 10931threadalive_test (const char *cmd, int tty)
c906108c
SS
10932{
10933 int sample_thread = SAMPLE_THREAD;
79d7f229 10934 int pid = ptid_get_pid (inferior_ptid);
ba348170 10935 ptid_t ptid = ptid_build (pid, sample_thread, 0);
c906108c 10936
79d7f229 10937 if (remote_thread_alive (ptid))
c906108c
SS
10938 printf_filtered ("PASS: Thread alive test\n");
10939 else
10940 printf_filtered ("FAIL: Thread alive test\n");
10941}
10942
23860348 10943void output_threadid (char *title, threadref *ref);
c906108c
SS
10944
10945void
fba45db2 10946output_threadid (char *title, threadref *ref)
c906108c
SS
10947{
10948 char hexid[20];
10949
23860348 10950 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
10951 hexid[16] = 0;
10952 printf_filtered ("%s %s\n", title, (&hexid[0]));
10953}
10954
10955static void
0b39b52e 10956threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
10957{
10958 int startflag = 1;
10959 threadref nextthread;
10960 int done, result_count;
10961 threadref threadlist[3];
10962
10963 printf_filtered ("Remote Threadlist test\n");
10964 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10965 &result_count, &threadlist[0]))
10966 printf_filtered ("FAIL: threadlist test\n");
10967 else
10968 {
10969 threadref *scan = threadlist;
10970 threadref *limit = scan + result_count;
10971
10972 while (scan < limit)
10973 output_threadid (" thread ", scan++);
10974 }
10975}
10976
10977void
fba45db2 10978display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
10979{
10980 output_threadid ("Threadid: ", &info->threadid);
10981 printf_filtered ("Name: %s\n ", info->shortname);
10982 printf_filtered ("State: %s\n", info->display);
10983 printf_filtered ("other: %s\n\n", info->more_display);
10984}
10985
10986int
fba45db2 10987get_and_display_threadinfo (threadref *ref)
c906108c
SS
10988{
10989 int result;
10990 int set;
10991 struct gdb_ext_thread_info threadinfo;
10992
10993 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10994 | TAG_MOREDISPLAY | TAG_DISPLAY;
10995 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10996 display_thread_info (&threadinfo);
10997 return result;
10998}
10999
11000static void
0b39b52e 11001threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
11002{
11003 int athread = SAMPLE_THREAD;
11004 threadref thread;
11005 int set;
11006
11007 int_to_threadref (&thread, athread);
11008 printf_filtered ("Remote Threadinfo test\n");
11009 if (!get_and_display_threadinfo (&thread))
11010 printf_filtered ("FAIL cannot get thread info\n");
11011}
11012
11013static int
fba45db2 11014thread_display_step (threadref *ref, void *context)
c906108c
SS
11015{
11016 /* output_threadid(" threadstep ",ref); *//* simple test */
11017 return get_and_display_threadinfo (ref);
11018}
11019
11020static void
0b39b52e 11021threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
11022{
11023 printf_filtered ("Remote Threadlist update test\n");
11024 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
11025}
11026
11027static void
11028init_remote_threadtests (void)
11029{
3e43a32a
MS
11030 add_com ("tlist", class_obscure, threadlist_test_cmd,
11031 _("Fetch and print the remote list of "
11032 "thread identifiers, one pkt only"));
c906108c 11033 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 11034 _("Fetch and display info about one thread"));
c906108c 11035 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 11036 _("Test setting to a different thread"));
c906108c 11037 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 11038 _("Iterate through updating all remote thread info"));
c906108c 11039 add_com ("talive", class_obscure, threadalive_test,
1bedd215 11040 _(" Remote thread alive test "));
c906108c
SS
11041}
11042
11043#endif /* 0 */
11044
f3fb8c85
MS
11045/* Convert a thread ID to a string. Returns the string in a static
11046 buffer. */
11047
7a114964 11048static const char *
117de6a9 11049remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 11050{
79d7f229 11051 static char buf[64];
82f73884 11052 struct remote_state *rs = get_remote_state ();
f3fb8c85 11053
7cee1e54
PA
11054 if (ptid_equal (ptid, null_ptid))
11055 return normal_pid_to_str (ptid);
11056 else if (ptid_is_pid (ptid))
ecd0ada5
PA
11057 {
11058 /* Printing an inferior target id. */
11059
11060 /* When multi-process extensions are off, there's no way in the
11061 remote protocol to know the remote process id, if there's any
11062 at all. There's one exception --- when we're connected with
11063 target extended-remote, and we manually attached to a process
11064 with "attach PID". We don't record anywhere a flag that
11065 allows us to distinguish that case from the case of
11066 connecting with extended-remote and the stub already being
11067 attached to a process, and reporting yes to qAttached, hence
11068 no smart special casing here. */
11069 if (!remote_multi_process_p (rs))
11070 {
11071 xsnprintf (buf, sizeof buf, "Remote target");
11072 return buf;
11073 }
11074
11075 return normal_pid_to_str (ptid);
82f73884 11076 }
ecd0ada5 11077 else
79d7f229 11078 {
ecd0ada5
PA
11079 if (ptid_equal (magic_null_ptid, ptid))
11080 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11081 else if (remote_multi_process_p (rs))
de0d863e
DB
11082 if (ptid_get_lwp (ptid) == 0)
11083 return normal_pid_to_str (ptid);
11084 else
11085 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11086 ptid_get_pid (ptid), ptid_get_lwp (ptid));
ecd0ada5
PA
11087 else
11088 xsnprintf (buf, sizeof buf, "Thread %ld",
ba348170 11089 ptid_get_lwp (ptid));
79d7f229
PA
11090 return buf;
11091 }
f3fb8c85
MS
11092}
11093
38691318
KB
11094/* Get the address of the thread local variable in OBJFILE which is
11095 stored at OFFSET within the thread local storage for thread PTID. */
11096
11097static CORE_ADDR
117de6a9
PA
11098remote_get_thread_local_address (struct target_ops *ops,
11099 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 11100{
4082afcc 11101 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11102 {
11103 struct remote_state *rs = get_remote_state ();
6d820c5c 11104 char *p = rs->buf;
82f73884 11105 char *endp = rs->buf + get_remote_packet_size ();
571dd617 11106 enum packet_result result;
38691318
KB
11107
11108 strcpy (p, "qGetTLSAddr:");
11109 p += strlen (p);
82f73884 11110 p = write_ptid (p, endp, ptid);
38691318
KB
11111 *p++ = ',';
11112 p += hexnumstr (p, offset);
11113 *p++ = ',';
11114 p += hexnumstr (p, lm);
11115 *p++ = '\0';
11116
6d820c5c
DJ
11117 putpkt (rs->buf);
11118 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
11119 result = packet_ok (rs->buf,
11120 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11121 if (result == PACKET_OK)
38691318
KB
11122 {
11123 ULONGEST result;
11124
6d820c5c 11125 unpack_varlen_hex (rs->buf, &result);
38691318
KB
11126 return result;
11127 }
571dd617 11128 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11129 throw_error (TLS_GENERIC_ERROR,
11130 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11131 else
109c3e39
AC
11132 throw_error (TLS_GENERIC_ERROR,
11133 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11134 }
11135 else
109c3e39
AC
11136 throw_error (TLS_GENERIC_ERROR,
11137 _("TLS not supported or disabled on this target"));
38691318
KB
11138 /* Not reached. */
11139 return 0;
11140}
11141
711e434b
PM
11142/* Provide thread local base, i.e. Thread Information Block address.
11143 Returns 1 if ptid is found and thread_local_base is non zero. */
11144
70221824 11145static int
bd7ae0f5 11146remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
711e434b 11147{
4082afcc 11148 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11149 {
11150 struct remote_state *rs = get_remote_state ();
11151 char *p = rs->buf;
11152 char *endp = rs->buf + get_remote_packet_size ();
11153 enum packet_result result;
11154
11155 strcpy (p, "qGetTIBAddr:");
11156 p += strlen (p);
11157 p = write_ptid (p, endp, ptid);
11158 *p++ = '\0';
11159
11160 putpkt (rs->buf);
11161 getpkt (&rs->buf, &rs->buf_size, 0);
11162 result = packet_ok (rs->buf,
11163 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11164 if (result == PACKET_OK)
11165 {
11166 ULONGEST result;
11167
11168 unpack_varlen_hex (rs->buf, &result);
11169 if (addr)
11170 *addr = (CORE_ADDR) result;
11171 return 1;
11172 }
11173 else if (result == PACKET_UNKNOWN)
11174 error (_("Remote target doesn't support qGetTIBAddr packet"));
11175 else
11176 error (_("Remote target failed to process qGetTIBAddr request"));
11177 }
11178 else
11179 error (_("qGetTIBAddr not supported or disabled on this target"));
11180 /* Not reached. */
11181 return 0;
11182}
11183
29709017
DJ
11184/* Support for inferring a target description based on the current
11185 architecture and the size of a 'g' packet. While the 'g' packet
11186 can have any size (since optional registers can be left off the
11187 end), some sizes are easily recognizable given knowledge of the
11188 approximate architecture. */
11189
11190struct remote_g_packet_guess
11191{
11192 int bytes;
11193 const struct target_desc *tdesc;
11194};
11195typedef struct remote_g_packet_guess remote_g_packet_guess_s;
11196DEF_VEC_O(remote_g_packet_guess_s);
11197
11198struct remote_g_packet_data
11199{
11200 VEC(remote_g_packet_guess_s) *guesses;
11201};
11202
11203static struct gdbarch_data *remote_g_packet_data_handle;
11204
11205static void *
11206remote_g_packet_data_init (struct obstack *obstack)
11207{
11208 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
11209}
11210
11211void
11212register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11213 const struct target_desc *tdesc)
11214{
11215 struct remote_g_packet_data *data
19ba03f4
SM
11216 = ((struct remote_g_packet_data *)
11217 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11218 struct remote_g_packet_guess new_guess, *guess;
11219 int ix;
11220
11221 gdb_assert (tdesc != NULL);
11222
11223 for (ix = 0;
11224 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11225 ix++)
11226 if (guess->bytes == bytes)
11227 internal_error (__FILE__, __LINE__,
9b20d036 11228 _("Duplicate g packet description added for size %d"),
29709017
DJ
11229 bytes);
11230
11231 new_guess.bytes = bytes;
11232 new_guess.tdesc = tdesc;
11233 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
11234}
11235
d962ef82
DJ
11236/* Return 1 if remote_read_description would do anything on this target
11237 and architecture, 0 otherwise. */
11238
11239static int
11240remote_read_description_p (struct target_ops *target)
11241{
11242 struct remote_g_packet_data *data
19ba03f4
SM
11243 = ((struct remote_g_packet_data *)
11244 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82
DJ
11245
11246 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11247 return 1;
11248
11249 return 0;
11250}
11251
29709017
DJ
11252static const struct target_desc *
11253remote_read_description (struct target_ops *target)
11254{
11255 struct remote_g_packet_data *data
19ba03f4
SM
11256 = ((struct remote_g_packet_data *)
11257 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11258
d962ef82
DJ
11259 /* Do not try this during initial connection, when we do not know
11260 whether there is a running but stopped thread. */
11261 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
2117c711 11262 return target->beneath->to_read_description (target->beneath);
d962ef82 11263
29709017
DJ
11264 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11265 {
11266 struct remote_g_packet_guess *guess;
11267 int ix;
11268 int bytes = send_g_packet ();
11269
11270 for (ix = 0;
11271 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11272 ix++)
11273 if (guess->bytes == bytes)
11274 return guess->tdesc;
11275
11276 /* We discard the g packet. A minor optimization would be to
11277 hold on to it, and fill the register cache once we have selected
11278 an architecture, but it's too tricky to do safely. */
11279 }
11280
2117c711 11281 return target->beneath->to_read_description (target->beneath);
29709017
DJ
11282}
11283
a6b151f1
DJ
11284/* Remote file transfer support. This is host-initiated I/O, not
11285 target-initiated; for target-initiated, see remote-fileio.c. */
11286
11287/* If *LEFT is at least the length of STRING, copy STRING to
11288 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11289 decrease *LEFT. Otherwise raise an error. */
11290
11291static void
a121b7c1 11292remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11293{
11294 int len = strlen (string);
11295
11296 if (len > *left)
11297 error (_("Packet too long for target."));
11298
11299 memcpy (*buffer, string, len);
11300 *buffer += len;
11301 *left -= len;
11302
11303 /* NUL-terminate the buffer as a convenience, if there is
11304 room. */
11305 if (*left)
11306 **buffer = '\0';
11307}
11308
11309/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11310 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11311 decrease *LEFT. Otherwise raise an error. */
11312
11313static void
11314remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11315 int len)
11316{
11317 if (2 * len > *left)
11318 error (_("Packet too long for target."));
11319
11320 bin2hex (bytes, *buffer, len);
11321 *buffer += 2 * len;
11322 *left -= 2 * len;
11323
11324 /* NUL-terminate the buffer as a convenience, if there is
11325 room. */
11326 if (*left)
11327 **buffer = '\0';
11328}
11329
11330/* If *LEFT is large enough, convert VALUE to hex and add it to
11331 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11332 decrease *LEFT. Otherwise raise an error. */
11333
11334static void
11335remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11336{
11337 int len = hexnumlen (value);
11338
11339 if (len > *left)
11340 error (_("Packet too long for target."));
11341
11342 hexnumstr (*buffer, value);
11343 *buffer += len;
11344 *left -= len;
11345
11346 /* NUL-terminate the buffer as a convenience, if there is
11347 room. */
11348 if (*left)
11349 **buffer = '\0';
11350}
11351
11352/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11353 value, *REMOTE_ERRNO to the remote error number or zero if none
11354 was included, and *ATTACHMENT to point to the start of the annex
11355 if any. The length of the packet isn't needed here; there may
11356 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11357
11358 Return 0 if the packet could be parsed, -1 if it could not. If
11359 -1 is returned, the other variables may not be initialized. */
11360
11361static int
11362remote_hostio_parse_result (char *buffer, int *retcode,
11363 int *remote_errno, char **attachment)
11364{
11365 char *p, *p2;
11366
11367 *remote_errno = 0;
11368 *attachment = NULL;
11369
11370 if (buffer[0] != 'F')
11371 return -1;
11372
11373 errno = 0;
11374 *retcode = strtol (&buffer[1], &p, 16);
11375 if (errno != 0 || p == &buffer[1])
11376 return -1;
11377
11378 /* Check for ",errno". */
11379 if (*p == ',')
11380 {
11381 errno = 0;
11382 *remote_errno = strtol (p + 1, &p2, 16);
11383 if (errno != 0 || p + 1 == p2)
11384 return -1;
11385 p = p2;
11386 }
11387
11388 /* Check for ";attachment". If there is no attachment, the
11389 packet should end here. */
11390 if (*p == ';')
11391 {
11392 *attachment = p + 1;
11393 return 0;
11394 }
11395 else if (*p == '\0')
11396 return 0;
11397 else
11398 return -1;
11399}
11400
11401/* Send a prepared I/O packet to the target and read its response.
11402 The prepared packet is in the global RS->BUF before this function
11403 is called, and the answer is there when we return.
11404
11405 COMMAND_BYTES is the length of the request to send, which may include
11406 binary data. WHICH_PACKET is the packet configuration to check
11407 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11408 is set to the error number and -1 is returned. Otherwise the value
11409 returned by the function is returned.
11410
11411 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11412 attachment is expected; an error will be reported if there's a
11413 mismatch. If one is found, *ATTACHMENT will be set to point into
11414 the packet buffer and *ATTACHMENT_LEN will be set to the
11415 attachment's length. */
11416
11417static int
11418remote_hostio_send_command (int command_bytes, int which_packet,
11419 int *remote_errno, char **attachment,
11420 int *attachment_len)
11421{
11422 struct remote_state *rs = get_remote_state ();
11423 int ret, bytes_read;
11424 char *attachment_tmp;
11425
5d93a237 11426 if (!rs->remote_desc
4082afcc 11427 || packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11428 {
11429 *remote_errno = FILEIO_ENOSYS;
11430 return -1;
11431 }
11432
11433 putpkt_binary (rs->buf, command_bytes);
11434 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11435
11436 /* If it timed out, something is wrong. Don't try to parse the
11437 buffer. */
11438 if (bytes_read < 0)
11439 {
11440 *remote_errno = FILEIO_EINVAL;
11441 return -1;
11442 }
11443
11444 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11445 {
11446 case PACKET_ERROR:
11447 *remote_errno = FILEIO_EINVAL;
11448 return -1;
11449 case PACKET_UNKNOWN:
11450 *remote_errno = FILEIO_ENOSYS;
11451 return -1;
11452 case PACKET_OK:
11453 break;
11454 }
11455
11456 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11457 &attachment_tmp))
11458 {
11459 *remote_errno = FILEIO_EINVAL;
11460 return -1;
11461 }
11462
11463 /* Make sure we saw an attachment if and only if we expected one. */
11464 if ((attachment_tmp == NULL && attachment != NULL)
11465 || (attachment_tmp != NULL && attachment == NULL))
11466 {
11467 *remote_errno = FILEIO_EINVAL;
11468 return -1;
11469 }
11470
11471 /* If an attachment was found, it must point into the packet buffer;
11472 work out how many bytes there were. */
11473 if (attachment_tmp != NULL)
11474 {
11475 *attachment = attachment_tmp;
11476 *attachment_len = bytes_read - (*attachment - rs->buf);
11477 }
11478
11479 return ret;
11480}
11481
80152258
PA
11482/* Invalidate the readahead cache. */
11483
11484static void
11485readahead_cache_invalidate (void)
11486{
11487 struct remote_state *rs = get_remote_state ();
11488
11489 rs->readahead_cache.fd = -1;
11490}
11491
11492/* Invalidate the readahead cache if it is holding data for FD. */
11493
11494static void
11495readahead_cache_invalidate_fd (int fd)
11496{
11497 struct remote_state *rs = get_remote_state ();
11498
11499 if (rs->readahead_cache.fd == fd)
11500 rs->readahead_cache.fd = -1;
11501}
11502
15a201c8
GB
11503/* Set the filesystem remote_hostio functions that take FILENAME
11504 arguments will use. Return 0 on success, or -1 if an error
11505 occurs (and set *REMOTE_ERRNO). */
11506
11507static int
11508remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11509{
11510 struct remote_state *rs = get_remote_state ();
11511 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11512 char *p = rs->buf;
11513 int left = get_remote_packet_size () - 1;
11514 char arg[9];
11515 int ret;
11516
11517 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11518 return 0;
11519
11520 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11521 return 0;
11522
11523 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11524
11525 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11526 remote_buffer_add_string (&p, &left, arg);
11527
11528 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11529 remote_errno, NULL, NULL);
11530
11531 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11532 return 0;
11533
11534 if (ret == 0)
11535 rs->fs_pid = required_pid;
11536
11537 return ret;
11538}
11539
12e2a5fd 11540/* Implementation of to_fileio_open. */
a6b151f1
DJ
11541
11542static int
cd897586 11543remote_hostio_open (struct target_ops *self,
07c138c8 11544 struct inferior *inf, const char *filename,
4313b8c0
GB
11545 int flags, int mode, int warn_if_slow,
11546 int *remote_errno)
a6b151f1
DJ
11547{
11548 struct remote_state *rs = get_remote_state ();
11549 char *p = rs->buf;
11550 int left = get_remote_packet_size () - 1;
11551
4313b8c0
GB
11552 if (warn_if_slow)
11553 {
11554 static int warning_issued = 0;
11555
11556 printf_unfiltered (_("Reading %s from remote target...\n"),
11557 filename);
11558
11559 if (!warning_issued)
11560 {
11561 warning (_("File transfers from remote targets can be slow."
11562 " Use \"set sysroot\" to access files locally"
11563 " instead."));
11564 warning_issued = 1;
11565 }
11566 }
11567
15a201c8
GB
11568 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11569 return -1;
11570
a6b151f1
DJ
11571 remote_buffer_add_string (&p, &left, "vFile:open:");
11572
11573 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11574 strlen (filename));
11575 remote_buffer_add_string (&p, &left, ",");
11576
11577 remote_buffer_add_int (&p, &left, flags);
11578 remote_buffer_add_string (&p, &left, ",");
11579
11580 remote_buffer_add_int (&p, &left, mode);
11581
11582 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11583 remote_errno, NULL, NULL);
11584}
11585
12e2a5fd 11586/* Implementation of to_fileio_pwrite. */
a6b151f1
DJ
11587
11588static int
0d866f62
TT
11589remote_hostio_pwrite (struct target_ops *self,
11590 int fd, const gdb_byte *write_buf, int len,
a6b151f1
DJ
11591 ULONGEST offset, int *remote_errno)
11592{
11593 struct remote_state *rs = get_remote_state ();
11594 char *p = rs->buf;
11595 int left = get_remote_packet_size ();
11596 int out_len;
11597
80152258
PA
11598 readahead_cache_invalidate_fd (fd);
11599
a6b151f1
DJ
11600 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11601
11602 remote_buffer_add_int (&p, &left, fd);
11603 remote_buffer_add_string (&p, &left, ",");
11604
11605 remote_buffer_add_int (&p, &left, offset);
11606 remote_buffer_add_string (&p, &left, ",");
11607
124e13d9 11608 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11609 get_remote_packet_size () - (p - rs->buf));
11610
11611 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11612 remote_errno, NULL, NULL);
11613}
11614
80152258
PA
11615/* Helper for the implementation of to_fileio_pread. Read the file
11616 from the remote side with vFile:pread. */
a6b151f1
DJ
11617
11618static int
80152258
PA
11619remote_hostio_pread_vFile (struct target_ops *self,
11620 int fd, gdb_byte *read_buf, int len,
11621 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11622{
11623 struct remote_state *rs = get_remote_state ();
11624 char *p = rs->buf;
11625 char *attachment;
11626 int left = get_remote_packet_size ();
11627 int ret, attachment_len;
11628 int read_len;
11629
11630 remote_buffer_add_string (&p, &left, "vFile:pread:");
11631
11632 remote_buffer_add_int (&p, &left, fd);
11633 remote_buffer_add_string (&p, &left, ",");
11634
11635 remote_buffer_add_int (&p, &left, len);
11636 remote_buffer_add_string (&p, &left, ",");
11637
11638 remote_buffer_add_int (&p, &left, offset);
11639
11640 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11641 remote_errno, &attachment,
11642 &attachment_len);
11643
11644 if (ret < 0)
11645 return ret;
11646
bc20a4af 11647 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11648 read_buf, len);
11649 if (read_len != ret)
11650 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11651
11652 return ret;
11653}
11654
80152258
PA
11655/* Serve pread from the readahead cache. Returns number of bytes
11656 read, or 0 if the request can't be served from the cache. */
11657
11658static int
11659remote_hostio_pread_from_cache (struct remote_state *rs,
11660 int fd, gdb_byte *read_buf, size_t len,
11661 ULONGEST offset)
11662{
11663 struct readahead_cache *cache = &rs->readahead_cache;
11664
11665 if (cache->fd == fd
11666 && cache->offset <= offset
11667 && offset < cache->offset + cache->bufsize)
11668 {
11669 ULONGEST max = cache->offset + cache->bufsize;
11670
11671 if (offset + len > max)
11672 len = max - offset;
11673
11674 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11675 return len;
11676 }
11677
11678 return 0;
11679}
11680
11681/* Implementation of to_fileio_pread. */
11682
11683static int
11684remote_hostio_pread (struct target_ops *self,
11685 int fd, gdb_byte *read_buf, int len,
11686 ULONGEST offset, int *remote_errno)
11687{
11688 int ret;
11689 struct remote_state *rs = get_remote_state ();
11690 struct readahead_cache *cache = &rs->readahead_cache;
11691
11692 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11693 if (ret > 0)
11694 {
11695 cache->hit_count++;
11696
11697 if (remote_debug)
11698 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11699 pulongest (cache->hit_count));
11700 return ret;
11701 }
11702
11703 cache->miss_count++;
11704 if (remote_debug)
11705 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11706 pulongest (cache->miss_count));
11707
11708 cache->fd = fd;
11709 cache->offset = offset;
11710 cache->bufsize = get_remote_packet_size ();
224c3ddb 11711 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258
PA
11712
11713 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11714 cache->offset, remote_errno);
11715 if (ret <= 0)
11716 {
11717 readahead_cache_invalidate_fd (fd);
11718 return ret;
11719 }
11720
11721 cache->bufsize = ret;
11722 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11723}
11724
12e2a5fd 11725/* Implementation of to_fileio_close. */
a6b151f1
DJ
11726
11727static int
df39ea25 11728remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
a6b151f1
DJ
11729{
11730 struct remote_state *rs = get_remote_state ();
11731 char *p = rs->buf;
11732 int left = get_remote_packet_size () - 1;
11733
80152258
PA
11734 readahead_cache_invalidate_fd (fd);
11735
a6b151f1
DJ
11736 remote_buffer_add_string (&p, &left, "vFile:close:");
11737
11738 remote_buffer_add_int (&p, &left, fd);
11739
11740 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11741 remote_errno, NULL, NULL);
11742}
11743
12e2a5fd 11744/* Implementation of to_fileio_unlink. */
a6b151f1
DJ
11745
11746static int
dbbca37d 11747remote_hostio_unlink (struct target_ops *self,
07c138c8
GB
11748 struct inferior *inf, const char *filename,
11749 int *remote_errno)
a6b151f1
DJ
11750{
11751 struct remote_state *rs = get_remote_state ();
11752 char *p = rs->buf;
11753 int left = get_remote_packet_size () - 1;
11754
15a201c8
GB
11755 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11756 return -1;
11757
a6b151f1
DJ
11758 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11759
11760 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11761 strlen (filename));
11762
11763 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11764 remote_errno, NULL, NULL);
11765}
11766
12e2a5fd 11767/* Implementation of to_fileio_readlink. */
b9e7b9c3
UW
11768
11769static char *
fab5aa7c 11770remote_hostio_readlink (struct target_ops *self,
07c138c8
GB
11771 struct inferior *inf, const char *filename,
11772 int *remote_errno)
b9e7b9c3
UW
11773{
11774 struct remote_state *rs = get_remote_state ();
11775 char *p = rs->buf;
11776 char *attachment;
11777 int left = get_remote_packet_size ();
11778 int len, attachment_len;
11779 int read_len;
11780 char *ret;
11781
15a201c8
GB
11782 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11783 return NULL;
11784
b9e7b9c3
UW
11785 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11786
11787 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11788 strlen (filename));
11789
11790 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11791 remote_errno, &attachment,
11792 &attachment_len);
11793
11794 if (len < 0)
11795 return NULL;
11796
224c3ddb 11797 ret = (char *) xmalloc (len + 1);
b9e7b9c3 11798
bc20a4af
PA
11799 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11800 (gdb_byte *) ret, len);
b9e7b9c3
UW
11801 if (read_len != len)
11802 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11803
11804 ret[len] = '\0';
11805 return ret;
11806}
11807
12e2a5fd 11808/* Implementation of to_fileio_fstat. */
0a93529c
GB
11809
11810static int
11811remote_hostio_fstat (struct target_ops *self,
11812 int fd, struct stat *st,
11813 int *remote_errno)
11814{
11815 struct remote_state *rs = get_remote_state ();
11816 char *p = rs->buf;
11817 int left = get_remote_packet_size ();
11818 int attachment_len, ret;
11819 char *attachment;
11820 struct fio_stat fst;
11821 int read_len;
11822
464b0089
GB
11823 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11824
11825 remote_buffer_add_int (&p, &left, fd);
11826
11827 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11828 remote_errno, &attachment,
11829 &attachment_len);
11830 if (ret < 0)
0a93529c 11831 {
464b0089
GB
11832 if (*remote_errno != FILEIO_ENOSYS)
11833 return ret;
11834
0a93529c
GB
11835 /* Strictly we should return -1, ENOSYS here, but when
11836 "set sysroot remote:" was implemented in August 2008
11837 BFD's need for a stat function was sidestepped with
11838 this hack. This was not remedied until March 2015
11839 so we retain the previous behavior to avoid breaking
11840 compatibility.
11841
11842 Note that the memset is a March 2015 addition; older
11843 GDBs set st_size *and nothing else* so the structure
11844 would have garbage in all other fields. This might
11845 break something but retaining the previous behavior
11846 here would be just too wrong. */
11847
11848 memset (st, 0, sizeof (struct stat));
11849 st->st_size = INT_MAX;
11850 return 0;
11851 }
11852
0a93529c
GB
11853 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11854 (gdb_byte *) &fst, sizeof (fst));
11855
11856 if (read_len != ret)
11857 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11858
11859 if (read_len != sizeof (fst))
11860 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11861 read_len, (int) sizeof (fst));
11862
11863 remote_fileio_to_host_stat (&fst, st);
11864
11865 return 0;
11866}
11867
12e2a5fd 11868/* Implementation of to_filesystem_is_local. */
e3dd7556
GB
11869
11870static int
11871remote_filesystem_is_local (struct target_ops *self)
11872{
11873 /* Valgrind GDB presents itself as a remote target but works
11874 on the local filesystem: it does not implement remote get
11875 and users are not expected to set a sysroot. To handle
11876 this case we treat the remote filesystem as local if the
11877 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11878 does not support vFile:open. */
a3be80c3 11879 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
11880 {
11881 enum packet_support ps = packet_support (PACKET_vFile_open);
11882
11883 if (ps == PACKET_SUPPORT_UNKNOWN)
11884 {
11885 int fd, remote_errno;
11886
11887 /* Try opening a file to probe support. The supplied
11888 filename is irrelevant, we only care about whether
11889 the stub recognizes the packet or not. */
07c138c8 11890 fd = remote_hostio_open (self, NULL, "just probing",
4313b8c0 11891 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
11892 &remote_errno);
11893
11894 if (fd >= 0)
11895 remote_hostio_close (self, fd, &remote_errno);
11896
11897 ps = packet_support (PACKET_vFile_open);
11898 }
11899
11900 if (ps == PACKET_DISABLE)
11901 {
11902 static int warning_issued = 0;
11903
11904 if (!warning_issued)
11905 {
11906 warning (_("remote target does not support file"
11907 " transfer, attempting to access files"
11908 " from local filesystem."));
11909 warning_issued = 1;
11910 }
11911
11912 return 1;
11913 }
11914 }
11915
11916 return 0;
11917}
11918
a6b151f1
DJ
11919static int
11920remote_fileio_errno_to_host (int errnum)
11921{
11922 switch (errnum)
11923 {
11924 case FILEIO_EPERM:
11925 return EPERM;
11926 case FILEIO_ENOENT:
11927 return ENOENT;
11928 case FILEIO_EINTR:
11929 return EINTR;
11930 case FILEIO_EIO:
11931 return EIO;
11932 case FILEIO_EBADF:
11933 return EBADF;
11934 case FILEIO_EACCES:
11935 return EACCES;
11936 case FILEIO_EFAULT:
11937 return EFAULT;
11938 case FILEIO_EBUSY:
11939 return EBUSY;
11940 case FILEIO_EEXIST:
11941 return EEXIST;
11942 case FILEIO_ENODEV:
11943 return ENODEV;
11944 case FILEIO_ENOTDIR:
11945 return ENOTDIR;
11946 case FILEIO_EISDIR:
11947 return EISDIR;
11948 case FILEIO_EINVAL:
11949 return EINVAL;
11950 case FILEIO_ENFILE:
11951 return ENFILE;
11952 case FILEIO_EMFILE:
11953 return EMFILE;
11954 case FILEIO_EFBIG:
11955 return EFBIG;
11956 case FILEIO_ENOSPC:
11957 return ENOSPC;
11958 case FILEIO_ESPIPE:
11959 return ESPIPE;
11960 case FILEIO_EROFS:
11961 return EROFS;
11962 case FILEIO_ENOSYS:
11963 return ENOSYS;
11964 case FILEIO_ENAMETOOLONG:
11965 return ENAMETOOLONG;
11966 }
11967 return -1;
11968}
11969
11970static char *
11971remote_hostio_error (int errnum)
11972{
11973 int host_error = remote_fileio_errno_to_host (errnum);
11974
11975 if (host_error == -1)
11976 error (_("Unknown remote I/O error %d"), errnum);
11977 else
11978 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11979}
11980
a6b151f1
DJ
11981static void
11982remote_hostio_close_cleanup (void *opaque)
11983{
11984 int fd = *(int *) opaque;
11985 int remote_errno;
11986
df39ea25 11987 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
a6b151f1
DJ
11988}
11989
11990void
11991remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11992{
11993 struct cleanup *back_to, *close_cleanup;
11994 int retcode, fd, remote_errno, bytes, io_size;
a6b151f1
DJ
11995 gdb_byte *buffer;
11996 int bytes_in_buffer;
11997 int saw_eof;
11998 ULONGEST offset;
5d93a237 11999 struct remote_state *rs = get_remote_state ();
a6b151f1 12000
5d93a237 12001 if (!rs->remote_desc)
a6b151f1
DJ
12002 error (_("command can only be used with remote target"));
12003
d419f42d 12004 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
12005 if (file == NULL)
12006 perror_with_name (local_file);
a6b151f1 12007
07c138c8 12008 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
cd897586 12009 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
a6b151f1 12010 | FILEIO_O_TRUNC),
4313b8c0 12011 0700, 0, &remote_errno);
a6b151f1
DJ
12012 if (fd == -1)
12013 remote_hostio_error (remote_errno);
12014
12015 /* Send up to this many bytes at once. They won't all fit in the
12016 remote packet limit, so we'll transfer slightly fewer. */
12017 io_size = get_remote_packet_size ();
224c3ddb 12018 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12019 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
12020
12021 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
12022
12023 bytes_in_buffer = 0;
12024 saw_eof = 0;
12025 offset = 0;
12026 while (bytes_in_buffer || !saw_eof)
12027 {
12028 if (!saw_eof)
12029 {
3e43a32a
MS
12030 bytes = fread (buffer + bytes_in_buffer, 1,
12031 io_size - bytes_in_buffer,
d419f42d 12032 file.get ());
a6b151f1
DJ
12033 if (bytes == 0)
12034 {
d419f42d 12035 if (ferror (file.get ()))
a6b151f1
DJ
12036 error (_("Error reading %s."), local_file);
12037 else
12038 {
12039 /* EOF. Unless there is something still in the
12040 buffer from the last iteration, we are done. */
12041 saw_eof = 1;
12042 if (bytes_in_buffer == 0)
12043 break;
12044 }
12045 }
12046 }
12047 else
12048 bytes = 0;
12049
12050 bytes += bytes_in_buffer;
12051 bytes_in_buffer = 0;
12052
0d866f62
TT
12053 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
12054 fd, buffer, bytes,
3e43a32a 12055 offset, &remote_errno);
a6b151f1
DJ
12056
12057 if (retcode < 0)
12058 remote_hostio_error (remote_errno);
12059 else if (retcode == 0)
12060 error (_("Remote write of %d bytes returned 0!"), bytes);
12061 else if (retcode < bytes)
12062 {
12063 /* Short write. Save the rest of the read data for the next
12064 write. */
12065 bytes_in_buffer = bytes - retcode;
12066 memmove (buffer, buffer + retcode, bytes_in_buffer);
12067 }
12068
12069 offset += retcode;
12070 }
12071
12072 discard_cleanups (close_cleanup);
df39ea25 12073 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12074 remote_hostio_error (remote_errno);
12075
12076 if (from_tty)
12077 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12078 do_cleanups (back_to);
12079}
12080
12081void
12082remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12083{
12084 struct cleanup *back_to, *close_cleanup;
cea39f65 12085 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
12086 gdb_byte *buffer;
12087 ULONGEST offset;
5d93a237 12088 struct remote_state *rs = get_remote_state ();
a6b151f1 12089
5d93a237 12090 if (!rs->remote_desc)
a6b151f1
DJ
12091 error (_("command can only be used with remote target"));
12092
07c138c8 12093 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
4313b8c0
GB
12094 remote_file, FILEIO_O_RDONLY, 0, 0,
12095 &remote_errno);
a6b151f1
DJ
12096 if (fd == -1)
12097 remote_hostio_error (remote_errno);
12098
d419f42d 12099 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12100 if (file == NULL)
12101 perror_with_name (local_file);
a6b151f1
DJ
12102
12103 /* Send up to this many bytes at once. They won't all fit in the
12104 remote packet limit, so we'll transfer slightly fewer. */
12105 io_size = get_remote_packet_size ();
224c3ddb 12106 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12107 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
12108
12109 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
12110
12111 offset = 0;
12112 while (1)
12113 {
a3be983c
TT
12114 bytes = remote_hostio_pread (find_target_at (process_stratum),
12115 fd, buffer, io_size, offset, &remote_errno);
a6b151f1
DJ
12116 if (bytes == 0)
12117 /* Success, but no bytes, means end-of-file. */
12118 break;
12119 if (bytes == -1)
12120 remote_hostio_error (remote_errno);
12121
12122 offset += bytes;
12123
d419f42d 12124 bytes = fwrite (buffer, 1, bytes, file.get ());
a6b151f1
DJ
12125 if (bytes == 0)
12126 perror_with_name (local_file);
12127 }
12128
12129 discard_cleanups (close_cleanup);
df39ea25 12130 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12131 remote_hostio_error (remote_errno);
12132
12133 if (from_tty)
12134 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12135 do_cleanups (back_to);
12136}
12137
12138void
12139remote_file_delete (const char *remote_file, int from_tty)
12140{
12141 int retcode, remote_errno;
5d93a237 12142 struct remote_state *rs = get_remote_state ();
a6b151f1 12143
5d93a237 12144 if (!rs->remote_desc)
a6b151f1
DJ
12145 error (_("command can only be used with remote target"));
12146
dbbca37d 12147 retcode = remote_hostio_unlink (find_target_at (process_stratum),
07c138c8 12148 NULL, remote_file, &remote_errno);
a6b151f1
DJ
12149 if (retcode == -1)
12150 remote_hostio_error (remote_errno);
12151
12152 if (from_tty)
12153 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12154}
12155
12156static void
ac88e2de 12157remote_put_command (const char *args, int from_tty)
a6b151f1 12158{
d1a41061
PP
12159 if (args == NULL)
12160 error_no_arg (_("file to put"));
12161
773a1edc 12162 gdb_argv argv (args);
a6b151f1
DJ
12163 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12164 error (_("Invalid parameters to remote put"));
12165
12166 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12167}
12168
12169static void
ac88e2de 12170remote_get_command (const char *args, int from_tty)
a6b151f1 12171{
d1a41061
PP
12172 if (args == NULL)
12173 error_no_arg (_("file to get"));
12174
773a1edc 12175 gdb_argv argv (args);
a6b151f1
DJ
12176 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12177 error (_("Invalid parameters to remote get"));
12178
12179 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12180}
12181
12182static void
ac88e2de 12183remote_delete_command (const char *args, int from_tty)
a6b151f1 12184{
d1a41061
PP
12185 if (args == NULL)
12186 error_no_arg (_("file to delete"));
12187
773a1edc 12188 gdb_argv argv (args);
a6b151f1
DJ
12189 if (argv[0] == NULL || argv[1] != NULL)
12190 error (_("Invalid parameters to remote delete"));
12191
12192 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12193}
12194
12195static void
981a3fb3 12196remote_command (const char *args, int from_tty)
a6b151f1 12197{
635c7e8a 12198 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12199}
12200
b2175913 12201static int
19db3e69 12202remote_can_execute_reverse (struct target_ops *self)
b2175913 12203{
4082afcc
PA
12204 if (packet_support (PACKET_bs) == PACKET_ENABLE
12205 || packet_support (PACKET_bc) == PACKET_ENABLE)
40ab02ce
MS
12206 return 1;
12207 else
12208 return 0;
b2175913
MS
12209}
12210
74531fed 12211static int
2a9a2795 12212remote_supports_non_stop (struct target_ops *self)
74531fed
PA
12213{
12214 return 1;
12215}
12216
03583c20 12217static int
2bfc0540 12218remote_supports_disable_randomization (struct target_ops *self)
03583c20
UW
12219{
12220 /* Only supported in extended mode. */
12221 return 0;
12222}
12223
8a305172 12224static int
86ce2668 12225remote_supports_multi_process (struct target_ops *self)
8a305172
PA
12226{
12227 struct remote_state *rs = get_remote_state ();
a744cf53 12228
8020350c 12229 return remote_multi_process_p (rs);
8a305172
PA
12230}
12231
70221824 12232static int
782b2b07
SS
12233remote_supports_cond_tracepoints (void)
12234{
4082afcc 12235 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12236}
12237
3788aec7 12238static int
efcc2da7 12239remote_supports_cond_breakpoints (struct target_ops *self)
3788aec7 12240{
4082afcc 12241 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12242}
12243
70221824 12244static int
7a697b8d
SS
12245remote_supports_fast_tracepoints (void)
12246{
4082afcc 12247 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12248}
12249
0fb4aa4b
PA
12250static int
12251remote_supports_static_tracepoints (void)
12252{
4082afcc 12253 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12254}
12255
1e4d1764
YQ
12256static int
12257remote_supports_install_in_trace (void)
12258{
4082afcc 12259 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12260}
12261
d248b706 12262static int
7d178d6a 12263remote_supports_enable_disable_tracepoint (struct target_ops *self)
d248b706 12264{
4082afcc
PA
12265 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12266 == PACKET_ENABLE);
d248b706
KY
12267}
12268
3065dfb6 12269static int
6de37a3a 12270remote_supports_string_tracing (struct target_ops *self)
3065dfb6 12271{
4082afcc 12272 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12273}
12274
d3ce09f5 12275static int
78eff0ec 12276remote_can_run_breakpoint_commands (struct target_ops *self)
d3ce09f5 12277{
4082afcc 12278 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12279}
12280
35b1e5cc 12281static void
ecae04e1 12282remote_trace_init (struct target_ops *self)
35b1e5cc 12283{
b6bb3468
PA
12284 struct remote_state *rs = get_remote_state ();
12285
35b1e5cc 12286 putpkt ("QTinit");
b6bb3468
PA
12287 remote_get_noisy_reply ();
12288 if (strcmp (rs->buf, "OK") != 0)
35b1e5cc
SS
12289 error (_("Target does not support this command."));
12290}
12291
12292static void free_actions_list (char **actions_list);
12293static void free_actions_list_cleanup_wrapper (void *);
12294static void
12295free_actions_list_cleanup_wrapper (void *al)
12296{
19ba03f4 12297 free_actions_list ((char **) al);
35b1e5cc
SS
12298}
12299
12300static void
12301free_actions_list (char **actions_list)
12302{
12303 int ndx;
12304
12305 if (actions_list == 0)
12306 return;
12307
12308 for (ndx = 0; actions_list[ndx]; ndx++)
12309 xfree (actions_list[ndx]);
12310
12311 xfree (actions_list);
12312}
12313
409873ef
SS
12314/* Recursive routine to walk through command list including loops, and
12315 download packets for each command. */
12316
12317static void
12318remote_download_command_source (int num, ULONGEST addr,
12319 struct command_line *cmds)
12320{
12321 struct remote_state *rs = get_remote_state ();
12322 struct command_line *cmd;
12323
12324 for (cmd = cmds; cmd; cmd = cmd->next)
12325 {
0df8b418 12326 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12327 strcpy (rs->buf, "QTDPsrc:");
12328 encode_source_string (num, addr, "cmd", cmd->line,
12329 rs->buf + strlen (rs->buf),
12330 rs->buf_size - strlen (rs->buf));
12331 putpkt (rs->buf);
b6bb3468
PA
12332 remote_get_noisy_reply ();
12333 if (strcmp (rs->buf, "OK"))
409873ef
SS
12334 warning (_("Target does not support source download."));
12335
12336 if (cmd->control_type == while_control
12337 || cmd->control_type == while_stepping_control)
12338 {
12339 remote_download_command_source (num, addr, *cmd->body_list);
12340
0df8b418 12341 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12342 strcpy (rs->buf, "QTDPsrc:");
12343 encode_source_string (num, addr, "cmd", "end",
12344 rs->buf + strlen (rs->buf),
12345 rs->buf_size - strlen (rs->buf));
12346 putpkt (rs->buf);
b6bb3468
PA
12347 remote_get_noisy_reply ();
12348 if (strcmp (rs->buf, "OK"))
409873ef
SS
12349 warning (_("Target does not support source download."));
12350 }
12351 }
12352}
12353
35b1e5cc 12354static void
548f7808 12355remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
35b1e5cc 12356{
bba74b36 12357#define BUF_SIZE 2048
e8ba3115 12358
35b1e5cc 12359 CORE_ADDR tpaddr;
409873ef 12360 char addrbuf[40];
bba74b36 12361 char buf[BUF_SIZE];
35b1e5cc
SS
12362 char **tdp_actions;
12363 char **stepping_actions;
12364 int ndx;
12365 struct cleanup *old_chain = NULL;
35b1e5cc 12366 char *pkt;
e8ba3115 12367 struct breakpoint *b = loc->owner;
d9b3f62e 12368 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12369 struct remote_state *rs = get_remote_state ();
35b1e5cc 12370
dc673c81 12371 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12372 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
12373 tdp_actions);
12374 (void) make_cleanup (free_actions_list_cleanup_wrapper,
12375 stepping_actions);
12376
12377 tpaddr = loc->address;
12378 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
12379 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
12380 addrbuf, /* address */
12381 (b->enable_state == bp_enabled ? 'E' : 'D'),
12382 t->step_count, t->pass_count);
e8ba3115
YQ
12383 /* Fast tracepoints are mostly handled by the target, but we can
12384 tell the target how big of an instruction block should be moved
12385 around. */
12386 if (b->type == bp_fast_tracepoint)
12387 {
12388 /* Only test for support at download time; we may not know
12389 target capabilities at definition time. */
12390 if (remote_supports_fast_tracepoints ())
35b1e5cc 12391 {
6b940e6a
PL
12392 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12393 NULL))
bba74b36 12394 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
6b940e6a 12395 gdb_insn_length (loc->gdbarch, tpaddr));
35b1e5cc 12396 else
e8ba3115
YQ
12397 /* If it passed validation at definition but fails now,
12398 something is very wrong. */
12399 internal_error (__FILE__, __LINE__,
12400 _("Fast tracepoint not "
12401 "valid during download"));
35b1e5cc 12402 }
e8ba3115
YQ
12403 else
12404 /* Fast tracepoints are functionally identical to regular
12405 tracepoints, so don't take lack of support as a reason to
12406 give up on the trace run. */
12407 warning (_("Target does not support fast tracepoints, "
12408 "downloading %d as regular tracepoint"), b->number);
12409 }
12410 else if (b->type == bp_static_tracepoint)
12411 {
12412 /* Only test for support at download time; we may not know
12413 target capabilities at definition time. */
12414 if (remote_supports_static_tracepoints ())
0fb4aa4b 12415 {
e8ba3115 12416 struct static_tracepoint_marker marker;
0fb4aa4b 12417
e8ba3115
YQ
12418 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12419 strcat (buf, ":S");
0fb4aa4b 12420 else
e8ba3115 12421 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12422 }
e8ba3115
YQ
12423 else
12424 /* Fast tracepoints are functionally identical to regular
12425 tracepoints, so don't take lack of support as a reason
12426 to give up on the trace run. */
12427 error (_("Target does not support static tracepoints"));
12428 }
12429 /* If the tracepoint has a conditional, make it into an agent
12430 expression and append to the definition. */
12431 if (loc->cond)
12432 {
12433 /* Only test support at download time, we may not know target
12434 capabilities at definition time. */
12435 if (remote_supports_cond_tracepoints ())
35b1e5cc 12436 {
833177a4 12437 agent_expr_up aexpr = gen_eval_for_expr (tpaddr, loc->cond.get ());
bba74b36
YQ
12438 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
12439 aexpr->len);
e8ba3115
YQ
12440 pkt = buf + strlen (buf);
12441 for (ndx = 0; ndx < aexpr->len; ++ndx)
12442 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12443 *pkt = '\0';
35b1e5cc 12444 }
e8ba3115
YQ
12445 else
12446 warning (_("Target does not support conditional tracepoints, "
12447 "ignoring tp %d cond"), b->number);
12448 }
35b1e5cc 12449
d9b3f62e 12450 if (b->commands || *default_collect)
e8ba3115
YQ
12451 strcat (buf, "-");
12452 putpkt (buf);
b6bb3468
PA
12453 remote_get_noisy_reply ();
12454 if (strcmp (rs->buf, "OK"))
e8ba3115 12455 error (_("Target does not support tracepoints."));
35b1e5cc 12456
e8ba3115
YQ
12457 /* do_single_steps (t); */
12458 if (tdp_actions)
12459 {
12460 for (ndx = 0; tdp_actions[ndx]; ndx++)
35b1e5cc 12461 {
e8ba3115 12462 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
12463 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
12464 b->number, addrbuf, /* address */
12465 tdp_actions[ndx],
12466 ((tdp_actions[ndx + 1] || stepping_actions)
12467 ? '-' : 0));
e8ba3115 12468 putpkt (buf);
b6bb3468
PA
12469 remote_get_noisy_reply ();
12470 if (strcmp (rs->buf, "OK"))
e8ba3115 12471 error (_("Error on target while setting tracepoints."));
35b1e5cc 12472 }
e8ba3115
YQ
12473 }
12474 if (stepping_actions)
12475 {
12476 for (ndx = 0; stepping_actions[ndx]; ndx++)
35b1e5cc 12477 {
e8ba3115 12478 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
12479 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12480 b->number, addrbuf, /* address */
12481 ((ndx == 0) ? "S" : ""),
12482 stepping_actions[ndx],
12483 (stepping_actions[ndx + 1] ? "-" : ""));
e8ba3115 12484 putpkt (buf);
b6bb3468
PA
12485 remote_get_noisy_reply ();
12486 if (strcmp (rs->buf, "OK"))
e8ba3115 12487 error (_("Error on target while setting tracepoints."));
35b1e5cc 12488 }
e8ba3115 12489 }
409873ef 12490
4082afcc 12491 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12492 {
f00aae0f 12493 if (b->location != NULL)
409873ef 12494 {
e8ba3115 12495 strcpy (buf, "QTDPsrc:");
f00aae0f 12496 encode_source_string (b->number, loc->address, "at",
d28cd78a 12497 event_location_to_string (b->location.get ()),
f00aae0f 12498 buf + strlen (buf), 2048 - strlen (buf));
e8ba3115 12499 putpkt (buf);
b6bb3468
PA
12500 remote_get_noisy_reply ();
12501 if (strcmp (rs->buf, "OK"))
e8ba3115 12502 warning (_("Target does not support source download."));
409873ef 12503 }
e8ba3115
YQ
12504 if (b->cond_string)
12505 {
12506 strcpy (buf, "QTDPsrc:");
12507 encode_source_string (b->number, loc->address,
12508 "cond", b->cond_string, buf + strlen (buf),
12509 2048 - strlen (buf));
12510 putpkt (buf);
b6bb3468
PA
12511 remote_get_noisy_reply ();
12512 if (strcmp (rs->buf, "OK"))
e8ba3115
YQ
12513 warning (_("Target does not support source download."));
12514 }
12515 remote_download_command_source (b->number, loc->address,
12516 breakpoint_commands (b));
35b1e5cc 12517 }
e8ba3115
YQ
12518
12519 do_cleanups (old_chain);
35b1e5cc
SS
12520}
12521
1e4d1764 12522static int
a52a8357 12523remote_can_download_tracepoint (struct target_ops *self)
1e4d1764 12524{
1e51243a
PA
12525 struct remote_state *rs = get_remote_state ();
12526 struct trace_status *ts;
12527 int status;
12528
12529 /* Don't try to install tracepoints until we've relocated our
12530 symbols, and fetched and merged the target's tracepoint list with
12531 ours. */
12532 if (rs->starting_up)
12533 return 0;
12534
12535 ts = current_trace_status ();
8bd200f1 12536 status = remote_get_trace_status (self, ts);
1e4d1764
YQ
12537
12538 if (status == -1 || !ts->running_known || !ts->running)
12539 return 0;
12540
12541 /* If we are in a tracing experiment, but remote stub doesn't support
12542 installing tracepoint in trace, we have to return. */
12543 if (!remote_supports_install_in_trace ())
12544 return 0;
12545
12546 return 1;
12547}
12548
12549
35b1e5cc 12550static void
559d2b81
TT
12551remote_download_trace_state_variable (struct target_ops *self,
12552 struct trace_state_variable *tsv)
35b1e5cc
SS
12553{
12554 struct remote_state *rs = get_remote_state ();
00bf0b85 12555 char *p;
35b1e5cc 12556
bba74b36
YQ
12557 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12558 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12559 tsv->builtin);
00bf0b85
SS
12560 p = rs->buf + strlen (rs->buf);
12561 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12562 error (_("Trace state variable name too long for tsv definition packet"));
9f1b45b0 12563 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
00bf0b85 12564 *p++ = '\0';
35b1e5cc 12565 putpkt (rs->buf);
b6bb3468
PA
12566 remote_get_noisy_reply ();
12567 if (*rs->buf == '\0')
ad91cd99 12568 error (_("Target does not support this command."));
b6bb3468 12569 if (strcmp (rs->buf, "OK") != 0)
ad91cd99 12570 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12571}
12572
d248b706 12573static void
46670d57
TT
12574remote_enable_tracepoint (struct target_ops *self,
12575 struct bp_location *location)
d248b706
KY
12576{
12577 struct remote_state *rs = get_remote_state ();
12578 char addr_buf[40];
12579
12580 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12581 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12582 location->owner->number, addr_buf);
d248b706 12583 putpkt (rs->buf);
b6bb3468 12584 remote_get_noisy_reply ();
d248b706
KY
12585 if (*rs->buf == '\0')
12586 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12587 if (strcmp (rs->buf, "OK") != 0)
12588 error (_("Error on target while enabling tracepoint."));
12589}
12590
12591static void
780b049c
TT
12592remote_disable_tracepoint (struct target_ops *self,
12593 struct bp_location *location)
d248b706
KY
12594{
12595 struct remote_state *rs = get_remote_state ();
12596 char addr_buf[40];
12597
12598 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12599 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12600 location->owner->number, addr_buf);
d248b706 12601 putpkt (rs->buf);
b6bb3468 12602 remote_get_noisy_reply ();
d248b706
KY
12603 if (*rs->buf == '\0')
12604 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12605 if (strcmp (rs->buf, "OK") != 0)
12606 error (_("Error on target while disabling tracepoint."));
12607}
12608
35b1e5cc 12609static void
583f9a86 12610remote_trace_set_readonly_regions (struct target_ops *self)
35b1e5cc
SS
12611{
12612 asection *s;
81b9b86e 12613 bfd *abfd = NULL;
35b1e5cc 12614 bfd_size_type size;
608bcef2 12615 bfd_vma vma;
35b1e5cc 12616 int anysecs = 0;
c2fa21f1 12617 int offset = 0;
35b1e5cc
SS
12618
12619 if (!exec_bfd)
12620 return; /* No information to give. */
12621
b6bb3468
PA
12622 struct remote_state *rs = get_remote_state ();
12623
12624 strcpy (rs->buf, "QTro");
12625 offset = strlen (rs->buf);
35b1e5cc
SS
12626 for (s = exec_bfd->sections; s; s = s->next)
12627 {
12628 char tmp1[40], tmp2[40];
c2fa21f1 12629 int sec_length;
35b1e5cc
SS
12630
12631 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 12632 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
12633 (s->flags & SEC_READONLY) == 0)
12634 continue;
12635
12636 anysecs = 1;
81b9b86e 12637 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 12638 size = bfd_get_section_size (s);
608bcef2
HZ
12639 sprintf_vma (tmp1, vma);
12640 sprintf_vma (tmp2, vma + size);
c2fa21f1 12641 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
b6bb3468 12642 if (offset + sec_length + 1 > rs->buf_size)
c2fa21f1 12643 {
4082afcc 12644 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 12645 warning (_("\
c2fa21f1
HZ
12646Too many sections for read-only sections definition packet."));
12647 break;
12648 }
b6bb3468 12649 xsnprintf (rs->buf + offset, rs->buf_size - offset, ":%s,%s",
bba74b36 12650 tmp1, tmp2);
c2fa21f1 12651 offset += sec_length;
35b1e5cc
SS
12652 }
12653 if (anysecs)
12654 {
b6bb3468
PA
12655 putpkt (rs->buf);
12656 getpkt (&rs->buf, &rs->buf_size, 0);
35b1e5cc
SS
12657 }
12658}
12659
12660static void
e2d1aae3 12661remote_trace_start (struct target_ops *self)
35b1e5cc 12662{
b6bb3468
PA
12663 struct remote_state *rs = get_remote_state ();
12664
35b1e5cc 12665 putpkt ("QTStart");
b6bb3468
PA
12666 remote_get_noisy_reply ();
12667 if (*rs->buf == '\0')
ad91cd99 12668 error (_("Target does not support this command."));
b6bb3468
PA
12669 if (strcmp (rs->buf, "OK") != 0)
12670 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12671}
12672
12673static int
8bd200f1 12674remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
35b1e5cc 12675{
953b98d1 12676 /* Initialize it just to avoid a GCC false warning. */
f652de6f 12677 char *p = NULL;
0df8b418 12678 /* FIXME we need to get register block size some other way. */
00bf0b85 12679 extern int trace_regblock_size;
bd3eecc3 12680 enum packet_result result;
b6bb3468 12681 struct remote_state *rs = get_remote_state ();
bd3eecc3 12682
4082afcc 12683 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 12684 return -1;
a744cf53 12685
5cd63fda
PA
12686 trace_regblock_size
12687 = get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 12688
049dc89b
JK
12689 putpkt ("qTStatus");
12690
492d29ea 12691 TRY
67f41397 12692 {
b6bb3468 12693 p = remote_get_noisy_reply ();
67f41397 12694 }
492d29ea 12695 CATCH (ex, RETURN_MASK_ERROR)
67f41397 12696 {
598d3636
JK
12697 if (ex.error != TARGET_CLOSE_ERROR)
12698 {
12699 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12700 return -1;
12701 }
12702 throw_exception (ex);
67f41397 12703 }
492d29ea 12704 END_CATCH
00bf0b85 12705
bd3eecc3
PA
12706 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12707
00bf0b85 12708 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 12709 if (result == PACKET_UNKNOWN)
00bf0b85 12710 return -1;
35b1e5cc 12711
00bf0b85 12712 /* We're working with a live target. */
f5911ea1 12713 ts->filename = NULL;
00bf0b85 12714
00bf0b85 12715 if (*p++ != 'T')
b6bb3468 12716 error (_("Bogus trace status reply from target: %s"), rs->buf);
35b1e5cc 12717
84cebc4a
YQ
12718 /* Function 'parse_trace_status' sets default value of each field of
12719 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
12720 parse_trace_status (p, ts);
12721
12722 return ts->running;
35b1e5cc
SS
12723}
12724
70221824 12725static void
db90e85c 12726remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
f196051f
SS
12727 struct uploaded_tp *utp)
12728{
12729 struct remote_state *rs = get_remote_state ();
f196051f
SS
12730 char *reply;
12731 struct bp_location *loc;
12732 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 12733 size_t size = get_remote_packet_size ();
f196051f
SS
12734
12735 if (tp)
12736 {
c1fc2657 12737 tp->hit_count = 0;
f196051f 12738 tp->traceframe_usage = 0;
c1fc2657 12739 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
12740 {
12741 /* If the tracepoint was never downloaded, don't go asking for
12742 any status. */
12743 if (tp->number_on_target == 0)
12744 continue;
bba74b36
YQ
12745 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12746 phex_nz (loc->address, 0));
f196051f 12747 putpkt (rs->buf);
b6bb3468 12748 reply = remote_get_noisy_reply ();
f196051f
SS
12749 if (reply && *reply)
12750 {
12751 if (*reply == 'V')
12752 parse_tracepoint_status (reply + 1, bp, utp);
12753 }
12754 }
12755 }
12756 else if (utp)
12757 {
12758 utp->hit_count = 0;
12759 utp->traceframe_usage = 0;
bba74b36
YQ
12760 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12761 phex_nz (utp->addr, 0));
f196051f 12762 putpkt (rs->buf);
b6bb3468 12763 reply = remote_get_noisy_reply ();
f196051f
SS
12764 if (reply && *reply)
12765 {
12766 if (*reply == 'V')
12767 parse_tracepoint_status (reply + 1, bp, utp);
12768 }
12769 }
12770}
12771
35b1e5cc 12772static void
74499f1b 12773remote_trace_stop (struct target_ops *self)
35b1e5cc 12774{
b6bb3468
PA
12775 struct remote_state *rs = get_remote_state ();
12776
35b1e5cc 12777 putpkt ("QTStop");
b6bb3468
PA
12778 remote_get_noisy_reply ();
12779 if (*rs->buf == '\0')
ad91cd99 12780 error (_("Target does not support this command."));
b6bb3468
PA
12781 if (strcmp (rs->buf, "OK") != 0)
12782 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12783}
12784
12785static int
bd4c6793
TT
12786remote_trace_find (struct target_ops *self,
12787 enum trace_find_type type, int num,
cc5925ad 12788 CORE_ADDR addr1, CORE_ADDR addr2,
35b1e5cc
SS
12789 int *tpp)
12790{
12791 struct remote_state *rs = get_remote_state ();
bba74b36 12792 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
12793 char *p, *reply;
12794 int target_frameno = -1, target_tracept = -1;
12795
e6e4e701
PA
12796 /* Lookups other than by absolute frame number depend on the current
12797 trace selected, so make sure it is correct on the remote end
12798 first. */
12799 if (type != tfind_number)
12800 set_remote_traceframe ();
12801
35b1e5cc
SS
12802 p = rs->buf;
12803 strcpy (p, "QTFrame:");
12804 p = strchr (p, '\0');
12805 switch (type)
12806 {
12807 case tfind_number:
bba74b36 12808 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
12809 break;
12810 case tfind_pc:
bba74b36 12811 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
12812 break;
12813 case tfind_tp:
bba74b36 12814 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
12815 break;
12816 case tfind_range:
bba74b36
YQ
12817 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12818 phex_nz (addr2, 0));
35b1e5cc
SS
12819 break;
12820 case tfind_outside:
bba74b36
YQ
12821 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12822 phex_nz (addr2, 0));
35b1e5cc
SS
12823 break;
12824 default:
9b20d036 12825 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
12826 }
12827
12828 putpkt (rs->buf);
b6bb3468 12829 reply = remote_get_noisy_reply ();
ad91cd99
PA
12830 if (*reply == '\0')
12831 error (_("Target does not support this command."));
35b1e5cc
SS
12832
12833 while (reply && *reply)
12834 switch (*reply)
12835 {
12836 case 'F':
f197e0f1
VP
12837 p = ++reply;
12838 target_frameno = (int) strtol (p, &reply, 16);
12839 if (reply == p)
12840 error (_("Unable to parse trace frame number"));
e6e4e701
PA
12841 /* Don't update our remote traceframe number cache on failure
12842 to select a remote traceframe. */
f197e0f1
VP
12843 if (target_frameno == -1)
12844 return -1;
35b1e5cc
SS
12845 break;
12846 case 'T':
f197e0f1
VP
12847 p = ++reply;
12848 target_tracept = (int) strtol (p, &reply, 16);
12849 if (reply == p)
12850 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
12851 break;
12852 case 'O': /* "OK"? */
12853 if (reply[1] == 'K' && reply[2] == '\0')
12854 reply += 2;
12855 else
12856 error (_("Bogus reply from target: %s"), reply);
12857 break;
12858 default:
12859 error (_("Bogus reply from target: %s"), reply);
12860 }
12861 if (tpp)
12862 *tpp = target_tracept;
e6e4e701 12863
262e1174 12864 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
12865 return target_frameno;
12866}
12867
12868static int
4011015b
TT
12869remote_get_trace_state_variable_value (struct target_ops *self,
12870 int tsvnum, LONGEST *val)
35b1e5cc
SS
12871{
12872 struct remote_state *rs = get_remote_state ();
12873 char *reply;
12874 ULONGEST uval;
12875
e6e4e701
PA
12876 set_remote_traceframe ();
12877
bba74b36 12878 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 12879 putpkt (rs->buf);
b6bb3468 12880 reply = remote_get_noisy_reply ();
35b1e5cc
SS
12881 if (reply && *reply)
12882 {
12883 if (*reply == 'V')
12884 {
12885 unpack_varlen_hex (reply + 1, &uval);
12886 *val = (LONGEST) uval;
12887 return 1;
12888 }
12889 }
12890 return 0;
12891}
12892
00bf0b85 12893static int
dc3decaf 12894remote_save_trace_data (struct target_ops *self, const char *filename)
00bf0b85
SS
12895{
12896 struct remote_state *rs = get_remote_state ();
12897 char *p, *reply;
12898
12899 p = rs->buf;
12900 strcpy (p, "QTSave:");
12901 p += strlen (p);
12902 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12903 error (_("Remote file name too long for trace save packet"));
9f1b45b0 12904 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
12905 *p++ = '\0';
12906 putpkt (rs->buf);
b6bb3468 12907 reply = remote_get_noisy_reply ();
d6c5869f 12908 if (*reply == '\0')
ad91cd99
PA
12909 error (_("Target does not support this command."));
12910 if (strcmp (reply, "OK") != 0)
12911 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
12912 return 0;
12913}
12914
12915/* This is basically a memory transfer, but needs to be its own packet
12916 because we don't know how the target actually organizes its trace
12917 memory, plus we want to be able to ask for as much as possible, but
12918 not be unhappy if we don't get as much as we ask for. */
12919
12920static LONGEST
88ee6f45
TT
12921remote_get_raw_trace_data (struct target_ops *self,
12922 gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
12923{
12924 struct remote_state *rs = get_remote_state ();
12925 char *reply;
12926 char *p;
12927 int rslt;
12928
12929 p = rs->buf;
12930 strcpy (p, "qTBuffer:");
12931 p += strlen (p);
12932 p += hexnumstr (p, offset);
12933 *p++ = ',';
12934 p += hexnumstr (p, len);
12935 *p++ = '\0';
12936
12937 putpkt (rs->buf);
b6bb3468 12938 reply = remote_get_noisy_reply ();
00bf0b85
SS
12939 if (reply && *reply)
12940 {
12941 /* 'l' by itself means we're at the end of the buffer and
12942 there is nothing more to get. */
12943 if (*reply == 'l')
12944 return 0;
12945
12946 /* Convert the reply into binary. Limit the number of bytes to
12947 convert according to our passed-in buffer size, rather than
12948 what was returned in the packet; if the target is
12949 unexpectedly generous and gives us a bigger reply than we
12950 asked for, we don't want to crash. */
b6bb3468 12951 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
12952 return rslt;
12953 }
12954
12955 /* Something went wrong, flag as an error. */
12956 return -1;
12957}
12958
35b1e5cc 12959static void
37b25738 12960remote_set_disconnected_tracing (struct target_ops *self, int val)
35b1e5cc
SS
12961{
12962 struct remote_state *rs = get_remote_state ();
12963
4082afcc 12964 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 12965 {
ad91cd99
PA
12966 char *reply;
12967
bba74b36 12968 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 12969 putpkt (rs->buf);
b6bb3468 12970 reply = remote_get_noisy_reply ();
ad91cd99 12971 if (*reply == '\0')
33da3f1c 12972 error (_("Target does not support this command."));
ad91cd99
PA
12973 if (strcmp (reply, "OK") != 0)
12974 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
12975 }
12976 else if (val)
12977 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
12978}
12979
dc146f7c
VP
12980static int
12981remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12982{
12983 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 12984
fe978cb0
PA
12985 if (info && info->priv)
12986 return info->priv->core;
dc146f7c
VP
12987 return -1;
12988}
12989
4daf5ac0 12990static void
736d5b1f 12991remote_set_circular_trace_buffer (struct target_ops *self, int val)
4daf5ac0
SS
12992{
12993 struct remote_state *rs = get_remote_state ();
ad91cd99 12994 char *reply;
4daf5ac0 12995
bba74b36 12996 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 12997 putpkt (rs->buf);
b6bb3468 12998 reply = remote_get_noisy_reply ();
ad91cd99 12999 if (*reply == '\0')
4daf5ac0 13000 error (_("Target does not support this command."));
ad91cd99
PA
13001 if (strcmp (reply, "OK") != 0)
13002 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
13003}
13004
2098b393 13005static traceframe_info_up
a893e81f 13006remote_traceframe_info (struct target_ops *self)
b3b9301e 13007{
b7b030ad
TT
13008 gdb::unique_xmalloc_ptr<char> text
13009 = target_read_stralloc (&current_target, TARGET_OBJECT_TRACEFRAME_INFO,
13010 NULL);
b3b9301e 13011 if (text != NULL)
b7b030ad 13012 return parse_traceframe_info (text.get ());
b3b9301e
PA
13013
13014 return NULL;
13015}
13016
405f8e94
SS
13017/* Handle the qTMinFTPILen packet. Returns the minimum length of
13018 instruction on which a fast tracepoint may be placed. Returns -1
13019 if the packet is not supported, and 0 if the minimum instruction
13020 length is unknown. */
13021
13022static int
0e67620a 13023remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
405f8e94
SS
13024{
13025 struct remote_state *rs = get_remote_state ();
13026 char *reply;
13027
e886a173
PA
13028 /* If we're not debugging a process yet, the IPA can't be
13029 loaded. */
13030 if (!target_has_execution)
13031 return 0;
13032
13033 /* Make sure the remote is pointing at the right process. */
13034 set_general_process ();
13035
bba74b36 13036 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94 13037 putpkt (rs->buf);
b6bb3468 13038 reply = remote_get_noisy_reply ();
405f8e94
SS
13039 if (*reply == '\0')
13040 return -1;
13041 else
13042 {
13043 ULONGEST min_insn_len;
13044
13045 unpack_varlen_hex (reply, &min_insn_len);
13046
13047 return (int) min_insn_len;
13048 }
13049}
13050
f6f899bf 13051static void
4da384be 13052remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
f6f899bf 13053{
4082afcc 13054 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
13055 {
13056 struct remote_state *rs = get_remote_state ();
13057 char *buf = rs->buf;
13058 char *endbuf = rs->buf + get_remote_packet_size ();
13059 enum packet_result result;
13060
13061 gdb_assert (val >= 0 || val == -1);
13062 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13063 /* Send -1 as literal "-1" to avoid host size dependency. */
13064 if (val < 0)
13065 {
13066 *buf++ = '-';
13067 buf += hexnumstr (buf, (ULONGEST) -val);
13068 }
13069 else
13070 buf += hexnumstr (buf, (ULONGEST) val);
13071
13072 putpkt (rs->buf);
b6bb3468 13073 remote_get_noisy_reply ();
f6f899bf
HAQ
13074 result = packet_ok (rs->buf,
13075 &remote_protocol_packets[PACKET_QTBuffer_size]);
13076
13077 if (result != PACKET_OK)
13078 warning (_("Bogus reply from target: %s"), rs->buf);
13079 }
13080}
13081
f196051f 13082static int
d9e68a2c
TT
13083remote_set_trace_notes (struct target_ops *self,
13084 const char *user, const char *notes,
ca623f82 13085 const char *stop_notes)
f196051f
SS
13086{
13087 struct remote_state *rs = get_remote_state ();
13088 char *reply;
13089 char *buf = rs->buf;
13090 char *endbuf = rs->buf + get_remote_packet_size ();
13091 int nbytes;
13092
13093 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13094 if (user)
13095 {
13096 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13097 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13098 buf += 2 * nbytes;
13099 *buf++ = ';';
13100 }
13101 if (notes)
13102 {
13103 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13104 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13105 buf += 2 * nbytes;
13106 *buf++ = ';';
13107 }
13108 if (stop_notes)
13109 {
13110 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13111 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13112 buf += 2 * nbytes;
13113 *buf++ = ';';
13114 }
13115 /* Ensure the buffer is terminated. */
13116 *buf = '\0';
13117
13118 putpkt (rs->buf);
b6bb3468 13119 reply = remote_get_noisy_reply ();
f196051f
SS
13120 if (*reply == '\0')
13121 return 0;
13122
13123 if (strcmp (reply, "OK") != 0)
13124 error (_("Bogus reply from target: %s"), reply);
13125
13126 return 1;
13127}
13128
d1feda86 13129static int
2c152180 13130remote_use_agent (struct target_ops *self, int use)
d1feda86 13131{
4082afcc 13132 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13133 {
13134 struct remote_state *rs = get_remote_state ();
13135
13136 /* If the stub supports QAgent. */
bba74b36 13137 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
13138 putpkt (rs->buf);
13139 getpkt (&rs->buf, &rs->buf_size, 0);
13140
13141 if (strcmp (rs->buf, "OK") == 0)
13142 {
13143 use_agent = use;
13144 return 1;
13145 }
13146 }
13147
13148 return 0;
13149}
13150
13151static int
fe38f897 13152remote_can_use_agent (struct target_ops *self)
d1feda86 13153{
4082afcc 13154 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13155}
13156
9accd112
MM
13157struct btrace_target_info
13158{
13159 /* The ptid of the traced thread. */
13160 ptid_t ptid;
f4abbc16
MM
13161
13162 /* The obtained branch trace configuration. */
13163 struct btrace_config conf;
9accd112
MM
13164};
13165
f4abbc16
MM
13166/* Reset our idea of our target's btrace configuration. */
13167
13168static void
13169remote_btrace_reset (void)
13170{
13171 struct remote_state *rs = get_remote_state ();
13172
13173 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13174}
13175
9accd112
MM
13176/* Check whether the target supports branch tracing. */
13177
13178static int
043c3577 13179remote_supports_btrace (struct target_ops *self, enum btrace_format format)
9accd112 13180{
4082afcc 13181 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
9accd112 13182 return 0;
4082afcc 13183 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
9accd112
MM
13184 return 0;
13185
043c3577
MM
13186 switch (format)
13187 {
13188 case BTRACE_FORMAT_NONE:
13189 return 0;
13190
13191 case BTRACE_FORMAT_BTS:
13192 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
b20a6524
MM
13193
13194 case BTRACE_FORMAT_PT:
13195 /* The trace is decoded on the host. Even if our target supports it,
13196 we still need to have libipt to decode the trace. */
13197#if defined (HAVE_LIBIPT)
13198 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
13199#else /* !defined (HAVE_LIBIPT) */
13200 return 0;
13201#endif /* !defined (HAVE_LIBIPT) */
043c3577
MM
13202 }
13203
13204 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
9accd112
MM
13205}
13206
f4abbc16
MM
13207/* Synchronize the configuration with the target. */
13208
13209static void
13210btrace_sync_conf (const struct btrace_config *conf)
13211{
d33501a5
MM
13212 struct packet_config *packet;
13213 struct remote_state *rs;
13214 char *buf, *pos, *endbuf;
13215
13216 rs = get_remote_state ();
13217 buf = rs->buf;
13218 endbuf = buf + get_remote_packet_size ();
13219
13220 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13221 if (packet_config_support (packet) == PACKET_ENABLE
13222 && conf->bts.size != rs->btrace_config.bts.size)
13223 {
13224 pos = buf;
13225 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13226 conf->bts.size);
13227
13228 putpkt (buf);
13229 getpkt (&buf, &rs->buf_size, 0);
13230
13231 if (packet_ok (buf, packet) == PACKET_ERROR)
13232 {
13233 if (buf[0] == 'E' && buf[1] == '.')
13234 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13235 else
13236 error (_("Failed to configure the BTS buffer size."));
13237 }
13238
13239 rs->btrace_config.bts.size = conf->bts.size;
13240 }
b20a6524
MM
13241
13242 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13243 if (packet_config_support (packet) == PACKET_ENABLE
13244 && conf->pt.size != rs->btrace_config.pt.size)
13245 {
13246 pos = buf;
13247 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13248 conf->pt.size);
13249
13250 putpkt (buf);
13251 getpkt (&buf, &rs->buf_size, 0);
13252
13253 if (packet_ok (buf, packet) == PACKET_ERROR)
13254 {
13255 if (buf[0] == 'E' && buf[1] == '.')
13256 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13257 else
13258 error (_("Failed to configure the trace buffer size."));
13259 }
13260
13261 rs->btrace_config.pt.size = conf->pt.size;
13262 }
f4abbc16
MM
13263}
13264
13265/* Read the current thread's btrace configuration from the target and
13266 store it into CONF. */
13267
13268static void
13269btrace_read_config (struct btrace_config *conf)
13270{
b7b030ad
TT
13271 gdb::unique_xmalloc_ptr<char> xml
13272 = target_read_stralloc (&current_target, TARGET_OBJECT_BTRACE_CONF, "");
f4abbc16 13273 if (xml != NULL)
b7b030ad 13274 parse_xml_btrace_conf (conf, xml.get ());
f4abbc16
MM
13275}
13276
c0272db5
TW
13277/* Maybe reopen target btrace. */
13278
13279static void
13280remote_btrace_maybe_reopen (void)
13281{
13282 struct remote_state *rs = get_remote_state ();
c0272db5
TW
13283 struct thread_info *tp;
13284 int btrace_target_pushed = 0;
13285 int warned = 0;
13286
5ed8105e
PA
13287 scoped_restore_current_thread restore_thread;
13288
c0272db5
TW
13289 ALL_NON_EXITED_THREADS (tp)
13290 {
13291 set_general_thread (tp->ptid);
13292
13293 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13294 btrace_read_config (&rs->btrace_config);
13295
13296 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13297 continue;
13298
13299#if !defined (HAVE_LIBIPT)
13300 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13301 {
13302 if (!warned)
13303 {
13304 warned = 1;
13305 warning (_("GDB does not support Intel Processor Trace. "
13306 "\"record\" will not work in this session."));
13307 }
13308
13309 continue;
13310 }
13311#endif /* !defined (HAVE_LIBIPT) */
13312
13313 /* Push target, once, but before anything else happens. This way our
13314 changes to the threads will be cleaned up by unpushing the target
13315 in case btrace_read_config () throws. */
13316 if (!btrace_target_pushed)
13317 {
13318 btrace_target_pushed = 1;
13319 record_btrace_push_target ();
13320 printf_filtered (_("Target is recording using %s.\n"),
13321 btrace_format_string (rs->btrace_config.format));
13322 }
13323
13324 tp->btrace.target = XCNEW (struct btrace_target_info);
13325 tp->btrace.target->ptid = tp->ptid;
13326 tp->btrace.target->conf = rs->btrace_config;
13327 }
c0272db5
TW
13328}
13329
9accd112
MM
13330/* Enable branch tracing. */
13331
13332static struct btrace_target_info *
f4abbc16
MM
13333remote_enable_btrace (struct target_ops *self, ptid_t ptid,
13334 const struct btrace_config *conf)
9accd112
MM
13335{
13336 struct btrace_target_info *tinfo = NULL;
b20a6524 13337 struct packet_config *packet = NULL;
9accd112
MM
13338 struct remote_state *rs = get_remote_state ();
13339 char *buf = rs->buf;
13340 char *endbuf = rs->buf + get_remote_packet_size ();
13341
b20a6524
MM
13342 switch (conf->format)
13343 {
13344 case BTRACE_FORMAT_BTS:
13345 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13346 break;
13347
13348 case BTRACE_FORMAT_PT:
13349 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13350 break;
13351 }
13352
13353 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13354 error (_("Target does not support branch tracing."));
13355
f4abbc16
MM
13356 btrace_sync_conf (conf);
13357
9accd112
MM
13358 set_general_thread (ptid);
13359
13360 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13361 putpkt (rs->buf);
13362 getpkt (&rs->buf, &rs->buf_size, 0);
13363
13364 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13365 {
13366 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13367 error (_("Could not enable branch tracing for %s: %s"),
13368 target_pid_to_str (ptid), rs->buf + 2);
13369 else
13370 error (_("Could not enable branch tracing for %s."),
13371 target_pid_to_str (ptid));
13372 }
13373
8d749320 13374 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13375 tinfo->ptid = ptid;
13376
f4abbc16
MM
13377 /* If we fail to read the configuration, we lose some information, but the
13378 tracing itself is not impacted. */
492d29ea
PA
13379 TRY
13380 {
13381 btrace_read_config (&tinfo->conf);
13382 }
13383 CATCH (err, RETURN_MASK_ERROR)
13384 {
13385 if (err.message != NULL)
13386 warning ("%s", err.message);
13387 }
13388 END_CATCH
f4abbc16 13389
9accd112
MM
13390 return tinfo;
13391}
13392
13393/* Disable branch tracing. */
13394
13395static void
25e95349
TT
13396remote_disable_btrace (struct target_ops *self,
13397 struct btrace_target_info *tinfo)
9accd112
MM
13398{
13399 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13400 struct remote_state *rs = get_remote_state ();
13401 char *buf = rs->buf;
13402 char *endbuf = rs->buf + get_remote_packet_size ();
13403
4082afcc 13404 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13405 error (_("Target does not support branch tracing."));
13406
13407 set_general_thread (tinfo->ptid);
13408
13409 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13410 putpkt (rs->buf);
13411 getpkt (&rs->buf, &rs->buf_size, 0);
13412
13413 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13414 {
13415 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13416 error (_("Could not disable branch tracing for %s: %s"),
13417 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13418 else
13419 error (_("Could not disable branch tracing for %s."),
13420 target_pid_to_str (tinfo->ptid));
13421 }
13422
13423 xfree (tinfo);
13424}
13425
13426/* Teardown branch tracing. */
13427
13428static void
1777056d
TT
13429remote_teardown_btrace (struct target_ops *self,
13430 struct btrace_target_info *tinfo)
9accd112
MM
13431{
13432 /* We must not talk to the target during teardown. */
13433 xfree (tinfo);
13434}
13435
13436/* Read the branch trace. */
13437
969c39fb 13438static enum btrace_error
39c49f83 13439remote_read_btrace (struct target_ops *self,
734b0e4b 13440 struct btrace_data *btrace,
969c39fb 13441 struct btrace_target_info *tinfo,
9accd112
MM
13442 enum btrace_read_type type)
13443{
13444 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13445 const char *annex;
9accd112 13446
4082afcc 13447 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13448 error (_("Target does not support branch tracing."));
13449
13450#if !defined(HAVE_LIBEXPAT)
13451 error (_("Cannot process branch tracing result. XML parsing not supported."));
13452#endif
13453
13454 switch (type)
13455 {
864089d2 13456 case BTRACE_READ_ALL:
9accd112
MM
13457 annex = "all";
13458 break;
864089d2 13459 case BTRACE_READ_NEW:
9accd112
MM
13460 annex = "new";
13461 break;
969c39fb
MM
13462 case BTRACE_READ_DELTA:
13463 annex = "delta";
13464 break;
9accd112
MM
13465 default:
13466 internal_error (__FILE__, __LINE__,
13467 _("Bad branch tracing read type: %u."),
13468 (unsigned int) type);
13469 }
13470
b7b030ad
TT
13471 gdb::unique_xmalloc_ptr<char> xml
13472 = target_read_stralloc (&current_target, TARGET_OBJECT_BTRACE, annex);
969c39fb
MM
13473 if (xml == NULL)
13474 return BTRACE_ERR_UNKNOWN;
9accd112 13475
b7b030ad 13476 parse_xml_btrace (btrace, xml.get ());
9accd112 13477
969c39fb 13478 return BTRACE_ERR_NONE;
9accd112
MM
13479}
13480
f4abbc16
MM
13481static const struct btrace_config *
13482remote_btrace_conf (struct target_ops *self,
13483 const struct btrace_target_info *tinfo)
13484{
13485 return &tinfo->conf;
13486}
13487
ced63ec0 13488static int
5436ff03 13489remote_augmented_libraries_svr4_read (struct target_ops *self)
ced63ec0 13490{
4082afcc
PA
13491 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13492 == PACKET_ENABLE);
ced63ec0
GB
13493}
13494
9dd130a0
TT
13495/* Implementation of to_load. */
13496
13497static void
9cbe5fff 13498remote_load (struct target_ops *self, const char *name, int from_tty)
9dd130a0
TT
13499{
13500 generic_load (name, from_tty);
13501}
13502
c78fa86a
GB
13503/* Accepts an integer PID; returns a string representing a file that
13504 can be opened on the remote side to get the symbols for the child
13505 process. Returns NULL if the operation is not supported. */
13506
13507static char *
13508remote_pid_to_exec_file (struct target_ops *self, int pid)
13509{
b7b030ad 13510 static gdb::unique_xmalloc_ptr<char> filename;
835205d0
GB
13511 struct inferior *inf;
13512 char *annex = NULL;
c78fa86a
GB
13513
13514 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13515 return NULL;
13516
835205d0
GB
13517 inf = find_inferior_pid (pid);
13518 if (inf == NULL)
13519 internal_error (__FILE__, __LINE__,
13520 _("not currently attached to process %d"), pid);
13521
13522 if (!inf->fake_pid_p)
13523 {
13524 const int annex_size = 9;
13525
224c3ddb 13526 annex = (char *) alloca (annex_size);
835205d0
GB
13527 xsnprintf (annex, annex_size, "%x", pid);
13528 }
13529
c78fa86a
GB
13530 filename = target_read_stralloc (&current_target,
13531 TARGET_OBJECT_EXEC_FILE, annex);
13532
b7b030ad 13533 return filename.get ();
c78fa86a
GB
13534}
13535
750ce8d1
YQ
13536/* Implement the to_can_do_single_step target_ops method. */
13537
13538static int
13539remote_can_do_single_step (struct target_ops *ops)
13540{
13541 /* We can only tell whether target supports single step or not by
13542 supported s and S vCont actions if the stub supports vContSupported
13543 feature. If the stub doesn't support vContSupported feature,
13544 we have conservatively to think target doesn't supports single
13545 step. */
13546 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13547 {
13548 struct remote_state *rs = get_remote_state ();
13549
13550 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13551 remote_vcont_probe (rs);
13552
13553 return rs->supports_vCont.s && rs->supports_vCont.S;
13554 }
13555 else
13556 return 0;
13557}
13558
3a00c802
PA
13559/* Implementation of the to_execution_direction method for the remote
13560 target. */
13561
13562static enum exec_direction_kind
13563remote_execution_direction (struct target_ops *self)
13564{
13565 struct remote_state *rs = get_remote_state ();
13566
13567 return rs->last_resume_exec_dir;
13568}
13569
f6327dcb
KB
13570/* Return pointer to the thread_info struct which corresponds to
13571 THREAD_HANDLE (having length HANDLE_LEN). */
13572
13573static struct thread_info *
13574remote_thread_handle_to_thread_info (struct target_ops *ops,
13575 const gdb_byte *thread_handle,
13576 int handle_len,
13577 struct inferior *inf)
13578{
13579 struct thread_info *tp;
13580
13581 ALL_NON_EXITED_THREADS (tp)
13582 {
13583 struct private_thread_info *priv = get_private_info_thread (tp);
13584
13585 if (tp->inf == inf && priv != NULL)
13586 {
13587 if (handle_len != priv->thread_handle->size ())
13588 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
13589 handle_len, priv->thread_handle->size ());
13590 if (memcmp (thread_handle, priv->thread_handle->data (),
13591 handle_len) == 0)
13592 return tp;
13593 }
13594 }
13595
13596 return NULL;
13597}
13598
c906108c 13599static void
fba45db2 13600init_remote_ops (void)
c906108c 13601{
c5aa993b 13602 remote_ops.to_shortname = "remote";
c906108c 13603 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 13604 remote_ops.to_doc =
c906108c 13605 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
13606Specify the serial device it is connected to\n\
13607(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
13608 remote_ops.to_open = remote_open;
13609 remote_ops.to_close = remote_close;
c906108c 13610 remote_ops.to_detach = remote_detach;
6ad8ae5c 13611 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 13612 remote_ops.to_resume = remote_resume;
85ad3aaf 13613 remote_ops.to_commit_resume = remote_commit_resume;
c906108c
SS
13614 remote_ops.to_wait = remote_wait;
13615 remote_ops.to_fetch_registers = remote_fetch_registers;
13616 remote_ops.to_store_registers = remote_store_registers;
13617 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b 13618 remote_ops.to_files_info = remote_files_info;
c906108c
SS
13619 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13620 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
f7e6eed5
PA
13621 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13622 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13623 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13624 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
3c3bea1c
GS
13625 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13626 remote_ops.to_stopped_data_address = remote_stopped_data_address;
283002cf
MR
13627 remote_ops.to_watchpoint_addr_within_range =
13628 remote_watchpoint_addr_within_range;
3c3bea1c
GS
13629 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13630 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13631 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
480a3f21
PW
13632 remote_ops.to_region_ok_for_hw_watchpoint
13633 = remote_region_ok_for_hw_watchpoint;
3c3bea1c
GS
13634 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13635 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b 13636 remote_ops.to_kill = remote_kill;
9dd130a0 13637 remote_ops.to_load = remote_load;
c906108c 13638 remote_ops.to_mourn_inferior = remote_mourn;
2455069d 13639 remote_ops.to_pass_signals = remote_pass_signals;
82075af2 13640 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
9b224c5e 13641 remote_ops.to_program_signals = remote_program_signals;
c906108c 13642 remote_ops.to_thread_alive = remote_thread_alive;
79efa585 13643 remote_ops.to_thread_name = remote_thread_name;
e8032dde 13644 remote_ops.to_update_thread_list = remote_update_thread_list;
0caabb7e 13645 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 13646 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10760264 13647 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
c906108c 13648 remote_ops.to_stop = remote_stop;
bfedc46a 13649 remote_ops.to_interrupt = remote_interrupt;
93692b58 13650 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
4b8a223f 13651 remote_ops.to_xfer_partial = remote_xfer_partial;
09c98b44 13652 remote_ops.to_get_memory_xfer_limit = remote_get_memory_xfer_limit;
96baa820 13653 remote_ops.to_rcmd = remote_rcmd;
c78fa86a 13654 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
49d03eab 13655 remote_ops.to_log_command = serial_log_command;
38691318 13656 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 13657 remote_ops.to_stratum = process_stratum;
c35b1492
PA
13658 remote_ops.to_has_all_memory = default_child_has_all_memory;
13659 remote_ops.to_has_memory = default_child_has_memory;
13660 remote_ops.to_has_stack = default_child_has_stack;
13661 remote_ops.to_has_registers = default_child_has_registers;
13662 remote_ops.to_has_execution = default_child_has_execution;
3e43a32a 13663 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 13664 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 13665 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 13666 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
13667 remote_ops.to_flash_erase = remote_flash_erase;
13668 remote_ops.to_flash_done = remote_flash_done;
29709017 13669 remote_ops.to_read_description = remote_read_description;
08388c79 13670 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
13671 remote_ops.to_can_async_p = remote_can_async_p;
13672 remote_ops.to_is_async_p = remote_is_async_p;
13673 remote_ops.to_async = remote_async;
65706a29 13674 remote_ops.to_thread_events = remote_thread_events;
750ce8d1 13675 remote_ops.to_can_do_single_step = remote_can_do_single_step;
75c99385
PA
13676 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13677 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 13678 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 13679 remote_ops.to_supports_multi_process = remote_supports_multi_process;
03583c20
UW
13680 remote_ops.to_supports_disable_randomization
13681 = remote_supports_disable_randomization;
4bd7dc42 13682 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
7313baad
UW
13683 remote_ops.to_fileio_open = remote_hostio_open;
13684 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13685 remote_ops.to_fileio_pread = remote_hostio_pread;
9b15c1f0 13686 remote_ops.to_fileio_fstat = remote_hostio_fstat;
7313baad
UW
13687 remote_ops.to_fileio_close = remote_hostio_close;
13688 remote_ops.to_fileio_unlink = remote_hostio_unlink;
b9e7b9c3 13689 remote_ops.to_fileio_readlink = remote_hostio_readlink;
d248b706 13690 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
3065dfb6 13691 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
b775012e 13692 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
d3ce09f5 13693 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
35b1e5cc
SS
13694 remote_ops.to_trace_init = remote_trace_init;
13695 remote_ops.to_download_tracepoint = remote_download_tracepoint;
1e4d1764 13696 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
3e43a32a
MS
13697 remote_ops.to_download_trace_state_variable
13698 = remote_download_trace_state_variable;
d248b706
KY
13699 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13700 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
35b1e5cc
SS
13701 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13702 remote_ops.to_trace_start = remote_trace_start;
13703 remote_ops.to_get_trace_status = remote_get_trace_status;
f196051f 13704 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
35b1e5cc
SS
13705 remote_ops.to_trace_stop = remote_trace_stop;
13706 remote_ops.to_trace_find = remote_trace_find;
3e43a32a
MS
13707 remote_ops.to_get_trace_state_variable_value
13708 = remote_get_trace_state_variable_value;
00bf0b85
SS
13709 remote_ops.to_save_trace_data = remote_save_trace_data;
13710 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
3e43a32a
MS
13711 remote_ops.to_upload_trace_state_variables
13712 = remote_upload_trace_state_variables;
00bf0b85 13713 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
405f8e94 13714 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
35b1e5cc 13715 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
4daf5ac0 13716 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
f6f899bf 13717 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
f196051f 13718 remote_ops.to_set_trace_notes = remote_set_trace_notes;
dc146f7c 13719 remote_ops.to_core_of_thread = remote_core_of_thread;
4a5e7a5b 13720 remote_ops.to_verify_memory = remote_verify_memory;
711e434b 13721 remote_ops.to_get_tib_address = remote_get_tib_address;
d914c394 13722 remote_ops.to_set_permissions = remote_set_permissions;
0fb4aa4b
PA
13723 remote_ops.to_static_tracepoint_marker_at
13724 = remote_static_tracepoint_marker_at;
13725 remote_ops.to_static_tracepoint_markers_by_strid
13726 = remote_static_tracepoint_markers_by_strid;
b3b9301e 13727 remote_ops.to_traceframe_info = remote_traceframe_info;
d1feda86
YQ
13728 remote_ops.to_use_agent = remote_use_agent;
13729 remote_ops.to_can_use_agent = remote_can_use_agent;
9accd112
MM
13730 remote_ops.to_supports_btrace = remote_supports_btrace;
13731 remote_ops.to_enable_btrace = remote_enable_btrace;
13732 remote_ops.to_disable_btrace = remote_disable_btrace;
13733 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13734 remote_ops.to_read_btrace = remote_read_btrace;
f4abbc16 13735 remote_ops.to_btrace_conf = remote_btrace_conf;
ced63ec0
GB
13736 remote_ops.to_augmented_libraries_svr4_read =
13737 remote_augmented_libraries_svr4_read;
8020350c
DB
13738 remote_ops.to_follow_fork = remote_follow_fork;
13739 remote_ops.to_follow_exec = remote_follow_exec;
13740 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13741 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13742 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13743 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13744 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13745 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
3a00c802 13746 remote_ops.to_execution_direction = remote_execution_direction;
f6327dcb
KB
13747 remote_ops.to_thread_handle_to_thread_info =
13748 remote_thread_handle_to_thread_info;
c906108c
SS
13749}
13750
13751/* Set up the extended remote vector by making a copy of the standard
13752 remote vector and adding to it. */
13753
13754static void
fba45db2 13755init_extended_remote_ops (void)
c906108c
SS
13756{
13757 extended_remote_ops = remote_ops;
13758
0f71a2f6 13759 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 13760 extended_remote_ops.to_longname =
c906108c 13761 "Extended remote serial target in gdb-specific protocol";
c5aa993b 13762 extended_remote_ops.to_doc =
c906108c 13763 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
13764Specify the serial device it is connected to (e.g. /dev/ttya).";
13765 extended_remote_ops.to_open = extended_remote_open;
c906108c 13766 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
2d717e4f
DJ
13767 extended_remote_ops.to_detach = extended_remote_detach;
13768 extended_remote_ops.to_attach = extended_remote_attach;
b9c1d481 13769 extended_remote_ops.to_post_attach = extended_remote_post_attach;
03583c20
UW
13770 extended_remote_ops.to_supports_disable_randomization
13771 = extended_remote_supports_disable_randomization;
0f71a2f6
JM
13772}
13773
6426a772 13774static int
6a109b6b 13775remote_can_async_p (struct target_ops *ops)
6426a772 13776{
5d93a237
TT
13777 struct remote_state *rs = get_remote_state ();
13778
3015c064
SM
13779 /* We don't go async if the user has explicitly prevented it with the
13780 "maint set target-async" command. */
c6ebd6cf 13781 if (!target_async_permitted)
75c99385
PA
13782 return 0;
13783
23860348 13784 /* We're async whenever the serial device is. */
5d93a237 13785 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13786}
13787
13788static int
6a109b6b 13789remote_is_async_p (struct target_ops *ops)
6426a772 13790{
5d93a237
TT
13791 struct remote_state *rs = get_remote_state ();
13792
c6ebd6cf 13793 if (!target_async_permitted)
75c99385
PA
13794 /* We only enable async when the user specifically asks for it. */
13795 return 0;
13796
23860348 13797 /* We're async whenever the serial device is. */
5d93a237 13798 return serial_is_async_p (rs->remote_desc);
6426a772
JM
13799}
13800
2acceee2
JM
13801/* Pass the SERIAL event on and up to the client. One day this code
13802 will be able to delay notifying the client of an event until the
23860348 13803 point where an entire packet has been received. */
2acceee2 13804
2acceee2
JM
13805static serial_event_ftype remote_async_serial_handler;
13806
6426a772 13807static void
819cc324 13808remote_async_serial_handler (struct serial *scb, void *context)
6426a772 13809{
2acceee2
JM
13810 /* Don't propogate error information up to the client. Instead let
13811 the client find out about the error by querying the target. */
6a3753b3 13812 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
13813}
13814
74531fed
PA
13815static void
13816remote_async_inferior_event_handler (gdb_client_data data)
13817{
13818 inferior_event_handler (INF_REG_EVENT, NULL);
13819}
13820
2acceee2 13821static void
6a3753b3 13822remote_async (struct target_ops *ops, int enable)
2acceee2 13823{
5d93a237
TT
13824 struct remote_state *rs = get_remote_state ();
13825
6a3753b3 13826 if (enable)
2acceee2 13827 {
88b496c3 13828 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
13829
13830 /* If there are pending events in the stop reply queue tell the
13831 event loop to process them. */
13832 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13833 mark_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13834 /* For simplicity, below we clear the pending events token
13835 without remembering whether it is marked, so here we always
13836 mark it. If there's actually no pending notification to
13837 process, this ends up being a no-op (other than a spurious
13838 event-loop wakeup). */
13839 if (target_is_non_stop_p ())
13840 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
13841 }
13842 else
b7d2e916
PA
13843 {
13844 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
13845 /* If the core is disabling async, it doesn't want to be
13846 disturbed with target events. Clear all async event sources
13847 too. */
b7d2e916 13848 clear_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13849 if (target_is_non_stop_p ())
13850 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 13851 }
6426a772
JM
13852}
13853
65706a29
PA
13854/* Implementation of the to_thread_events method. */
13855
13856static void
13857remote_thread_events (struct target_ops *ops, int enable)
13858{
13859 struct remote_state *rs = get_remote_state ();
13860 size_t size = get_remote_packet_size ();
65706a29
PA
13861
13862 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13863 return;
13864
13865 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13866 putpkt (rs->buf);
13867 getpkt (&rs->buf, &rs->buf_size, 0);
13868
13869 switch (packet_ok (rs->buf,
13870 &remote_protocol_packets[PACKET_QThreadEvents]))
13871 {
13872 case PACKET_OK:
13873 if (strcmp (rs->buf, "OK") != 0)
13874 error (_("Remote refused setting thread events: %s"), rs->buf);
13875 break;
13876 case PACKET_ERROR:
13877 warning (_("Remote failure reply: %s"), rs->buf);
13878 break;
13879 case PACKET_UNKNOWN:
13880 break;
13881 }
13882}
13883
5a2468f5 13884static void
981a3fb3 13885set_remote_cmd (const char *args, int from_tty)
5a2468f5 13886{
635c7e8a 13887 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
13888}
13889
d471ea57 13890static void
981a3fb3 13891show_remote_cmd (const char *args, int from_tty)
d471ea57 13892{
37a105a1 13893 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 13894 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 13895 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 13896 struct ui_out *uiout = current_uiout;
37a105a1 13897
2e783024 13898 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
13899 for (; list != NULL; list = list->next)
13900 if (strcmp (list->name, "Z-packet") == 0)
13901 continue;
427c3a89
DJ
13902 else if (list->type == not_set_cmd)
13903 /* Alias commands are exactly like the original, except they
13904 don't have the normal type. */
13905 continue;
13906 else
37a105a1 13907 {
2e783024 13908 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 13909
112e8700
SM
13910 uiout->field_string ("name", list->name);
13911 uiout->text (": ");
427c3a89 13912 if (list->type == show_cmd)
f5c4fcd9 13913 do_show_command (NULL, from_tty, list);
427c3a89
DJ
13914 else
13915 cmd_func (list, NULL, from_tty);
37a105a1 13916 }
d471ea57 13917}
5a2468f5 13918
0f71a2f6 13919
23860348 13920/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
13921static void
13922remote_new_objfile (struct objfile *objfile)
13923{
5d93a237
TT
13924 struct remote_state *rs = get_remote_state ();
13925
13926 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 13927 remote_check_symbols ();
dc8acb97
MS
13928}
13929
00bf0b85
SS
13930/* Pull all the tracepoints defined on the target and create local
13931 data structures representing them. We don't want to create real
13932 tracepoints yet, we don't want to mess up the user's existing
13933 collection. */
13934
13935static int
ab6617cc 13936remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
d5551862 13937{
00bf0b85
SS
13938 struct remote_state *rs = get_remote_state ();
13939 char *p;
d5551862 13940
00bf0b85
SS
13941 /* Ask for a first packet of tracepoint definition. */
13942 putpkt ("qTfP");
13943 getpkt (&rs->buf, &rs->buf_size, 0);
13944 p = rs->buf;
13945 while (*p && *p != 'l')
d5551862 13946 {
00bf0b85
SS
13947 parse_tracepoint_definition (p, utpp);
13948 /* Ask for another packet of tracepoint definition. */
13949 putpkt ("qTsP");
13950 getpkt (&rs->buf, &rs->buf_size, 0);
13951 p = rs->buf;
d5551862 13952 }
00bf0b85 13953 return 0;
d5551862
SS
13954}
13955
00bf0b85 13956static int
181e3713
TT
13957remote_upload_trace_state_variables (struct target_ops *self,
13958 struct uploaded_tsv **utsvp)
d5551862 13959{
00bf0b85 13960 struct remote_state *rs = get_remote_state ();
d5551862 13961 char *p;
d5551862 13962
00bf0b85
SS
13963 /* Ask for a first packet of variable definition. */
13964 putpkt ("qTfV");
d5551862
SS
13965 getpkt (&rs->buf, &rs->buf_size, 0);
13966 p = rs->buf;
00bf0b85 13967 while (*p && *p != 'l')
d5551862 13968 {
00bf0b85
SS
13969 parse_tsv_definition (p, utsvp);
13970 /* Ask for another packet of variable definition. */
13971 putpkt ("qTsV");
d5551862
SS
13972 getpkt (&rs->buf, &rs->buf_size, 0);
13973 p = rs->buf;
13974 }
00bf0b85 13975 return 0;
d5551862
SS
13976}
13977
c1e36e3e
PA
13978/* The "set/show range-stepping" show hook. */
13979
13980static void
13981show_range_stepping (struct ui_file *file, int from_tty,
13982 struct cmd_list_element *c,
13983 const char *value)
13984{
13985 fprintf_filtered (file,
13986 _("Debugger's willingness to use range stepping "
13987 "is %s.\n"), value);
13988}
13989
13990/* The "set/show range-stepping" set hook. */
13991
13992static void
eb4c3f4a 13993set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
13994 struct cmd_list_element *c)
13995{
5d93a237
TT
13996 struct remote_state *rs = get_remote_state ();
13997
c1e36e3e
PA
13998 /* Whene enabling, check whether range stepping is actually
13999 supported by the target, and warn if not. */
14000 if (use_range_stepping)
14001 {
5d93a237 14002 if (rs->remote_desc != NULL)
c1e36e3e 14003 {
4082afcc 14004 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
c1e36e3e
PA
14005 remote_vcont_probe (rs);
14006
4082afcc 14007 if (packet_support (PACKET_vCont) == PACKET_ENABLE
c1e36e3e
PA
14008 && rs->supports_vCont.r)
14009 return;
14010 }
14011
14012 warning (_("Range stepping is not supported by the current target"));
14013 }
14014}
14015
c906108c 14016void
fba45db2 14017_initialize_remote (void)
c906108c 14018{
9a7071a8 14019 struct cmd_list_element *cmd;
6f937416 14020 const char *cmd_name;
ea9c271d 14021
0f71a2f6 14022 /* architecture specific data */
2bc416ba 14023 remote_gdbarch_data_handle =
23860348 14024 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
14025 remote_g_packet_data_handle =
14026 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 14027
94585166
DB
14028 remote_pspace_data
14029 = register_program_space_data_with_cleanup (NULL,
14030 remote_pspace_data_cleanup);
14031
ea9c271d
DJ
14032 /* Initialize the per-target state. At the moment there is only one
14033 of these, not one per target. Only one target is active at a
cf792862
TT
14034 time. */
14035 remote_state = new_remote_state ();
ea9c271d 14036
c906108c
SS
14037 init_remote_ops ();
14038 add_target (&remote_ops);
14039
14040 init_extended_remote_ops ();
14041 add_target (&extended_remote_ops);
cce74817 14042
dc8acb97 14043 /* Hook into new objfile notification. */
06d3b283 14044 observer_attach_new_objfile (remote_new_objfile);
5f4cf0bb
YQ
14045 /* We're no longer interested in notification events of an inferior
14046 when it exits. */
14047 observer_attach_inferior_exit (discard_pending_stop_replies);
dc8acb97 14048
c906108c
SS
14049#if 0
14050 init_remote_threadtests ();
14051#endif
14052
722247f1 14053 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 14054 /* set/show remote ... */
d471ea57 14055
1bedd215 14056 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
14057Remote protocol specific variables\n\
14058Configure various remote-protocol specific variables such as\n\
1bedd215 14059the packets being used"),
cff3e48b 14060 &remote_set_cmdlist, "set remote ",
23860348 14061 0 /* allow-unknown */, &setlist);
1bedd215 14062 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
14063Remote protocol specific variables\n\
14064Configure various remote-protocol specific variables such as\n\
1bedd215 14065the packets being used"),
cff3e48b 14066 &remote_show_cmdlist, "show remote ",
23860348 14067 0 /* allow-unknown */, &showlist);
5a2468f5 14068
1a966eab
AC
14069 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
14070Compare section data on target to the exec file.\n\
95cf3b38
DT
14071Argument is a single section name (default: all loaded sections).\n\
14072To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14073 &cmdlist);
14074
1a966eab
AC
14075 add_cmd ("packet", class_maintenance, packet_command, _("\
14076Send an arbitrary packet to a remote target.\n\
c906108c
SS
14077 maintenance packet TEXT\n\
14078If GDB is talking to an inferior via the GDB serial protocol, then\n\
14079this command sends the string TEXT to the inferior, and displays the\n\
14080response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14081terminating `#' character and checksum."),
c906108c
SS
14082 &maintenancelist);
14083
7915a72c
AC
14084 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14085Set whether to send break if interrupted."), _("\
14086Show whether to send break if interrupted."), _("\
14087If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14088 set_remotebreak, show_remotebreak,
e707bbc2 14089 &setlist, &showlist);
9a7071a8
JB
14090 cmd_name = "remotebreak";
14091 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14092 deprecate_cmd (cmd, "set remote interrupt-sequence");
14093 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14094 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14095 deprecate_cmd (cmd, "show remote interrupt-sequence");
14096
14097 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14098 interrupt_sequence_modes, &interrupt_sequence_mode,
14099 _("\
9a7071a8
JB
14100Set interrupt sequence to remote target."), _("\
14101Show interrupt sequence to remote target."), _("\
14102Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14103 NULL, show_interrupt_sequence,
14104 &remote_set_cmdlist,
14105 &remote_show_cmdlist);
14106
14107 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14108 &interrupt_on_connect, _("\
14109Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14110Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14111If set, interrupt sequence is sent to remote target."),
14112 NULL, NULL,
14113 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14114
23860348 14115 /* Install commands for configuring memory read/write packets. */
11cf8741 14116
1a966eab
AC
14117 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14118Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14119 &setlist);
1a966eab
AC
14120 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14121Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14122 &showlist);
14123 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14124 set_memory_write_packet_size, _("\
14125Set the maximum number of bytes per memory-write packet.\n\
14126Specify the number of bytes in a packet or 0 (zero) for the\n\
14127default packet size. The actual limit is further reduced\n\
14128dependent on the target. Specify ``fixed'' to disable the\n\
14129further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14130 &remote_set_cmdlist);
14131 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14132 set_memory_read_packet_size, _("\
14133Set the maximum number of bytes per memory-read packet.\n\
14134Specify the number of bytes in a packet or 0 (zero) for the\n\
14135default packet size. The actual limit is further reduced\n\
14136dependent on the target. Specify ``fixed'' to disable the\n\
14137further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14138 &remote_set_cmdlist);
14139 add_cmd ("memory-write-packet-size", no_class,
14140 show_memory_write_packet_size,
1a966eab 14141 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14142 &remote_show_cmdlist);
14143 add_cmd ("memory-read-packet-size", no_class,
14144 show_memory_read_packet_size,
1a966eab 14145 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14146 &remote_show_cmdlist);
c906108c 14147
b3f42336 14148 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14149 &remote_hw_watchpoint_limit, _("\
14150Set the maximum number of target hardware watchpoints."), _("\
14151Show the maximum number of target hardware watchpoints."), _("\
14152Specify a negative limit for unlimited."),
3e43a32a
MS
14153 NULL, NULL, /* FIXME: i18n: The maximum
14154 number of target hardware
14155 watchpoints is %s. */
b3f42336 14156 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
14157 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
14158 &remote_hw_watchpoint_length_limit, _("\
14159Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14160Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14161Specify a negative limit for unlimited."),
14162 NULL, NULL, /* FIXME: i18n: The maximum
14163 length (in bytes) of a target
14164 hardware watchpoint is %s. */
14165 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 14166 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14167 &remote_hw_breakpoint_limit, _("\
14168Set the maximum number of target hardware breakpoints."), _("\
14169Show the maximum number of target hardware breakpoints."), _("\
14170Specify a negative limit for unlimited."),
3e43a32a
MS
14171 NULL, NULL, /* FIXME: i18n: The maximum
14172 number of target hardware
14173 breakpoints is %s. */
b3f42336 14174 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14175
1b493192
PA
14176 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14177 &remote_address_size, _("\
4d28ad1e
AC
14178Set the maximum size of the address (in bits) in a memory packet."), _("\
14179Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14180 NULL,
14181 NULL, /* FIXME: i18n: */
14182 &setlist, &showlist);
c906108c 14183
ca4f7f8b
PA
14184 init_all_packet_configs ();
14185
444abaca 14186 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14187 "X", "binary-download", 1);
0f71a2f6 14188
444abaca 14189 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14190 "vCont", "verbose-resume", 0);
506fb367 14191
89be2091
DJ
14192 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14193 "QPassSignals", "pass-signals", 0);
14194
82075af2
JS
14195 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14196 "QCatchSyscalls", "catch-syscalls", 0);
14197
9b224c5e
PA
14198 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14199 "QProgramSignals", "program-signals", 0);
14200
bc3b087d
SDJ
14201 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14202 "QSetWorkingDir", "set-working-dir", 0);
14203
aefd8b33
SDJ
14204 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14205 "QStartupWithShell", "startup-with-shell", 0);
14206
0a2dde4a
SDJ
14207 add_packet_config_cmd (&remote_protocol_packets
14208 [PACKET_QEnvironmentHexEncoded],
14209 "QEnvironmentHexEncoded", "environment-hex-encoded",
14210 0);
14211
14212 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14213 "QEnvironmentReset", "environment-reset",
14214 0);
14215
14216 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14217 "QEnvironmentUnset", "environment-unset",
14218 0);
14219
444abaca 14220 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14221 "qSymbol", "symbol-lookup", 0);
dc8acb97 14222
444abaca 14223 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14224 "P", "set-register", 1);
d471ea57 14225
444abaca 14226 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14227 "p", "fetch-register", 1);
b96ec7ac 14228
444abaca 14229 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14230 "Z0", "software-breakpoint", 0);
d471ea57 14231
444abaca 14232 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14233 "Z1", "hardware-breakpoint", 0);
d471ea57 14234
444abaca 14235 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14236 "Z2", "write-watchpoint", 0);
d471ea57 14237
444abaca 14238 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14239 "Z3", "read-watchpoint", 0);
d471ea57 14240
444abaca 14241 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14242 "Z4", "access-watchpoint", 0);
d471ea57 14243
0876f84a
DJ
14244 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14245 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14246
c78fa86a
GB
14247 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14248 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14249
23181151
DJ
14250 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14251 "qXfer:features:read", "target-features", 0);
14252
cfa9d6d9
DJ
14253 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14254 "qXfer:libraries:read", "library-info", 0);
14255
2268b414
JK
14256 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14257 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14258
fd79ecee
DJ
14259 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14260 "qXfer:memory-map:read", "memory-map", 0);
14261
0e7f50da
UW
14262 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14263 "qXfer:spu:read", "read-spu-object", 0);
14264
14265 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14266 "qXfer:spu:write", "write-spu-object", 0);
14267
07e059b5
VP
14268 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14269 "qXfer:osdata:read", "osdata", 0);
14270
dc146f7c
VP
14271 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14272 "qXfer:threads:read", "threads", 0);
14273
4aa995e1
PA
14274 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14275 "qXfer:siginfo:read", "read-siginfo-object", 0);
14276
14277 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14278 "qXfer:siginfo:write", "write-siginfo-object", 0);
14279
b3b9301e
PA
14280 add_packet_config_cmd
14281 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14282 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14283
169081d0
TG
14284 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14285 "qXfer:uib:read", "unwind-info-block", 0);
14286
444abaca 14287 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14288 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14289 0);
14290
711e434b
PM
14291 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14292 "qGetTIBAddr", "get-thread-information-block-address",
14293 0);
14294
40ab02ce
MS
14295 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14296 "bc", "reverse-continue", 0);
14297
14298 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14299 "bs", "reverse-step", 0);
14300
be2a5f71
DJ
14301 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14302 "qSupported", "supported-packets", 0);
14303
08388c79
DE
14304 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14305 "qSearch:memory", "search-memory", 0);
14306
bd3eecc3
PA
14307 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14308 "qTStatus", "trace-status", 0);
14309
15a201c8
GB
14310 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14311 "vFile:setfs", "hostio-setfs", 0);
14312
a6b151f1
DJ
14313 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14314 "vFile:open", "hostio-open", 0);
14315
14316 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14317 "vFile:pread", "hostio-pread", 0);
14318
14319 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14320 "vFile:pwrite", "hostio-pwrite", 0);
14321
14322 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14323 "vFile:close", "hostio-close", 0);
14324
14325 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14326 "vFile:unlink", "hostio-unlink", 0);
14327
b9e7b9c3
UW
14328 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14329 "vFile:readlink", "hostio-readlink", 0);
14330
0a93529c
GB
14331 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14332 "vFile:fstat", "hostio-fstat", 0);
14333
2d717e4f
DJ
14334 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14335 "vAttach", "attach", 0);
14336
14337 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14338 "vRun", "run", 0);
14339
a6f3e723
SL
14340 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14341 "QStartNoAckMode", "noack", 0);
14342
82f73884
PA
14343 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14344 "vKill", "kill", 0);
14345
0b16c5cf
PA
14346 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14347 "qAttached", "query-attached", 0);
14348
782b2b07 14349 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14350 "ConditionalTracepoints",
14351 "conditional-tracepoints", 0);
3788aec7
LM
14352
14353 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14354 "ConditionalBreakpoints",
14355 "conditional-breakpoints", 0);
14356
d3ce09f5
SS
14357 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14358 "BreakpointCommands",
14359 "breakpoint-commands", 0);
14360
7a697b8d
SS
14361 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14362 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14363
409873ef
SS
14364 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14365 "TracepointSource", "TracepointSource", 0);
14366
d914c394
SS
14367 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14368 "QAllow", "allow", 0);
14369
0fb4aa4b
PA
14370 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14371 "StaticTracepoints", "static-tracepoints", 0);
14372
1e4d1764
YQ
14373 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14374 "InstallInTrace", "install-in-trace", 0);
14375
0fb4aa4b
PA
14376 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14377 "qXfer:statictrace:read", "read-sdata-object", 0);
14378
78d85199
YQ
14379 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14380 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14381
03583c20
UW
14382 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14383 "QDisableRandomization", "disable-randomization", 0);
14384
d1feda86
YQ
14385 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14386 "QAgent", "agent", 0);
14387
f6f899bf
HAQ
14388 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14389 "QTBuffer:size", "trace-buffer-size", 0);
14390
9accd112
MM
14391 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14392 "Qbtrace:off", "disable-btrace", 0);
14393
14394 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14395 "Qbtrace:bts", "enable-btrace-bts", 0);
14396
14397 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14398 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14399
14400 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14401 "qXfer:btrace", "read-btrace", 0);
14402
f4abbc16
MM
14403 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14404 "qXfer:btrace-conf", "read-btrace-conf", 0);
14405
d33501a5
MM
14406 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14407 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14408
73b8c1fd
PA
14409 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14410 "multiprocess-feature", "multiprocess-feature", 0);
14411
f7e6eed5
PA
14412 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14413 "swbreak-feature", "swbreak-feature", 0);
14414
14415 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14416 "hwbreak-feature", "hwbreak-feature", 0);
14417
89245bc0
DB
14418 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14419 "fork-event-feature", "fork-event-feature", 0);
14420
14421 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14422 "vfork-event-feature", "vfork-event-feature", 0);
14423
b20a6524
MM
14424 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14425 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14426
750ce8d1
YQ
14427 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14428 "vContSupported", "verbose-resume-supported", 0);
14429
94585166
DB
14430 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14431 "exec-event-feature", "exec-event-feature", 0);
14432
de979965
PA
14433 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14434 "vCtrlC", "ctrl-c", 0);
14435
65706a29
PA
14436 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14437 "QThreadEvents", "thread-events", 0);
14438
f2faf941
PA
14439 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14440 "N stop reply", "no-resumed-stop-reply", 0);
14441
0b736949
DB
14442 /* Assert that we've registered "set remote foo-packet" commands
14443 for all packet configs. */
ca4f7f8b
PA
14444 {
14445 int i;
14446
14447 for (i = 0; i < PACKET_MAX; i++)
14448 {
14449 /* Ideally all configs would have a command associated. Some
14450 still don't though. */
14451 int excepted;
14452
14453 switch (i)
14454 {
14455 case PACKET_QNonStop:
ca4f7f8b
PA
14456 case PACKET_EnableDisableTracepoints_feature:
14457 case PACKET_tracenz_feature:
14458 case PACKET_DisconnectedTracing_feature:
14459 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14460 case PACKET_qCRC:
14461 /* Additions to this list need to be well justified:
14462 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14463 excepted = 1;
14464 break;
14465 default:
14466 excepted = 0;
14467 break;
14468 }
14469
14470 /* This catches both forgetting to add a config command, and
14471 forgetting to remove a packet from the exception list. */
14472 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14473 }
14474 }
14475
37a105a1
DJ
14476 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14477 Z sub-packet has its own set and show commands, but users may
14478 have sets to this variable in their .gdbinit files (or in their
14479 documentation). */
e9e68a56 14480 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14481 &remote_Z_packet_detect, _("\
14482Set use of remote protocol `Z' packets"), _("\
14483Show use of remote protocol `Z' packets "), _("\
3b64bf98 14484When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14485packets."),
e9e68a56 14486 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14487 show_remote_protocol_Z_packet_cmd,
14488 /* FIXME: i18n: Use of remote protocol
14489 `Z' packets is %s. */
e9e68a56 14490 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14491
a6b151f1
DJ
14492 add_prefix_cmd ("remote", class_files, remote_command, _("\
14493Manipulate files on the remote system\n\
14494Transfer files to and from the remote target system."),
14495 &remote_cmdlist, "remote ",
14496 0 /* allow-unknown */, &cmdlist);
14497
14498 add_cmd ("put", class_files, remote_put_command,
14499 _("Copy a local file to the remote system."),
14500 &remote_cmdlist);
14501
14502 add_cmd ("get", class_files, remote_get_command,
14503 _("Copy a remote file to the local system."),
14504 &remote_cmdlist);
14505
14506 add_cmd ("delete", class_files, remote_delete_command,
14507 _("Delete a remote file."),
14508 &remote_cmdlist);
14509
2d717e4f 14510 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14511 &remote_exec_file_var, _("\
2d717e4f 14512Set the remote pathname for \"run\""), _("\
94585166
DB
14513Show the remote pathname for \"run\""), NULL,
14514 set_remote_exec_file,
14515 show_remote_exec_file,
14516 &remote_set_cmdlist,
14517 &remote_show_cmdlist);
2d717e4f 14518
c1e36e3e
PA
14519 add_setshow_boolean_cmd ("range-stepping", class_run,
14520 &use_range_stepping, _("\
14521Enable or disable range stepping."), _("\
14522Show whether target-assisted range stepping is enabled."), _("\
14523If on, and the target supports it, when stepping a source line, GDB\n\
14524tells the target to step the corresponding range of addresses itself instead\n\
14525of issuing multiple single-steps. This speeds up source level\n\
14526stepping. If off, GDB always issues single-steps, even if range\n\
14527stepping is supported by the target. The default is on."),
14528 set_range_stepping,
14529 show_range_stepping,
14530 &setlist,
14531 &showlist);
14532
449092f6
CV
14533 /* Eventually initialize fileio. See fileio.c */
14534 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14535
ba348170 14536 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14537 special ptids with it set to != 0. */
ba348170
PA
14538 magic_null_ptid = ptid_build (42000, -1, 1);
14539 not_sent_ptid = ptid_build (42000, -2, 1);
14540 any_thread_ptid = ptid_build (42000, 0, 1);
c906108c 14541}
This page took 6.267955 seconds and 4 git commands to generate.