FreeBSD: Fix 'Couldn't get registers: Device busy' error (PR gdb/23077)
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
e2882c85 3 Copyright (C) 1988-2018 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"
76727919 39#include "observable.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
7aabaf9d
SM
442/* Private data that we'll store in (struct thread_info)->priv. */
443struct remote_thread_info : public private_thread_info
dc146f7c 444{
7aabaf9d
SM
445 std::string extra;
446 std::string name;
447 int core = -1;
799a2abe 448
f6327dcb
KB
449 /* Thread handle, perhaps a pthread_t or thread_t value, stored as a
450 sequence of bytes. */
7aabaf9d 451 gdb::byte_vector thread_handle;
f6327dcb 452
799a2abe 453 /* Whether the target stopped for a breakpoint/watchpoint. */
7aabaf9d 454 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
799a2abe
PA
455
456 /* This is set to the data address of the access causing the target
457 to stop for a watchpoint. */
7aabaf9d 458 CORE_ADDR watch_data_address = 0;
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. */
7aabaf9d 468 int last_resume_step = 0;
85ad3aaf
PA
469
470 /* The signal specified in the last target_resume call for this
471 thread. */
7aabaf9d 472 gdb_signal last_resume_sig = GDB_SIGNAL_0;
85ad3aaf
PA
473
474 /* Whether this thread was already vCont-resumed on the remote
475 side. */
7aabaf9d 476 int vcont_resumed = 0;
dc146f7c
VP
477};
478
ea9c271d
DJ
479/* This data could be associated with a target, but we do not always
480 have access to the current target when we need it, so for now it is
481 static. This will be fine for as long as only one target is in use
482 at a time. */
cf792862 483static struct remote_state *remote_state;
ea9c271d
DJ
484
485static struct remote_state *
0b83947e 486get_remote_state_raw (void)
ea9c271d 487{
cf792862
TT
488 return remote_state;
489}
490
491/* Allocate a new struct remote_state with xmalloc, initialize it, and
492 return it. */
493
494static struct remote_state *
495new_remote_state (void)
496{
497 struct remote_state *result = XCNEW (struct remote_state);
498
499 /* The default buffer size is unimportant; it will be expanded
500 whenever a larger buffer is needed. */
501 result->buf_size = 400;
224c3ddb 502 result->buf = (char *) xmalloc (result->buf_size);
262e1174 503 result->remote_traceframe_number = -1;
b73be471 504 result->last_sent_signal = GDB_SIGNAL_0;
3a00c802 505 result->last_resume_exec_dir = EXEC_FORWARD;
15a201c8 506 result->fs_pid = -1;
cf792862
TT
507
508 return result;
ea9c271d
DJ
509}
510
511/* Description of the remote protocol for a given architecture. */
d01949b6 512
ad10f812
AC
513struct packet_reg
514{
515 long offset; /* Offset into G packet. */
516 long regnum; /* GDB's internal register number. */
517 LONGEST pnum; /* Remote protocol register number. */
b323314b 518 int in_g_packet; /* Always part of G packet. */
f5656ead 519 /* long size in bytes; == register_size (target_gdbarch (), regnum);
23860348 520 at present. */
f5656ead 521 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
c9f4d572 522 at present. */
ad10f812
AC
523};
524
ea9c271d 525struct remote_arch_state
d01949b6 526{
ad10f812
AC
527 /* Description of the remote protocol registers. */
528 long sizeof_g_packet;
b323314b
AC
529
530 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 531 (making an array gdbarch_num_regs in size). */
b323314b 532 struct packet_reg *regs;
ad10f812 533
d01949b6
AC
534 /* This is the size (in chars) of the first response to the ``g''
535 packet. It is used as a heuristic when determining the maximum
536 size of memory-read and memory-write packets. A target will
537 typically only reserve a buffer large enough to hold the ``g''
538 packet. The size does not include packet overhead (headers and
23860348 539 trailers). */
d01949b6
AC
540 long actual_register_packet_size;
541
542 /* This is the maximum size (in chars) of a non read/write packet.
23860348 543 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
544 long remote_packet_size;
545};
546
35b1e5cc
SS
547/* Utility: generate error from an incoming stub packet. */
548static void
549trace_error (char *buf)
550{
551 if (*buf++ != 'E')
552 return; /* not an error msg */
553 switch (*buf)
554 {
555 case '1': /* malformed packet error */
556 if (*++buf == '0') /* general case: */
557 error (_("remote.c: error in outgoing packet."));
558 else
559 error (_("remote.c: error in outgoing packet at field #%ld."),
560 strtol (buf, NULL, 16));
35b1e5cc
SS
561 default:
562 error (_("Target returns error code '%s'."), buf);
563 }
564}
565
566/* Utility: wait for reply from stub, while accepting "O" packets. */
b6bb3468 567
35b1e5cc 568static char *
b6bb3468 569remote_get_noisy_reply ()
35b1e5cc 570{
b6bb3468
PA
571 struct remote_state *rs = get_remote_state ();
572
35b1e5cc
SS
573 do /* Loop on reply from remote stub. */
574 {
575 char *buf;
a744cf53 576
0df8b418 577 QUIT; /* Allow user to bail out with ^C. */
b6bb3468
PA
578 getpkt (&rs->buf, &rs->buf_size, 0);
579 buf = rs->buf;
ad91cd99 580 if (buf[0] == 'E')
35b1e5cc 581 trace_error (buf);
61012eef 582 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
583 {
584 ULONGEST ul;
585 CORE_ADDR from, to, org_to;
256642e8 586 const char *p, *pp;
dde08ee1 587 int adjusted_size = 0;
7556d4a4 588 int relocated = 0;
dde08ee1
PA
589
590 p = buf + strlen ("qRelocInsn:");
591 pp = unpack_varlen_hex (p, &ul);
592 if (*pp != ';')
cb91c06a 593 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
594 from = ul;
595
596 p = pp + 1;
a9cbf802 597 unpack_varlen_hex (p, &ul);
dde08ee1
PA
598 to = ul;
599
600 org_to = to;
601
492d29ea 602 TRY
dde08ee1 603 {
f5656ead 604 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 605 relocated = 1;
dde08ee1 606 }
492d29ea 607 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
608 {
609 if (ex.error == MEMORY_ERROR)
610 {
611 /* Propagate memory errors silently back to the
612 target. The stub may have limited the range of
613 addresses we can write to, for example. */
614 }
615 else
616 {
617 /* Something unexpectedly bad happened. Be verbose
618 so we can tell what, and propagate the error back
619 to the stub, so it doesn't get stuck waiting for
620 a response. */
621 exception_fprintf (gdb_stderr, ex,
622 _("warning: relocating instruction: "));
623 }
624 putpkt ("E01");
625 }
492d29ea 626 END_CATCH
7556d4a4
PA
627
628 if (relocated)
dde08ee1
PA
629 {
630 adjusted_size = to - org_to;
631
b6bb3468 632 xsnprintf (buf, rs->buf_size, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
633 putpkt (buf);
634 }
dde08ee1 635 }
ad91cd99 636 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
637 remote_console_output (buf + 1); /* 'O' message from stub */
638 else
0df8b418 639 return buf; /* Here's the actual reply. */
35b1e5cc
SS
640 }
641 while (1);
642}
3c3bea1c 643
d01949b6
AC
644/* Handle for retreving the remote protocol data from gdbarch. */
645static struct gdbarch_data *remote_gdbarch_data_handle;
646
ea9c271d 647static struct remote_arch_state *
5cd63fda 648get_remote_arch_state (struct gdbarch *gdbarch)
d01949b6 649{
5cd63fda 650 gdb_assert (gdbarch != NULL);
19ba03f4 651 return ((struct remote_arch_state *)
5cd63fda 652 gdbarch_data (gdbarch, remote_gdbarch_data_handle));
d01949b6
AC
653}
654
0b83947e
DJ
655/* Fetch the global remote target state. */
656
657static struct remote_state *
658get_remote_state (void)
659{
660 /* Make sure that the remote architecture state has been
661 initialized, because doing so might reallocate rs->buf. Any
662 function which calls getpkt also needs to be mindful of changes
663 to rs->buf, but this call limits the number of places which run
664 into trouble. */
5cd63fda 665 get_remote_arch_state (target_gdbarch ());
0b83947e
DJ
666
667 return get_remote_state_raw ();
668}
669
94585166
DB
670/* Cleanup routine for the remote module's pspace data. */
671
672static void
673remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
674{
19ba03f4 675 char *remote_exec_file = (char *) arg;
94585166
DB
676
677 xfree (remote_exec_file);
678}
679
680/* Fetch the remote exec-file from the current program space. */
681
682static const char *
683get_remote_exec_file (void)
684{
685 char *remote_exec_file;
686
19ba03f4
SM
687 remote_exec_file
688 = (char *) program_space_data (current_program_space,
689 remote_pspace_data);
94585166
DB
690 if (remote_exec_file == NULL)
691 return "";
692
693 return remote_exec_file;
694}
695
696/* Set the remote exec file for PSPACE. */
697
698static void
699set_pspace_remote_exec_file (struct program_space *pspace,
700 char *remote_exec_file)
701{
19ba03f4 702 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
703
704 xfree (old_file);
705 set_program_space_data (pspace, remote_pspace_data,
706 xstrdup (remote_exec_file));
707}
708
709/* The "set/show remote exec-file" set command hook. */
710
711static void
eb4c3f4a 712set_remote_exec_file (const char *ignored, int from_tty,
94585166
DB
713 struct cmd_list_element *c)
714{
715 gdb_assert (remote_exec_file_var != NULL);
716 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
717}
718
719/* The "set/show remote exec-file" show command hook. */
720
721static void
722show_remote_exec_file (struct ui_file *file, int from_tty,
723 struct cmd_list_element *cmd, const char *value)
724{
725 fprintf_filtered (file, "%s\n", remote_exec_file_var);
726}
727
74ca34ce
DJ
728static int
729compare_pnums (const void *lhs_, const void *rhs_)
730{
19ba03f4
SM
731 const struct packet_reg * const *lhs
732 = (const struct packet_reg * const *) lhs_;
733 const struct packet_reg * const *rhs
734 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
735
736 if ((*lhs)->pnum < (*rhs)->pnum)
737 return -1;
738 else if ((*lhs)->pnum == (*rhs)->pnum)
739 return 0;
740 else
741 return 1;
742}
743
c21236dc
PA
744static int
745map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 746{
74ca34ce 747 int regnum, num_remote_regs, offset;
74ca34ce 748 struct packet_reg **remote_regs;
ea9c271d 749
4a22f64d 750 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 751 {
c21236dc 752 struct packet_reg *r = &regs[regnum];
baef701f 753
4a22f64d 754 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
755 /* Do not try to fetch zero-sized (placeholder) registers. */
756 r->pnum = -1;
757 else
758 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
759
b323314b 760 r->regnum = regnum;
74ca34ce
DJ
761 }
762
763 /* Define the g/G packet format as the contents of each register
764 with a remote protocol number, in order of ascending protocol
765 number. */
766
224c3ddb 767 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 768 for (num_remote_regs = 0, regnum = 0;
4a22f64d 769 regnum < gdbarch_num_regs (gdbarch);
f57d151a 770 regnum++)
c21236dc
PA
771 if (regs[regnum].pnum != -1)
772 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 773
74ca34ce
DJ
774 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
775 compare_pnums);
776
777 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
778 {
779 remote_regs[regnum]->in_g_packet = 1;
780 remote_regs[regnum]->offset = offset;
4a22f64d 781 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
782 }
783
c21236dc
PA
784 return offset;
785}
786
787/* Given the architecture described by GDBARCH, return the remote
788 protocol register's number and the register's offset in the g/G
789 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
790 If the target does not have a mapping for REGNUM, return false,
791 otherwise, return true. */
792
793int
794remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
795 int *pnum, int *poffset)
796{
c21236dc
PA
797 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
798
b80406ac 799 std::vector<packet_reg> regs (gdbarch_num_regs (gdbarch));
c21236dc 800
b80406ac 801 map_regcache_remote_table (gdbarch, regs.data ());
c21236dc
PA
802
803 *pnum = regs[regnum].pnum;
804 *poffset = regs[regnum].offset;
805
c21236dc
PA
806 return *pnum != -1;
807}
808
809static void *
810init_remote_state (struct gdbarch *gdbarch)
811{
812 struct remote_state *rs = get_remote_state_raw ();
813 struct remote_arch_state *rsa;
814
815 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
816
817 /* Use the architecture to build a regnum<->pnum table, which will be
818 1:1 unless a feature set specifies otherwise. */
819 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
820 gdbarch_num_regs (gdbarch),
821 struct packet_reg);
822
74ca34ce
DJ
823 /* Record the maximum possible size of the g packet - it may turn out
824 to be smaller. */
c21236dc 825 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
74ca34ce 826
0df8b418 827 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
828 remote stubs have a hardwired buffer size of 400 bytes
829 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
830 as the maximum packet-size to ensure that the packet and an extra
831 NUL character can always fit in the buffer. This stops GDB
832 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
833 already a full buffer (As of 1999-12-04 that was most stubs). */
834 rsa->remote_packet_size = 400 - 1;
d01949b6 835
ea9c271d
DJ
836 /* This one is filled in when a ``g'' packet is received. */
837 rsa->actual_register_packet_size = 0;
838
839 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
840 default, adjust the size accordingly. Remember that each byte is
841 encoded as two characters. 32 is the overhead for the packet
842 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 843 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 844 little. */
ea9c271d
DJ
845 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
846 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 847
ea9c271d
DJ
848 /* Make sure that the packet buffer is plenty big enough for
849 this architecture. */
850 if (rs->buf_size < rsa->remote_packet_size)
851 {
852 rs->buf_size = 2 * rsa->remote_packet_size;
224c3ddb 853 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
ea9c271d 854 }
6d820c5c 855
ea9c271d
DJ
856 return rsa;
857}
858
859/* Return the current allowed size of a remote packet. This is
860 inferred from the current architecture, and should be used to
861 limit the length of outgoing packets. */
862static long
863get_remote_packet_size (void)
864{
be2a5f71 865 struct remote_state *rs = get_remote_state ();
5cd63fda 866 remote_arch_state *rsa = get_remote_arch_state (target_gdbarch ());
ea9c271d 867
be2a5f71
DJ
868 if (rs->explicit_packet_size)
869 return rs->explicit_packet_size;
870
ea9c271d 871 return rsa->remote_packet_size;
d01949b6
AC
872}
873
ad10f812 874static struct packet_reg *
5cd63fda
PA
875packet_reg_from_regnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
876 long regnum)
ad10f812 877{
5cd63fda 878 if (regnum < 0 && regnum >= gdbarch_num_regs (gdbarch))
b323314b
AC
879 return NULL;
880 else
ad10f812 881 {
ea9c271d 882 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 883
b323314b
AC
884 gdb_assert (r->regnum == regnum);
885 return r;
ad10f812 886 }
ad10f812
AC
887}
888
889static struct packet_reg *
5cd63fda
PA
890packet_reg_from_pnum (struct gdbarch *gdbarch, struct remote_arch_state *rsa,
891 LONGEST pnum)
ad10f812 892{
b323314b 893 int i;
a744cf53 894
5cd63fda 895 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 896 {
ea9c271d 897 struct packet_reg *r = &rsa->regs[i];
a744cf53 898
b323314b
AC
899 if (r->pnum == pnum)
900 return r;
ad10f812
AC
901 }
902 return NULL;
d01949b6
AC
903}
904
c906108c
SS
905static struct target_ops remote_ops;
906
907static struct target_ops extended_remote_ops;
908
6426a772
JM
909/* FIXME: cagney/1999-09-23: Even though getpkt was called with
910 ``forever'' still use the normal timeout mechanism. This is
911 currently used by the ASYNC code to guarentee that target reads
912 during the initial connect always time-out. Once getpkt has been
913 modified to return a timeout indication and, in turn
914 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 915 this can go away. */
6426a772
JM
916static int wait_forever_enabled_p = 1;
917
9a7071a8
JB
918/* Allow the user to specify what sequence to send to the remote
919 when he requests a program interruption: Although ^C is usually
920 what remote systems expect (this is the default, here), it is
921 sometimes preferable to send a break. On other systems such
922 as the Linux kernel, a break followed by g, which is Magic SysRq g
923 is required in order to interrupt the execution. */
924const char interrupt_sequence_control_c[] = "Ctrl-C";
925const char interrupt_sequence_break[] = "BREAK";
926const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 927static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
928 {
929 interrupt_sequence_control_c,
930 interrupt_sequence_break,
931 interrupt_sequence_break_g,
932 NULL
933 };
934static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
935
936static void
937show_interrupt_sequence (struct ui_file *file, int from_tty,
938 struct cmd_list_element *c,
939 const char *value)
940{
941 if (interrupt_sequence_mode == interrupt_sequence_control_c)
942 fprintf_filtered (file,
943 _("Send the ASCII ETX character (Ctrl-c) "
944 "to the remote target to interrupt the "
945 "execution of the program.\n"));
946 else if (interrupt_sequence_mode == interrupt_sequence_break)
947 fprintf_filtered (file,
948 _("send a break signal to the remote target "
949 "to interrupt the execution of the program.\n"));
950 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
951 fprintf_filtered (file,
952 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
953 "the remote target to interrupt the execution "
954 "of Linux kernel.\n"));
955 else
956 internal_error (__FILE__, __LINE__,
957 _("Invalid value for interrupt_sequence_mode: %s."),
958 interrupt_sequence_mode);
959}
6426a772 960
9a7071a8
JB
961/* This boolean variable specifies whether interrupt_sequence is sent
962 to the remote target when gdb connects to it.
963 This is mostly needed when you debug the Linux kernel: The Linux kernel
964 expects BREAK g which is Magic SysRq g for connecting gdb. */
965static int interrupt_on_connect = 0;
c906108c 966
9a7071a8
JB
967/* This variable is used to implement the "set/show remotebreak" commands.
968 Since these commands are now deprecated in favor of "set/show remote
969 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
970static int remote_break;
971
9a7071a8 972static void
eb4c3f4a 973set_remotebreak (const char *args, int from_tty, struct cmd_list_element *c)
9a7071a8
JB
974{
975 if (remote_break)
976 interrupt_sequence_mode = interrupt_sequence_break;
977 else
978 interrupt_sequence_mode = interrupt_sequence_control_c;
979}
980
981static void
982show_remotebreak (struct ui_file *file, int from_tty,
983 struct cmd_list_element *c,
984 const char *value)
985{
986}
987
c906108c
SS
988/* This variable sets the number of bits in an address that are to be
989 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 990 leading zeros, the entire address would be sent. This variable
c906108c
SS
991 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
992 initial implementation of remote.c restricted the address sent in
993 memory packets to ``host::sizeof long'' bytes - (typically 32
994 bits). Consequently, for 64 bit targets, the upper 32 bits of an
995 address was never sent. Since fixing this bug may cause a break in
996 some remote targets this variable is principly provided to
23860348 997 facilitate backward compatibility. */
c906108c 998
883b9c6c 999static unsigned int remote_address_size;
c906108c 1000
11cf8741 1001\f
11cf8741 1002/* User configurable variables for the number of characters in a
ea9c271d
DJ
1003 memory read/write packet. MIN (rsa->remote_packet_size,
1004 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1005 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1006 (speed up transfers). The variables ``preferred_*'' (the user
1007 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1008 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1009
1010struct memory_packet_config
1011{
a121b7c1 1012 const char *name;
11cf8741
JM
1013 long size;
1014 int fixed_p;
1015};
1016
a5c0808e
PA
1017/* The default max memory-write-packet-size. The 16k is historical.
1018 (It came from older GDB's using alloca for buffers and the
1019 knowledge (folklore?) that some hosts don't cope very well with
1020 large alloca calls.) */
1021#define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1022
1023/* The minimum remote packet size for memory transfers. Ensures we
1024 can write at least one byte. */
1025#define MIN_MEMORY_PACKET_SIZE 20
1026
11cf8741
JM
1027/* Compute the current size of a read/write packet. Since this makes
1028 use of ``actual_register_packet_size'' the computation is dynamic. */
1029
1030static long
1031get_memory_packet_size (struct memory_packet_config *config)
1032{
d01949b6 1033 struct remote_state *rs = get_remote_state ();
5cd63fda 1034 remote_arch_state *rsa = get_remote_arch_state (target_gdbarch ());
ea9c271d 1035
11cf8741
JM
1036 long what_they_get;
1037 if (config->fixed_p)
1038 {
1039 if (config->size <= 0)
a5c0808e 1040 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
11cf8741
JM
1041 else
1042 what_they_get = config->size;
1043 }
1044 else
1045 {
ea9c271d 1046 what_they_get = get_remote_packet_size ();
23860348 1047 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1048 if (config->size > 0
1049 && what_they_get > config->size)
1050 what_they_get = config->size;
be2a5f71
DJ
1051
1052 /* Limit it to the size of the targets ``g'' response unless we have
1053 permission from the stub to use a larger packet size. */
1054 if (rs->explicit_packet_size == 0
1055 && rsa->actual_register_packet_size > 0
1056 && what_they_get > rsa->actual_register_packet_size)
1057 what_they_get = rsa->actual_register_packet_size;
11cf8741 1058 }
a5c0808e
PA
1059 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1060 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1061
1062 /* Make sure there is room in the global buffer for this packet
1063 (including its trailing NUL byte). */
1064 if (rs->buf_size < what_they_get + 1)
1065 {
1066 rs->buf_size = 2 * what_they_get;
224c3ddb 1067 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
6d820c5c
DJ
1068 }
1069
11cf8741
JM
1070 return what_they_get;
1071}
1072
0df8b418 1073/* Update the size of a read/write packet. If they user wants
23860348 1074 something really big then do a sanity check. */
11cf8741
JM
1075
1076static void
ac88e2de 1077set_memory_packet_size (const char *args, struct memory_packet_config *config)
11cf8741
JM
1078{
1079 int fixed_p = config->fixed_p;
1080 long size = config->size;
a744cf53 1081
11cf8741 1082 if (args == NULL)
8a3fe4f8 1083 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1084 else if (strcmp (args, "hard") == 0
1085 || strcmp (args, "fixed") == 0)
1086 fixed_p = 1;
1087 else if (strcmp (args, "soft") == 0
1088 || strcmp (args, "limit") == 0)
1089 fixed_p = 0;
1090 else
1091 {
1092 char *end;
a744cf53 1093
11cf8741
JM
1094 size = strtoul (args, &end, 0);
1095 if (args == end)
8a3fe4f8 1096 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1097
1098 /* Instead of explicitly capping the size of a packet to or
1099 disallowing it, the user is allowed to set the size to
1100 something arbitrarily large. */
11cf8741 1101 }
a5c0808e
PA
1102
1103 /* So that the query shows the correct value. */
1104 if (size <= 0)
1105 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1106
23860348 1107 /* Extra checks? */
11cf8741
JM
1108 if (fixed_p && !config->fixed_p)
1109 {
e2e0b3e5
AC
1110 if (! query (_("The target may not be able to correctly handle a %s\n"
1111 "of %ld bytes. Change the packet size? "),
11cf8741 1112 config->name, size))
8a3fe4f8 1113 error (_("Packet size not changed."));
11cf8741 1114 }
23860348 1115 /* Update the config. */
11cf8741
JM
1116 config->fixed_p = fixed_p;
1117 config->size = size;
1118}
1119
1120static void
1121show_memory_packet_size (struct memory_packet_config *config)
1122{
a3f17187 1123 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1124 if (config->fixed_p)
a3f17187 1125 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
1126 get_memory_packet_size (config));
1127 else
a3f17187 1128 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
1129 get_memory_packet_size (config));
1130}
1131
1132static struct memory_packet_config memory_write_packet_config =
1133{
1134 "memory-write-packet-size",
1135};
1136
1137static void
ac88e2de 1138set_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1139{
1140 set_memory_packet_size (args, &memory_write_packet_config);
1141}
1142
1143static void
ac88e2de 1144show_memory_write_packet_size (const char *args, int from_tty)
11cf8741
JM
1145{
1146 show_memory_packet_size (&memory_write_packet_config);
1147}
1148
1149static long
1150get_memory_write_packet_size (void)
1151{
1152 return get_memory_packet_size (&memory_write_packet_config);
1153}
1154
1155static struct memory_packet_config memory_read_packet_config =
1156{
1157 "memory-read-packet-size",
1158};
1159
1160static void
ac88e2de 1161set_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1162{
1163 set_memory_packet_size (args, &memory_read_packet_config);
1164}
1165
1166static void
ac88e2de 1167show_memory_read_packet_size (const char *args, int from_tty)
11cf8741
JM
1168{
1169 show_memory_packet_size (&memory_read_packet_config);
1170}
1171
1172static long
1173get_memory_read_packet_size (void)
1174{
1175 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1176
11cf8741
JM
1177 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1178 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1179 increased beyond this. */
1180 if (size > get_remote_packet_size ())
1181 size = get_remote_packet_size ();
11cf8741
JM
1182 return size;
1183}
1184
11cf8741 1185\f
5a2468f5 1186/* Generic configuration support for packets the stub optionally
0df8b418 1187 supports. Allows the user to specify the use of the packet as well
23860348 1188 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
1189
1190enum packet_support
1191 {
1192 PACKET_SUPPORT_UNKNOWN = 0,
1193 PACKET_ENABLE,
1194 PACKET_DISABLE
1195 };
1196
5a2468f5
JM
1197struct packet_config
1198 {
bb572ddd
DJ
1199 const char *name;
1200 const char *title;
4082afcc
PA
1201
1202 /* If auto, GDB auto-detects support for this packet or feature,
1203 either through qSupported, or by trying the packet and looking
1204 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1205 packet. If false, the packet is disabled. Configs that don't
1206 have an associated command always have this set to auto. */
7f19b9a2 1207 enum auto_boolean detect;
4082afcc
PA
1208
1209 /* Does the target support this packet? */
5a2468f5
JM
1210 enum packet_support support;
1211 };
1212
d471ea57 1213/* Analyze a packet's return value and update the packet config
23860348 1214 accordingly. */
d471ea57
AC
1215
1216enum packet_result
1217{
1218 PACKET_ERROR,
1219 PACKET_OK,
1220 PACKET_UNKNOWN
1221};
1222
4082afcc
PA
1223static enum packet_support packet_config_support (struct packet_config *config);
1224static enum packet_support packet_support (int packet);
5a2468f5
JM
1225
1226static void
fba45db2 1227show_packet_config_cmd (struct packet_config *config)
5a2468f5 1228{
a121b7c1 1229 const char *support = "internal-error";
a744cf53 1230
4082afcc 1231 switch (packet_config_support (config))
5a2468f5
JM
1232 {
1233 case PACKET_ENABLE:
1234 support = "enabled";
1235 break;
1236 case PACKET_DISABLE:
1237 support = "disabled";
1238 break;
1239 case PACKET_SUPPORT_UNKNOWN:
1240 support = "unknown";
1241 break;
1242 }
1243 switch (config->detect)
1244 {
7f19b9a2 1245 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1246 printf_filtered (_("Support for the `%s' packet "
1247 "is auto-detected, currently %s.\n"),
37a105a1 1248 config->name, support);
5a2468f5 1249 break;
7f19b9a2
AC
1250 case AUTO_BOOLEAN_TRUE:
1251 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1252 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1253 config->name, support);
8e248173 1254 break;
5a2468f5
JM
1255 }
1256}
1257
1258static void
bb572ddd
DJ
1259add_packet_config_cmd (struct packet_config *config, const char *name,
1260 const char *title, int legacy)
d471ea57 1261{
5a2468f5
JM
1262 char *set_doc;
1263 char *show_doc;
d471ea57 1264 char *cmd_name;
3ed07be4 1265
5a2468f5
JM
1266 config->name = name;
1267 config->title = title;
b435e160
AC
1268 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1269 name, title);
3e43a32a
MS
1270 show_doc = xstrprintf ("Show current use of remote "
1271 "protocol `%s' (%s) packet",
b435e160 1272 name, title);
d471ea57 1273 /* set/show TITLE-packet {auto,on,off} */
b435e160 1274 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1275 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1276 &config->detect, set_doc,
1277 show_doc, NULL, /* help_doc */
4082afcc 1278 NULL,
bb572ddd
DJ
1279 show_remote_protocol_packet_cmd,
1280 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1281 /* The command code copies the documentation strings. */
1282 xfree (set_doc);
1283 xfree (show_doc);
23860348 1284 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1285 if (legacy)
1286 {
1287 char *legacy_name;
a744cf53 1288
b435e160 1289 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1290 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1291 &remote_set_cmdlist);
d471ea57 1292 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1293 &remote_show_cmdlist);
d471ea57 1294 }
5a2468f5
JM
1295}
1296
d471ea57 1297static enum packet_result
a76d924d 1298packet_check_result (const char *buf)
5a2468f5 1299{
d471ea57 1300 if (buf[0] != '\0')
5a2468f5 1301 {
d471ea57 1302 /* The stub recognized the packet request. Check that the
23860348 1303 operation succeeded. */
a76d924d
DJ
1304 if (buf[0] == 'E'
1305 && isxdigit (buf[1]) && isxdigit (buf[2])
1306 && buf[3] == '\0')
1307 /* "Enn" - definitly an error. */
1308 return PACKET_ERROR;
1309
1310 /* Always treat "E." as an error. This will be used for
1311 more verbose error messages, such as E.memtypes. */
1312 if (buf[0] == 'E' && buf[1] == '.')
1313 return PACKET_ERROR;
1314
1315 /* The packet may or may not be OK. Just assume it is. */
1316 return PACKET_OK;
1317 }
1318 else
1319 /* The stub does not support the packet. */
1320 return PACKET_UNKNOWN;
1321}
1322
1323static enum packet_result
1324packet_ok (const char *buf, struct packet_config *config)
1325{
1326 enum packet_result result;
1327
4082afcc
PA
1328 if (config->detect != AUTO_BOOLEAN_TRUE
1329 && config->support == PACKET_DISABLE)
1330 internal_error (__FILE__, __LINE__,
1331 _("packet_ok: attempt to use a disabled packet"));
1332
a76d924d
DJ
1333 result = packet_check_result (buf);
1334 switch (result)
1335 {
1336 case PACKET_OK:
1337 case PACKET_ERROR:
1338 /* The stub recognized the packet request. */
4082afcc 1339 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1340 {
d471ea57
AC
1341 if (remote_debug)
1342 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1343 "Packet %s (%s) is supported\n",
1344 config->name, config->title);
d471ea57 1345 config->support = PACKET_ENABLE;
d471ea57 1346 }
a76d924d
DJ
1347 break;
1348 case PACKET_UNKNOWN:
23860348 1349 /* The stub does not support the packet. */
4082afcc
PA
1350 if (config->detect == AUTO_BOOLEAN_AUTO
1351 && config->support == PACKET_ENABLE)
d471ea57 1352 {
4082afcc
PA
1353 /* If the stub previously indicated that the packet was
1354 supported then there is a protocol error. */
1355 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1356 config->name, config->title);
1357 }
1358 else if (config->detect == AUTO_BOOLEAN_TRUE)
1359 {
1360 /* The user set it wrong. */
1361 error (_("Enabled packet %s (%s) not recognized by stub"),
1362 config->name, config->title);
d471ea57 1363 }
4082afcc
PA
1364
1365 if (remote_debug)
1366 fprintf_unfiltered (gdb_stdlog,
1367 "Packet %s (%s) is NOT supported\n",
1368 config->name, config->title);
1369 config->support = PACKET_DISABLE;
a76d924d 1370 break;
5a2468f5 1371 }
a76d924d
DJ
1372
1373 return result;
5a2468f5
JM
1374}
1375
444abaca
DJ
1376enum {
1377 PACKET_vCont = 0,
1378 PACKET_X,
1379 PACKET_qSymbol,
1380 PACKET_P,
1381 PACKET_p,
1382 PACKET_Z0,
1383 PACKET_Z1,
1384 PACKET_Z2,
1385 PACKET_Z3,
1386 PACKET_Z4,
15a201c8 1387 PACKET_vFile_setfs,
a6b151f1
DJ
1388 PACKET_vFile_open,
1389 PACKET_vFile_pread,
1390 PACKET_vFile_pwrite,
1391 PACKET_vFile_close,
1392 PACKET_vFile_unlink,
b9e7b9c3 1393 PACKET_vFile_readlink,
0a93529c 1394 PACKET_vFile_fstat,
0876f84a 1395 PACKET_qXfer_auxv,
23181151 1396 PACKET_qXfer_features,
c78fa86a 1397 PACKET_qXfer_exec_file,
cfa9d6d9 1398 PACKET_qXfer_libraries,
2268b414 1399 PACKET_qXfer_libraries_svr4,
fd79ecee 1400 PACKET_qXfer_memory_map,
0e7f50da
UW
1401 PACKET_qXfer_spu_read,
1402 PACKET_qXfer_spu_write,
07e059b5 1403 PACKET_qXfer_osdata,
dc146f7c 1404 PACKET_qXfer_threads,
0fb4aa4b 1405 PACKET_qXfer_statictrace_read,
b3b9301e 1406 PACKET_qXfer_traceframe_info,
169081d0 1407 PACKET_qXfer_uib,
711e434b 1408 PACKET_qGetTIBAddr,
444abaca 1409 PACKET_qGetTLSAddr,
be2a5f71 1410 PACKET_qSupported,
bd3eecc3 1411 PACKET_qTStatus,
89be2091 1412 PACKET_QPassSignals,
82075af2 1413 PACKET_QCatchSyscalls,
9b224c5e 1414 PACKET_QProgramSignals,
bc3b087d 1415 PACKET_QSetWorkingDir,
aefd8b33 1416 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1417 PACKET_QEnvironmentHexEncoded,
1418 PACKET_QEnvironmentReset,
1419 PACKET_QEnvironmentUnset,
936d2992 1420 PACKET_qCRC,
08388c79 1421 PACKET_qSearch_memory,
2d717e4f
DJ
1422 PACKET_vAttach,
1423 PACKET_vRun,
a6f3e723 1424 PACKET_QStartNoAckMode,
82f73884 1425 PACKET_vKill,
4aa995e1
PA
1426 PACKET_qXfer_siginfo_read,
1427 PACKET_qXfer_siginfo_write,
0b16c5cf 1428 PACKET_qAttached,
4082afcc
PA
1429
1430 /* Support for conditional tracepoints. */
782b2b07 1431 PACKET_ConditionalTracepoints,
4082afcc
PA
1432
1433 /* Support for target-side breakpoint conditions. */
3788aec7 1434 PACKET_ConditionalBreakpoints,
4082afcc
PA
1435
1436 /* Support for target-side breakpoint commands. */
d3ce09f5 1437 PACKET_BreakpointCommands,
4082afcc
PA
1438
1439 /* Support for fast tracepoints. */
7a697b8d 1440 PACKET_FastTracepoints,
4082afcc
PA
1441
1442 /* Support for static tracepoints. */
0fb4aa4b 1443 PACKET_StaticTracepoints,
4082afcc
PA
1444
1445 /* Support for installing tracepoints while a trace experiment is
1446 running. */
1e4d1764 1447 PACKET_InstallInTrace,
4082afcc 1448
40ab02ce
MS
1449 PACKET_bc,
1450 PACKET_bs,
409873ef 1451 PACKET_TracepointSource,
d914c394 1452 PACKET_QAllow,
78d85199 1453 PACKET_qXfer_fdpic,
03583c20 1454 PACKET_QDisableRandomization,
d1feda86 1455 PACKET_QAgent,
f6f899bf 1456 PACKET_QTBuffer_size,
9accd112
MM
1457 PACKET_Qbtrace_off,
1458 PACKET_Qbtrace_bts,
b20a6524 1459 PACKET_Qbtrace_pt,
9accd112 1460 PACKET_qXfer_btrace,
4082afcc
PA
1461
1462 /* Support for the QNonStop packet. */
1463 PACKET_QNonStop,
1464
65706a29
PA
1465 /* Support for the QThreadEvents packet. */
1466 PACKET_QThreadEvents,
1467
4082afcc
PA
1468 /* Support for multi-process extensions. */
1469 PACKET_multiprocess_feature,
1470
1471 /* Support for enabling and disabling tracepoints while a trace
1472 experiment is running. */
1473 PACKET_EnableDisableTracepoints_feature,
1474
1475 /* Support for collecting strings using the tracenz bytecode. */
1476 PACKET_tracenz_feature,
1477
1478 /* Support for continuing to run a trace experiment while GDB is
1479 disconnected. */
1480 PACKET_DisconnectedTracing_feature,
1481
1482 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1483 PACKET_augmented_libraries_svr4_read_feature,
1484
f4abbc16
MM
1485 /* Support for the qXfer:btrace-conf:read packet. */
1486 PACKET_qXfer_btrace_conf,
1487
d33501a5
MM
1488 /* Support for the Qbtrace-conf:bts:size packet. */
1489 PACKET_Qbtrace_conf_bts_size,
1490
f7e6eed5
PA
1491 /* Support for swbreak+ feature. */
1492 PACKET_swbreak_feature,
1493
1494 /* Support for hwbreak+ feature. */
1495 PACKET_hwbreak_feature,
1496
89245bc0
DB
1497 /* Support for fork events. */
1498 PACKET_fork_event_feature,
1499
1500 /* Support for vfork events. */
1501 PACKET_vfork_event_feature,
1502
b20a6524
MM
1503 /* Support for the Qbtrace-conf:pt:size packet. */
1504 PACKET_Qbtrace_conf_pt_size,
1505
94585166
DB
1506 /* Support for exec events. */
1507 PACKET_exec_event_feature,
1508
750ce8d1
YQ
1509 /* Support for query supported vCont actions. */
1510 PACKET_vContSupported,
1511
de979965
PA
1512 /* Support remote CTRL-C. */
1513 PACKET_vCtrlC,
1514
f2faf941
PA
1515 /* Support TARGET_WAITKIND_NO_RESUMED. */
1516 PACKET_no_resumed,
1517
444abaca
DJ
1518 PACKET_MAX
1519};
506fb367 1520
444abaca 1521static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 1522
f7e6eed5
PA
1523/* Returns the packet's corresponding "set remote foo-packet" command
1524 state. See struct packet_config for more details. */
1525
1526static enum auto_boolean
1527packet_set_cmd_state (int packet)
1528{
1529 return remote_protocol_packets[packet].detect;
1530}
1531
4082afcc
PA
1532/* Returns whether a given packet or feature is supported. This takes
1533 into account the state of the corresponding "set remote foo-packet"
1534 command, which may be used to bypass auto-detection. */
dc8acb97 1535
4082afcc
PA
1536static enum packet_support
1537packet_config_support (struct packet_config *config)
1538{
1539 switch (config->detect)
444abaca 1540 {
4082afcc
PA
1541 case AUTO_BOOLEAN_TRUE:
1542 return PACKET_ENABLE;
1543 case AUTO_BOOLEAN_FALSE:
1544 return PACKET_DISABLE;
1545 case AUTO_BOOLEAN_AUTO:
1546 return config->support;
1547 default:
1548 gdb_assert_not_reached (_("bad switch"));
444abaca 1549 }
4082afcc
PA
1550}
1551
1552/* Same as packet_config_support, but takes the packet's enum value as
1553 argument. */
1554
1555static enum packet_support
1556packet_support (int packet)
1557{
1558 struct packet_config *config = &remote_protocol_packets[packet];
1559
1560 return packet_config_support (config);
dc8acb97
MS
1561}
1562
5a2468f5 1563static void
444abaca
DJ
1564show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1565 struct cmd_list_element *c,
1566 const char *value)
5a2468f5 1567{
444abaca 1568 struct packet_config *packet;
5a2468f5 1569
444abaca
DJ
1570 for (packet = remote_protocol_packets;
1571 packet < &remote_protocol_packets[PACKET_MAX];
1572 packet++)
1573 {
1574 if (&packet->detect == c->var)
1575 {
1576 show_packet_config_cmd (packet);
1577 return;
1578 }
1579 }
9b20d036 1580 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1581 c->name);
5a2468f5
JM
1582}
1583
d471ea57
AC
1584/* Should we try one of the 'Z' requests? */
1585
1586enum Z_packet_type
1587{
1588 Z_PACKET_SOFTWARE_BP,
1589 Z_PACKET_HARDWARE_BP,
1590 Z_PACKET_WRITE_WP,
1591 Z_PACKET_READ_WP,
1592 Z_PACKET_ACCESS_WP,
1593 NR_Z_PACKET_TYPES
1594};
96baa820 1595
d471ea57 1596/* For compatibility with older distributions. Provide a ``set remote
23860348 1597 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1598
7f19b9a2 1599static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1600
1601static void
eb4c3f4a 1602set_remote_protocol_Z_packet_cmd (const char *args, int from_tty,
fba45db2 1603 struct cmd_list_element *c)
96baa820 1604{
d471ea57 1605 int i;
a744cf53 1606
d471ea57 1607 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 1608 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
1609}
1610
1611static void
08546159
AC
1612show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1613 struct cmd_list_element *c,
1614 const char *value)
96baa820 1615{
d471ea57 1616 int i;
a744cf53 1617
d471ea57
AC
1618 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1619 {
444abaca 1620 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1621 }
96baa820
JM
1622}
1623
4082afcc
PA
1624/* Returns true if the multi-process extensions are in effect. */
1625
1626static int
1627remote_multi_process_p (struct remote_state *rs)
1628{
1629 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1630}
1631
de0d863e
DB
1632/* Returns true if fork events are supported. */
1633
1634static int
1635remote_fork_event_p (struct remote_state *rs)
1636{
1637 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1638}
1639
c269dbdb
DB
1640/* Returns true if vfork events are supported. */
1641
1642static int
1643remote_vfork_event_p (struct remote_state *rs)
1644{
1645 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1646}
1647
d46addbb
DB
1648/* Returns true if exec events are supported. */
1649
1650static int
1651remote_exec_event_p (struct remote_state *rs)
1652{
1653 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1654}
1655
cbb8991c
DB
1656/* Insert fork catchpoint target routine. If fork events are enabled
1657 then return success, nothing more to do. */
1658
1659static int
1660remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1661{
1662 struct remote_state *rs = get_remote_state ();
1663
1664 return !remote_fork_event_p (rs);
1665}
1666
1667/* Remove fork catchpoint target routine. Nothing to do, just
1668 return success. */
1669
1670static int
1671remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1672{
1673 return 0;
1674}
1675
1676/* Insert vfork catchpoint target routine. If vfork events are enabled
1677 then return success, nothing more to do. */
1678
1679static int
1680remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1681{
1682 struct remote_state *rs = get_remote_state ();
1683
1684 return !remote_vfork_event_p (rs);
1685}
1686
1687/* Remove vfork catchpoint target routine. Nothing to do, just
1688 return success. */
1689
1690static int
1691remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1692{
1693 return 0;
1694}
1695
d46addbb
DB
1696/* Insert exec catchpoint target routine. If exec events are
1697 enabled, just return success. */
1698
1699static int
1700remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1701{
1702 struct remote_state *rs = get_remote_state ();
1703
1704 return !remote_exec_event_p (rs);
1705}
1706
1707/* Remove exec catchpoint target routine. Nothing to do, just
1708 return success. */
1709
1710static int
1711remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1712{
1713 return 0;
1714}
1715
74531fed
PA
1716\f
1717/* Asynchronous signal handle registered as event loop source for
1718 when we have pending events ready to be passed to the core. */
1719
1720static struct async_event_handler *remote_async_inferior_event_token;
1721
c906108c
SS
1722\f
1723
79d7f229
PA
1724static ptid_t magic_null_ptid;
1725static ptid_t not_sent_ptid;
1726static ptid_t any_thread_ptid;
1727
0b16c5cf
PA
1728/* Find out if the stub attached to PID (and hence GDB should offer to
1729 detach instead of killing it when bailing out). */
1730
1731static int
1732remote_query_attached (int pid)
1733{
1734 struct remote_state *rs = get_remote_state ();
bba74b36 1735 size_t size = get_remote_packet_size ();
0b16c5cf 1736
4082afcc 1737 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
1738 return 0;
1739
1740 if (remote_multi_process_p (rs))
bba74b36 1741 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 1742 else
bba74b36 1743 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
1744
1745 putpkt (rs->buf);
1746 getpkt (&rs->buf, &rs->buf_size, 0);
1747
1748 switch (packet_ok (rs->buf,
1554e9be 1749 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1750 {
1751 case PACKET_OK:
1752 if (strcmp (rs->buf, "1") == 0)
1753 return 1;
1754 break;
1755 case PACKET_ERROR:
1756 warning (_("Remote failure reply: %s"), rs->buf);
1757 break;
1758 case PACKET_UNKNOWN:
1759 break;
1760 }
1761
1762 return 0;
1763}
1764
49c62f2e
PA
1765/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1766 has been invented by GDB, instead of reported by the target. Since
1767 we can be connected to a remote system before before knowing about
1768 any inferior, mark the target with execution when we find the first
1769 inferior. If ATTACHED is 1, then we had just attached to this
1770 inferior. If it is 0, then we just created this inferior. If it
1771 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
1772 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1773 attempt to open this inferior's executable as the main executable
1774 if no main executable is open already. */
1941c569
PA
1775
1776static struct inferior *
1b6e6f5c
GB
1777remote_add_inferior (int fake_pid_p, int pid, int attached,
1778 int try_open_exec)
1941c569 1779{
1941c569
PA
1780 struct inferior *inf;
1781
0b16c5cf
PA
1782 /* Check whether this process we're learning about is to be
1783 considered attached, or if is to be considered to have been
1784 spawned by the stub. */
1785 if (attached == -1)
1786 attached = remote_query_attached (pid);
1787
f5656ead 1788 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
1789 {
1790 /* If the target shares code across all inferiors, then every
1791 attach adds a new inferior. */
1792 inf = add_inferior (pid);
1793
1794 /* ... and every inferior is bound to the same program space.
1795 However, each inferior may still have its own address
1796 space. */
1797 inf->aspace = maybe_new_address_space ();
1798 inf->pspace = current_program_space;
1799 }
1800 else
1801 {
1802 /* In the traditional debugging scenario, there's a 1-1 match
1803 between program/address spaces. We simply bind the inferior
1804 to the program space's address space. */
1805 inf = current_inferior ();
1806 inferior_appeared (inf, pid);
1807 }
1941c569 1808
0b16c5cf 1809 inf->attach_flag = attached;
49c62f2e 1810 inf->fake_pid_p = fake_pid_p;
0b16c5cf 1811
1b6e6f5c
GB
1812 /* If no main executable is currently open then attempt to
1813 open the file that was executed to create this inferior. */
835205d0 1814 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 1815 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 1816
1941c569
PA
1817 return inf;
1818}
1819
7aabaf9d 1820static remote_thread_info *get_remote_thread_info (thread_info *thread);
85ad3aaf 1821
1941c569
PA
1822/* Add thread PTID to GDB's thread list. Tag it as executing/running
1823 according to RUNNING. */
1824
c906108c 1825static void
0d5b594f 1826remote_add_thread (ptid_t ptid, int running, int executing)
c906108c 1827{
b7ea362b 1828 struct remote_state *rs = get_remote_state ();
85ad3aaf 1829 struct thread_info *thread;
b7ea362b
PA
1830
1831 /* GDB historically didn't pull threads in the initial connection
1832 setup. If the remote target doesn't even have a concept of
1833 threads (e.g., a bare-metal target), even if internally we
1834 consider that a single-threaded target, mentioning a new thread
1835 might be confusing to the user. Be silent then, preserving the
1836 age old behavior. */
1837 if (rs->starting_up)
85ad3aaf 1838 thread = add_thread_silent (ptid);
b7ea362b 1839 else
85ad3aaf 1840 thread = add_thread (ptid);
1941c569 1841
7aabaf9d 1842 get_remote_thread_info (thread)->vcont_resumed = executing;
0d5b594f 1843 set_executing (ptid, executing);
1941c569
PA
1844 set_running (ptid, running);
1845}
1846
1847/* Come here when we learn about a thread id from the remote target.
1848 It may be the first time we hear about such thread, so take the
1849 opportunity to add it to GDB's thread list. In case this is the
1850 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
1851 GDB's inferior list as well. EXECUTING indicates whether the
1852 thread is (internally) executing or stopped. */
1941c569
PA
1853
1854static void
0d5b594f 1855remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 1856{
0d5b594f
PA
1857 /* In non-stop mode, we assume new found threads are (externally)
1858 running until proven otherwise with a stop reply. In all-stop,
1859 we can only get here if all threads are stopped. */
1860 int running = target_is_non_stop_p () ? 1 : 0;
1861
c906108c
SS
1862 /* If this is a new thread, add it to GDB's thread list.
1863 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1864
1865 if (in_thread_list (currthread) && is_exited (currthread))
1866 {
1867 /* We're seeing an event on a thread id we knew had exited.
1868 This has to be a new thread reusing the old id. Add it. */
0d5b594f 1869 remote_add_thread (currthread, running, executing);
82f73884
PA
1870 return;
1871 }
1872
79d7f229 1873 if (!in_thread_list (currthread))
c0a2216e 1874 {
1941c569 1875 struct inferior *inf = NULL;
bad34192 1876 int pid = ptid_get_pid (currthread);
1941c569 1877
bad34192
PA
1878 if (ptid_is_pid (inferior_ptid)
1879 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1880 {
1881 /* inferior_ptid has no thread member yet. This can happen
1882 with the vAttach -> remote_wait,"TAAthread:" path if the
1883 stub doesn't support qC. This is the first stop reported
1884 after an attach, so this is the main thread. Update the
1885 ptid in the thread list. */
bad34192
PA
1886 if (in_thread_list (pid_to_ptid (pid)))
1887 thread_change_ptid (inferior_ptid, currthread);
1888 else
1889 {
0d5b594f 1890 remote_add_thread (currthread, running, executing);
bad34192
PA
1891 inferior_ptid = currthread;
1892 }
dc146f7c 1893 return;
c0a2216e 1894 }
82f73884
PA
1895
1896 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1897 {
1898 /* inferior_ptid is not set yet. This can happen with the
1899 vRun -> remote_wait,"TAAthread:" path if the stub
1900 doesn't support qC. This is the first stop reported
1901 after an attach, so this is the main thread. Update the
1902 ptid in the thread list. */
dc146f7c 1903 thread_change_ptid (inferior_ptid, currthread);
82f73884 1904 return;
c0a2216e 1905 }
82f73884 1906
29c87f7f
PA
1907 /* When connecting to a target remote, or to a target
1908 extended-remote which already was debugging an inferior, we
1909 may not know about it yet. Add it before adding its child
1910 thread, so notifications are emitted in a sensible order. */
1911 if (!in_inferior_list (ptid_get_pid (currthread)))
49c62f2e
PA
1912 {
1913 struct remote_state *rs = get_remote_state ();
1914 int fake_pid_p = !remote_multi_process_p (rs);
1915
1916 inf = remote_add_inferior (fake_pid_p,
1b6e6f5c 1917 ptid_get_pid (currthread), -1, 1);
49c62f2e 1918 }
29c87f7f 1919
82f73884 1920 /* This is really a new thread. Add it. */
0d5b594f 1921 remote_add_thread (currthread, running, executing);
1941c569
PA
1922
1923 /* If we found a new inferior, let the common code do whatever
1924 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
1925 breakpoints), unless we're just setting up an all-stop
1926 connection. */
1941c569 1927 if (inf != NULL)
b7ea362b
PA
1928 {
1929 struct remote_state *rs = get_remote_state ();
1930
6efcd9a8 1931 if (!rs->starting_up)
0d5b594f 1932 notice_new_inferior (currthread, executing, 0);
b7ea362b 1933 }
c0a2216e 1934 }
c906108c
SS
1935}
1936
85ad3aaf 1937/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 1938
7aabaf9d
SM
1939static remote_thread_info *
1940get_remote_thread_info (thread_info *thread)
dc146f7c 1941{
85ad3aaf 1942 gdb_assert (thread != NULL);
dc146f7c 1943
85ad3aaf 1944 if (thread->priv == NULL)
7aabaf9d 1945 thread->priv.reset (new remote_thread_info);
dc146f7c 1946
7aabaf9d 1947 return static_cast<remote_thread_info *> (thread->priv.get ());
85ad3aaf
PA
1948}
1949
1950/* Return PTID's private thread data, creating it if necessary. */
1951
7aabaf9d
SM
1952static remote_thread_info *
1953get_remote_thread_info (ptid_t ptid)
85ad3aaf
PA
1954{
1955 struct thread_info *info = find_thread_ptid (ptid);
1956
7aabaf9d 1957 return get_remote_thread_info (info);
dc146f7c
VP
1958}
1959
74531fed
PA
1960/* Call this function as a result of
1961 1) A halt indication (T packet) containing a thread id
1962 2) A direct query of currthread
0df8b418 1963 3) Successful execution of set thread */
74531fed
PA
1964
1965static void
47f8a51d 1966record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 1967{
47f8a51d 1968 rs->general_thread = currthread;
74531fed
PA
1969}
1970
89be2091
DJ
1971/* If 'QPassSignals' is supported, tell the remote stub what signals
1972 it can simply pass through to the inferior without reporting. */
1973
1974static void
94bedb42
TT
1975remote_pass_signals (struct target_ops *self,
1976 int numsigs, unsigned char *pass_signals)
89be2091 1977{
4082afcc 1978 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
1979 {
1980 char *pass_packet, *p;
89be2091 1981 int count = 0, i;
747dc59d 1982 struct remote_state *rs = get_remote_state ();
89be2091
DJ
1983
1984 gdb_assert (numsigs < 256);
1985 for (i = 0; i < numsigs; i++)
1986 {
2455069d 1987 if (pass_signals[i])
89be2091
DJ
1988 count++;
1989 }
224c3ddb 1990 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
1991 strcpy (pass_packet, "QPassSignals:");
1992 p = pass_packet + strlen (pass_packet);
1993 for (i = 0; i < numsigs; i++)
1994 {
2455069d 1995 if (pass_signals[i])
89be2091
DJ
1996 {
1997 if (i >= 16)
1998 *p++ = tohex (i >> 4);
1999 *p++ = tohex (i & 15);
2000 if (count)
2001 *p++ = ';';
2002 else
2003 break;
2004 count--;
2005 }
2006 }
2007 *p = 0;
747dc59d 2008 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2009 {
89be2091
DJ
2010 putpkt (pass_packet);
2011 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2012 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2013 if (rs->last_pass_packet)
2014 xfree (rs->last_pass_packet);
2015 rs->last_pass_packet = pass_packet;
89be2091
DJ
2016 }
2017 else
2018 xfree (pass_packet);
2019 }
2020}
2021
82075af2
JS
2022/* If 'QCatchSyscalls' is supported, tell the remote stub
2023 to report syscalls to GDB. */
2024
2025static int
2026remote_set_syscall_catchpoint (struct target_ops *self,
649a140c
PA
2027 int pid, bool needed, int any_count,
2028 gdb::array_view<const int> syscall_counts)
82075af2 2029{
b80406ac 2030 const char *catch_packet;
82075af2
JS
2031 enum packet_result result;
2032 int n_sysno = 0;
2033
2034 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2035 {
2036 /* Not supported. */
2037 return 1;
2038 }
2039
649a140c 2040 if (needed && any_count == 0)
82075af2 2041 {
649a140c
PA
2042 /* Count how many syscalls are to be caught. */
2043 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2044 {
649a140c 2045 if (syscall_counts[i] != 0)
82075af2
JS
2046 n_sysno++;
2047 }
2048 }
2049
2050 if (remote_debug)
2051 {
2052 fprintf_unfiltered (gdb_stdlog,
2053 "remote_set_syscall_catchpoint "
2054 "pid %d needed %d any_count %d n_sysno %d\n",
2055 pid, needed, any_count, n_sysno);
2056 }
2057
1b81856f 2058 std::string built_packet;
82075af2
JS
2059 if (needed)
2060 {
2061 /* Prepare a packet with the sysno list, assuming max 8+1
2062 characters for a sysno. If the resulting packet size is too
2063 big, fallback on the non-selective packet. */
2064 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2065 built_packet.reserve (maxpktsz);
2066 built_packet = "QCatchSyscalls:1";
649a140c 2067 if (any_count == 0)
82075af2 2068 {
649a140c
PA
2069 /* Add in each syscall to be caught. */
2070 for (size_t i = 0; i < syscall_counts.size (); i++)
82075af2 2071 {
649a140c
PA
2072 if (syscall_counts[i] != 0)
2073 string_appendf (built_packet, ";%zx", i);
82075af2
JS
2074 }
2075 }
1b81856f 2076 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2077 {
2078 /* catch_packet too big. Fallback to less efficient
2079 non selective mode, with GDB doing the filtering. */
b80406ac 2080 catch_packet = "QCatchSyscalls:1";
82075af2 2081 }
b80406ac 2082 else
1b81856f 2083 catch_packet = built_packet.c_str ();
82075af2
JS
2084 }
2085 else
b80406ac 2086 catch_packet = "QCatchSyscalls:0";
82075af2 2087
b80406ac 2088 struct remote_state *rs = get_remote_state ();
82075af2 2089
b80406ac
TT
2090 putpkt (catch_packet);
2091 getpkt (&rs->buf, &rs->buf_size, 0);
2092 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2093 if (result == PACKET_OK)
2094 return 0;
2095 else
2096 return -1;
82075af2
JS
2097}
2098
9b224c5e
PA
2099/* If 'QProgramSignals' is supported, tell the remote stub what
2100 signals it should pass through to the inferior when detaching. */
2101
2102static void
daf5e9b6
TT
2103remote_program_signals (struct target_ops *self,
2104 int numsigs, unsigned char *signals)
9b224c5e 2105{
4082afcc 2106 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2107 {
2108 char *packet, *p;
2109 int count = 0, i;
5e4a05c4 2110 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2111
2112 gdb_assert (numsigs < 256);
2113 for (i = 0; i < numsigs; i++)
2114 {
2115 if (signals[i])
2116 count++;
2117 }
224c3ddb 2118 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2119 strcpy (packet, "QProgramSignals:");
2120 p = packet + strlen (packet);
2121 for (i = 0; i < numsigs; i++)
2122 {
2123 if (signal_pass_state (i))
2124 {
2125 if (i >= 16)
2126 *p++ = tohex (i >> 4);
2127 *p++ = tohex (i & 15);
2128 if (count)
2129 *p++ = ';';
2130 else
2131 break;
2132 count--;
2133 }
2134 }
2135 *p = 0;
5e4a05c4
TT
2136 if (!rs->last_program_signals_packet
2137 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2138 {
9b224c5e
PA
2139 putpkt (packet);
2140 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2141 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2142 xfree (rs->last_program_signals_packet);
2143 rs->last_program_signals_packet = packet;
9b224c5e
PA
2144 }
2145 else
2146 xfree (packet);
2147 }
2148}
2149
79d7f229
PA
2150/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2151 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2152 thread. If GEN is set, set the general thread, if not, then set
2153 the step/continue thread. */
c906108c 2154static void
d62a8ae2 2155set_thread (ptid_t ptid, int gen)
c906108c 2156{
d01949b6 2157 struct remote_state *rs = get_remote_state ();
47f8a51d 2158 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2159 char *buf = rs->buf;
79d7f229 2160 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2161
79d7f229 2162 if (ptid_equal (state, ptid))
c906108c
SS
2163 return;
2164
79d7f229
PA
2165 *buf++ = 'H';
2166 *buf++ = gen ? 'g' : 'c';
2167 if (ptid_equal (ptid, magic_null_ptid))
2168 xsnprintf (buf, endbuf - buf, "0");
2169 else if (ptid_equal (ptid, any_thread_ptid))
2170 xsnprintf (buf, endbuf - buf, "0");
2171 else if (ptid_equal (ptid, minus_one_ptid))
2172 xsnprintf (buf, endbuf - buf, "-1");
2173 else
82f73884 2174 write_ptid (buf, endbuf, ptid);
79d7f229 2175 putpkt (rs->buf);
6d820c5c 2176 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2177 if (gen)
47f8a51d 2178 rs->general_thread = ptid;
c906108c 2179 else
47f8a51d 2180 rs->continue_thread = ptid;
c906108c 2181}
79d7f229
PA
2182
2183static void
d62a8ae2 2184set_general_thread (ptid_t ptid)
79d7f229
PA
2185{
2186 set_thread (ptid, 1);
2187}
2188
2189static void
d62a8ae2 2190set_continue_thread (ptid_t ptid)
79d7f229
PA
2191{
2192 set_thread (ptid, 0);
2193}
2194
3c9c4b83
PA
2195/* Change the remote current process. Which thread within the process
2196 ends up selected isn't important, as long as it is the same process
2197 as what INFERIOR_PTID points to.
2198
2199 This comes from that fact that there is no explicit notion of
2200 "selected process" in the protocol. The selected process for
2201 general operations is the process the selected general thread
2202 belongs to. */
2203
2204static void
2205set_general_process (void)
2206{
2207 struct remote_state *rs = get_remote_state ();
2208
2209 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2210 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2211 return;
2212
2213 /* We only need to change the remote current thread if it's pointing
2214 at some other process. */
47f8a51d 2215 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
2216 set_general_thread (inferior_ptid);
2217}
2218
c906108c 2219\f
7d1a114c
PA
2220/* Return nonzero if this is the main thread that we made up ourselves
2221 to model non-threaded targets as single-threaded. */
c906108c
SS
2222
2223static int
7d1a114c 2224remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
c906108c 2225{
c0a2216e
PA
2226 if (ptid_equal (ptid, magic_null_ptid))
2227 /* The main thread is always alive. */
2228 return 1;
2229
ba348170 2230 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
c0a2216e
PA
2231 /* The main thread is always alive. This can happen after a
2232 vAttach, if the remote side doesn't support
2233 multi-threading. */
2234 return 1;
2235
7d1a114c
PA
2236 return 0;
2237}
2238
2239/* Return nonzero if the thread PTID is still alive on the remote
2240 system. */
2241
2242static int
2243remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2244{
2245 struct remote_state *rs = get_remote_state ();
2246 char *p, *endp;
2247
2248 /* Check if this is a thread that we made up ourselves to model
2249 non-threaded targets as single-threaded. */
2250 if (remote_thread_always_alive (ops, ptid))
2251 return 1;
2252
82f73884
PA
2253 p = rs->buf;
2254 endp = rs->buf + get_remote_packet_size ();
2255
2256 *p++ = 'T';
2257 write_ptid (p, endp, ptid);
2258
2e9f7625 2259 putpkt (rs->buf);
6d820c5c 2260 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2261 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2262}
2263
79efa585
SM
2264/* Return a pointer to a thread name if we know it and NULL otherwise.
2265 The thread_info object owns the memory for the name. */
2266
2267static const char *
2268remote_thread_name (struct target_ops *ops, struct thread_info *info)
2269{
2270 if (info->priv != NULL)
a9334058
SM
2271 {
2272 const std::string &name = get_remote_thread_info (info)->name;
2273 return !name.empty () ? name.c_str () : NULL;
2274 }
79efa585
SM
2275
2276 return NULL;
2277}
2278
c906108c
SS
2279/* About these extended threadlist and threadinfo packets. They are
2280 variable length packets but, the fields within them are often fixed
2281 length. They are redundent enough to send over UDP as is the
2282 remote protocol in general. There is a matching unit test module
2283 in libstub. */
2284
23860348 2285/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2286 libstub protocol encoding, and remote.c. It is not particularly
23860348 2287 changable. */
cce74817
JM
2288
2289/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2290 Plan to fix this. */
cce74817 2291
23860348 2292typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2293
9d1f7ab2 2294/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2295 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2296
2297struct gdb_ext_thread_info
c5aa993b 2298 {
23860348 2299 threadref threadid; /* External form of thread reference. */
2bc416ba 2300 int active; /* Has state interesting to GDB?
23860348 2301 regs, stack. */
2bc416ba 2302 char display[256]; /* Brief state display, name,
cedea757 2303 blocked/suspended. */
23860348 2304 char shortname[32]; /* To be used to name threads. */
2bc416ba 2305 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2306 whatever. */
c5aa993b 2307 };
cce74817
JM
2308
2309/* The volume of remote transfers can be limited by submitting
2310 a mask containing bits specifying the desired information.
2311 Use a union of these values as the 'selection' parameter to
0df8b418 2312 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2313
2314#define TAG_THREADID 1
2315#define TAG_EXISTS 2
2316#define TAG_DISPLAY 4
2317#define TAG_THREADNAME 8
c5aa993b 2318#define TAG_MOREDISPLAY 16
cce74817 2319
23860348 2320#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2321
a14ed312 2322static char *unpack_nibble (char *buf, int *val);
cce74817 2323
a14ed312 2324static char *unpack_byte (char *buf, int *value);
cce74817 2325
a14ed312 2326static char *pack_int (char *buf, int value);
cce74817 2327
a14ed312 2328static char *unpack_int (char *buf, int *value);
cce74817 2329
a14ed312 2330static char *unpack_string (char *src, char *dest, int length);
cce74817 2331
23860348 2332static char *pack_threadid (char *pkt, threadref *id);
cce74817 2333
23860348 2334static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2335
23860348 2336void int_to_threadref (threadref *id, int value);
cce74817 2337
23860348 2338static int threadref_to_int (threadref *ref);
cce74817 2339
23860348 2340static void copy_threadref (threadref *dest, threadref *src);
cce74817 2341
23860348 2342static int threadmatch (threadref *dest, threadref *src);
cce74817 2343
2bc416ba 2344static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2345 threadref *id);
cce74817 2346
a14ed312 2347static int remote_unpack_thread_info_response (char *pkt,
23860348 2348 threadref *expectedref,
a14ed312
KB
2349 struct gdb_ext_thread_info
2350 *info);
cce74817
JM
2351
2352
2bc416ba 2353static int remote_get_threadinfo (threadref *threadid,
23860348 2354 int fieldset, /*TAG mask */
a14ed312 2355 struct gdb_ext_thread_info *info);
cce74817 2356
a14ed312
KB
2357static char *pack_threadlist_request (char *pkt, int startflag,
2358 int threadcount,
23860348 2359 threadref *nextthread);
cce74817 2360
a14ed312
KB
2361static int parse_threadlist_response (char *pkt,
2362 int result_limit,
23860348 2363 threadref *original_echo,
2bc416ba 2364 threadref *resultlist,
23860348 2365 int *doneflag);
cce74817 2366
a14ed312 2367static int remote_get_threadlist (int startflag,
23860348 2368 threadref *nextthread,
a14ed312
KB
2369 int result_limit,
2370 int *done,
2bc416ba 2371 int *result_count,
23860348 2372 threadref *threadlist);
cce74817 2373
23860348 2374typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 2375
a14ed312
KB
2376static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2377 void *context, int looplimit);
cce74817 2378
23860348 2379static int remote_newthread_step (threadref *ref, void *context);
cce74817 2380
82f73884
PA
2381
2382/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2383 buffer we're allowed to write to. Returns
2384 BUF+CHARACTERS_WRITTEN. */
2385
2386static char *
2387write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2388{
2389 int pid, tid;
2390 struct remote_state *rs = get_remote_state ();
2391
2392 if (remote_multi_process_p (rs))
2393 {
2394 pid = ptid_get_pid (ptid);
2395 if (pid < 0)
2396 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2397 else
2398 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2399 }
ba348170 2400 tid = ptid_get_lwp (ptid);
82f73884
PA
2401 if (tid < 0)
2402 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2403 else
2404 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2405
2406 return buf;
2407}
2408
256642e8
PA
2409/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2410 last parsed char. Returns null_ptid if no thread id is found, and
2411 throws an error if the thread id has an invalid format. */
82f73884
PA
2412
2413static ptid_t
256642e8 2414read_ptid (const char *buf, const char **obuf)
82f73884 2415{
256642e8
PA
2416 const char *p = buf;
2417 const char *pp;
82f73884 2418 ULONGEST pid = 0, tid = 0;
82f73884
PA
2419
2420 if (*p == 'p')
2421 {
2422 /* Multi-process ptid. */
2423 pp = unpack_varlen_hex (p + 1, &pid);
2424 if (*pp != '.')
b37520b6 2425 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2426
2427 p = pp;
2428 pp = unpack_varlen_hex (p + 1, &tid);
2429 if (obuf)
2430 *obuf = pp;
ba348170 2431 return ptid_build (pid, tid, 0);
82f73884
PA
2432 }
2433
2434 /* No multi-process. Just a tid. */
2435 pp = unpack_varlen_hex (p, &tid);
2436
c9f35b34
KB
2437 /* Return null_ptid when no thread id is found. */
2438 if (p == pp)
2439 {
2440 if (obuf)
2441 *obuf = pp;
2442 return null_ptid;
2443 }
2444
82f73884 2445 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2446 what's in inferior_ptid, unless it's null at this point. If so,
2447 then since there's no way to know the pid of the reported
2448 threads, use the magic number. */
2449 if (ptid_equal (inferior_ptid, null_ptid))
2450 pid = ptid_get_pid (magic_null_ptid);
2451 else
2452 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2453
2454 if (obuf)
2455 *obuf = pp;
ba348170 2456 return ptid_build (pid, tid, 0);
82f73884
PA
2457}
2458
c906108c 2459static int
fba45db2 2460stubhex (int ch)
c906108c
SS
2461{
2462 if (ch >= 'a' && ch <= 'f')
2463 return ch - 'a' + 10;
2464 if (ch >= '0' && ch <= '9')
2465 return ch - '0';
2466 if (ch >= 'A' && ch <= 'F')
2467 return ch - 'A' + 10;
2468 return -1;
2469}
2470
2471static int
fba45db2 2472stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2473{
2474 int nibble;
2475 int retval = 0;
2476
2477 while (fieldlength)
2478 {
2479 nibble = stubhex (*buff++);
2480 retval |= nibble;
2481 fieldlength--;
2482 if (fieldlength)
2483 retval = retval << 4;
2484 }
2485 return retval;
2486}
2487
c906108c 2488static char *
fba45db2 2489unpack_nibble (char *buf, int *val)
c906108c 2490{
b7589f7d 2491 *val = fromhex (*buf++);
c906108c
SS
2492 return buf;
2493}
2494
c906108c 2495static char *
fba45db2 2496unpack_byte (char *buf, int *value)
c906108c
SS
2497{
2498 *value = stub_unpack_int (buf, 2);
2499 return buf + 2;
2500}
2501
2502static char *
fba45db2 2503pack_int (char *buf, int value)
c906108c
SS
2504{
2505 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2506 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2507 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2508 buf = pack_hex_byte (buf, (value & 0xff));
2509 return buf;
2510}
2511
2512static char *
fba45db2 2513unpack_int (char *buf, int *value)
c906108c
SS
2514{
2515 *value = stub_unpack_int (buf, 8);
2516 return buf + 8;
2517}
2518
23860348 2519#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2520static char *pack_string (char *pkt, char *string);
c906108c
SS
2521
2522static char *
fba45db2 2523pack_string (char *pkt, char *string)
c906108c
SS
2524{
2525 char ch;
2526 int len;
2527
2528 len = strlen (string);
2529 if (len > 200)
23860348 2530 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2531 pkt = pack_hex_byte (pkt, len);
2532 while (len-- > 0)
2533 {
2534 ch = *string++;
2535 if ((ch == '\0') || (ch == '#'))
23860348 2536 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2537 *pkt++ = ch;
2538 }
2539 return pkt;
2540}
2541#endif /* 0 (unused) */
2542
2543static char *
fba45db2 2544unpack_string (char *src, char *dest, int length)
c906108c
SS
2545{
2546 while (length--)
2547 *dest++ = *src++;
2548 *dest = '\0';
2549 return src;
2550}
2551
2552static char *
fba45db2 2553pack_threadid (char *pkt, threadref *id)
c906108c
SS
2554{
2555 char *limit;
2556 unsigned char *altid;
2557
2558 altid = (unsigned char *) id;
2559 limit = pkt + BUF_THREAD_ID_SIZE;
2560 while (pkt < limit)
2561 pkt = pack_hex_byte (pkt, *altid++);
2562 return pkt;
2563}
2564
2565
2566static char *
fba45db2 2567unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2568{
2569 char *altref;
2570 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2571 int x, y;
2572
2573 altref = (char *) id;
2574
2575 while (inbuf < limit)
2576 {
2577 x = stubhex (*inbuf++);
2578 y = stubhex (*inbuf++);
2579 *altref++ = (x << 4) | y;
2580 }
2581 return inbuf;
2582}
2583
2584/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2585 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2586 to use 64bit thread references internally. This is an adapter
2587 function. */
2588
2589void
fba45db2 2590int_to_threadref (threadref *id, int value)
c906108c
SS
2591{
2592 unsigned char *scan;
2593
2594 scan = (unsigned char *) id;
2595 {
2596 int i = 4;
2597 while (i--)
2598 *scan++ = 0;
2599 }
2600 *scan++ = (value >> 24) & 0xff;
2601 *scan++ = (value >> 16) & 0xff;
2602 *scan++ = (value >> 8) & 0xff;
2603 *scan++ = (value & 0xff);
2604}
2605
2606static int
fba45db2 2607threadref_to_int (threadref *ref)
c906108c
SS
2608{
2609 int i, value = 0;
2610 unsigned char *scan;
2611
cfd77fa1 2612 scan = *ref;
c906108c
SS
2613 scan += 4;
2614 i = 4;
2615 while (i-- > 0)
2616 value = (value << 8) | ((*scan++) & 0xff);
2617 return value;
2618}
2619
2620static void
fba45db2 2621copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2622{
2623 int i;
2624 unsigned char *csrc, *cdest;
2625
2626 csrc = (unsigned char *) src;
2627 cdest = (unsigned char *) dest;
2628 i = 8;
2629 while (i--)
2630 *cdest++ = *csrc++;
2631}
2632
2633static int
fba45db2 2634threadmatch (threadref *dest, threadref *src)
c906108c 2635{
23860348 2636 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2637#if 0
2638 unsigned char *srcp, *destp;
2639 int i, result;
2640 srcp = (char *) src;
2641 destp = (char *) dest;
2642
2643 result = 1;
2644 while (i-- > 0)
2645 result &= (*srcp++ == *destp++) ? 1 : 0;
2646 return result;
2647#endif
2648 return 1;
2649}
2650
2651/*
c5aa993b
JM
2652 threadid:1, # always request threadid
2653 context_exists:2,
2654 display:4,
2655 unique_name:8,
2656 more_display:16
2657 */
c906108c
SS
2658
2659/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2660
2661static char *
fba45db2 2662pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2663{
23860348
MS
2664 *pkt++ = 'q'; /* Info Query */
2665 *pkt++ = 'P'; /* process or thread info */
2666 pkt = pack_int (pkt, mode); /* mode */
c906108c 2667 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2668 *pkt = '\0'; /* terminate */
c906108c
SS
2669 return pkt;
2670}
2671
23860348 2672/* These values tag the fields in a thread info response packet. */
c906108c 2673/* Tagging the fields allows us to request specific fields and to
23860348 2674 add more fields as time goes by. */
c906108c 2675
23860348 2676#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 2677#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 2678 fetch registers and its stack? */
c5aa993b 2679#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 2680#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 2681#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 2682 the process. */
c906108c
SS
2683
2684static int
fba45db2
KB
2685remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2686 struct gdb_ext_thread_info *info)
c906108c 2687{
d01949b6 2688 struct remote_state *rs = get_remote_state ();
c906108c 2689 int mask, length;
cfd77fa1 2690 int tag;
c906108c 2691 threadref ref;
6d820c5c 2692 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
2693 int retval = 1;
2694
23860348 2695 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
2696 info->active = 0;
2697 info->display[0] = '\0';
2698 info->shortname[0] = '\0';
2699 info->more_display[0] = '\0';
2700
23860348
MS
2701 /* Assume the characters indicating the packet type have been
2702 stripped. */
c906108c
SS
2703 pkt = unpack_int (pkt, &mask); /* arg mask */
2704 pkt = unpack_threadid (pkt, &ref);
2705
2706 if (mask == 0)
8a3fe4f8 2707 warning (_("Incomplete response to threadinfo request."));
c906108c 2708 if (!threadmatch (&ref, expectedref))
23860348 2709 { /* This is an answer to a different request. */
8a3fe4f8 2710 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
2711 return 0;
2712 }
2713 copy_threadref (&info->threadid, &ref);
2714
23860348 2715 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 2716
23860348
MS
2717 /* Packets are terminated with nulls. */
2718 while ((pkt < limit) && mask && *pkt)
c906108c
SS
2719 {
2720 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
2721 pkt = unpack_byte (pkt, &length); /* length */
2722 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 2723 {
8a3fe4f8 2724 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
2725 retval = 0;
2726 break;
2727 }
2728 if (tag == TAG_THREADID)
2729 {
2730 if (length != 16)
2731 {
8a3fe4f8 2732 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
2733 retval = 0;
2734 break;
2735 }
2736 pkt = unpack_threadid (pkt, &ref);
2737 mask = mask & ~TAG_THREADID;
2738 continue;
2739 }
2740 if (tag == TAG_EXISTS)
2741 {
2742 info->active = stub_unpack_int (pkt, length);
2743 pkt += length;
2744 mask = mask & ~(TAG_EXISTS);
2745 if (length > 8)
2746 {
8a3fe4f8 2747 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
2748 retval = 0;
2749 break;
2750 }
2751 continue;
2752 }
2753 if (tag == TAG_THREADNAME)
2754 {
2755 pkt = unpack_string (pkt, &info->shortname[0], length);
2756 mask = mask & ~TAG_THREADNAME;
2757 continue;
2758 }
2759 if (tag == TAG_DISPLAY)
2760 {
2761 pkt = unpack_string (pkt, &info->display[0], length);
2762 mask = mask & ~TAG_DISPLAY;
2763 continue;
2764 }
2765 if (tag == TAG_MOREDISPLAY)
2766 {
2767 pkt = unpack_string (pkt, &info->more_display[0], length);
2768 mask = mask & ~TAG_MOREDISPLAY;
2769 continue;
2770 }
8a3fe4f8 2771 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2772 break; /* Not a tag we know about. */
c906108c
SS
2773 }
2774 return retval;
2775}
2776
2777static int
fba45db2
KB
2778remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2779 struct gdb_ext_thread_info *info)
c906108c 2780{
d01949b6 2781 struct remote_state *rs = get_remote_state ();
c906108c 2782 int result;
c906108c 2783
2e9f7625
DJ
2784 pack_threadinfo_request (rs->buf, fieldset, threadid);
2785 putpkt (rs->buf);
6d820c5c 2786 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2787
2788 if (rs->buf[0] == '\0')
2789 return 0;
2790
2e9f7625 2791 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2792 threadid, info);
c906108c
SS
2793 return result;
2794}
2795
c906108c
SS
2796/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2797
2798static char *
fba45db2
KB
2799pack_threadlist_request (char *pkt, int startflag, int threadcount,
2800 threadref *nextthread)
c906108c
SS
2801{
2802 *pkt++ = 'q'; /* info query packet */
2803 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2804 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2805 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2806 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2807 *pkt = '\0';
2808 return pkt;
2809}
2810
2811/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2812
2813static int
fba45db2
KB
2814parse_threadlist_response (char *pkt, int result_limit,
2815 threadref *original_echo, threadref *resultlist,
2816 int *doneflag)
c906108c 2817{
d01949b6 2818 struct remote_state *rs = get_remote_state ();
c906108c
SS
2819 char *limit;
2820 int count, resultcount, done;
2821
2822 resultcount = 0;
2823 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2824 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2825 /* done parse past here */
c906108c
SS
2826 pkt = unpack_byte (pkt, &count); /* count field */
2827 pkt = unpack_nibble (pkt, &done);
2828 /* The first threadid is the argument threadid. */
2829 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2830 while ((count-- > 0) && (pkt < limit))
2831 {
2832 pkt = unpack_threadid (pkt, resultlist++);
2833 if (resultcount++ >= result_limit)
2834 break;
2835 }
2836 if (doneflag)
2837 *doneflag = done;
2838 return resultcount;
2839}
2840
6dc54d91
PA
2841/* Fetch the next batch of threads from the remote. Returns -1 if the
2842 qL packet is not supported, 0 on error and 1 on success. */
2843
c906108c 2844static int
fba45db2
KB
2845remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2846 int *done, int *result_count, threadref *threadlist)
c906108c 2847{
d01949b6 2848 struct remote_state *rs = get_remote_state ();
c906108c
SS
2849 int result = 1;
2850
23860348 2851 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
2852 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2853 >= get_remote_packet_size ())
ea9c271d 2854 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2855
6d820c5c
DJ
2856 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2857 putpkt (rs->buf);
2858 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 2859 if (*rs->buf == '\0')
6dc54d91
PA
2860 {
2861 /* Packet not supported. */
2862 return -1;
2863 }
2864
2865 *result_count =
2866 parse_threadlist_response (rs->buf + 2, result_limit,
2867 &rs->echo_nextthread, threadlist, done);
c906108c 2868
0d031856 2869 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 2870 {
23860348
MS
2871 /* FIXME: This is a good reason to drop the packet. */
2872 /* Possably, there is a duplicate response. */
c906108c
SS
2873 /* Possabilities :
2874 retransmit immediatly - race conditions
2875 retransmit after timeout - yes
2876 exit
2877 wait for packet, then exit
2878 */
8a3fe4f8 2879 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2880 return 0; /* I choose simply exiting. */
c906108c
SS
2881 }
2882 if (*result_count <= 0)
2883 {
2884 if (*done != 1)
2885 {
8a3fe4f8 2886 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2887 result = 0;
2888 }
2889 return result; /* break; */
2890 }
2891 if (*result_count > result_limit)
2892 {
2893 *result_count = 0;
8a3fe4f8 2894 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2895 return 0;
2896 }
2897 return result;
2898}
2899
6dc54d91
PA
2900/* Fetch the list of remote threads, with the qL packet, and call
2901 STEPFUNCTION for each thread found. Stops iterating and returns 1
2902 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2903 STEPFUNCTION returns false. If the packet is not supported,
2904 returns -1. */
c906108c 2905
c906108c 2906static int
fba45db2
KB
2907remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2908 int looplimit)
c906108c 2909{
0d031856 2910 struct remote_state *rs = get_remote_state ();
c906108c
SS
2911 int done, i, result_count;
2912 int startflag = 1;
2913 int result = 1;
2914 int loopcount = 0;
c906108c
SS
2915
2916 done = 0;
2917 while (!done)
2918 {
2919 if (loopcount++ > looplimit)
2920 {
2921 result = 0;
8a3fe4f8 2922 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2923 break;
2924 }
6dc54d91
PA
2925 result = remote_get_threadlist (startflag, &rs->nextthread,
2926 MAXTHREADLISTRESULTS,
2927 &done, &result_count,
2928 rs->resultthreadlist);
2929 if (result <= 0)
2930 break;
23860348 2931 /* Clear for later iterations. */
c906108c
SS
2932 startflag = 0;
2933 /* Setup to resume next batch of thread references, set nextthread. */
2934 if (result_count >= 1)
0d031856
TT
2935 copy_threadref (&rs->nextthread,
2936 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
2937 i = 0;
2938 while (result_count--)
6dc54d91
PA
2939 {
2940 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2941 {
2942 result = 0;
2943 break;
2944 }
2945 }
c906108c
SS
2946 }
2947 return result;
2948}
2949
6dc54d91
PA
2950/* A thread found on the remote target. */
2951
21fe1c75 2952struct thread_item
6dc54d91 2953{
21fe1c75
SM
2954 explicit thread_item (ptid_t ptid_)
2955 : ptid (ptid_)
2956 {}
2957
2958 thread_item (thread_item &&other) = default;
2959 thread_item &operator= (thread_item &&other) = default;
2960
2961 DISABLE_COPY_AND_ASSIGN (thread_item);
2962
6dc54d91
PA
2963 /* The thread's PTID. */
2964 ptid_t ptid;
2965
21fe1c75
SM
2966 /* The thread's extra info. */
2967 std::string extra;
6dc54d91 2968
21fe1c75
SM
2969 /* The thread's name. */
2970 std::string name;
79efa585 2971
6dc54d91 2972 /* The core the thread was running on. -1 if not known. */
21fe1c75 2973 int core = -1;
f6327dcb
KB
2974
2975 /* The thread handle associated with the thread. */
21fe1c75 2976 gdb::byte_vector thread_handle;
21fe1c75 2977};
6dc54d91
PA
2978
2979/* Context passed around to the various methods listing remote
2980 threads. As new threads are found, they're added to the ITEMS
2981 vector. */
2982
2983struct threads_listing_context
2984{
21fe1c75
SM
2985 /* Return true if this object contains an entry for a thread with ptid
2986 PTID. */
6dc54d91 2987
21fe1c75
SM
2988 bool contains_thread (ptid_t ptid) const
2989 {
2990 auto match_ptid = [&] (const thread_item &item)
2991 {
2992 return item.ptid == ptid;
2993 };
80134cf5 2994
21fe1c75
SM
2995 auto it = std::find_if (this->items.begin (),
2996 this->items.end (),
2997 match_ptid);
80134cf5 2998
21fe1c75
SM
2999 return it != this->items.end ();
3000 }
80134cf5 3001
21fe1c75 3002 /* Remove the thread with ptid PTID. */
80134cf5 3003
21fe1c75
SM
3004 void remove_thread (ptid_t ptid)
3005 {
3006 auto match_ptid = [&] (const thread_item &item)
3007 {
3008 return item.ptid == ptid;
3009 };
cbb8991c 3010
21fe1c75
SM
3011 auto it = std::remove_if (this->items.begin (),
3012 this->items.end (),
3013 match_ptid);
cbb8991c 3014
21fe1c75
SM
3015 if (it != this->items.end ())
3016 this->items.erase (it);
3017 }
3018
3019 /* The threads found on the remote target. */
3020 std::vector<thread_item> items;
3021};
cbb8991c 3022
c906108c 3023static int
6dc54d91 3024remote_newthread_step (threadref *ref, void *data)
c906108c 3025{
19ba03f4
SM
3026 struct threads_listing_context *context
3027 = (struct threads_listing_context *) data;
21fe1c75
SM
3028 int pid = inferior_ptid.pid ();
3029 int lwp = threadref_to_int (ref);
3030 ptid_t ptid (pid, lwp);
6dc54d91 3031
21fe1c75 3032 context->items.emplace_back (ptid);
6dc54d91 3033
c906108c
SS
3034 return 1; /* continue iterator */
3035}
3036
3037#define CRAZY_MAX_THREADS 1000
3038
39f77062
KB
3039static ptid_t
3040remote_current_thread (ptid_t oldpid)
c906108c 3041{
d01949b6 3042 struct remote_state *rs = get_remote_state ();
c906108c
SS
3043
3044 putpkt ("qC");
6d820c5c 3045 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3046 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3047 {
256642e8 3048 const char *obuf;
c9f35b34
KB
3049 ptid_t result;
3050
3051 result = read_ptid (&rs->buf[2], &obuf);
3052 if (*obuf != '\0' && remote_debug)
3053 fprintf_unfiltered (gdb_stdlog,
3054 "warning: garbage in qC reply\n");
3055
3056 return result;
3057 }
c906108c
SS
3058 else
3059 return oldpid;
3060}
3061
6dc54d91 3062/* List remote threads using the deprecated qL packet. */
cce74817 3063
6dc54d91
PA
3064static int
3065remote_get_threads_with_ql (struct target_ops *ops,
3066 struct threads_listing_context *context)
c906108c 3067{
6dc54d91
PA
3068 if (remote_threadlist_iterator (remote_newthread_step, context,
3069 CRAZY_MAX_THREADS) >= 0)
3070 return 1;
3071
3072 return 0;
c906108c
SS
3073}
3074
dc146f7c
VP
3075#if defined(HAVE_LIBEXPAT)
3076
dc146f7c
VP
3077static void
3078start_thread (struct gdb_xml_parser *parser,
3079 const struct gdb_xml_element *element,
4d0fdd9b
SM
3080 void *user_data,
3081 std::vector<gdb_xml_value> &attributes)
dc146f7c 3082{
19ba03f4
SM
3083 struct threads_listing_context *data
3084 = (struct threads_listing_context *) user_data;
3d2c1d41 3085 struct gdb_xml_value *attr;
dc146f7c 3086
4d0fdd9b 3087 char *id = (char *) xml_find_attribute (attributes, "id")->value.get ();
21fe1c75
SM
3088 ptid_t ptid = read_ptid (id, NULL);
3089
3090 data->items.emplace_back (ptid);
3091 thread_item &item = data->items.back ();
dc146f7c 3092
3d2c1d41
PA
3093 attr = xml_find_attribute (attributes, "core");
3094 if (attr != NULL)
4d0fdd9b 3095 item.core = *(ULONGEST *) attr->value.get ();
dc146f7c 3096
79efa585 3097 attr = xml_find_attribute (attributes, "name");
21fe1c75 3098 if (attr != NULL)
4d0fdd9b 3099 item.name = (const char *) attr->value.get ();
79efa585 3100
f6327dcb
KB
3101 attr = xml_find_attribute (attributes, "handle");
3102 if (attr != NULL)
4d0fdd9b 3103 item.thread_handle = hex2bin ((const char *) attr->value.get ());
dc146f7c
VP
3104}
3105
3106static void
3107end_thread (struct gdb_xml_parser *parser,
3108 const struct gdb_xml_element *element,
3109 void *user_data, const char *body_text)
3110{
19ba03f4
SM
3111 struct threads_listing_context *data
3112 = (struct threads_listing_context *) user_data;
dc146f7c 3113
21fe1c75
SM
3114 if (body_text != NULL && *body_text != '\0')
3115 data->items.back ().extra = body_text;
dc146f7c
VP
3116}
3117
3118const struct gdb_xml_attribute thread_attributes[] = {
3119 { "id", GDB_XML_AF_NONE, NULL, NULL },
3120 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3121 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3122 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3123 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3124};
3125
3126const struct gdb_xml_element thread_children[] = {
3127 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3128};
3129
3130const struct gdb_xml_element threads_children[] = {
3131 { "thread", thread_attributes, thread_children,
3132 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3133 start_thread, end_thread },
3134 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3135};
3136
3137const struct gdb_xml_element threads_elements[] = {
3138 { "threads", NULL, threads_children,
3139 GDB_XML_EF_NONE, NULL, NULL },
3140 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3141};
3142
3143#endif
3144
6dc54d91 3145/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3146
6dc54d91
PA
3147static int
3148remote_get_threads_with_qxfer (struct target_ops *ops,
3149 struct threads_listing_context *context)
0f71a2f6 3150{
dc146f7c 3151#if defined(HAVE_LIBEXPAT)
4082afcc 3152 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3153 {
9018be22 3154 gdb::optional<gdb::char_vector> xml
b7b030ad 3155 = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3156
9018be22 3157 if (xml && (*xml)[0] != '\0')
dc146f7c 3158 {
6dc54d91 3159 gdb_xml_parse_quick (_("threads"), "threads.dtd",
9018be22 3160 threads_elements, xml->data (), context);
dc146f7c
VP
3161 }
3162
6dc54d91 3163 return 1;
dc146f7c
VP
3164 }
3165#endif
3166
6dc54d91
PA
3167 return 0;
3168}
3169
3170/* List remote threads using qfThreadInfo/qsThreadInfo. */
3171
3172static int
3173remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3174 struct threads_listing_context *context)
3175{
3176 struct remote_state *rs = get_remote_state ();
3177
b80fafe3 3178 if (rs->use_threadinfo_query)
9d1f7ab2 3179 {
256642e8 3180 const char *bufp;
6dc54d91 3181
9d1f7ab2 3182 putpkt ("qfThreadInfo");
6d820c5c 3183 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3184 bufp = rs->buf;
9d1f7ab2 3185 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3186 {
9d1f7ab2
MS
3187 while (*bufp++ == 'm') /* reply contains one or more TID */
3188 {
3189 do
3190 {
21fe1c75
SM
3191 ptid_t ptid = read_ptid (bufp, &bufp);
3192 context->items.emplace_back (ptid);
9d1f7ab2
MS
3193 }
3194 while (*bufp++ == ','); /* comma-separated list */
3195 putpkt ("qsThreadInfo");
6d820c5c 3196 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3197 bufp = rs->buf;
9d1f7ab2 3198 }
6dc54d91
PA
3199 return 1;
3200 }
3201 else
3202 {
3203 /* Packet not recognized. */
3204 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3205 }
3206 }
3207
6dc54d91
PA
3208 return 0;
3209}
3210
e8032dde 3211/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3212 targets. */
3213
3214static void
e8032dde 3215remote_update_thread_list (struct target_ops *ops)
6dc54d91 3216{
6dc54d91 3217 struct threads_listing_context context;
ab970af1 3218 int got_list = 0;
e8032dde 3219
6dc54d91
PA
3220 /* We have a few different mechanisms to fetch the thread list. Try
3221 them all, starting with the most preferred one first, falling
3222 back to older methods. */
3223 if (remote_get_threads_with_qxfer (ops, &context)
3224 || remote_get_threads_with_qthreadinfo (ops, &context)
3225 || remote_get_threads_with_ql (ops, &context))
3226 {
ab970af1
PA
3227 struct thread_info *tp, *tmp;
3228
3229 got_list = 1;
3230
21fe1c75 3231 if (context.items.empty ()
7d1a114c
PA
3232 && remote_thread_always_alive (ops, inferior_ptid))
3233 {
3234 /* Some targets don't really support threads, but still
3235 reply an (empty) thread list in response to the thread
3236 listing packets, instead of replying "packet not
3237 supported". Exit early so we don't delete the main
3238 thread. */
7d1a114c
PA
3239 return;
3240 }
3241
ab970af1
PA
3242 /* CONTEXT now holds the current thread list on the remote
3243 target end. Delete GDB-side threads no longer found on the
3244 target. */
8a06aea7 3245 ALL_THREADS_SAFE (tp, tmp)
cbb8991c 3246 {
21fe1c75 3247 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3248 {
3249 /* Not found. */
3250 delete_thread (tp->ptid);
3251 }
cbb8991c
DB
3252 }
3253
3254 /* Remove any unreported fork child threads from CONTEXT so
3255 that we don't interfere with follow fork, which is where
3256 creation of such threads is handled. */
3257 remove_new_fork_children (&context);
74531fed 3258
ab970af1 3259 /* And now add threads we don't know about yet to our list. */
21fe1c75 3260 for (thread_item &item : context.items)
6dc54d91 3261 {
21fe1c75 3262 if (item.ptid != null_ptid)
6dc54d91 3263 {
6dc54d91 3264 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3265 executing until proven otherwise with a stop reply.
3266 In all-stop, we can only get here if all threads are
6dc54d91 3267 stopped. */
0d5b594f 3268 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3269
21fe1c75 3270 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3271
7aabaf9d 3272 remote_thread_info *info = get_remote_thread_info (item.ptid);
21fe1c75 3273 info->core = item.core;
7aabaf9d
SM
3274 info->extra = std::move (item.extra);
3275 info->name = std::move (item.name);
3276 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3277 }
3278 }
3279 }
3280
ab970af1
PA
3281 if (!got_list)
3282 {
3283 /* If no thread listing method is supported, then query whether
3284 each known thread is alive, one by one, with the T packet.
3285 If the target doesn't support threads at all, then this is a
3286 no-op. See remote_thread_alive. */
3287 prune_threads ();
3288 }
9d1f7ab2
MS
3289}
3290
802188a7 3291/*
9d1f7ab2
MS
3292 * Collect a descriptive string about the given thread.
3293 * The target may say anything it wants to about the thread
3294 * (typically info about its blocked / runnable state, name, etc.).
3295 * This string will appear in the info threads display.
802188a7 3296 *
9d1f7ab2
MS
3297 * Optional: targets are not required to implement this function.
3298 */
3299
7a114964 3300static const char *
c15906d8 3301remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
9d1f7ab2 3302{
d01949b6 3303 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3304 int result;
3305 int set;
3306 threadref id;
3307 struct gdb_ext_thread_info threadinfo;
23860348 3308 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
3309 int n = 0; /* position in display_buf */
3310
5d93a237 3311 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3312 internal_error (__FILE__, __LINE__,
e2e0b3e5 3313 _("remote_threads_extra_info"));
9d1f7ab2 3314
60e569b9 3315 if (ptid_equal (tp->ptid, magic_null_ptid)
ba348170 3316 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
60e569b9
PA
3317 /* This is the main thread which was added by GDB. The remote
3318 server doesn't know about it. */
3319 return NULL;
3320
4082afcc 3321 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c
VP
3322 {
3323 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 3324
7aabaf9d 3325 if (info != NULL && info->priv != NULL)
a9334058
SM
3326 {
3327 const std::string &extra = get_remote_thread_info (info)->extra;
3328 return !extra.empty () ? extra.c_str () : NULL;
3329 }
dc146f7c
VP
3330 else
3331 return NULL;
3332 }
3333
b80fafe3 3334 if (rs->use_threadextra_query)
9d1f7ab2 3335 {
82f73884
PA
3336 char *b = rs->buf;
3337 char *endb = rs->buf + get_remote_packet_size ();
3338
3339 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3340 b += strlen (b);
3341 write_ptid (b, endb, tp->ptid);
3342
2e9f7625 3343 putpkt (rs->buf);
6d820c5c 3344 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3345 if (rs->buf[0] != 0)
9d1f7ab2 3346 {
325fac50 3347 n = std::min (strlen (rs->buf) / 2, sizeof (display_buf));
2e9f7625 3348 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 3349 display_buf [result] = '\0';
9d1f7ab2
MS
3350 return display_buf;
3351 }
0f71a2f6 3352 }
9d1f7ab2
MS
3353
3354 /* If the above query fails, fall back to the old method. */
b80fafe3 3355 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3356 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3357 | TAG_MOREDISPLAY | TAG_DISPLAY;
ba348170 3358 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
9d1f7ab2
MS
3359 if (remote_get_threadinfo (&id, set, &threadinfo))
3360 if (threadinfo.active)
0f71a2f6 3361 {
9d1f7ab2 3362 if (*threadinfo.shortname)
2bc416ba 3363 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 3364 " Name: %s,", threadinfo.shortname);
9d1f7ab2 3365 if (*threadinfo.display)
2bc416ba 3366 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3367 " State: %s,", threadinfo.display);
9d1f7ab2 3368 if (*threadinfo.more_display)
2bc416ba 3369 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3370 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
3371
3372 if (n > 0)
c5aa993b 3373 {
23860348 3374 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
3375 if (',' == display_buf[n-1])
3376 display_buf[n-1] = ' ';
3377 return display_buf;
c5aa993b 3378 }
0f71a2f6 3379 }
9d1f7ab2 3380 return NULL;
0f71a2f6 3381}
c906108c 3382\f
c5aa993b 3383
5d9310c4 3384static bool
61fc905d 3385remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
0fb4aa4b
PA
3386 struct static_tracepoint_marker *marker)
3387{
3388 struct remote_state *rs = get_remote_state ();
3389 char *p = rs->buf;
3390
bba74b36 3391 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3392 p += strlen (p);
3393 p += hexnumstr (p, addr);
3394 putpkt (rs->buf);
3395 getpkt (&rs->buf, &rs->buf_size, 0);
3396 p = rs->buf;
3397
3398 if (*p == 'E')
3399 error (_("Remote failure reply: %s"), p);
3400
3401 if (*p++ == 'm')
3402 {
256642e8 3403 parse_static_tracepoint_marker_definition (p, NULL, marker);
5d9310c4 3404 return true;
0fb4aa4b
PA
3405 }
3406
5d9310c4 3407 return false;
0fb4aa4b
PA
3408}
3409
5d9310c4 3410static std::vector<static_tracepoint_marker>
c686c57f
TT
3411remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3412 const char *strid)
0fb4aa4b
PA
3413{
3414 struct remote_state *rs = get_remote_state ();
5d9310c4 3415 std::vector<static_tracepoint_marker> markers;
256642e8 3416 const char *p;
5d9310c4 3417 static_tracepoint_marker marker;
0fb4aa4b
PA
3418
3419 /* Ask for a first packet of static tracepoint marker
3420 definition. */
3421 putpkt ("qTfSTM");
3422 getpkt (&rs->buf, &rs->buf_size, 0);
3423 p = rs->buf;
3424 if (*p == 'E')
3425 error (_("Remote failure reply: %s"), p);
3426
0fb4aa4b
PA
3427 while (*p++ == 'm')
3428 {
0fb4aa4b
PA
3429 do
3430 {
5d9310c4 3431 parse_static_tracepoint_marker_definition (p, &p, &marker);
0fb4aa4b 3432
5d9310c4
SM
3433 if (strid == NULL || marker.str_id == strid)
3434 markers.push_back (std::move (marker));
0fb4aa4b
PA
3435 }
3436 while (*p++ == ','); /* comma-separated list */
3437 /* Ask for another packet of static tracepoint definition. */
3438 putpkt ("qTsSTM");
3439 getpkt (&rs->buf, &rs->buf_size, 0);
3440 p = rs->buf;
3441 }
3442
0fb4aa4b
PA
3443 return markers;
3444}
3445
3446\f
10760264
JB
3447/* Implement the to_get_ada_task_ptid function for the remote targets. */
3448
3449static ptid_t
1e6b91a4 3450remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
10760264 3451{
ba348170 3452 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
10760264
JB
3453}
3454\f
3455
24b06219 3456/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3457
3458static void
fba45db2 3459extended_remote_restart (void)
c906108c 3460{
d01949b6 3461 struct remote_state *rs = get_remote_state ();
c906108c
SS
3462
3463 /* Send the restart command; for reasons I don't understand the
3464 remote side really expects a number after the "R". */
ea9c271d 3465 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3466 putpkt (rs->buf);
c906108c 3467
ad9a8f3f 3468 remote_fileio_reset ();
c906108c
SS
3469}
3470\f
3471/* Clean up connection to a remote debugger. */
3472
c906108c 3473static void
de90e03d 3474remote_close (struct target_ops *self)
c906108c 3475{
5d93a237
TT
3476 struct remote_state *rs = get_remote_state ();
3477
3478 if (rs->remote_desc == NULL)
d3fd5342
PA
3479 return; /* already closed */
3480
048094ac 3481 /* Make sure we leave stdin registered in the event loop. */
e3594fd1 3482 remote_terminal_ours (self);
ce5ce7ed 3483
5d93a237
TT
3484 serial_close (rs->remote_desc);
3485 rs->remote_desc = NULL;
ce5ce7ed
PA
3486
3487 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3488 of all the inferiors and their threads we were controlling.
3489 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3490 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3491 inferior_ptid = null_ptid;
f67fd822 3492 discard_all_inferiors ();
ce5ce7ed 3493
f48ff2a7
YQ
3494 /* We are closing the remote target, so we should discard
3495 everything of this target. */
bcc75809 3496 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3497
3498 if (remote_async_inferior_event_token)
3499 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3500
5965e028 3501 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3502
3503 trace_reset_local_state ();
c906108c
SS
3504}
3505
23860348 3506/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3507
3508static void
fba45db2 3509get_offsets (void)
c906108c 3510{
d01949b6 3511 struct remote_state *rs = get_remote_state ();
2e9f7625 3512 char *buf;
085dd6e6 3513 char *ptr;
31d99776
DJ
3514 int lose, num_segments = 0, do_sections, do_segments;
3515 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3516 struct section_offsets *offs;
31d99776
DJ
3517 struct symfile_segment_data *data;
3518
3519 if (symfile_objfile == NULL)
3520 return;
c906108c
SS
3521
3522 putpkt ("qOffsets");
6d820c5c 3523 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3524 buf = rs->buf;
c906108c
SS
3525
3526 if (buf[0] == '\000')
3527 return; /* Return silently. Stub doesn't support
23860348 3528 this command. */
c906108c
SS
3529 if (buf[0] == 'E')
3530 {
8a3fe4f8 3531 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3532 return;
3533 }
3534
3535 /* Pick up each field in turn. This used to be done with scanf, but
3536 scanf will make trouble if CORE_ADDR size doesn't match
3537 conversion directives correctly. The following code will work
3538 with any size of CORE_ADDR. */
3539 text_addr = data_addr = bss_addr = 0;
3540 ptr = buf;
3541 lose = 0;
3542
61012eef 3543 if (startswith (ptr, "Text="))
c906108c
SS
3544 {
3545 ptr += 5;
3546 /* Don't use strtol, could lose on big values. */
3547 while (*ptr && *ptr != ';')
3548 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3549
61012eef 3550 if (startswith (ptr, ";Data="))
31d99776
DJ
3551 {
3552 ptr += 6;
3553 while (*ptr && *ptr != ';')
3554 data_addr = (data_addr << 4) + fromhex (*ptr++);
3555 }
3556 else
3557 lose = 1;
3558
61012eef 3559 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
3560 {
3561 ptr += 5;
3562 while (*ptr && *ptr != ';')
3563 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3564
31d99776
DJ
3565 if (bss_addr != data_addr)
3566 warning (_("Target reported unsupported offsets: %s"), buf);
3567 }
3568 else
3569 lose = 1;
3570 }
61012eef 3571 else if (startswith (ptr, "TextSeg="))
c906108c 3572 {
31d99776
DJ
3573 ptr += 8;
3574 /* Don't use strtol, could lose on big values. */
c906108c 3575 while (*ptr && *ptr != ';')
31d99776
DJ
3576 text_addr = (text_addr << 4) + fromhex (*ptr++);
3577 num_segments = 1;
3578
61012eef 3579 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
3580 {
3581 ptr += 9;
3582 while (*ptr && *ptr != ';')
3583 data_addr = (data_addr << 4) + fromhex (*ptr++);
3584 num_segments++;
3585 }
c906108c
SS
3586 }
3587 else
3588 lose = 1;
3589
3590 if (lose)
8a3fe4f8 3591 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3592 else if (*ptr != '\0')
3593 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3594
802188a7 3595 offs = ((struct section_offsets *)
a39a16c4 3596 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3597 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3598 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3599
31d99776
DJ
3600 data = get_symfile_segment_data (symfile_objfile->obfd);
3601 do_segments = (data != NULL);
3602 do_sections = num_segments == 0;
c906108c 3603
28c32713 3604 if (num_segments > 0)
31d99776 3605 {
31d99776
DJ
3606 segments[0] = text_addr;
3607 segments[1] = data_addr;
3608 }
28c32713
JB
3609 /* If we have two segments, we can still try to relocate everything
3610 by assuming that the .text and .data offsets apply to the whole
3611 text and data segments. Convert the offsets given in the packet
3612 to base addresses for symfile_map_offsets_to_segments. */
3613 else if (data && data->num_segments == 2)
3614 {
3615 segments[0] = data->segment_bases[0] + text_addr;
3616 segments[1] = data->segment_bases[1] + data_addr;
3617 num_segments = 2;
3618 }
8d385431
DJ
3619 /* If the object file has only one segment, assume that it is text
3620 rather than data; main programs with no writable data are rare,
3621 but programs with no code are useless. Of course the code might
3622 have ended up in the data segment... to detect that we would need
3623 the permissions here. */
3624 else if (data && data->num_segments == 1)
3625 {
3626 segments[0] = data->segment_bases[0] + text_addr;
3627 num_segments = 1;
3628 }
28c32713
JB
3629 /* There's no way to relocate by segment. */
3630 else
3631 do_segments = 0;
31d99776
DJ
3632
3633 if (do_segments)
3634 {
3635 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3636 offs, num_segments, segments);
3637
3638 if (ret == 0 && !do_sections)
3e43a32a
MS
3639 error (_("Can not handle qOffsets TextSeg "
3640 "response with this symbol file"));
31d99776
DJ
3641
3642 if (ret > 0)
3643 do_sections = 0;
3644 }
c906108c 3645
9ef895d6
DJ
3646 if (data)
3647 free_symfile_segment_data (data);
31d99776
DJ
3648
3649 if (do_sections)
3650 {
3651 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3652
3e43a32a
MS
3653 /* This is a temporary kludge to force data and bss to use the
3654 same offsets because that's what nlmconv does now. The real
3655 solution requires changes to the stub and remote.c that I
3656 don't have time to do right now. */
31d99776
DJ
3657
3658 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3659 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3660 }
c906108c
SS
3661
3662 objfile_relocate (symfile_objfile, offs);
3663}
3664
9a7071a8
JB
3665/* Send interrupt_sequence to remote target. */
3666static void
eeae04df 3667send_interrupt_sequence (void)
9a7071a8 3668{
5d93a237
TT
3669 struct remote_state *rs = get_remote_state ();
3670
9a7071a8 3671 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 3672 remote_serial_write ("\x03", 1);
9a7071a8 3673 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 3674 serial_send_break (rs->remote_desc);
9a7071a8
JB
3675 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3676 {
5d93a237 3677 serial_send_break (rs->remote_desc);
c33e31fd 3678 remote_serial_write ("g", 1);
9a7071a8
JB
3679 }
3680 else
3681 internal_error (__FILE__, __LINE__,
3682 _("Invalid value for interrupt_sequence_mode: %s."),
3683 interrupt_sequence_mode);
3684}
3685
3405876a
PA
3686
3687/* If STOP_REPLY is a T stop reply, look for the "thread" register,
3688 and extract the PTID. Returns NULL_PTID if not found. */
3689
3690static ptid_t
3691stop_reply_extract_thread (char *stop_reply)
3692{
3693 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3694 {
256642e8 3695 const char *p;
3405876a
PA
3696
3697 /* Txx r:val ; r:val (...) */
3698 p = &stop_reply[3];
3699
3700 /* Look for "register" named "thread". */
3701 while (*p != '\0')
3702 {
256642e8 3703 const char *p1;
3405876a
PA
3704
3705 p1 = strchr (p, ':');
3706 if (p1 == NULL)
3707 return null_ptid;
3708
3709 if (strncmp (p, "thread", p1 - p) == 0)
3710 return read_ptid (++p1, &p);
3711
3712 p1 = strchr (p, ';');
3713 if (p1 == NULL)
3714 return null_ptid;
3715 p1++;
3716
3717 p = p1;
3718 }
3719 }
3720
3721 return null_ptid;
3722}
3723
b7ea362b
PA
3724/* Determine the remote side's current thread. If we have a stop
3725 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3726 "thread" register we can extract the current thread from. If not,
3727 ask the remote which is the current thread with qC. The former
3728 method avoids a roundtrip. */
3729
3730static ptid_t
3731get_current_thread (char *wait_status)
3732{
6a49a997 3733 ptid_t ptid = null_ptid;
b7ea362b
PA
3734
3735 /* Note we don't use remote_parse_stop_reply as that makes use of
3736 the target architecture, which we haven't yet fully determined at
3737 this point. */
3738 if (wait_status != NULL)
3739 ptid = stop_reply_extract_thread (wait_status);
3740 if (ptid_equal (ptid, null_ptid))
3741 ptid = remote_current_thread (inferior_ptid);
3742
3743 return ptid;
3744}
3745
49c62f2e
PA
3746/* Query the remote target for which is the current thread/process,
3747 add it to our tables, and update INFERIOR_PTID. The caller is
3748 responsible for setting the state such that the remote end is ready
3405876a
PA
3749 to return the current thread.
3750
3751 This function is called after handling the '?' or 'vRun' packets,
3752 whose response is a stop reply from which we can also try
3753 extracting the thread. If the target doesn't support the explicit
3754 qC query, we infer the current thread from that stop reply, passed
3755 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
3756
3757static void
3405876a 3758add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
3759{
3760 struct remote_state *rs = get_remote_state ();
3761 int fake_pid_p = 0;
49c62f2e
PA
3762
3763 inferior_ptid = null_ptid;
3764
b7ea362b 3765 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 3766 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 3767
87215ad1 3768 if (curr_ptid != null_ptid)
49c62f2e
PA
3769 {
3770 if (!remote_multi_process_p (rs))
3771 fake_pid_p = 1;
49c62f2e
PA
3772 }
3773 else
3774 {
3775 /* Without this, some commands which require an active target
3776 (such as kill) won't work. This variable serves (at least)
3777 double duty as both the pid of the target process (if it has
3778 such), and as a flag indicating that a target is active. */
87215ad1 3779 curr_ptid = magic_null_ptid;
49c62f2e
PA
3780 fake_pid_p = 1;
3781 }
3782
87215ad1 3783 remote_add_inferior (fake_pid_p, ptid_get_pid (curr_ptid), -1, 1);
49c62f2e 3784
87215ad1
SDJ
3785 /* Add the main thread and switch to it. Don't try reading
3786 registers yet, since we haven't fetched the target description
3787 yet. */
3788 thread_info *tp = add_thread_silent (curr_ptid);
3789 switch_to_thread_no_regs (tp);
49c62f2e
PA
3790}
3791
6efcd9a8
PA
3792/* Print info about a thread that was found already stopped on
3793 connection. */
3794
3795static void
3796print_one_stopped_thread (struct thread_info *thread)
3797{
3798 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3799
3800 switch_to_thread (thread->ptid);
3801 stop_pc = get_frame_pc (get_current_frame ());
3802 set_current_sal_from_frame (get_current_frame ());
3803
3804 thread->suspend.waitstatus_pending_p = 0;
3805
3806 if (ws->kind == TARGET_WAITKIND_STOPPED)
3807 {
3808 enum gdb_signal sig = ws->value.sig;
3809
3810 if (signal_print_state (sig))
76727919 3811 gdb::observers::signal_received.notify (sig);
6efcd9a8 3812 }
76727919 3813 gdb::observers::normal_stop.notify (NULL, 1);
6efcd9a8
PA
3814}
3815
221e1a37
PA
3816/* Process all initial stop replies the remote side sent in response
3817 to the ? packet. These indicate threads that were already stopped
3818 on initial connection. We mark these threads as stopped and print
3819 their current frame before giving the user the prompt. */
3820
3821static void
6efcd9a8 3822process_initial_stop_replies (int from_tty)
221e1a37
PA
3823{
3824 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
3825 struct inferior *inf;
3826 struct thread_info *thread;
3827 struct thread_info *selected = NULL;
3828 struct thread_info *lowest_stopped = NULL;
3829 struct thread_info *first = NULL;
221e1a37
PA
3830
3831 /* Consume the initial pending events. */
3832 while (pending_stop_replies-- > 0)
3833 {
3834 ptid_t waiton_ptid = minus_one_ptid;
3835 ptid_t event_ptid;
3836 struct target_waitstatus ws;
3837 int ignore_event = 0;
6efcd9a8 3838 struct thread_info *thread;
221e1a37
PA
3839
3840 memset (&ws, 0, sizeof (ws));
3841 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3842 if (remote_debug)
3843 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3844
3845 switch (ws.kind)
3846 {
3847 case TARGET_WAITKIND_IGNORE:
3848 case TARGET_WAITKIND_NO_RESUMED:
3849 case TARGET_WAITKIND_SIGNALLED:
3850 case TARGET_WAITKIND_EXITED:
3851 /* We shouldn't see these, but if we do, just ignore. */
3852 if (remote_debug)
3853 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3854 ignore_event = 1;
3855 break;
3856
3857 case TARGET_WAITKIND_EXECD:
3858 xfree (ws.value.execd_pathname);
3859 break;
3860 default:
3861 break;
3862 }
3863
3864 if (ignore_event)
3865 continue;
3866
6efcd9a8 3867 thread = find_thread_ptid (event_ptid);
221e1a37
PA
3868
3869 if (ws.kind == TARGET_WAITKIND_STOPPED)
3870 {
3871 enum gdb_signal sig = ws.value.sig;
3872
3873 /* Stubs traditionally report SIGTRAP as initial signal,
3874 instead of signal 0. Suppress it. */
3875 if (sig == GDB_SIGNAL_TRAP)
3876 sig = GDB_SIGNAL_0;
6efcd9a8
PA
3877 thread->suspend.stop_signal = sig;
3878 ws.value.sig = sig;
3879 }
221e1a37 3880
6efcd9a8
PA
3881 thread->suspend.waitstatus = ws;
3882
3883 if (ws.kind != TARGET_WAITKIND_STOPPED
3884 || ws.value.sig != GDB_SIGNAL_0)
3885 thread->suspend.waitstatus_pending_p = 1;
3886
3887 set_executing (event_ptid, 0);
3888 set_running (event_ptid, 0);
7aabaf9d 3889 get_remote_thread_info (thread)->vcont_resumed = 0;
6efcd9a8
PA
3890 }
3891
3892 /* "Notice" the new inferiors before anything related to
3893 registers/memory. */
3894 ALL_INFERIORS (inf)
3895 {
3896 if (inf->pid == 0)
3897 continue;
3898
3899 inf->needs_setup = 1;
3900
3901 if (non_stop)
3902 {
3903 thread = any_live_thread_of_process (inf->pid);
3904 notice_new_inferior (thread->ptid,
3905 thread->state == THREAD_RUNNING,
3906 from_tty);
3907 }
3908 }
3909
3910 /* If all-stop on top of non-stop, pause all threads. Note this
3911 records the threads' stop pc, so must be done after "noticing"
3912 the inferiors. */
3913 if (!non_stop)
3914 {
3915 stop_all_threads ();
3916
3917 /* If all threads of an inferior were already stopped, we
3918 haven't setup the inferior yet. */
3919 ALL_INFERIORS (inf)
3920 {
3921 if (inf->pid == 0)
3922 continue;
221e1a37 3923
6efcd9a8
PA
3924 if (inf->needs_setup)
3925 {
3926 thread = any_live_thread_of_process (inf->pid);
3927 switch_to_thread_no_regs (thread);
3928 setup_inferior (0);
3929 }
3930 }
221e1a37 3931 }
6efcd9a8
PA
3932
3933 /* Now go over all threads that are stopped, and print their current
3934 frame. If all-stop, then if there's a signalled thread, pick
3935 that as current. */
3936 ALL_NON_EXITED_THREADS (thread)
3937 {
6efcd9a8
PA
3938 if (first == NULL)
3939 first = thread;
3940
3941 if (!non_stop)
3942 set_running (thread->ptid, 0);
3943 else if (thread->state != THREAD_STOPPED)
3944 continue;
3945
6efcd9a8
PA
3946 if (selected == NULL
3947 && thread->suspend.waitstatus_pending_p)
3948 selected = thread;
3949
5d5658a1
PA
3950 if (lowest_stopped == NULL
3951 || thread->inf->num < lowest_stopped->inf->num
3952 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
3953 lowest_stopped = thread;
3954
3955 if (non_stop)
3956 print_one_stopped_thread (thread);
3957 }
3958
3959 /* In all-stop, we only print the status of one thread, and leave
3960 others with their status pending. */
3961 if (!non_stop)
3962 {
3963 thread = selected;
3964 if (thread == NULL)
3965 thread = lowest_stopped;
3966 if (thread == NULL)
3967 thread = first;
3968
3969 print_one_stopped_thread (thread);
3970 }
3971
3972 /* For "info program". */
3973 thread = inferior_thread ();
3974 if (thread->state == THREAD_STOPPED)
3975 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
3976}
3977
048094ac
PA
3978/* Start the remote connection and sync state. */
3979
9cbc821d 3980static void
04bd08de 3981remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
c906108c 3982{
c8d104ad
PA
3983 struct remote_state *rs = get_remote_state ();
3984 struct packet_config *noack_config;
2d717e4f 3985 char *wait_status = NULL;
8621d6a9 3986
048094ac
PA
3987 /* Signal other parts that we're going through the initial setup,
3988 and so things may not be stable yet. E.g., we don't try to
3989 install tracepoints until we've relocated symbols. Also, a
3990 Ctrl-C before we're connected and synced up can't interrupt the
3991 target. Instead, it offers to drop the (potentially wedged)
3992 connection. */
3993 rs->starting_up = 1;
3994
522002f9 3995 QUIT;
c906108c 3996
9a7071a8
JB
3997 if (interrupt_on_connect)
3998 send_interrupt_sequence ();
3999
57e12211 4000 /* Ack any packet which the remote side has already sent. */
048094ac 4001 remote_serial_write ("+", 1);
1e51243a 4002
c8d104ad
PA
4003 /* The first packet we send to the target is the optional "supported
4004 packets" request. If the target can answer this, it will tell us
4005 which later probes to skip. */
4006 remote_query_supported ();
4007
d914c394 4008 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4009 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
c378d69d 4010 remote_set_permissions (target);
d914c394 4011
57809e5e
JK
4012 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4013 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4014 as a reply to known packet. For packet "vFile:setfs:" it is an
4015 invalid reply and GDB would return error in
4016 remote_hostio_set_filesystem, making remote files access impossible.
4017 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4018 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4019 {
4020 const char v_mustreplyempty[] = "vMustReplyEmpty";
4021
4022 putpkt (v_mustreplyempty);
4023 getpkt (&rs->buf, &rs->buf_size, 0);
4024 if (strcmp (rs->buf, "OK") == 0)
4025 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4026 else if (strcmp (rs->buf, "") != 0)
4027 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4028 rs->buf);
4029 }
4030
c8d104ad
PA
4031 /* Next, we possibly activate noack mode.
4032
4033 If the QStartNoAckMode packet configuration is set to AUTO,
4034 enable noack mode if the stub reported a wish for it with
4035 qSupported.
4036
4037 If set to TRUE, then enable noack mode even if the stub didn't
4038 report it in qSupported. If the stub doesn't reply OK, the
4039 session ends with an error.
4040
4041 If FALSE, then don't activate noack mode, regardless of what the
4042 stub claimed should be the default with qSupported. */
4043
4044 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4045 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4046 {
4047 putpkt ("QStartNoAckMode");
4048 getpkt (&rs->buf, &rs->buf_size, 0);
4049 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4050 rs->noack_mode = 1;
4051 }
4052
04bd08de 4053 if (extended_p)
5fe04517
PA
4054 {
4055 /* Tell the remote that we are using the extended protocol. */
4056 putpkt ("!");
4057 getpkt (&rs->buf, &rs->buf_size, 0);
4058 }
4059
9b224c5e
PA
4060 /* Let the target know which signals it is allowed to pass down to
4061 the program. */
4062 update_signals_program_target ();
4063
d962ef82
DJ
4064 /* Next, if the target can specify a description, read it. We do
4065 this before anything involving memory or registers. */
4066 target_find_description ();
4067
6c95b8df
PA
4068 /* Next, now that we know something about the target, update the
4069 address spaces in the program spaces. */
4070 update_address_spaces ();
4071
50c71eaf
PA
4072 /* On OSs where the list of libraries is global to all
4073 processes, we fetch them early. */
f5656ead 4074 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4075 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4076
6efcd9a8 4077 if (target_is_non_stop_p ())
74531fed 4078 {
4082afcc 4079 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4080 error (_("Non-stop mode requested, but remote "
4081 "does not support non-stop"));
74531fed
PA
4082
4083 putpkt ("QNonStop:1");
4084 getpkt (&rs->buf, &rs->buf_size, 0);
4085
4086 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4087 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4088
4089 /* Find about threads and processes the stub is already
4090 controlling. We default to adding them in the running state.
4091 The '?' query below will then tell us about which threads are
4092 stopped. */
e8032dde 4093 remote_update_thread_list (target);
74531fed 4094 }
4082afcc 4095 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4096 {
4097 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4098 Request it explicitly. */
74531fed
PA
4099 putpkt ("QNonStop:0");
4100 getpkt (&rs->buf, &rs->buf_size, 0);
4101
4102 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4103 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4104 }
4105
a0743c90
YQ
4106 /* Upload TSVs regardless of whether the target is running or not. The
4107 remote stub, such as GDBserver, may have some predefined or builtin
4108 TSVs, even if the target is not running. */
8bd200f1 4109 if (remote_get_trace_status (target, current_trace_status ()) != -1)
a0743c90
YQ
4110 {
4111 struct uploaded_tsv *uploaded_tsvs = NULL;
4112
181e3713 4113 remote_upload_trace_state_variables (target, &uploaded_tsvs);
a0743c90
YQ
4114 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4115 }
4116
2d717e4f
DJ
4117 /* Check whether the target is running now. */
4118 putpkt ("?");
4119 getpkt (&rs->buf, &rs->buf_size, 0);
4120
6efcd9a8 4121 if (!target_is_non_stop_p ())
2d717e4f 4122 {
74531fed 4123 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4124 {
04bd08de 4125 if (!extended_p)
74531fed 4126 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4127
4128 /* We're connected, but not running. Drop out before we
4129 call start_remote. */
e278ad5b 4130 rs->starting_up = 0;
c35b1492 4131 return;
2d717e4f
DJ
4132 }
4133 else
74531fed 4134 {
74531fed 4135 /* Save the reply for later. */
224c3ddb 4136 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4137 strcpy (wait_status, rs->buf);
4138 }
4139
b7ea362b 4140 /* Fetch thread list. */
e8032dde 4141 target_update_thread_list ();
b7ea362b 4142
74531fed
PA
4143 /* Let the stub know that we want it to return the thread. */
4144 set_continue_thread (minus_one_ptid);
4145
b7ea362b
PA
4146 if (thread_count () == 0)
4147 {
4148 /* Target has no concept of threads at all. GDB treats
4149 non-threaded target as single-threaded; add a main
4150 thread. */
4151 add_current_inferior_and_thread (wait_status);
4152 }
4153 else
4154 {
4155 /* We have thread information; select the thread the target
4156 says should be current. If we're reconnecting to a
4157 multi-threaded program, this will ideally be the thread
4158 that last reported an event before GDB disconnected. */
4159 inferior_ptid = get_current_thread (wait_status);
4160 if (ptid_equal (inferior_ptid, null_ptid))
4161 {
4162 /* Odd... The target was able to list threads, but not
4163 tell us which thread was current (no "thread"
4164 register in T stop reply?). Just pick the first
4165 thread in the thread list then. */
c9f35b34
KB
4166
4167 if (remote_debug)
4168 fprintf_unfiltered (gdb_stdlog,
4169 "warning: couldn't determine remote "
4170 "current thread; picking first in list.\n");
4171
b7ea362b
PA
4172 inferior_ptid = thread_list->ptid;
4173 }
4174 }
74531fed 4175
6e586cc5
YQ
4176 /* init_wait_for_inferior should be called before get_offsets in order
4177 to manage `inserted' flag in bp loc in a correct state.
4178 breakpoint_init_inferior, called from init_wait_for_inferior, set
4179 `inserted' flag to 0, while before breakpoint_re_set, called from
4180 start_remote, set `inserted' flag to 1. In the initialization of
4181 inferior, breakpoint_init_inferior should be called first, and then
4182 breakpoint_re_set can be called. If this order is broken, state of
4183 `inserted' flag is wrong, and cause some problems on breakpoint
4184 manipulation. */
4185 init_wait_for_inferior ();
4186
74531fed
PA
4187 get_offsets (); /* Get text, data & bss offsets. */
4188
d962ef82
DJ
4189 /* If we could not find a description using qXfer, and we know
4190 how to do it some other way, try again. This is not
4191 supported for non-stop; it could be, but it is tricky if
4192 there are no stopped threads when we connect. */
04bd08de 4193 if (remote_read_description_p (target)
f5656ead 4194 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4195 {
4196 target_clear_description ();
4197 target_find_description ();
4198 }
4199
74531fed
PA
4200 /* Use the previously fetched status. */
4201 gdb_assert (wait_status != NULL);
4202 strcpy (rs->buf, wait_status);
4203 rs->cached_wait_status = 1;
4204
04bd08de 4205 start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4206 }
4207 else
4208 {
68c97600
PA
4209 /* Clear WFI global state. Do this before finding about new
4210 threads and inferiors, and setting the current inferior.
4211 Otherwise we would clear the proceed status of the current
4212 inferior when we want its stop_soon state to be preserved
4213 (see notice_new_inferior). */
4214 init_wait_for_inferior ();
4215
74531fed
PA
4216 /* In non-stop, we will either get an "OK", meaning that there
4217 are no stopped threads at this time; or, a regular stop
4218 reply. In the latter case, there may be more than one thread
4219 stopped --- we pull them all out using the vStopped
4220 mechanism. */
4221 if (strcmp (rs->buf, "OK") != 0)
4222 {
722247f1 4223 struct notif_client *notif = &notif_client_stop;
2d717e4f 4224
722247f1
YQ
4225 /* remote_notif_get_pending_replies acks this one, and gets
4226 the rest out. */
f48ff2a7 4227 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
4228 = remote_notif_parse (notif, rs->buf);
4229 remote_notif_get_pending_events (notif);
74531fed 4230 }
2d717e4f 4231
74531fed
PA
4232 if (thread_count () == 0)
4233 {
04bd08de 4234 if (!extended_p)
74531fed 4235 error (_("The target is not running (try extended-remote?)"));
82f73884 4236
c35b1492
PA
4237 /* We're connected, but not running. Drop out before we
4238 call start_remote. */
e278ad5b 4239 rs->starting_up = 0;
c35b1492
PA
4240 return;
4241 }
74531fed 4242
74531fed
PA
4243 /* In non-stop mode, any cached wait status will be stored in
4244 the stop reply queue. */
4245 gdb_assert (wait_status == NULL);
f0223081 4246
2455069d 4247 /* Report all signals during attach/startup. */
94bedb42 4248 remote_pass_signals (target, 0, NULL);
221e1a37
PA
4249
4250 /* If there are already stopped threads, mark them stopped and
4251 report their stops before giving the prompt to the user. */
6efcd9a8 4252 process_initial_stop_replies (from_tty);
221e1a37
PA
4253
4254 if (target_can_async_p ())
4255 target_async (1);
74531fed 4256 }
c8d104ad 4257
c8d104ad
PA
4258 /* If we connected to a live target, do some additional setup. */
4259 if (target_has_execution)
4260 {
f4ccffad 4261 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4262 remote_check_symbols ();
c8d104ad 4263 }
50c71eaf 4264
d5551862
SS
4265 /* Possibly the target has been engaged in a trace run started
4266 previously; find out where things are at. */
8bd200f1 4267 if (remote_get_trace_status (target, current_trace_status ()) != -1)
d5551862 4268 {
00bf0b85 4269 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4270
00bf0b85
SS
4271 if (current_trace_status ()->running)
4272 printf_filtered (_("Trace is already running on the target.\n"));
4273
ab6617cc 4274 remote_upload_tracepoints (target, &uploaded_tps);
00bf0b85
SS
4275
4276 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4277 }
4278
c0272db5
TW
4279 /* Possibly the target has been engaged in a btrace record started
4280 previously; find out where things are at. */
4281 remote_btrace_maybe_reopen ();
4282
1e51243a
PA
4283 /* The thread and inferior lists are now synchronized with the
4284 target, our symbols have been relocated, and we're merged the
4285 target's tracepoints with ours. We're done with basic start
4286 up. */
4287 rs->starting_up = 0;
4288
a25a5a45
PA
4289 /* Maybe breakpoints are global and need to be inserted now. */
4290 if (breakpoints_should_be_inserted_now ())
50c71eaf 4291 insert_breakpoints ();
c906108c
SS
4292}
4293
4294/* Open a connection to a remote debugger.
4295 NAME is the filename used for communication. */
4296
4297static void
014f9477 4298remote_open (const char *name, int from_tty)
c906108c 4299{
75c99385 4300 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
4301}
4302
c906108c
SS
4303/* Open a connection to a remote debugger using the extended
4304 remote gdb protocol. NAME is the filename used for communication. */
4305
4306static void
014f9477 4307extended_remote_open (const char *name, int from_tty)
c906108c 4308{
75c99385 4309 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
4310}
4311
ca4f7f8b
PA
4312/* Reset all packets back to "unknown support". Called when opening a
4313 new connection to a remote target. */
c906108c 4314
d471ea57 4315static void
ca4f7f8b 4316reset_all_packet_configs_support (void)
d471ea57
AC
4317{
4318 int i;
a744cf53 4319
444abaca 4320 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4321 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4322}
4323
ca4f7f8b
PA
4324/* Initialize all packet configs. */
4325
4326static void
4327init_all_packet_configs (void)
4328{
4329 int i;
4330
4331 for (i = 0; i < PACKET_MAX; i++)
4332 {
4333 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4334 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4335 }
4336}
4337
23860348 4338/* Symbol look-up. */
dc8acb97
MS
4339
4340static void
36d25514 4341remote_check_symbols (void)
dc8acb97
MS
4342{
4343 char *msg, *reply, *tmp;
dc8acb97 4344 int end;
28170b88 4345 long reply_size;
a5c0808e 4346 struct cleanup *old_chain;
dc8acb97 4347
63154eca
PA
4348 /* The remote side has no concept of inferiors that aren't running
4349 yet, it only knows about running processes. If we're connected
4350 but our current inferior is not running, we should not invite the
4351 remote target to request symbol lookups related to its
4352 (unrelated) current process. */
4353 if (!target_has_execution)
4354 return;
4355
4082afcc 4356 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4357 return;
4358
63154eca
PA
4359 /* Make sure the remote is pointing at the right process. Note
4360 there's no way to select "no process". */
3c9c4b83
PA
4361 set_general_process ();
4362
6d820c5c
DJ
4363 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4364 because we need both at the same time. */
224c3ddb 4365 msg = (char *) xmalloc (get_remote_packet_size ());
a5c0808e 4366 old_chain = make_cleanup (xfree, msg);
28170b88
MK
4367 reply = (char *) xmalloc (get_remote_packet_size ());
4368 make_cleanup (free_current_contents, &reply);
4369 reply_size = get_remote_packet_size ();
6d820c5c 4370
23860348 4371 /* Invite target to request symbol lookups. */
dc8acb97
MS
4372
4373 putpkt ("qSymbol::");
28170b88
MK
4374 getpkt (&reply, &reply_size, 0);
4375 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4376
61012eef 4377 while (startswith (reply, "qSymbol:"))
dc8acb97 4378 {
77e371c0
TT
4379 struct bound_minimal_symbol sym;
4380
dc8acb97 4381 tmp = &reply[8];
cfd77fa1 4382 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
4383 msg[end] = '\0';
4384 sym = lookup_minimal_symbol (msg, NULL, NULL);
3b7344d5 4385 if (sym.minsym == NULL)
ea9c271d 4386 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 4387 else
2bbe3cc1 4388 {
f5656ead 4389 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4390 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4391
4392 /* If this is a function address, return the start of code
4393 instead of any data function descriptor. */
f5656ead 4394 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
4395 sym_addr,
4396 &current_target);
4397
4398 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4399 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
4400 }
4401
dc8acb97 4402 putpkt (msg);
28170b88 4403 getpkt (&reply, &reply_size, 0);
dc8acb97 4404 }
a5c0808e
PA
4405
4406 do_cleanups (old_chain);
dc8acb97
MS
4407}
4408
9db8d71f 4409static struct serial *
baa336ce 4410remote_serial_open (const char *name)
9db8d71f
DJ
4411{
4412 static int udp_warning = 0;
4413
4414 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4415 of in ser-tcp.c, because it is the remote protocol assuming that the
4416 serial connection is reliable and not the serial connection promising
4417 to be. */
61012eef 4418 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4419 {
3e43a32a
MS
4420 warning (_("The remote protocol may be unreliable over UDP.\n"
4421 "Some events may be lost, rendering further debugging "
4422 "impossible."));
9db8d71f
DJ
4423 udp_warning = 1;
4424 }
4425
4426 return serial_open (name);
4427}
4428
d914c394
SS
4429/* Inform the target of our permission settings. The permission flags
4430 work without this, but if the target knows the settings, it can do
4431 a couple things. First, it can add its own check, to catch cases
4432 that somehow manage to get by the permissions checks in target
4433 methods. Second, if the target is wired to disallow particular
4434 settings (for instance, a system in the field that is not set up to
4435 be able to stop at a breakpoint), it can object to any unavailable
4436 permissions. */
4437
4438void
c378d69d 4439remote_set_permissions (struct target_ops *self)
d914c394
SS
4440{
4441 struct remote_state *rs = get_remote_state ();
4442
bba74b36
YQ
4443 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4444 "WriteReg:%x;WriteMem:%x;"
4445 "InsertBreak:%x;InsertTrace:%x;"
4446 "InsertFastTrace:%x;Stop:%x",
4447 may_write_registers, may_write_memory,
4448 may_insert_breakpoints, may_insert_tracepoints,
4449 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4450 putpkt (rs->buf);
4451 getpkt (&rs->buf, &rs->buf_size, 0);
4452
4453 /* If the target didn't like the packet, warn the user. Do not try
4454 to undo the user's settings, that would just be maddening. */
4455 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 4456 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
4457}
4458
be2a5f71
DJ
4459/* This type describes each known response to the qSupported
4460 packet. */
4461struct protocol_feature
4462{
4463 /* The name of this protocol feature. */
4464 const char *name;
4465
4466 /* The default for this protocol feature. */
4467 enum packet_support default_support;
4468
4469 /* The function to call when this feature is reported, or after
4470 qSupported processing if the feature is not supported.
4471 The first argument points to this structure. The second
4472 argument indicates whether the packet requested support be
4473 enabled, disabled, or probed (or the default, if this function
4474 is being called at the end of processing and this feature was
4475 not reported). The third argument may be NULL; if not NULL, it
4476 is a NUL-terminated string taken from the packet following
4477 this feature's name and an equals sign. */
4478 void (*func) (const struct protocol_feature *, enum packet_support,
4479 const char *);
4480
4481 /* The corresponding packet for this feature. Only used if
4482 FUNC is remote_supported_packet. */
4483 int packet;
4484};
4485
be2a5f71
DJ
4486static void
4487remote_supported_packet (const struct protocol_feature *feature,
4488 enum packet_support support,
4489 const char *argument)
4490{
4491 if (argument)
4492 {
4493 warning (_("Remote qSupported response supplied an unexpected value for"
4494 " \"%s\"."), feature->name);
4495 return;
4496 }
4497
4082afcc 4498 remote_protocol_packets[feature->packet].support = support;
be2a5f71 4499}
be2a5f71
DJ
4500
4501static void
4502remote_packet_size (const struct protocol_feature *feature,
4503 enum packet_support support, const char *value)
4504{
4505 struct remote_state *rs = get_remote_state ();
4506
4507 int packet_size;
4508 char *value_end;
4509
4510 if (support != PACKET_ENABLE)
4511 return;
4512
4513 if (value == NULL || *value == '\0')
4514 {
4515 warning (_("Remote target reported \"%s\" without a size."),
4516 feature->name);
4517 return;
4518 }
4519
4520 errno = 0;
4521 packet_size = strtol (value, &value_end, 16);
4522 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4523 {
4524 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4525 feature->name, value);
4526 return;
4527 }
4528
be2a5f71
DJ
4529 /* Record the new maximum packet size. */
4530 rs->explicit_packet_size = packet_size;
4531}
4532
dc473cfb 4533static const struct protocol_feature remote_protocol_features[] = {
0876f84a 4534 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 4535 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 4536 PACKET_qXfer_auxv },
c78fa86a
GB
4537 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4538 PACKET_qXfer_exec_file },
23181151
DJ
4539 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4540 PACKET_qXfer_features },
cfa9d6d9
DJ
4541 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4542 PACKET_qXfer_libraries },
2268b414
JK
4543 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4544 PACKET_qXfer_libraries_svr4 },
ced63ec0 4545 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 4546 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 4547 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4548 PACKET_qXfer_memory_map },
4de6483e
UW
4549 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4550 PACKET_qXfer_spu_read },
4551 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4552 PACKET_qXfer_spu_write },
07e059b5
VP
4553 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4554 PACKET_qXfer_osdata },
dc146f7c
VP
4555 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4556 PACKET_qXfer_threads },
b3b9301e
PA
4557 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4558 PACKET_qXfer_traceframe_info },
89be2091
DJ
4559 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4560 PACKET_QPassSignals },
82075af2
JS
4561 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4562 PACKET_QCatchSyscalls },
9b224c5e
PA
4563 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4564 PACKET_QProgramSignals },
bc3b087d
SDJ
4565 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
4566 PACKET_QSetWorkingDir },
aefd8b33
SDJ
4567 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
4568 PACKET_QStartupWithShell },
0a2dde4a
SDJ
4569 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
4570 PACKET_QEnvironmentHexEncoded },
4571 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
4572 PACKET_QEnvironmentReset },
4573 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
4574 PACKET_QEnvironmentUnset },
a6f3e723
SL
4575 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4576 PACKET_QStartNoAckMode },
4082afcc
PA
4577 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4578 PACKET_multiprocess_feature },
4579 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
4580 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4581 PACKET_qXfer_siginfo_read },
4582 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4583 PACKET_qXfer_siginfo_write },
4082afcc 4584 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 4585 PACKET_ConditionalTracepoints },
4082afcc 4586 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 4587 PACKET_ConditionalBreakpoints },
4082afcc 4588 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 4589 PACKET_BreakpointCommands },
4082afcc 4590 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 4591 PACKET_FastTracepoints },
4082afcc 4592 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 4593 PACKET_StaticTracepoints },
4082afcc 4594 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 4595 PACKET_InstallInTrace},
4082afcc
PA
4596 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4597 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
4598 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4599 PACKET_bc },
4600 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4601 PACKET_bs },
409873ef
SS
4602 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4603 PACKET_TracepointSource },
d914c394
SS
4604 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4605 PACKET_QAllow },
4082afcc
PA
4606 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4607 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
4608 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4609 PACKET_qXfer_fdpic },
169081d0
TG
4610 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4611 PACKET_qXfer_uib },
03583c20
UW
4612 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4613 PACKET_QDisableRandomization },
d1feda86 4614 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4615 { "QTBuffer:size", PACKET_DISABLE,
4616 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 4617 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
4618 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4619 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 4620 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 4621 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
4622 PACKET_qXfer_btrace },
4623 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
4624 PACKET_qXfer_btrace_conf },
4625 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
4626 PACKET_Qbtrace_conf_bts_size },
4627 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 4628 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
4629 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4630 PACKET_fork_event_feature },
4631 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4632 PACKET_vfork_event_feature },
94585166
DB
4633 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4634 PACKET_exec_event_feature },
b20a6524 4635 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 4636 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
4637 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4638 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 4639 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
4640};
4641
c8d5aac9
L
4642static char *remote_support_xml;
4643
4644/* Register string appended to "xmlRegisters=" in qSupported query. */
4645
4646void
6e39997a 4647register_remote_support_xml (const char *xml)
c8d5aac9
L
4648{
4649#if defined(HAVE_LIBEXPAT)
4650 if (remote_support_xml == NULL)
c4f7c687 4651 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4652 else
4653 {
4654 char *copy = xstrdup (remote_support_xml + 13);
4655 char *p = strtok (copy, ",");
4656
4657 do
4658 {
4659 if (strcmp (p, xml) == 0)
4660 {
4661 /* already there */
4662 xfree (copy);
4663 return;
4664 }
4665 }
4666 while ((p = strtok (NULL, ",")) != NULL);
4667 xfree (copy);
4668
94b0dee1
PA
4669 remote_support_xml = reconcat (remote_support_xml,
4670 remote_support_xml, ",", xml,
4671 (char *) NULL);
c8d5aac9
L
4672 }
4673#endif
4674}
4675
4676static char *
4677remote_query_supported_append (char *msg, const char *append)
4678{
4679 if (msg)
94b0dee1 4680 return reconcat (msg, msg, ";", append, (char *) NULL);
c8d5aac9
L
4681 else
4682 return xstrdup (append);
4683}
4684
be2a5f71
DJ
4685static void
4686remote_query_supported (void)
4687{
4688 struct remote_state *rs = get_remote_state ();
4689 char *next;
4690 int i;
4691 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4692
4693 /* The packet support flags are handled differently for this packet
4694 than for most others. We treat an error, a disabled packet, and
4695 an empty response identically: any features which must be reported
4696 to be used will be automatically disabled. An empty buffer
4697 accomplishes this, since that is also the representation for a list
4698 containing no features. */
4699
4700 rs->buf[0] = 0;
4082afcc 4701 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 4702 {
c8d5aac9 4703 char *q = NULL;
94b0dee1 4704 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
c8d5aac9 4705
73b8c1fd
PA
4706 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4707 q = remote_query_supported_append (q, "multiprocess+");
c8d5aac9 4708
f7e6eed5
PA
4709 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4710 q = remote_query_supported_append (q, "swbreak+");
4711 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4712 q = remote_query_supported_append (q, "hwbreak+");
4713
dde08ee1
PA
4714 q = remote_query_supported_append (q, "qRelocInsn+");
4715
8020350c
DB
4716 if (packet_set_cmd_state (PACKET_fork_event_feature)
4717 != AUTO_BOOLEAN_FALSE)
4718 q = remote_query_supported_append (q, "fork-events+");
4719 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4720 != AUTO_BOOLEAN_FALSE)
4721 q = remote_query_supported_append (q, "vfork-events+");
4722 if (packet_set_cmd_state (PACKET_exec_event_feature)
4723 != AUTO_BOOLEAN_FALSE)
4724 q = remote_query_supported_append (q, "exec-events+");
89245bc0 4725
750ce8d1
YQ
4726 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4727 q = remote_query_supported_append (q, "vContSupported+");
4728
65706a29
PA
4729 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4730 q = remote_query_supported_append (q, "QThreadEvents+");
4731
f2faf941
PA
4732 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4733 q = remote_query_supported_append (q, "no-resumed+");
4734
b35d5edb
PA
4735 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4736 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
4737 if (remote_support_xml != NULL
4738 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
b35d5edb
PA
4739 q = remote_query_supported_append (q, remote_support_xml);
4740
dde08ee1
PA
4741 q = reconcat (q, "qSupported:", q, (char *) NULL);
4742 putpkt (q);
82f73884 4743
94b0dee1
PA
4744 do_cleanups (old_chain);
4745
be2a5f71
DJ
4746 getpkt (&rs->buf, &rs->buf_size, 0);
4747
4748 /* If an error occured, warn, but do not return - just reset the
4749 buffer to empty and go on to disable features. */
4750 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4751 == PACKET_ERROR)
4752 {
4753 warning (_("Remote failure reply: %s"), rs->buf);
4754 rs->buf[0] = 0;
4755 }
4756 }
4757
4758 memset (seen, 0, sizeof (seen));
4759
4760 next = rs->buf;
4761 while (*next)
4762 {
4763 enum packet_support is_supported;
4764 char *p, *end, *name_end, *value;
4765
4766 /* First separate out this item from the rest of the packet. If
4767 there's another item after this, we overwrite the separator
4768 (terminated strings are much easier to work with). */
4769 p = next;
4770 end = strchr (p, ';');
4771 if (end == NULL)
4772 {
4773 end = p + strlen (p);
4774 next = end;
4775 }
4776 else
4777 {
89be2091
DJ
4778 *end = '\0';
4779 next = end + 1;
4780
be2a5f71
DJ
4781 if (end == p)
4782 {
4783 warning (_("empty item in \"qSupported\" response"));
4784 continue;
4785 }
be2a5f71
DJ
4786 }
4787
4788 name_end = strchr (p, '=');
4789 if (name_end)
4790 {
4791 /* This is a name=value entry. */
4792 is_supported = PACKET_ENABLE;
4793 value = name_end + 1;
4794 *name_end = '\0';
4795 }
4796 else
4797 {
4798 value = NULL;
4799 switch (end[-1])
4800 {
4801 case '+':
4802 is_supported = PACKET_ENABLE;
4803 break;
4804
4805 case '-':
4806 is_supported = PACKET_DISABLE;
4807 break;
4808
4809 case '?':
4810 is_supported = PACKET_SUPPORT_UNKNOWN;
4811 break;
4812
4813 default:
3e43a32a
MS
4814 warning (_("unrecognized item \"%s\" "
4815 "in \"qSupported\" response"), p);
be2a5f71
DJ
4816 continue;
4817 }
4818 end[-1] = '\0';
4819 }
4820
4821 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4822 if (strcmp (remote_protocol_features[i].name, p) == 0)
4823 {
4824 const struct protocol_feature *feature;
4825
4826 seen[i] = 1;
4827 feature = &remote_protocol_features[i];
4828 feature->func (feature, is_supported, value);
4829 break;
4830 }
4831 }
4832
4833 /* If we increased the packet size, make sure to increase the global
4834 buffer size also. We delay this until after parsing the entire
4835 qSupported packet, because this is the same buffer we were
4836 parsing. */
4837 if (rs->buf_size < rs->explicit_packet_size)
4838 {
4839 rs->buf_size = rs->explicit_packet_size;
224c3ddb 4840 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
4841 }
4842
4843 /* Handle the defaults for unmentioned features. */
4844 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4845 if (!seen[i])
4846 {
4847 const struct protocol_feature *feature;
4848
4849 feature = &remote_protocol_features[i];
4850 feature->func (feature, feature->default_support, NULL);
4851 }
4852}
4853
048094ac
PA
4854/* Serial QUIT handler for the remote serial descriptor.
4855
4856 Defers handling a Ctrl-C until we're done with the current
4857 command/response packet sequence, unless:
4858
4859 - We're setting up the connection. Don't send a remote interrupt
4860 request, as we're not fully synced yet. Quit immediately
4861 instead.
4862
4863 - The target has been resumed in the foreground
223ffa71 4864 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
4865 packet, and we're blocked waiting for the stop reply, thus a
4866 Ctrl-C should be immediately sent to the target.
4867
4868 - We get a second Ctrl-C while still within the same serial read or
4869 write. In that case the serial is seemingly wedged --- offer to
4870 quit/disconnect.
4871
4872 - We see a second Ctrl-C without target response, after having
4873 previously interrupted the target. In that case the target/stub
4874 is probably wedged --- offer to quit/disconnect.
4875*/
4876
4877static void
4878remote_serial_quit_handler (void)
4879{
4880 struct remote_state *rs = get_remote_state ();
4881
4882 if (check_quit_flag ())
4883 {
4884 /* If we're starting up, we're not fully synced yet. Quit
4885 immediately. */
4886 if (rs->starting_up)
4887 quit ();
4888 else if (rs->got_ctrlc_during_io)
4889 {
4890 if (query (_("The target is not responding to GDB commands.\n"
4891 "Stop debugging it? ")))
4892 remote_unpush_and_throw ();
4893 }
4894 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 4895 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
4896 interrupt_query ();
4897 /* All-stop protocol, and blocked waiting for stop reply. Send
4898 an interrupt request. */
223ffa71 4899 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
e671cd59 4900 target_interrupt ();
048094ac
PA
4901 else
4902 rs->got_ctrlc_during_io = 1;
4903 }
4904}
4905
78a095c3
JK
4906/* Remove any of the remote.c targets from target stack. Upper targets depend
4907 on it so remove them first. */
4908
4909static void
4910remote_unpush_target (void)
4911{
915ef8b1 4912 pop_all_targets_at_and_above (process_stratum);
78a095c3 4913}
be2a5f71 4914
048094ac
PA
4915static void
4916remote_unpush_and_throw (void)
4917{
4918 remote_unpush_target ();
4919 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
4920}
4921
c906108c 4922static void
014f9477 4923remote_open_1 (const char *name, int from_tty,
3e43a32a 4924 struct target_ops *target, int extended_p)
c906108c 4925{
d01949b6 4926 struct remote_state *rs = get_remote_state ();
a6f3e723 4927
c906108c 4928 if (name == 0)
8a3fe4f8 4929 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 4930 "serial device is attached to the remote system\n"
8a3fe4f8 4931 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 4932
23860348 4933 /* See FIXME above. */
c6ebd6cf 4934 if (!target_async_permitted)
92d1e331 4935 wait_forever_enabled_p = 1;
6426a772 4936
2d717e4f 4937 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
4938 Ask this question first, before target_preopen has a chance to kill
4939 anything. */
5d93a237 4940 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 4941 {
78a095c3
JK
4942 if (from_tty
4943 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
4944 error (_("Still connected."));
4945 }
4946
78a095c3 4947 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
4948 target_preopen (from_tty);
4949
89be2091 4950 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
4951 xfree (rs->last_pass_packet);
4952 rs->last_pass_packet = NULL;
89be2091 4953
9b224c5e
PA
4954 /* Make sure we send the program signals list the next time we
4955 resume. */
5e4a05c4
TT
4956 xfree (rs->last_program_signals_packet);
4957 rs->last_program_signals_packet = NULL;
9b224c5e 4958
ad9a8f3f 4959 remote_fileio_reset ();
1dd41f16
NS
4960 reopen_exec_file ();
4961 reread_symbols ();
4962
5d93a237
TT
4963 rs->remote_desc = remote_serial_open (name);
4964 if (!rs->remote_desc)
c906108c
SS
4965 perror_with_name (name);
4966
4967 if (baud_rate != -1)
4968 {
5d93a237 4969 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 4970 {
9b74d5d3
KB
4971 /* The requested speed could not be set. Error out to
4972 top level after closing remote_desc. Take care to
4973 set remote_desc to NULL to avoid closing remote_desc
4974 more than once. */
5d93a237
TT
4975 serial_close (rs->remote_desc);
4976 rs->remote_desc = NULL;
c906108c
SS
4977 perror_with_name (name);
4978 }
4979 }
4980
236af5e3 4981 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 4982 serial_raw (rs->remote_desc);
c906108c
SS
4983
4984 /* If there is something sitting in the buffer we might take it as a
4985 response to a command, which would be bad. */
5d93a237 4986 serial_flush_input (rs->remote_desc);
c906108c
SS
4987
4988 if (from_tty)
4989 {
4990 puts_filtered ("Remote debugging using ");
4991 puts_filtered (name);
4992 puts_filtered ("\n");
4993 }
23860348 4994 push_target (target); /* Switch to using remote target now. */
c906108c 4995
74531fed
PA
4996 /* Register extra event sources in the event loop. */
4997 remote_async_inferior_event_token
4998 = create_async_event_handler (remote_async_inferior_event_handler,
4999 NULL);
5965e028 5000 rs->notif_state = remote_notif_state_allocate ();
74531fed 5001
be2a5f71
DJ
5002 /* Reset the target state; these things will be queried either by
5003 remote_query_supported or as they are needed. */
ca4f7f8b 5004 reset_all_packet_configs_support ();
74531fed 5005 rs->cached_wait_status = 0;
be2a5f71 5006 rs->explicit_packet_size = 0;
a6f3e723 5007 rs->noack_mode = 0;
82f73884 5008 rs->extended = extended_p;
e24a49d8 5009 rs->waiting_for_stop_reply = 0;
3a29589a 5010 rs->ctrlc_pending_p = 0;
048094ac 5011 rs->got_ctrlc_during_io = 0;
802188a7 5012
47f8a51d
TT
5013 rs->general_thread = not_sent_ptid;
5014 rs->continue_thread = not_sent_ptid;
262e1174 5015 rs->remote_traceframe_number = -1;
c906108c 5016
3a00c802
PA
5017 rs->last_resume_exec_dir = EXEC_FORWARD;
5018
9d1f7ab2 5019 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5020 rs->use_threadinfo_query = 1;
5021 rs->use_threadextra_query = 1;
9d1f7ab2 5022
80152258
PA
5023 readahead_cache_invalidate ();
5024
c6ebd6cf 5025 if (target_async_permitted)
92d1e331 5026 {
92d1e331
DJ
5027 /* FIXME: cagney/1999-09-23: During the initial connection it is
5028 assumed that the target is already ready and able to respond to
0df8b418 5029 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5030 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5031 around this. Eventually a mechanism that allows
92d1e331 5032 wait_for_inferior() to expect/get timeouts will be
23860348 5033 implemented. */
92d1e331
DJ
5034 wait_forever_enabled_p = 0;
5035 }
5036
23860348 5037 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5038 no_shared_libraries (NULL, 0);
f78f6cf1 5039
74531fed
PA
5040 /* Start afresh. */
5041 init_thread_list ();
5042
36918e70 5043 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5044 target (we'd otherwise be in an inconsistent state) and then
5045 propogate the error on up the exception chain. This ensures that
5046 the caller doesn't stumble along blindly assuming that the
5047 function succeeded. The CLI doesn't have this problem but other
5048 UI's, such as MI do.
36918e70
AC
5049
5050 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5051 this function should return an error indication letting the
ce2826aa 5052 caller restore the previous state. Unfortunately the command
36918e70
AC
5053 ``target remote'' is directly wired to this function making that
5054 impossible. On a positive note, the CLI side of this problem has
5055 been fixed - the function set_cmd_context() makes it possible for
5056 all the ``target ....'' commands to share a common callback
5057 function. See cli-dump.c. */
109c3e39 5058 {
2d717e4f 5059
492d29ea 5060 TRY
04bd08de
TT
5061 {
5062 remote_start_remote (from_tty, target, extended_p);
5063 }
492d29ea 5064 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5065 {
c8d104ad
PA
5066 /* Pop the partially set up target - unless something else did
5067 already before throwing the exception. */
5d93a237 5068 if (rs->remote_desc != NULL)
78a095c3 5069 remote_unpush_target ();
c6ebd6cf 5070 if (target_async_permitted)
109c3e39
AC
5071 wait_forever_enabled_p = 1;
5072 throw_exception (ex);
5073 }
492d29ea 5074 END_CATCH
109c3e39 5075 }
c906108c 5076
f4abbc16
MM
5077 remote_btrace_reset ();
5078
c6ebd6cf 5079 if (target_async_permitted)
92d1e331 5080 wait_forever_enabled_p = 1;
43ff13b4
JM
5081}
5082
de0d863e
DB
5083/* Detach the specified process. */
5084
5085static void
5086remote_detach_pid (int pid)
5087{
5088 struct remote_state *rs = get_remote_state ();
5089
5090 if (remote_multi_process_p (rs))
5091 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5092 else
5093 strcpy (rs->buf, "D");
5094
5095 putpkt (rs->buf);
5096 getpkt (&rs->buf, &rs->buf_size, 0);
5097
5098 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5099 ;
5100 else if (rs->buf[0] == '\0')
5101 error (_("Remote doesn't know how to detach"));
5102 else
5103 error (_("Can't detach process."));
5104}
5105
5106/* This detaches a program to which we previously attached, using
5107 inferior_ptid to identify the process. After this is done, GDB
5108 can be used to debug some other program. We better not have left
5109 any breakpoints in the target program or it'll die when it hits
5110 one. */
c906108c
SS
5111
5112static void
6e1e1966 5113remote_detach_1 (int from_tty, inferior *inf)
c906108c 5114{
82f73884 5115 int pid = ptid_get_pid (inferior_ptid);
d01949b6 5116 struct remote_state *rs = get_remote_state ();
de0d863e
DB
5117 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5118 int is_fork_parent;
c906108c 5119
2d717e4f
DJ
5120 if (!target_has_execution)
5121 error (_("No process to detach from."));
5122
0f48b757 5123 target_announce_detach (from_tty);
7cee1e54 5124
c906108c 5125 /* Tell the remote target to detach. */
de0d863e 5126 remote_detach_pid (pid);
82f73884 5127
8020350c
DB
5128 /* Exit only if this is the only active inferior. */
5129 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5130 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5131
de0d863e
DB
5132 /* Check to see if we are detaching a fork parent. Note that if we
5133 are detaching a fork child, tp == NULL. */
5134 is_fork_parent = (tp != NULL
5135 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5136
5137 /* If doing detach-on-fork, we don't mourn, because that will delete
5138 breakpoints that should be available for the followed inferior. */
5139 if (!is_fork_parent)
bc1e6c81 5140 target_mourn_inferior (inferior_ptid);
de0d863e
DB
5141 else
5142 {
5143 inferior_ptid = null_ptid;
5144 detach_inferior (pid);
5145 }
2d717e4f
DJ
5146}
5147
5148static void
6e1e1966 5149remote_detach (struct target_ops *ops, inferior *inf, int from_tty)
2d717e4f 5150{
6e1e1966 5151 remote_detach_1 (from_tty, inf);
2d717e4f
DJ
5152}
5153
5154static void
6e1e1966 5155extended_remote_detach (struct target_ops *ops, inferior *inf, int from_tty)
2d717e4f 5156{
6e1e1966 5157 remote_detach_1 (from_tty, inf);
de0d863e
DB
5158}
5159
5160/* Target follow-fork function for remote targets. On entry, and
5161 at return, the current inferior is the fork parent.
5162
5163 Note that although this is currently only used for extended-remote,
5164 it is named remote_follow_fork in anticipation of using it for the
5165 remote target as well. */
5166
5167static int
5168remote_follow_fork (struct target_ops *ops, int follow_child,
5169 int detach_fork)
5170{
5171 struct remote_state *rs = get_remote_state ();
c269dbdb 5172 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5173
c269dbdb
DB
5174 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5175 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5176 {
5177 /* When following the parent and detaching the child, we detach
5178 the child here. For the case of following the child and
5179 detaching the parent, the detach is done in the target-
5180 independent follow fork code in infrun.c. We can't use
5181 target_detach when detaching an unfollowed child because
5182 the client side doesn't know anything about the child. */
5183 if (detach_fork && !follow_child)
5184 {
5185 /* Detach the fork child. */
5186 ptid_t child_ptid;
5187 pid_t child_pid;
5188
5189 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5190 child_pid = ptid_get_pid (child_ptid);
5191
5192 remote_detach_pid (child_pid);
de0d863e
DB
5193 }
5194 }
5195 return 0;
c906108c
SS
5196}
5197
94585166
DB
5198/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5199 in the program space of the new inferior. On entry and at return the
5200 current inferior is the exec'ing inferior. INF is the new exec'd
5201 inferior, which may be the same as the exec'ing inferior unless
5202 follow-exec-mode is "new". */
5203
5204static void
5205remote_follow_exec (struct target_ops *ops,
5206 struct inferior *inf, char *execd_pathname)
5207{
5208 /* We know that this is a target file name, so if it has the "target:"
5209 prefix we strip it off before saving it in the program space. */
5210 if (is_target_filename (execd_pathname))
5211 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5212
5213 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5214}
5215
6ad8ae5c
DJ
5216/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5217
43ff13b4 5218static void
fee354ee 5219remote_disconnect (struct target_ops *target, const char *args, int from_tty)
43ff13b4 5220{
43ff13b4 5221 if (args)
2d717e4f 5222 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5223
8020350c
DB
5224 /* Make sure we unpush even the extended remote targets. Calling
5225 target_mourn_inferior won't unpush, and remote_mourn won't
5226 unpush if there is more than one inferior left. */
5227 unpush_target (target);
5228 generic_mourn_inferior ();
2d717e4f 5229
43ff13b4
JM
5230 if (from_tty)
5231 puts_filtered ("Ending remote debugging.\n");
5232}
5233
2d717e4f
DJ
5234/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5235 be chatty about it. */
5236
5237static void
20f796c9
GB
5238extended_remote_attach (struct target_ops *target, const char *args,
5239 int from_tty)
2d717e4f
DJ
5240{
5241 struct remote_state *rs = get_remote_state ();
be86555c 5242 int pid;
96ef3384 5243 char *wait_status = NULL;
2d717e4f 5244
74164c56 5245 pid = parse_pid_to_attach (args);
2d717e4f 5246
74164c56
JK
5247 /* Remote PID can be freely equal to getpid, do not check it here the same
5248 way as in other targets. */
2d717e4f 5249
4082afcc 5250 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5251 error (_("This target does not support attaching to a process"));
5252
7cee1e54
PA
5253 if (from_tty)
5254 {
5255 char *exec_file = get_exec_file (0);
5256
5257 if (exec_file)
5258 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5259 target_pid_to_str (pid_to_ptid (pid)));
5260 else
5261 printf_unfiltered (_("Attaching to %s\n"),
5262 target_pid_to_str (pid_to_ptid (pid)));
5263
5264 gdb_flush (gdb_stdout);
5265 }
5266
bba74b36 5267 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5268 putpkt (rs->buf);
5269 getpkt (&rs->buf, &rs->buf_size, 0);
5270
4082afcc
PA
5271 switch (packet_ok (rs->buf,
5272 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5273 {
4082afcc 5274 case PACKET_OK:
6efcd9a8 5275 if (!target_is_non_stop_p ())
74531fed
PA
5276 {
5277 /* Save the reply for later. */
224c3ddb 5278 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5279 strcpy (wait_status, rs->buf);
5280 }
5281 else if (strcmp (rs->buf, "OK") != 0)
5282 error (_("Attaching to %s failed with: %s"),
5283 target_pid_to_str (pid_to_ptid (pid)),
5284 rs->buf);
4082afcc
PA
5285 break;
5286 case PACKET_UNKNOWN:
5287 error (_("This target does not support attaching to a process"));
5288 default:
5289 error (_("Attaching to %s failed"),
5290 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 5291 }
2d717e4f 5292
1b6e6f5c 5293 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5294
2d717e4f 5295 inferior_ptid = pid_to_ptid (pid);
79d7f229 5296
6efcd9a8 5297 if (target_is_non_stop_p ())
bad34192
PA
5298 {
5299 struct thread_info *thread;
79d7f229 5300
bad34192 5301 /* Get list of threads. */
e8032dde 5302 remote_update_thread_list (target);
82f73884 5303
bad34192
PA
5304 thread = first_thread_of_process (pid);
5305 if (thread)
5306 inferior_ptid = thread->ptid;
5307 else
5308 inferior_ptid = pid_to_ptid (pid);
5309
5310 /* Invalidate our notion of the remote current thread. */
47f8a51d 5311 record_currthread (rs, minus_one_ptid);
bad34192 5312 }
74531fed 5313 else
bad34192
PA
5314 {
5315 /* Now, if we have thread information, update inferior_ptid. */
5316 inferior_ptid = remote_current_thread (inferior_ptid);
5317
5318 /* Add the main thread to the thread list. */
00aecdcf
PA
5319 thread_info *thr = add_thread_silent (inferior_ptid);
5320 /* Don't consider the thread stopped until we've processed the
5321 saved stop reply. */
5322 set_executing (thr->ptid, true);
bad34192 5323 }
c0a2216e 5324
96ef3384
UW
5325 /* Next, if the target can specify a description, read it. We do
5326 this before anything involving memory or registers. */
5327 target_find_description ();
5328
6efcd9a8 5329 if (!target_is_non_stop_p ())
74531fed
PA
5330 {
5331 /* Use the previously fetched status. */
5332 gdb_assert (wait_status != NULL);
5333
5334 if (target_can_async_p ())
5335 {
722247f1
YQ
5336 struct notif_event *reply
5337 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 5338
722247f1 5339 push_stop_reply ((struct stop_reply *) reply);
74531fed 5340
6a3753b3 5341 target_async (1);
74531fed
PA
5342 }
5343 else
5344 {
5345 gdb_assert (wait_status != NULL);
5346 strcpy (rs->buf, wait_status);
5347 rs->cached_wait_status = 1;
5348 }
5349 }
5350 else
5351 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5352}
5353
b9c1d481
AS
5354/* Implementation of the to_post_attach method. */
5355
5356static void
5357extended_remote_post_attach (struct target_ops *ops, int pid)
5358{
6efcd9a8
PA
5359 /* Get text, data & bss offsets. */
5360 get_offsets ();
5361
b9c1d481
AS
5362 /* In certain cases GDB might not have had the chance to start
5363 symbol lookup up until now. This could happen if the debugged
5364 binary is not using shared libraries, the vsyscall page is not
5365 present (on Linux) and the binary itself hadn't changed since the
5366 debugging process was started. */
5367 if (symfile_objfile != NULL)
5368 remote_check_symbols();
5369}
5370
c906108c 5371\f
506fb367
DJ
5372/* Check for the availability of vCont. This function should also check
5373 the response. */
c906108c
SS
5374
5375static void
6d820c5c 5376remote_vcont_probe (struct remote_state *rs)
c906108c 5377{
2e9f7625 5378 char *buf;
6d820c5c 5379
2e9f7625
DJ
5380 strcpy (rs->buf, "vCont?");
5381 putpkt (rs->buf);
6d820c5c 5382 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5383 buf = rs->buf;
c906108c 5384
506fb367 5385 /* Make sure that the features we assume are supported. */
61012eef 5386 if (startswith (buf, "vCont"))
506fb367
DJ
5387 {
5388 char *p = &buf[5];
750ce8d1 5389 int support_c, support_C;
506fb367 5390
750ce8d1
YQ
5391 rs->supports_vCont.s = 0;
5392 rs->supports_vCont.S = 0;
506fb367
DJ
5393 support_c = 0;
5394 support_C = 0;
d458bd84 5395 rs->supports_vCont.t = 0;
c1e36e3e 5396 rs->supports_vCont.r = 0;
506fb367
DJ
5397 while (p && *p == ';')
5398 {
5399 p++;
5400 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5401 rs->supports_vCont.s = 1;
506fb367 5402 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5403 rs->supports_vCont.S = 1;
506fb367
DJ
5404 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5405 support_c = 1;
5406 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5407 support_C = 1;
74531fed 5408 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5409 rs->supports_vCont.t = 1;
c1e36e3e
PA
5410 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5411 rs->supports_vCont.r = 1;
506fb367
DJ
5412
5413 p = strchr (p, ';');
5414 }
c906108c 5415
750ce8d1
YQ
5416 /* If c, and C are not all supported, we can't use vCont. Clearing
5417 BUF will make packet_ok disable the packet. */
5418 if (!support_c || !support_C)
506fb367
DJ
5419 buf[0] = 0;
5420 }
c906108c 5421
444abaca 5422 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5423}
c906108c 5424
0d8f58ca
PA
5425/* Helper function for building "vCont" resumptions. Write a
5426 resumption to P. ENDP points to one-passed-the-end of the buffer
5427 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5428 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5429 resumed thread should be single-stepped and/or signalled. If PTID
5430 equals minus_one_ptid, then all threads are resumed; if PTID
5431 represents a process, then all threads of the process are resumed;
5432 the thread to be stepped and/or signalled is given in the global
5433 INFERIOR_PTID. */
5434
5435static char *
5436append_resumption (char *p, char *endp,
2ea28649 5437 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
5438{
5439 struct remote_state *rs = get_remote_state ();
5440
a493e3e2 5441 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5442 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5443 else if (step
5444 /* GDB is willing to range step. */
5445 && use_range_stepping
5446 /* Target supports range stepping. */
5447 && rs->supports_vCont.r
5448 /* We don't currently support range stepping multiple
5449 threads with a wildcard (though the protocol allows it,
5450 so stubs shouldn't make an active effort to forbid
5451 it). */
5452 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5453 {
5454 struct thread_info *tp;
5455
5456 if (ptid_equal (ptid, minus_one_ptid))
5457 {
5458 /* If we don't know about the target thread's tid, then
5459 we're resuming magic_null_ptid (see caller). */
5460 tp = find_thread_ptid (magic_null_ptid);
5461 }
5462 else
5463 tp = find_thread_ptid (ptid);
5464 gdb_assert (tp != NULL);
5465
5466 if (tp->control.may_range_step)
5467 {
5468 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5469
5470 p += xsnprintf (p, endp - p, ";r%s,%s",
5471 phex_nz (tp->control.step_range_start,
5472 addr_size),
5473 phex_nz (tp->control.step_range_end,
5474 addr_size));
5475 }
5476 else
5477 p += xsnprintf (p, endp - p, ";s");
5478 }
0d8f58ca
PA
5479 else if (step)
5480 p += xsnprintf (p, endp - p, ";s");
a493e3e2 5481 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
5482 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5483 else
5484 p += xsnprintf (p, endp - p, ";c");
5485
5486 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5487 {
5488 ptid_t nptid;
5489
5490 /* All (-1) threads of process. */
ba348170 5491 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
0d8f58ca
PA
5492
5493 p += xsnprintf (p, endp - p, ":");
5494 p = write_ptid (p, endp, nptid);
5495 }
5496 else if (!ptid_equal (ptid, minus_one_ptid))
5497 {
5498 p += xsnprintf (p, endp - p, ":");
5499 p = write_ptid (p, endp, ptid);
5500 }
5501
5502 return p;
5503}
5504
799a2abe
PA
5505/* Clear the thread's private info on resume. */
5506
5507static void
5508resume_clear_thread_private_info (struct thread_info *thread)
5509{
5510 if (thread->priv != NULL)
5511 {
7aabaf9d
SM
5512 remote_thread_info *priv = get_remote_thread_info (thread);
5513
5514 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5515 priv->watch_data_address = 0;
799a2abe
PA
5516 }
5517}
5518
e5ef252a
PA
5519/* Append a vCont continue-with-signal action for threads that have a
5520 non-zero stop signal. */
5521
5522static char *
5523append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5524{
5525 struct thread_info *thread;
5526
034f788c 5527 ALL_NON_EXITED_THREADS (thread)
e5ef252a
PA
5528 if (ptid_match (thread->ptid, ptid)
5529 && !ptid_equal (inferior_ptid, thread->ptid)
70509625 5530 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
5531 {
5532 p = append_resumption (p, endp, thread->ptid,
5533 0, thread->suspend.stop_signal);
5534 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 5535 resume_clear_thread_private_info (thread);
e5ef252a
PA
5536 }
5537
5538 return p;
5539}
5540
7b68ffbb
PA
5541/* Set the target running, using the packets that use Hc
5542 (c/s/C/S). */
5543
5544static void
5545remote_resume_with_hc (struct target_ops *ops,
5546 ptid_t ptid, int step, enum gdb_signal siggnal)
5547{
5548 struct remote_state *rs = get_remote_state ();
5549 struct thread_info *thread;
5550 char *buf;
5551
5552 rs->last_sent_signal = siggnal;
5553 rs->last_sent_step = step;
5554
5555 /* The c/s/C/S resume packets use Hc, so set the continue
5556 thread. */
5557 if (ptid_equal (ptid, minus_one_ptid))
5558 set_continue_thread (any_thread_ptid);
5559 else
5560 set_continue_thread (ptid);
5561
5562 ALL_NON_EXITED_THREADS (thread)
5563 resume_clear_thread_private_info (thread);
5564
5565 buf = rs->buf;
5566 if (execution_direction == EXEC_REVERSE)
5567 {
5568 /* We don't pass signals to the target in reverse exec mode. */
5569 if (info_verbose && siggnal != GDB_SIGNAL_0)
5570 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5571 siggnal);
5572
5573 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5574 error (_("Remote reverse-step not supported."));
5575 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5576 error (_("Remote reverse-continue not supported."));
5577
5578 strcpy (buf, step ? "bs" : "bc");
5579 }
5580 else if (siggnal != GDB_SIGNAL_0)
5581 {
5582 buf[0] = step ? 'S' : 'C';
5583 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5584 buf[2] = tohex (((int) siggnal) & 0xf);
5585 buf[3] = '\0';
5586 }
5587 else
5588 strcpy (buf, step ? "s" : "c");
5589
5590 putpkt (buf);
5591}
5592
506fb367
DJ
5593/* Resume the remote inferior by using a "vCont" packet. The thread
5594 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
5595 resumed thread should be single-stepped and/or signalled. If PTID
5596 equals minus_one_ptid, then all threads are resumed; the thread to
5597 be stepped and/or signalled is given in the global INFERIOR_PTID.
5598 This function returns non-zero iff it resumes the inferior.
44eaed12 5599
7b68ffbb
PA
5600 This function issues a strict subset of all possible vCont commands
5601 at the moment. */
44eaed12 5602
506fb367 5603static int
7b68ffbb 5604remote_resume_with_vcont (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
5605{
5606 struct remote_state *rs = get_remote_state ();
82f73884
PA
5607 char *p;
5608 char *endp;
44eaed12 5609
7b68ffbb
PA
5610 /* No reverse execution actions defined for vCont. */
5611 if (execution_direction == EXEC_REVERSE)
5612 return 0;
5613
4082afcc 5614 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6d820c5c 5615 remote_vcont_probe (rs);
44eaed12 5616
4082afcc 5617 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 5618 return 0;
44eaed12 5619
82f73884
PA
5620 p = rs->buf;
5621 endp = rs->buf + get_remote_packet_size ();
5622
506fb367
DJ
5623 /* If we could generate a wider range of packets, we'd have to worry
5624 about overflowing BUF. Should there be a generic
5625 "multi-part-packet" packet? */
5626
0d8f58ca
PA
5627 p += xsnprintf (p, endp - p, "vCont");
5628
79d7f229 5629 if (ptid_equal (ptid, magic_null_ptid))
c906108c 5630 {
79d7f229
PA
5631 /* MAGIC_NULL_PTID means that we don't have any active threads,
5632 so we don't have any TID numbers the inferior will
5633 understand. Make sure to only send forms that do not specify
5634 a TID. */
a9cbf802 5635 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 5636 }
0d8f58ca 5637 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 5638 {
0d8f58ca
PA
5639 /* Resume all threads (of all processes, or of a single
5640 process), with preference for INFERIOR_PTID. This assumes
5641 inferior_ptid belongs to the set of all threads we are about
5642 to resume. */
a493e3e2 5643 if (step || siggnal != GDB_SIGNAL_0)
82f73884 5644 {
0d8f58ca
PA
5645 /* Step inferior_ptid, with or without signal. */
5646 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 5647 }
0d8f58ca 5648
e5ef252a
PA
5649 /* Also pass down any pending signaled resumption for other
5650 threads not the current. */
5651 p = append_pending_thread_resumptions (p, endp, ptid);
5652
0d8f58ca 5653 /* And continue others without a signal. */
a493e3e2 5654 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
5655 }
5656 else
506fb367
DJ
5657 {
5658 /* Scheduler locking; resume only PTID. */
a9cbf802 5659 append_resumption (p, endp, ptid, step, siggnal);
506fb367 5660 }
c906108c 5661
82f73884
PA
5662 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5663 putpkt (rs->buf);
506fb367 5664
6efcd9a8 5665 if (target_is_non_stop_p ())
74531fed
PA
5666 {
5667 /* In non-stop, the stub replies to vCont with "OK". The stop
5668 reply will be reported asynchronously by means of a `%Stop'
5669 notification. */
5670 getpkt (&rs->buf, &rs->buf_size, 0);
5671 if (strcmp (rs->buf, "OK") != 0)
5672 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5673 }
5674
506fb367 5675 return 1;
c906108c 5676}
43ff13b4 5677
506fb367
DJ
5678/* Tell the remote machine to resume. */
5679
43ff13b4 5680static void
28439f5e 5681remote_resume (struct target_ops *ops,
2ea28649 5682 ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 5683{
d01949b6 5684 struct remote_state *rs = get_remote_state ();
43ff13b4 5685
85ad3aaf
PA
5686 /* When connected in non-stop mode, the core resumes threads
5687 individually. Resuming remote threads directly in target_resume
5688 would thus result in sending one packet per thread. Instead, to
5689 minimize roundtrip latency, here we just store the resume
5690 request; the actual remote resumption will be done in
5691 target_commit_resume / remote_commit_resume, where we'll be able
5692 to do vCont action coalescing. */
5693 if (target_is_non_stop_p () && execution_direction != EXEC_REVERSE)
5694 {
7aabaf9d 5695 remote_thread_info *remote_thr;
85ad3aaf
PA
5696
5697 if (ptid_equal (minus_one_ptid, ptid) || ptid_is_pid (ptid))
7aabaf9d 5698 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 5699 else
7aabaf9d
SM
5700 remote_thr = get_remote_thread_info (ptid);
5701
85ad3aaf
PA
5702 remote_thr->last_resume_step = step;
5703 remote_thr->last_resume_sig = siggnal;
5704 return;
5705 }
5706
722247f1
YQ
5707 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5708 (explained in remote-notif.c:handle_notification) so
5709 remote_notif_process is not called. We need find a place where
5710 it is safe to start a 'vNotif' sequence. It is good to do it
5711 before resuming inferior, because inferior was stopped and no RSP
5712 traffic at that moment. */
6efcd9a8 5713 if (!target_is_non_stop_p ())
5965e028 5714 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 5715
3a00c802
PA
5716 rs->last_resume_exec_dir = execution_direction;
5717
7b68ffbb
PA
5718 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
5719 if (!remote_resume_with_vcont (ptid, step, siggnal))
5720 remote_resume_with_hc (ops, ptid, step, siggnal);
43ff13b4 5721
2acceee2 5722 /* We are about to start executing the inferior, let's register it
0df8b418
MS
5723 with the event loop. NOTE: this is the one place where all the
5724 execution commands end up. We could alternatively do this in each
23860348 5725 of the execution commands in infcmd.c. */
2acceee2
JM
5726 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5727 into infcmd.c in order to allow inferior function calls to work
23860348 5728 NOT asynchronously. */
362646f5 5729 if (target_can_async_p ())
6a3753b3 5730 target_async (1);
e24a49d8
PA
5731
5732 /* We've just told the target to resume. The remote server will
5733 wait for the inferior to stop, and then send a stop reply. In
5734 the mean time, we can't start another command/query ourselves
74531fed
PA
5735 because the stub wouldn't be ready to process it. This applies
5736 only to the base all-stop protocol, however. In non-stop (which
5737 only supports vCont), the stub replies with an "OK", and is
5738 immediate able to process further serial input. */
6efcd9a8 5739 if (!target_is_non_stop_p ())
74531fed 5740 rs->waiting_for_stop_reply = 1;
43ff13b4 5741}
85ad3aaf
PA
5742
5743static void check_pending_events_prevent_wildcard_vcont
5744 (int *may_global_wildcard_vcont);
5745static int is_pending_fork_parent_thread (struct thread_info *thread);
5746
5747/* Private per-inferior info for target remote processes. */
5748
089354bb 5749struct remote_inferior : public private_inferior
85ad3aaf
PA
5750{
5751 /* Whether we can send a wildcard vCont for this process. */
089354bb 5752 bool may_wildcard_vcont = true;
85ad3aaf
PA
5753};
5754
089354bb
SM
5755/* Get the remote private inferior data associated to INF. */
5756
5757static remote_inferior *
5758get_remote_inferior (inferior *inf)
5759{
5760 if (inf->priv == NULL)
5761 inf->priv.reset (new remote_inferior);
5762
5763 return static_cast<remote_inferior *> (inf->priv.get ());
5764}
5765
85ad3aaf
PA
5766/* Structure used to track the construction of a vCont packet in the
5767 outgoing packet buffer. This is used to send multiple vCont
5768 packets if we have more actions than would fit a single packet. */
5769
5770struct vcont_builder
5771{
5772 /* Pointer to the first action. P points here if no action has been
5773 appended yet. */
5774 char *first_action;
5775
5776 /* Where the next action will be appended. */
5777 char *p;
5778
5779 /* The end of the buffer. Must never write past this. */
5780 char *endp;
5781};
5782
5783/* Prepare the outgoing buffer for a new vCont packet. */
5784
5785static void
5786vcont_builder_restart (struct vcont_builder *builder)
5787{
5788 struct remote_state *rs = get_remote_state ();
5789
5790 builder->p = rs->buf;
5791 builder->endp = rs->buf + get_remote_packet_size ();
5792 builder->p += xsnprintf (builder->p, builder->endp - builder->p, "vCont");
5793 builder->first_action = builder->p;
5794}
5795
5796/* If the vCont packet being built has any action, send it to the
5797 remote end. */
5798
5799static void
5800vcont_builder_flush (struct vcont_builder *builder)
5801{
5802 struct remote_state *rs;
5803
5804 if (builder->p == builder->first_action)
5805 return;
5806
5807 rs = get_remote_state ();
5808 putpkt (rs->buf);
5809 getpkt (&rs->buf, &rs->buf_size, 0);
5810 if (strcmp (rs->buf, "OK") != 0)
5811 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5812}
5813
5814/* The largest action is range-stepping, with its two addresses. This
5815 is more than sufficient. If a new, bigger action is created, it'll
5816 quickly trigger a failed assertion in append_resumption (and we'll
5817 just bump this). */
5818#define MAX_ACTION_SIZE 200
5819
5820/* Append a new vCont action in the outgoing packet being built. If
5821 the action doesn't fit the packet along with previous actions, push
5822 what we've got so far to the remote end and start over a new vCont
5823 packet (with the new action). */
5824
5825static void
5826vcont_builder_push_action (struct vcont_builder *builder,
5827 ptid_t ptid, int step, enum gdb_signal siggnal)
5828{
5829 char buf[MAX_ACTION_SIZE + 1];
5830 char *endp;
5831 size_t rsize;
5832
5833 endp = append_resumption (buf, buf + sizeof (buf),
5834 ptid, step, siggnal);
5835
5836 /* Check whether this new action would fit in the vCont packet along
5837 with previous actions. If not, send what we've got so far and
5838 start a new vCont packet. */
5839 rsize = endp - buf;
5840 if (rsize > builder->endp - builder->p)
5841 {
5842 vcont_builder_flush (builder);
5843 vcont_builder_restart (builder);
5844
5845 /* Should now fit. */
5846 gdb_assert (rsize <= builder->endp - builder->p);
5847 }
5848
5849 memcpy (builder->p, buf, rsize);
5850 builder->p += rsize;
5851 *builder->p = '\0';
5852}
5853
5854/* to_commit_resume implementation. */
5855
5856static void
5857remote_commit_resume (struct target_ops *ops)
5858{
85ad3aaf
PA
5859 struct inferior *inf;
5860 struct thread_info *tp;
5861 int any_process_wildcard;
5862 int may_global_wildcard_vcont;
5863 struct vcont_builder vcont_builder;
5864
5865 /* If connected in all-stop mode, we'd send the remote resume
5866 request directly from remote_resume. Likewise if
5867 reverse-debugging, as there are no defined vCont actions for
5868 reverse execution. */
5869 if (!target_is_non_stop_p () || execution_direction == EXEC_REVERSE)
5870 return;
5871
5872 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
5873 instead of resuming all threads of each process individually.
5874 However, if any thread of a process must remain halted, we can't
5875 send wildcard resumes and must send one action per thread.
5876
5877 Care must be taken to not resume threads/processes the server
5878 side already told us are stopped, but the core doesn't know about
5879 yet, because the events are still in the vStopped notification
5880 queue. For example:
5881
5882 #1 => vCont s:p1.1;c
5883 #2 <= OK
5884 #3 <= %Stopped T05 p1.1
5885 #4 => vStopped
5886 #5 <= T05 p1.2
5887 #6 => vStopped
5888 #7 <= OK
5889 #8 (infrun handles the stop for p1.1 and continues stepping)
5890 #9 => vCont s:p1.1;c
5891
5892 The last vCont above would resume thread p1.2 by mistake, because
5893 the server has no idea that the event for p1.2 had not been
5894 handled yet.
5895
5896 The server side must similarly ignore resume actions for the
5897 thread that has a pending %Stopped notification (and any other
5898 threads with events pending), until GDB acks the notification
5899 with vStopped. Otherwise, e.g., the following case is
5900 mishandled:
5901
5902 #1 => g (or any other packet)
5903 #2 <= [registers]
5904 #3 <= %Stopped T05 p1.2
5905 #4 => vCont s:p1.1;c
5906 #5 <= OK
5907
5908 Above, the server must not resume thread p1.2. GDB can't know
5909 that p1.2 stopped until it acks the %Stopped notification, and
5910 since from GDB's perspective all threads should be running, it
5911 sends a "c" action.
5912
5913 Finally, special care must also be given to handling fork/vfork
5914 events. A (v)fork event actually tells us that two processes
5915 stopped -- the parent and the child. Until we follow the fork,
5916 we must not resume the child. Therefore, if we have a pending
5917 fork follow, we must not send a global wildcard resume action
5918 (vCont;c). We can still send process-wide wildcards though. */
5919
5920 /* Start by assuming a global wildcard (vCont;c) is possible. */
5921 may_global_wildcard_vcont = 1;
5922
5923 /* And assume every process is individually wildcard-able too. */
5924 ALL_NON_EXITED_INFERIORS (inf)
5925 {
089354bb
SM
5926 remote_inferior *priv = get_remote_inferior (inf);
5927
5928 priv->may_wildcard_vcont = true;
85ad3aaf
PA
5929 }
5930
5931 /* Check for any pending events (not reported or processed yet) and
5932 disable process and global wildcard resumes appropriately. */
5933 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
5934
5935 ALL_NON_EXITED_THREADS (tp)
5936 {
5937 /* If a thread of a process is not meant to be resumed, then we
5938 can't wildcard that process. */
5939 if (!tp->executing)
5940 {
089354bb 5941 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
5942
5943 /* And if we can't wildcard a process, we can't wildcard
5944 everything either. */
5945 may_global_wildcard_vcont = 0;
5946 continue;
5947 }
5948
5949 /* If a thread is the parent of an unfollowed fork, then we
5950 can't do a global wildcard, as that would resume the fork
5951 child. */
5952 if (is_pending_fork_parent_thread (tp))
5953 may_global_wildcard_vcont = 0;
5954 }
5955
5956 /* Now let's build the vCont packet(s). Actions must be appended
5957 from narrower to wider scopes (thread -> process -> global). If
5958 we end up with too many actions for a single packet vcont_builder
5959 flushes the current vCont packet to the remote side and starts a
5960 new one. */
5961 vcont_builder_restart (&vcont_builder);
5962
5963 /* Threads first. */
5964 ALL_NON_EXITED_THREADS (tp)
5965 {
7aabaf9d 5966 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
5967
5968 if (!tp->executing || remote_thr->vcont_resumed)
5969 continue;
5970
5971 gdb_assert (!thread_is_in_step_over_chain (tp));
5972
5973 if (!remote_thr->last_resume_step
5974 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 5975 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
5976 {
5977 /* We'll send a wildcard resume instead. */
5978 remote_thr->vcont_resumed = 1;
5979 continue;
5980 }
5981
5982 vcont_builder_push_action (&vcont_builder, tp->ptid,
5983 remote_thr->last_resume_step,
5984 remote_thr->last_resume_sig);
5985 remote_thr->vcont_resumed = 1;
5986 }
5987
5988 /* Now check whether we can send any process-wide wildcard. This is
5989 to avoid sending a global wildcard in the case nothing is
5990 supposed to be resumed. */
5991 any_process_wildcard = 0;
5992
5993 ALL_NON_EXITED_INFERIORS (inf)
5994 {
089354bb 5995 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
5996 {
5997 any_process_wildcard = 1;
5998 break;
5999 }
6000 }
6001
6002 if (any_process_wildcard)
6003 {
6004 /* If all processes are wildcard-able, then send a single "c"
6005 action, otherwise, send an "all (-1) threads of process"
6006 continue action for each running process, if any. */
6007 if (may_global_wildcard_vcont)
6008 {
6009 vcont_builder_push_action (&vcont_builder, minus_one_ptid,
6010 0, GDB_SIGNAL_0);
6011 }
6012 else
6013 {
6014 ALL_NON_EXITED_INFERIORS (inf)
6015 {
089354bb 6016 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6017 {
6018 vcont_builder_push_action (&vcont_builder,
6019 pid_to_ptid (inf->pid),
6020 0, GDB_SIGNAL_0);
6021 }
6022 }
6023 }
6024 }
6025
6026 vcont_builder_flush (&vcont_builder);
6027}
6028
c906108c 6029\f
43ff13b4 6030
74531fed
PA
6031/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6032 thread, all threads of a remote process, or all threads of all
6033 processes. */
6034
6035static void
6036remote_stop_ns (ptid_t ptid)
6037{
6038 struct remote_state *rs = get_remote_state ();
6039 char *p = rs->buf;
6040 char *endp = rs->buf + get_remote_packet_size ();
74531fed 6041
4082afcc 6042 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
74531fed
PA
6043 remote_vcont_probe (rs);
6044
d458bd84 6045 if (!rs->supports_vCont.t)
74531fed
PA
6046 error (_("Remote server does not support stopping threads"));
6047
f91d3df5
PA
6048 if (ptid_equal (ptid, minus_one_ptid)
6049 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
6050 p += xsnprintf (p, endp - p, "vCont;t");
6051 else
6052 {
6053 ptid_t nptid;
6054
74531fed
PA
6055 p += xsnprintf (p, endp - p, "vCont;t:");
6056
6057 if (ptid_is_pid (ptid))
6058 /* All (-1) threads of process. */
ba348170 6059 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
74531fed
PA
6060 else
6061 {
6062 /* Small optimization: if we already have a stop reply for
6063 this thread, no use in telling the stub we want this
6064 stopped. */
6065 if (peek_stop_reply (ptid))
6066 return;
6067
6068 nptid = ptid;
6069 }
6070
a9cbf802 6071 write_ptid (p, endp, nptid);
74531fed
PA
6072 }
6073
6074 /* In non-stop, we get an immediate OK reply. The stop reply will
6075 come in asynchronously by notification. */
6076 putpkt (rs->buf);
6077 getpkt (&rs->buf, &rs->buf_size, 0);
6078 if (strcmp (rs->buf, "OK") != 0)
6079 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6080}
6081
bfedc46a
PA
6082/* All-stop version of target_interrupt. Sends a break or a ^C to
6083 interrupt the remote target. It is undefined which thread of which
6084 process reports the interrupt. */
74531fed
PA
6085
6086static void
de979965 6087remote_interrupt_as (void)
74531fed
PA
6088{
6089 struct remote_state *rs = get_remote_state ();
6090
3a29589a
DJ
6091 rs->ctrlc_pending_p = 1;
6092
74531fed
PA
6093 /* If the inferior is stopped already, but the core didn't know
6094 about it yet, just ignore the request. The cached wait status
6095 will be collected in remote_wait. */
6096 if (rs->cached_wait_status)
6097 return;
6098
9a7071a8
JB
6099 /* Send interrupt_sequence to remote target. */
6100 send_interrupt_sequence ();
74531fed
PA
6101}
6102
de979965
PA
6103/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6104 the remote target. It is undefined which thread of which process
e42de8c7
PA
6105 reports the interrupt. Throws an error if the packet is not
6106 supported by the server. */
de979965 6107
e42de8c7 6108static void
de979965
PA
6109remote_interrupt_ns (void)
6110{
6111 struct remote_state *rs = get_remote_state ();
6112 char *p = rs->buf;
6113 char *endp = rs->buf + get_remote_packet_size ();
6114
6115 xsnprintf (p, endp - p, "vCtrlC");
6116
6117 /* In non-stop, we get an immediate OK reply. The stop reply will
6118 come in asynchronously by notification. */
6119 putpkt (rs->buf);
6120 getpkt (&rs->buf, &rs->buf_size, 0);
6121
6122 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6123 {
6124 case PACKET_OK:
6125 break;
6126 case PACKET_UNKNOWN:
e42de8c7 6127 error (_("No support for interrupting the remote target."));
de979965
PA
6128 case PACKET_ERROR:
6129 error (_("Interrupting target failed: %s"), rs->buf);
6130 }
de979965
PA
6131}
6132
bfedc46a 6133/* Implement the to_stop function for the remote targets. */
74531fed 6134
c906108c 6135static void
1eab8a48 6136remote_stop (struct target_ops *self, ptid_t ptid)
c906108c 6137{
7a292a7a 6138 if (remote_debug)
0f71a2f6 6139 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6140
6efcd9a8 6141 if (target_is_non_stop_p ())
74531fed 6142 remote_stop_ns (ptid);
c906108c 6143 else
bfedc46a
PA
6144 {
6145 /* We don't currently have a way to transparently pause the
6146 remote target in all-stop mode. Interrupt it instead. */
de979965 6147 remote_interrupt_as ();
bfedc46a
PA
6148 }
6149}
6150
6151/* Implement the to_interrupt function for the remote targets. */
6152
6153static void
e671cd59 6154remote_interrupt (struct target_ops *self)
bfedc46a
PA
6155{
6156 if (remote_debug)
6157 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6158
e42de8c7
PA
6159 if (target_is_non_stop_p ())
6160 remote_interrupt_ns ();
bfedc46a 6161 else
e42de8c7 6162 remote_interrupt_as ();
c906108c
SS
6163}
6164
93692b58
PA
6165/* Implement the to_pass_ctrlc function for the remote targets. */
6166
6167static void
6168remote_pass_ctrlc (struct target_ops *self)
6169{
6170 struct remote_state *rs = get_remote_state ();
6171
6172 if (remote_debug)
6173 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6174
6175 /* If we're starting up, we're not fully synced yet. Quit
6176 immediately. */
6177 if (rs->starting_up)
6178 quit ();
6179 /* If ^C has already been sent once, offer to disconnect. */
6180 else if (rs->ctrlc_pending_p)
6181 interrupt_query ();
6182 else
e671cd59 6183 target_interrupt ();
93692b58
PA
6184}
6185
c906108c
SS
6186/* Ask the user what to do when an interrupt is received. */
6187
6188static void
fba45db2 6189interrupt_query (void)
c906108c 6190{
abc56d60 6191 struct remote_state *rs = get_remote_state ();
c906108c 6192
abc56d60 6193 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6194 {
abc56d60
PA
6195 if (query (_("The target is not responding to interrupt requests.\n"
6196 "Stop debugging it? ")))
74531fed 6197 {
78a095c3 6198 remote_unpush_target ();
abc56d60 6199 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6200 }
6201 }
abc56d60
PA
6202 else
6203 {
6204 if (query (_("Interrupted while waiting for the program.\n"
6205 "Give up waiting? ")))
6206 quit ();
6207 }
c906108c
SS
6208}
6209
6426a772
JM
6210/* Enable/disable target terminal ownership. Most targets can use
6211 terminal groups to control terminal ownership. Remote targets are
6212 different in that explicit transfer of ownership to/from GDB/target
23860348 6213 is required. */
6426a772
JM
6214
6215static void
d2f640d4 6216remote_terminal_inferior (struct target_ops *self)
6426a772 6217{
6426a772
JM
6218 /* NOTE: At this point we could also register our selves as the
6219 recipient of all input. Any characters typed could then be
23860348 6220 passed on down to the target. */
6426a772
JM
6221}
6222
6223static void
e3594fd1 6224remote_terminal_ours (struct target_ops *self)
6426a772 6225{
6426a772
JM
6226}
6227
176a6961 6228static void
917317f4 6229remote_console_output (char *msg)
c906108c
SS
6230{
6231 char *p;
6232
c5aa993b 6233 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6234 {
6235 char tb[2];
6236 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6237
c906108c
SS
6238 tb[0] = c;
6239 tb[1] = 0;
43ff13b4 6240 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6241 }
00db5b94
PA
6242 gdb_flush (gdb_stdtarg);
6243}
74531fed 6244
74531fed
PA
6245DEF_VEC_O(cached_reg_t);
6246
722247f1 6247typedef struct stop_reply
74531fed 6248{
722247f1 6249 struct notif_event base;
74531fed 6250
722247f1 6251 /* The identifier of the thread about this event */
74531fed
PA
6252 ptid_t ptid;
6253
340e3c99 6254 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6255 connection, represented by a remote_state object, is closed,
6256 all the associated stop_reply events should be released. */
6257 struct remote_state *rs;
6258
74531fed
PA
6259 struct target_waitstatus ws;
6260
5cd63fda
PA
6261 /* The architecture associated with the expedited registers. */
6262 gdbarch *arch;
6263
15148d6a
PA
6264 /* Expedited registers. This makes remote debugging a bit more
6265 efficient for those targets that provide critical registers as
6266 part of their normal status mechanism (as another roundtrip to
6267 fetch them is avoided). */
74531fed
PA
6268 VEC(cached_reg_t) *regcache;
6269
f7e6eed5
PA
6270 enum target_stop_reason stop_reason;
6271
74531fed
PA
6272 CORE_ADDR watch_data_address;
6273
dc146f7c 6274 int core;
722247f1 6275} *stop_reply_p;
a744cf53 6276
722247f1
YQ
6277DECLARE_QUEUE_P (stop_reply_p);
6278DEFINE_QUEUE_P (stop_reply_p);
6279/* The list of already fetched and acknowledged stop events. This
6280 queue is used for notification Stop, and other notifications
6281 don't need queue for their events, because the notification events
6282 of Stop can't be consumed immediately, so that events should be
6283 queued first, and be consumed by remote_wait_{ns,as} one per
6284 time. Other notifications can consume their events immediately,
6285 so queue is not needed for them. */
6286static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
6287
6288static void
6289stop_reply_xfree (struct stop_reply *r)
6290{
f48ff2a7 6291 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6292}
6293
221e1a37
PA
6294/* Return the length of the stop reply queue. */
6295
6296static int
6297stop_reply_queue_length (void)
6298{
6299 return QUEUE_length (stop_reply_p, stop_reply_queue);
6300}
6301
722247f1
YQ
6302static void
6303remote_notif_stop_parse (struct notif_client *self, char *buf,
6304 struct notif_event *event)
6305{
6306 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6307}
6308
6309static void
6310remote_notif_stop_ack (struct notif_client *self, char *buf,
6311 struct notif_event *event)
6312{
6313 struct stop_reply *stop_reply = (struct stop_reply *) event;
6314
6315 /* acknowledge */
f5c4fcd9 6316 putpkt (self->ack_command);
722247f1
YQ
6317
6318 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6319 /* We got an unknown stop reply. */
6320 error (_("Unknown stop reply"));
6321
6322 push_stop_reply (stop_reply);
6323}
6324
6325static int
6326remote_notif_stop_can_get_pending_events (struct notif_client *self)
6327{
6328 /* We can't get pending events in remote_notif_process for
6329 notification stop, and we have to do this in remote_wait_ns
6330 instead. If we fetch all queued events from stub, remote stub
6331 may exit and we have no chance to process them back in
6332 remote_wait_ns. */
6333 mark_async_event_handler (remote_async_inferior_event_token);
6334 return 0;
6335}
6336
6337static void
6338stop_reply_dtr (struct notif_event *event)
6339{
6340 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6341 cached_reg_t *reg;
6342 int ix;
6343
6344 for (ix = 0;
6345 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6346 ix++)
6347 xfree (reg->data);
722247f1
YQ
6348
6349 VEC_free (cached_reg_t, r->regcache);
6350}
6351
6352static struct notif_event *
6353remote_notif_stop_alloc_reply (void)
6354{
8d749320
SM
6355 /* We cast to a pointer to the "base class". */
6356 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6357
6358 r->dtr = stop_reply_dtr;
6359
6360 return r;
6361}
6362
6363/* A client of notification Stop. */
6364
6365struct notif_client notif_client_stop =
6366{
6367 "Stop",
6368 "vStopped",
6369 remote_notif_stop_parse,
6370 remote_notif_stop_ack,
6371 remote_notif_stop_can_get_pending_events,
6372 remote_notif_stop_alloc_reply,
f48ff2a7 6373 REMOTE_NOTIF_STOP,
722247f1
YQ
6374};
6375
6376/* A parameter to pass data in and out. */
6377
6378struct queue_iter_param
6379{
6380 void *input;
6381 struct stop_reply *output;
6382};
6383
85ad3aaf 6384/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6385 the pid of the process that owns the threads we want to check, or
6386 -1 if we want to check all threads. */
6387
6388static int
6389is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6390 ptid_t thread_ptid)
6391{
6392 if (ws->kind == TARGET_WAITKIND_FORKED
6393 || ws->kind == TARGET_WAITKIND_VFORKED)
6394 {
6395 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6396 return 1;
6397 }
6398
6399 return 0;
6400}
6401
85ad3aaf
PA
6402/* Return the thread's pending status used to determine whether the
6403 thread is a fork parent stopped at a fork event. */
6404
6405static struct target_waitstatus *
6406thread_pending_fork_status (struct thread_info *thread)
6407{
6408 if (thread->suspend.waitstatus_pending_p)
6409 return &thread->suspend.waitstatus;
6410 else
6411 return &thread->pending_follow;
6412}
6413
6414/* Determine if THREAD is a pending fork parent thread. */
6415
6416static int
6417is_pending_fork_parent_thread (struct thread_info *thread)
6418{
6419 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6420 int pid = -1;
6421
6422 return is_pending_fork_parent (ws, pid, thread->ptid);
6423}
6424
cbb8991c
DB
6425/* Check whether EVENT is a fork event, and if it is, remove the
6426 fork child from the context list passed in DATA. */
6427
6428static int
6429remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6430 QUEUE_ITER (stop_reply_p) *iter,
6431 stop_reply_p event,
6432 void *data)
6433{
19ba03f4
SM
6434 struct queue_iter_param *param = (struct queue_iter_param *) data;
6435 struct threads_listing_context *context
6436 = (struct threads_listing_context *) param->input;
cbb8991c
DB
6437
6438 if (event->ws.kind == TARGET_WAITKIND_FORKED
65706a29
PA
6439 || event->ws.kind == TARGET_WAITKIND_VFORKED
6440 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
21fe1c75 6441 context->remove_thread (event->ws.value.related_pid);
cbb8991c
DB
6442
6443 return 1;
6444}
6445
6446/* If CONTEXT contains any fork child threads that have not been
6447 reported yet, remove them from the CONTEXT list. If such a
6448 thread exists it is because we are stopped at a fork catchpoint
6449 and have not yet called follow_fork, which will set up the
6450 host-side data structures for the new process. */
6451
6452static void
6453remove_new_fork_children (struct threads_listing_context *context)
6454{
6455 struct thread_info * thread;
6456 int pid = -1;
6457 struct notif_client *notif = &notif_client_stop;
6458 struct queue_iter_param param;
6459
6460 /* For any threads stopped at a fork event, remove the corresponding
6461 fork child threads from the CONTEXT list. */
6462 ALL_NON_EXITED_THREADS (thread)
6463 {
85ad3aaf 6464 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6465
6466 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6467 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6468 }
6469
6470 /* Check for any pending fork events (not reported or processed yet)
6471 in process PID and remove those fork child threads from the
6472 CONTEXT list as well. */
6473 remote_notif_get_pending_events (notif);
6474 param.input = context;
6475 param.output = NULL;
6476 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6477 remove_child_of_pending_fork, &param);
6478}
6479
85ad3aaf
PA
6480/* Check whether EVENT would prevent a global or process wildcard
6481 vCont action. */
6482
6483static int
6484check_pending_event_prevents_wildcard_vcont_callback
6485 (QUEUE (stop_reply_p) *q,
6486 QUEUE_ITER (stop_reply_p) *iter,
6487 stop_reply_p event,
6488 void *data)
6489{
6490 struct inferior *inf;
6491 int *may_global_wildcard_vcont = (int *) data;
6492
6493 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6494 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6495 return 1;
6496
6497 if (event->ws.kind == TARGET_WAITKIND_FORKED
6498 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6499 *may_global_wildcard_vcont = 0;
6500
6501 inf = find_inferior_ptid (event->ptid);
6502
6503 /* This may be the first time we heard about this process.
6504 Regardless, we must not do a global wildcard resume, otherwise
6505 we'd resume this process too. */
6506 *may_global_wildcard_vcont = 0;
6507 if (inf != NULL)
089354bb 6508 get_remote_inferior (inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6509
6510 return 1;
6511}
6512
6513/* Check whether any event pending in the vStopped queue would prevent
6514 a global or process wildcard vCont action. Clear
6515 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6516 and clear the event inferior's may_wildcard_vcont flag if we can't
6517 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6518
6519static void
6520check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard)
6521{
6522 struct notif_client *notif = &notif_client_stop;
6523
6524 remote_notif_get_pending_events (notif);
6525 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6526 check_pending_event_prevents_wildcard_vcont_callback,
6527 may_global_wildcard);
6528}
6529
f48ff2a7
YQ
6530/* Remove stop replies in the queue if its pid is equal to the given
6531 inferior's pid. */
722247f1
YQ
6532
6533static int
f48ff2a7
YQ
6534remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6535 QUEUE_ITER (stop_reply_p) *iter,
6536 stop_reply_p event,
6537 void *data)
722247f1 6538{
19ba03f4
SM
6539 struct queue_iter_param *param = (struct queue_iter_param *) data;
6540 struct inferior *inf = (struct inferior *) param->input;
722247f1 6541
f48ff2a7 6542 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
6543 {
6544 stop_reply_xfree (event);
6545 QUEUE_remove_elem (stop_reply_p, q, iter);
6546 }
6547
6548 return 1;
6549}
6550
f48ff2a7 6551/* Discard all pending stop replies of inferior INF. */
c906108c 6552
74531fed 6553static void
5f4cf0bb 6554discard_pending_stop_replies (struct inferior *inf)
c906108c 6555{
722247f1 6556 struct queue_iter_param param;
f48ff2a7
YQ
6557 struct stop_reply *reply;
6558 struct remote_state *rs = get_remote_state ();
6559 struct remote_notif_state *rns = rs->notif_state;
6560
6561 /* This function can be notified when an inferior exists. When the
6562 target is not remote, the notification state is NULL. */
6563 if (rs->remote_desc == NULL)
6564 return;
6565
6566 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 6567
74531fed 6568 /* Discard the in-flight notification. */
f48ff2a7 6569 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 6570 {
722247f1 6571 stop_reply_xfree (reply);
f48ff2a7 6572 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 6573 }
c906108c 6574
722247f1
YQ
6575 param.input = inf;
6576 param.output = NULL;
74531fed
PA
6577 /* Discard the stop replies we have already pulled with
6578 vStopped. */
722247f1 6579 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
6580 remove_stop_reply_for_inferior, &param);
6581}
6582
bcc75809
YQ
6583/* If its remote state is equal to the given remote state,
6584 remove EVENT from the stop reply queue. */
6585
6586static int
6587remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6588 QUEUE_ITER (stop_reply_p) *iter,
6589 stop_reply_p event,
6590 void *data)
6591{
19ba03f4
SM
6592 struct queue_iter_param *param = (struct queue_iter_param *) data;
6593 struct remote_state *rs = (struct remote_state *) param->input;
bcc75809
YQ
6594
6595 if (event->rs == rs)
6596 {
6597 stop_reply_xfree (event);
6598 QUEUE_remove_elem (stop_reply_p, q, iter);
6599 }
6600
6601 return 1;
6602}
6603
6604/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
6605
6606static void
bcc75809 6607discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
6608{
6609 struct queue_iter_param param;
6610
bcc75809 6611 param.input = rs;
f48ff2a7
YQ
6612 param.output = NULL;
6613 /* Discard the stop replies we have already pulled with
6614 vStopped. */
6615 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 6616 remove_stop_reply_of_remote_state, &param);
722247f1 6617}
74531fed 6618
722247f1
YQ
6619/* A parameter to pass data in and out. */
6620
6621static int
6622remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6623 QUEUE_ITER (stop_reply_p) *iter,
6624 stop_reply_p event,
6625 void *data)
6626{
19ba03f4
SM
6627 struct queue_iter_param *param = (struct queue_iter_param *) data;
6628 ptid_t *ptid = (ptid_t *) param->input;
722247f1
YQ
6629
6630 if (ptid_match (event->ptid, *ptid))
6631 {
6632 param->output = event;
6633 QUEUE_remove_elem (stop_reply_p, q, iter);
6634 return 0;
c8e38a49 6635 }
722247f1
YQ
6636
6637 return 1;
74531fed 6638}
43ff13b4 6639
722247f1
YQ
6640/* Remove the first reply in 'stop_reply_queue' which matches
6641 PTID. */
2e9f7625 6642
722247f1
YQ
6643static struct stop_reply *
6644remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 6645{
722247f1
YQ
6646 struct queue_iter_param param;
6647
6648 param.input = &ptid;
6649 param.output = NULL;
6650
6651 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6652 remote_notif_remove_once_on_match, &param);
6653 if (notif_debug)
6654 fprintf_unfiltered (gdb_stdlog,
6655 "notif: discard queued event: 'Stop' in %s\n",
6656 target_pid_to_str (ptid));
a744cf53 6657
722247f1 6658 return param.output;
74531fed 6659}
75c99385 6660
74531fed
PA
6661/* Look for a queued stop reply belonging to PTID. If one is found,
6662 remove it from the queue, and return it. Returns NULL if none is
6663 found. If there are still queued events left to process, tell the
6664 event loop to get back to target_wait soon. */
e24a49d8 6665
74531fed
PA
6666static struct stop_reply *
6667queued_stop_reply (ptid_t ptid)
6668{
722247f1 6669 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 6670
722247f1 6671 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
6672 /* There's still at least an event left. */
6673 mark_async_event_handler (remote_async_inferior_event_token);
6674
722247f1 6675 return r;
74531fed
PA
6676}
6677
6678/* Push a fully parsed stop reply in the stop reply queue. Since we
6679 know that we now have at least one queued event left to pass to the
6680 core side, tell the event loop to get back to target_wait soon. */
6681
6682static void
6683push_stop_reply (struct stop_reply *new_event)
6684{
722247f1 6685 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 6686
722247f1
YQ
6687 if (notif_debug)
6688 fprintf_unfiltered (gdb_stdlog,
6689 "notif: push 'Stop' %s to queue %d\n",
6690 target_pid_to_str (new_event->ptid),
6691 QUEUE_length (stop_reply_p,
6692 stop_reply_queue));
74531fed
PA
6693
6694 mark_async_event_handler (remote_async_inferior_event_token);
6695}
6696
722247f1
YQ
6697static int
6698stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6699 QUEUE_ITER (stop_reply_p) *iter,
6700 struct stop_reply *event,
6701 void *data)
6702{
19ba03f4 6703 ptid_t *ptid = (ptid_t *) data;
722247f1
YQ
6704
6705 return !(ptid_equal (*ptid, event->ptid)
6706 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6707}
6708
74531fed
PA
6709/* Returns true if we have a stop reply for PTID. */
6710
6711static int
6712peek_stop_reply (ptid_t ptid)
6713{
722247f1
YQ
6714 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6715 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
6716}
6717
26d56a93
SL
6718/* Helper for remote_parse_stop_reply. Return nonzero if the substring
6719 starting with P and ending with PEND matches PREFIX. */
6720
6721static int
6722strprefix (const char *p, const char *pend, const char *prefix)
6723{
6724 for ( ; p < pend; p++, prefix++)
6725 if (*p != *prefix)
6726 return 0;
6727 return *prefix == '\0';
6728}
6729
74531fed
PA
6730/* Parse the stop reply in BUF. Either the function succeeds, and the
6731 result is stored in EVENT, or throws an error. */
6732
6733static void
6734remote_parse_stop_reply (char *buf, struct stop_reply *event)
6735{
5cd63fda 6736 remote_arch_state *rsa = NULL;
74531fed 6737 ULONGEST addr;
256642e8 6738 const char *p;
94585166 6739 int skipregs = 0;
74531fed
PA
6740
6741 event->ptid = null_ptid;
bcc75809 6742 event->rs = get_remote_state ();
74531fed
PA
6743 event->ws.kind = TARGET_WAITKIND_IGNORE;
6744 event->ws.value.integer = 0;
f7e6eed5 6745 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 6746 event->regcache = NULL;
dc146f7c 6747 event->core = -1;
74531fed
PA
6748
6749 switch (buf[0])
6750 {
6751 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
6752 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6753 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6754 ss = signal number
6755 n... = register number
6756 r... = register contents
6757 */
6758
6759 p = &buf[3]; /* after Txx */
6760 while (*p)
6761 {
256642e8 6762 const char *p1;
cea39f65 6763 int fieldsize;
43ff13b4 6764
1f10ba14
PA
6765 p1 = strchr (p, ':');
6766 if (p1 == NULL)
6767 error (_("Malformed packet(a) (missing colon): %s\n\
6768Packet: '%s'\n"),
6769 p, buf);
6770 if (p == p1)
6771 error (_("Malformed packet(a) (missing register number): %s\n\
6772Packet: '%s'\n"),
6773 p, buf);
3c3bea1c 6774
1f10ba14
PA
6775 /* Some "registers" are actually extended stop information.
6776 Note if you're adding a new entry here: GDB 7.9 and
6777 earlier assume that all register "numbers" that start
6778 with an hex digit are real register numbers. Make sure
6779 the server only sends such a packet if it knows the
6780 client understands it. */
c8e38a49 6781
26d56a93 6782 if (strprefix (p, p1, "thread"))
1f10ba14 6783 event->ptid = read_ptid (++p1, &p);
82075af2
JS
6784 else if (strprefix (p, p1, "syscall_entry"))
6785 {
6786 ULONGEST sysno;
6787
6788 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6789 p = unpack_varlen_hex (++p1, &sysno);
6790 event->ws.value.syscall_number = (int) sysno;
6791 }
6792 else if (strprefix (p, p1, "syscall_return"))
6793 {
6794 ULONGEST sysno;
6795
6796 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6797 p = unpack_varlen_hex (++p1, &sysno);
6798 event->ws.value.syscall_number = (int) sysno;
6799 }
26d56a93
SL
6800 else if (strprefix (p, p1, "watch")
6801 || strprefix (p, p1, "rwatch")
6802 || strprefix (p, p1, "awatch"))
cea39f65 6803 {
f7e6eed5 6804 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
6805 p = unpack_varlen_hex (++p1, &addr);
6806 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 6807 }
26d56a93 6808 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
6809 {
6810 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6811
6812 /* Make sure the stub doesn't forget to indicate support
6813 with qSupported. */
6814 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6815 error (_("Unexpected swbreak stop reason"));
6816
6817 /* The value part is documented as "must be empty",
6818 though we ignore it, in case we ever decide to make
6819 use of it in a backward compatible way. */
8424cc97 6820 p = strchrnul (p1 + 1, ';');
f7e6eed5 6821 }
26d56a93 6822 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
6823 {
6824 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6825
6826 /* Make sure the stub doesn't forget to indicate support
6827 with qSupported. */
6828 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6829 error (_("Unexpected hwbreak stop reason"));
6830
6831 /* See above. */
8424cc97 6832 p = strchrnul (p1 + 1, ';');
f7e6eed5 6833 }
26d56a93 6834 else if (strprefix (p, p1, "library"))
cea39f65 6835 {
1f10ba14 6836 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 6837 p = strchrnul (p1 + 1, ';');
1f10ba14 6838 }
26d56a93 6839 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
6840 {
6841 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6842 /* p1 will indicate "begin" or "end", but it makes
6843 no difference for now, so ignore it. */
8424cc97 6844 p = strchrnul (p1 + 1, ';');
1f10ba14 6845 }
26d56a93 6846 else if (strprefix (p, p1, "core"))
1f10ba14
PA
6847 {
6848 ULONGEST c;
a744cf53 6849
1f10ba14
PA
6850 p = unpack_varlen_hex (++p1, &c);
6851 event->core = c;
cea39f65 6852 }
26d56a93 6853 else if (strprefix (p, p1, "fork"))
de0d863e
DB
6854 {
6855 event->ws.value.related_pid = read_ptid (++p1, &p);
6856 event->ws.kind = TARGET_WAITKIND_FORKED;
6857 }
26d56a93 6858 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
6859 {
6860 event->ws.value.related_pid = read_ptid (++p1, &p);
6861 event->ws.kind = TARGET_WAITKIND_VFORKED;
6862 }
26d56a93 6863 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
6864 {
6865 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 6866 p = strchrnul (p1 + 1, ';');
c269dbdb 6867 }
6ab24463 6868 else if (strprefix (p, p1, "exec"))
94585166
DB
6869 {
6870 ULONGEST ignored;
6871 char pathname[PATH_MAX];
6872 int pathlen;
6873
6874 /* Determine the length of the execd pathname. */
6875 p = unpack_varlen_hex (++p1, &ignored);
6876 pathlen = (p - p1) / 2;
6877
6878 /* Save the pathname for event reporting and for
6879 the next run command. */
6880 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6881 pathname[pathlen] = '\0';
6882
6883 /* This is freed during event handling. */
6884 event->ws.value.execd_pathname = xstrdup (pathname);
6885 event->ws.kind = TARGET_WAITKIND_EXECD;
6886
6887 /* Skip the registers included in this packet, since
6888 they may be for an architecture different from the
6889 one used by the original program. */
6890 skipregs = 1;
6891 }
65706a29
PA
6892 else if (strprefix (p, p1, "create"))
6893 {
6894 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 6895 p = strchrnul (p1 + 1, ';');
65706a29 6896 }
cea39f65
MS
6897 else
6898 {
1f10ba14 6899 ULONGEST pnum;
256642e8 6900 const char *p_temp;
1f10ba14 6901
94585166
DB
6902 if (skipregs)
6903 {
8424cc97 6904 p = strchrnul (p1 + 1, ';');
94585166
DB
6905 p++;
6906 continue;
6907 }
6908
1f10ba14
PA
6909 /* Maybe a real ``P'' register number. */
6910 p_temp = unpack_varlen_hex (p, &pnum);
6911 /* If the first invalid character is the colon, we got a
6912 register number. Otherwise, it's an unknown stop
6913 reason. */
6914 if (p_temp == p1)
6915 {
5cd63fda
PA
6916 /* If we haven't parsed the event's thread yet, find
6917 it now, in order to find the architecture of the
6918 reported expedited registers. */
6919 if (event->ptid == null_ptid)
6920 {
6921 const char *thr = strstr (p1 + 1, ";thread:");
6922 if (thr != NULL)
6923 event->ptid = read_ptid (thr + strlen (";thread:"),
6924 NULL);
6925 else
3cada740
PA
6926 {
6927 /* Either the current thread hasn't changed,
6928 or the inferior is not multi-threaded.
6929 The event must be for the thread we last
6930 set as (or learned as being) current. */
6931 event->ptid = event->rs->general_thread;
6932 }
5cd63fda
PA
6933 }
6934
6935 if (rsa == NULL)
6936 {
6937 inferior *inf = (event->ptid == null_ptid
6938 ? NULL
6939 : find_inferior_ptid (event->ptid));
6940 /* If this is the first time we learn anything
6941 about this process, skip the registers
6942 included in this packet, since we don't yet
6943 know which architecture to use to parse them.
6944 We'll determine the architecture later when
6945 we process the stop reply and retrieve the
6946 target description, via
6947 remote_notice_new_inferior ->
6948 post_create_inferior. */
6949 if (inf == NULL)
6950 {
6951 p = strchrnul (p1 + 1, ';');
6952 p++;
6953 continue;
6954 }
6955
6956 event->arch = inf->gdbarch;
6957 rsa = get_remote_arch_state (event->arch);
6958 }
6959
6960 packet_reg *reg
6961 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 6962 cached_reg_t cached_reg;
43ff13b4 6963
1f10ba14
PA
6964 if (reg == NULL)
6965 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 6966Packet: '%s'\n"),
1f10ba14 6967 hex_string (pnum), p, buf);
c8e38a49 6968
1f10ba14 6969 cached_reg.num = reg->regnum;
d1dff226 6970 cached_reg.data = (gdb_byte *)
5cd63fda 6971 xmalloc (register_size (event->arch, reg->regnum));
4100683b 6972
1f10ba14
PA
6973 p = p1 + 1;
6974 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 6975 register_size (event->arch, reg->regnum));
1f10ba14 6976 p += 2 * fieldsize;
5cd63fda 6977 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 6978 warning (_("Remote reply is too short: %s"), buf);
74531fed 6979
1f10ba14
PA
6980 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
6981 }
6982 else
6983 {
6984 /* Not a number. Silently skip unknown optional
6985 info. */
8424cc97 6986 p = strchrnul (p1 + 1, ';');
1f10ba14 6987 }
cea39f65 6988 }
c8e38a49 6989
cea39f65
MS
6990 if (*p != ';')
6991 error (_("Remote register badly formatted: %s\nhere: %s"),
6992 buf, p);
6993 ++p;
6994 }
5b5596ff
PA
6995
6996 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
6997 break;
6998
c8e38a49
PA
6999 /* fall through */
7000 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7001 {
7002 int sig;
7003
7004 event->ws.kind = TARGET_WAITKIND_STOPPED;
7005 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7006 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7007 event->ws.value.sig = (enum gdb_signal) sig;
7008 else
7009 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7010 }
c8e38a49 7011 break;
65706a29
PA
7012 case 'w': /* Thread exited. */
7013 {
256642e8 7014 const char *p;
65706a29
PA
7015 ULONGEST value;
7016
7017 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7018 p = unpack_varlen_hex (&buf[1], &value);
7019 event->ws.value.integer = value;
7020 if (*p != ';')
7021 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7022 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7023 break;
7024 }
c8e38a49
PA
7025 case 'W': /* Target exited. */
7026 case 'X':
7027 {
256642e8 7028 const char *p;
c8e38a49
PA
7029 int pid;
7030 ULONGEST value;
82f73884 7031
c8e38a49
PA
7032 /* GDB used to accept only 2 hex chars here. Stubs should
7033 only send more if they detect GDB supports multi-process
7034 support. */
7035 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7036
c8e38a49
PA
7037 if (buf[0] == 'W')
7038 {
7039 /* The remote process exited. */
74531fed
PA
7040 event->ws.kind = TARGET_WAITKIND_EXITED;
7041 event->ws.value.integer = value;
c8e38a49
PA
7042 }
7043 else
7044 {
7045 /* The remote process exited with a signal. */
74531fed 7046 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7047 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7048 event->ws.value.sig = (enum gdb_signal) value;
7049 else
7050 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7051 }
82f73884 7052
c8e38a49
PA
7053 /* If no process is specified, assume inferior_ptid. */
7054 pid = ptid_get_pid (inferior_ptid);
7055 if (*p == '\0')
7056 ;
7057 else if (*p == ';')
7058 {
7059 p++;
7060
0b24eb2d 7061 if (*p == '\0')
82f73884 7062 ;
61012eef 7063 else if (startswith (p, "process:"))
82f73884 7064 {
c8e38a49 7065 ULONGEST upid;
a744cf53 7066
c8e38a49
PA
7067 p += sizeof ("process:") - 1;
7068 unpack_varlen_hex (p, &upid);
7069 pid = upid;
82f73884
PA
7070 }
7071 else
7072 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7073 }
c8e38a49
PA
7074 else
7075 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
7076 event->ptid = pid_to_ptid (pid);
7077 }
7078 break;
f2faf941
PA
7079 case 'N':
7080 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7081 event->ptid = minus_one_ptid;
7082 break;
74531fed
PA
7083 }
7084
6efcd9a8 7085 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
74531fed
PA
7086 error (_("No process or thread specified in stop reply: %s"), buf);
7087}
7088
722247f1
YQ
7089/* When the stub wants to tell GDB about a new notification reply, it
7090 sends a notification (%Stop, for example). Those can come it at
7091 any time, hence, we have to make sure that any pending
7092 putpkt/getpkt sequence we're making is finished, before querying
7093 the stub for more events with the corresponding ack command
7094 (vStopped, for example). E.g., if we started a vStopped sequence
7095 immediately upon receiving the notification, something like this
7096 could happen:
74531fed
PA
7097
7098 1.1) --> Hg 1
7099 1.2) <-- OK
7100 1.3) --> g
7101 1.4) <-- %Stop
7102 1.5) --> vStopped
7103 1.6) <-- (registers reply to step #1.3)
7104
7105 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7106 query.
7107
796cb314 7108 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7109 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7110 doing whatever we were doing:
7111
7112 2.1) --> Hg 1
7113 2.2) <-- OK
7114 2.3) --> g
7115 2.4) <-- %Stop
7116 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7117 2.5) <-- (registers reply to step #2.3)
7118
7119 Eventualy after step #2.5, we return to the event loop, which
7120 notices there's an event on the
7121 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7122 associated callback --- the function below. At this point, we're
7123 always safe to start a vStopped sequence. :
7124
7125 2.6) --> vStopped
7126 2.7) <-- T05 thread:2
7127 2.8) --> vStopped
7128 2.9) --> OK
7129*/
7130
722247f1
YQ
7131void
7132remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
7133{
7134 struct remote_state *rs = get_remote_state ();
74531fed 7135
f48ff2a7 7136 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7137 {
722247f1
YQ
7138 if (notif_debug)
7139 fprintf_unfiltered (gdb_stdlog,
7140 "notif: process: '%s' ack pending event\n",
7141 nc->name);
74531fed 7142
722247f1 7143 /* acknowledge */
f48ff2a7
YQ
7144 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7145 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7146
7147 while (1)
7148 {
7149 getpkt (&rs->buf, &rs->buf_size, 0);
7150 if (strcmp (rs->buf, "OK") == 0)
7151 break;
7152 else
722247f1 7153 remote_notif_ack (nc, rs->buf);
74531fed
PA
7154 }
7155 }
722247f1
YQ
7156 else
7157 {
7158 if (notif_debug)
7159 fprintf_unfiltered (gdb_stdlog,
7160 "notif: process: '%s' no pending reply\n",
7161 nc->name);
7162 }
74531fed
PA
7163}
7164
74531fed
PA
7165/* Called when it is decided that STOP_REPLY holds the info of the
7166 event that is to be returned to the core. This function always
7167 destroys STOP_REPLY. */
7168
7169static ptid_t
7170process_stop_reply (struct stop_reply *stop_reply,
7171 struct target_waitstatus *status)
7172{
7173 ptid_t ptid;
7174
7175 *status = stop_reply->ws;
7176 ptid = stop_reply->ptid;
7177
7178 /* If no thread/process was reported by the stub, assume the current
7179 inferior. */
7180 if (ptid_equal (ptid, null_ptid))
7181 ptid = inferior_ptid;
7182
5f3563ea 7183 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7184 && status->kind != TARGET_WAITKIND_SIGNALLED
7185 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7186 {
5f3563ea
PA
7187 /* Expedited registers. */
7188 if (stop_reply->regcache)
7189 {
217f1f79 7190 struct regcache *regcache
5cd63fda 7191 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7192 cached_reg_t *reg;
7193 int ix;
7194
7195 for (ix = 0;
d1dff226 7196 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7197 ix++)
d1dff226 7198 {
217f1f79 7199 regcache_raw_supply (regcache, reg->num, reg->data);
d1dff226
AH
7200 xfree (reg->data);
7201 }
7202
5f3563ea
PA
7203 VEC_free (cached_reg_t, stop_reply->regcache);
7204 }
74531fed 7205
1941c569 7206 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7207 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7208 remote_thr->core = stop_reply->core;
7209 remote_thr->stop_reason = stop_reply->stop_reason;
7210 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7211 remote_thr->vcont_resumed = 0;
74531fed
PA
7212 }
7213
74531fed
PA
7214 stop_reply_xfree (stop_reply);
7215 return ptid;
7216}
7217
7218/* The non-stop mode version of target_wait. */
7219
7220static ptid_t
47608cb1 7221remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7222{
7223 struct remote_state *rs = get_remote_state ();
74531fed
PA
7224 struct stop_reply *stop_reply;
7225 int ret;
fee9eda9 7226 int is_notif = 0;
74531fed
PA
7227
7228 /* If in non-stop mode, get out of getpkt even if a
7229 notification is received. */
7230
7231 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7232 0 /* forever */, &is_notif);
74531fed
PA
7233 while (1)
7234 {
fee9eda9 7235 if (ret != -1 && !is_notif)
74531fed
PA
7236 switch (rs->buf[0])
7237 {
7238 case 'E': /* Error of some sort. */
7239 /* We're out of sync with the target now. Did it continue
7240 or not? We can't tell which thread it was in non-stop,
7241 so just ignore this. */
7242 warning (_("Remote failure reply: %s"), rs->buf);
7243 break;
7244 case 'O': /* Console output. */
7245 remote_console_output (rs->buf + 1);
7246 break;
7247 default:
7248 warning (_("Invalid remote reply: %s"), rs->buf);
7249 break;
7250 }
7251
7252 /* Acknowledge a pending stop reply that may have arrived in the
7253 mean time. */
f48ff2a7 7254 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7255 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7256
7257 /* If indeed we noticed a stop reply, we're done. */
7258 stop_reply = queued_stop_reply (ptid);
7259 if (stop_reply != NULL)
7260 return process_stop_reply (stop_reply, status);
7261
47608cb1 7262 /* Still no event. If we're just polling for an event, then
74531fed 7263 return to the event loop. */
47608cb1 7264 if (options & TARGET_WNOHANG)
74531fed
PA
7265 {
7266 status->kind = TARGET_WAITKIND_IGNORE;
7267 return minus_one_ptid;
7268 }
7269
47608cb1 7270 /* Otherwise do a blocking wait. */
74531fed 7271 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7272 1 /* forever */, &is_notif);
74531fed
PA
7273 }
7274}
7275
7276/* Wait until the remote machine stops, then return, storing status in
7277 STATUS just as `wait' would. */
7278
7279static ptid_t
47608cb1 7280remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7281{
7282 struct remote_state *rs = get_remote_state ();
74531fed 7283 ptid_t event_ptid = null_ptid;
cea39f65 7284 char *buf;
74531fed
PA
7285 struct stop_reply *stop_reply;
7286
47608cb1
PA
7287 again:
7288
74531fed
PA
7289 status->kind = TARGET_WAITKIND_IGNORE;
7290 status->value.integer = 0;
7291
7292 stop_reply = queued_stop_reply (ptid);
7293 if (stop_reply != NULL)
7294 return process_stop_reply (stop_reply, status);
7295
7296 if (rs->cached_wait_status)
7297 /* Use the cached wait status, but only once. */
7298 rs->cached_wait_status = 0;
7299 else
7300 {
7301 int ret;
722247f1 7302 int is_notif;
567420d1
PA
7303 int forever = ((options & TARGET_WNOHANG) == 0
7304 && wait_forever_enabled_p);
7305
7306 if (!rs->waiting_for_stop_reply)
7307 {
7308 status->kind = TARGET_WAITKIND_NO_RESUMED;
7309 return minus_one_ptid;
7310 }
74531fed 7311
74531fed
PA
7312 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7313 _never_ wait for ever -> test on target_is_async_p().
7314 However, before we do that we need to ensure that the caller
7315 knows how to take the target into/out of async mode. */
722247f1 7316 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 7317 forever, &is_notif);
722247f1
YQ
7318
7319 /* GDB gets a notification. Return to core as this event is
7320 not interesting. */
7321 if (ret != -1 && is_notif)
7322 return minus_one_ptid;
567420d1
PA
7323
7324 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7325 return minus_one_ptid;
74531fed
PA
7326 }
7327
7328 buf = rs->buf;
7329
3a29589a
DJ
7330 /* Assume that the target has acknowledged Ctrl-C unless we receive
7331 an 'F' or 'O' packet. */
7332 if (buf[0] != 'F' && buf[0] != 'O')
7333 rs->ctrlc_pending_p = 0;
7334
74531fed
PA
7335 switch (buf[0])
7336 {
7337 case 'E': /* Error of some sort. */
7338 /* We're out of sync with the target now. Did it continue or
7339 not? Not is more likely, so report a stop. */
29090fb6
LM
7340 rs->waiting_for_stop_reply = 0;
7341
74531fed
PA
7342 warning (_("Remote failure reply: %s"), buf);
7343 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7344 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7345 break;
7346 case 'F': /* File-I/O request. */
e42e5352
YQ
7347 /* GDB may access the inferior memory while handling the File-I/O
7348 request, but we don't want GDB accessing memory while waiting
7349 for a stop reply. See the comments in putpkt_binary. Set
7350 waiting_for_stop_reply to 0 temporarily. */
7351 rs->waiting_for_stop_reply = 0;
3a29589a
DJ
7352 remote_fileio_request (buf, rs->ctrlc_pending_p);
7353 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7354 /* GDB handled the File-I/O request, and the target is running
7355 again. Keep waiting for events. */
7356 rs->waiting_for_stop_reply = 1;
74531fed 7357 break;
f2faf941 7358 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7359 {
29090fb6
LM
7360 struct stop_reply *stop_reply;
7361
7362 /* There is a stop reply to handle. */
7363 rs->waiting_for_stop_reply = 0;
7364
7365 stop_reply
722247f1
YQ
7366 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7367 rs->buf);
74531fed 7368
74531fed 7369 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7370 break;
7371 }
7372 case 'O': /* Console output. */
7373 remote_console_output (buf + 1);
c8e38a49
PA
7374 break;
7375 case '\0':
b73be471 7376 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7377 {
7378 /* Zero length reply means that we tried 'S' or 'C' and the
7379 remote system doesn't support it. */
223ffa71 7380 target_terminal::ours_for_output ();
c8e38a49
PA
7381 printf_filtered
7382 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7383 gdb_signal_to_name (rs->last_sent_signal));
7384 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7385 target_terminal::inferior ();
c8e38a49 7386
f5c4fcd9
TT
7387 strcpy (buf, rs->last_sent_step ? "s" : "c");
7388 putpkt (buf);
c8e38a49 7389 break;
43ff13b4 7390 }
c8e38a49
PA
7391 /* else fallthrough */
7392 default:
7393 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7394 break;
43ff13b4 7395 }
c8e38a49 7396
f2faf941
PA
7397 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7398 return minus_one_ptid;
7399 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7400 {
7401 /* Nothing interesting happened. If we're doing a non-blocking
7402 poll, we're done. Otherwise, go back to waiting. */
7403 if (options & TARGET_WNOHANG)
7404 return minus_one_ptid;
7405 else
7406 goto again;
7407 }
74531fed
PA
7408 else if (status->kind != TARGET_WAITKIND_EXITED
7409 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
7410 {
7411 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 7412 record_currthread (rs, event_ptid);
82f73884
PA
7413 else
7414 event_ptid = inferior_ptid;
43ff13b4 7415 }
74531fed
PA
7416 else
7417 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7418 record_currthread (rs, minus_one_ptid);
79d7f229 7419
82f73884 7420 return event_ptid;
43ff13b4
JM
7421}
7422
74531fed
PA
7423/* Wait until the remote machine stops, then return, storing status in
7424 STATUS just as `wait' would. */
7425
c8e38a49 7426static ptid_t
117de6a9 7427remote_wait (struct target_ops *ops,
47608cb1 7428 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7429{
7430 ptid_t event_ptid;
7431
6efcd9a8 7432 if (target_is_non_stop_p ())
47608cb1 7433 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 7434 else
47608cb1 7435 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 7436
d9d41e78 7437 if (target_is_async_p ())
c8e38a49 7438 {
74531fed
PA
7439 /* If there are are events left in the queue tell the event loop
7440 to return here. */
722247f1 7441 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 7442 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 7443 }
c8e38a49
PA
7444
7445 return event_ptid;
7446}
7447
74ca34ce 7448/* Fetch a single register using a 'p' packet. */
c906108c 7449
b96ec7ac 7450static int
56be3814 7451fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac 7452{
ac7936df 7453 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7454 struct remote_state *rs = get_remote_state ();
2e9f7625 7455 char *buf, *p;
9890e433 7456 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7457 int i;
7458
4082afcc 7459 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7460 return 0;
7461
7462 if (reg->pnum == -1)
7463 return 0;
7464
2e9f7625 7465 p = rs->buf;
fcad0fa4 7466 *p++ = 'p';
74ca34ce 7467 p += hexnumstr (p, reg->pnum);
fcad0fa4 7468 *p++ = '\0';
1f4437a4
MS
7469 putpkt (rs->buf);
7470 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7471
2e9f7625
DJ
7472 buf = rs->buf;
7473
74ca34ce
DJ
7474 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7475 {
7476 case PACKET_OK:
7477 break;
7478 case PACKET_UNKNOWN:
7479 return 0;
7480 case PACKET_ERROR:
27a9c0bf 7481 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7482 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7483 reg->regnum),
7484 buf);
74ca34ce 7485 }
3f9a994c
JB
7486
7487 /* If this register is unfetchable, tell the regcache. */
7488 if (buf[0] == 'x')
8480adf2 7489 {
56be3814 7490 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 7491 return 1;
b96ec7ac 7492 }
b96ec7ac 7493
3f9a994c
JB
7494 /* Otherwise, parse and supply the value. */
7495 p = buf;
7496 i = 0;
7497 while (p[0] != 0)
7498 {
7499 if (p[1] == 0)
74ca34ce 7500 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7501
7502 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7503 p += 2;
7504 }
56be3814 7505 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 7506 return 1;
b96ec7ac
AC
7507}
7508
74ca34ce
DJ
7509/* Fetch the registers included in the target's 'g' packet. */
7510
29709017
DJ
7511static int
7512send_g_packet (void)
c906108c 7513{
d01949b6 7514 struct remote_state *rs = get_remote_state ();
cea39f65 7515 int buf_len;
c906108c 7516
bba74b36 7517 xsnprintf (rs->buf, get_remote_packet_size (), "g");
74ca34ce 7518 remote_send (&rs->buf, &rs->buf_size);
c906108c 7519
29709017
DJ
7520 /* We can get out of synch in various cases. If the first character
7521 in the buffer is not a hex character, assume that has happened
7522 and try to fetch another packet to read. */
7523 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7524 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7525 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7526 && rs->buf[0] != 'x') /* New: unavailable register value. */
7527 {
7528 if (remote_debug)
7529 fprintf_unfiltered (gdb_stdlog,
7530 "Bad register packet; fetching a new packet\n");
7531 getpkt (&rs->buf, &rs->buf_size, 0);
7532 }
7533
74ca34ce
DJ
7534 buf_len = strlen (rs->buf);
7535
7536 /* Sanity check the received packet. */
7537 if (buf_len % 2 != 0)
7538 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
7539
7540 return buf_len / 2;
7541}
7542
7543static void
56be3814 7544process_g_packet (struct regcache *regcache)
29709017 7545{
ac7936df 7546 struct gdbarch *gdbarch = regcache->arch ();
29709017 7547 struct remote_state *rs = get_remote_state ();
5cd63fda 7548 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
29709017
DJ
7549 int i, buf_len;
7550 char *p;
7551 char *regs;
7552
7553 buf_len = strlen (rs->buf);
7554
7555 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7556 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827
SM
7557 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7558 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
74ca34ce
DJ
7559
7560 /* Save the size of the packet sent to us by the target. It is used
7561 as a heuristic when determining the max size of packets that the
7562 target can safely receive. */
7563 if (rsa->actual_register_packet_size == 0)
7564 rsa->actual_register_packet_size = buf_len;
7565
7566 /* If this is smaller than we guessed the 'g' packet would be,
7567 update our records. A 'g' reply that doesn't include a register's
7568 value implies either that the register is not available, or that
7569 the 'p' packet must be used. */
7570 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7571 {
9dc193c3 7572 long sizeof_g_packet = buf_len / 2;
74ca34ce 7573
4a22f64d 7574 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7575 {
9dc193c3
LF
7576 long offset = rsa->regs[i].offset;
7577 long reg_size = register_size (gdbarch, i);
7578
74ca34ce
DJ
7579 if (rsa->regs[i].pnum == -1)
7580 continue;
7581
9dc193c3 7582 if (offset >= sizeof_g_packet)
74ca34ce 7583 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
7584 else if (offset + reg_size > sizeof_g_packet)
7585 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 7586 else
74ca34ce 7587 rsa->regs[i].in_g_packet = 1;
b96ec7ac 7588 }
9dc193c3
LF
7589
7590 /* Looks valid enough, we can assume this is the correct length
7591 for a 'g' packet. It's important not to adjust
7592 rsa->sizeof_g_packet if we have truncated registers otherwise
7593 this "if" won't be run the next time the method is called
7594 with a packet of the same size and one of the internal errors
7595 below will trigger instead. */
7596 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 7597 }
b323314b 7598
224c3ddb 7599 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
7600
7601 /* Unimplemented registers read as all bits zero. */
ea9c271d 7602 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 7603
c906108c
SS
7604 /* Reply describes registers byte by byte, each byte encoded as two
7605 hex characters. Suck them all up, then supply them to the
7606 register cacheing/storage mechanism. */
7607
74ca34ce 7608 p = rs->buf;
ea9c271d 7609 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 7610 {
74ca34ce
DJ
7611 if (p[0] == 0 || p[1] == 0)
7612 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7613 internal_error (__FILE__, __LINE__,
9b20d036 7614 _("unexpected end of 'g' packet reply"));
74ca34ce 7615
c906108c 7616 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 7617 regs[i] = 0; /* 'x' */
c906108c
SS
7618 else
7619 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7620 p += 2;
7621 }
7622
a744cf53
MS
7623 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7624 {
7625 struct packet_reg *r = &rsa->regs[i];
9dc193c3 7626 long reg_size = register_size (gdbarch, i);
a744cf53
MS
7627
7628 if (r->in_g_packet)
7629 {
9dc193c3 7630 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
a744cf53
MS
7631 /* This shouldn't happen - we adjusted in_g_packet above. */
7632 internal_error (__FILE__, __LINE__,
9b20d036 7633 _("unexpected end of 'g' packet reply"));
a744cf53
MS
7634 else if (rs->buf[r->offset * 2] == 'x')
7635 {
7636 gdb_assert (r->offset * 2 < strlen (rs->buf));
7637 /* The register isn't available, mark it as such (at
7638 the same time setting the value to zero). */
7639 regcache_raw_supply (regcache, r->regnum, NULL);
7640 }
7641 else
7642 regcache_raw_supply (regcache, r->regnum,
7643 regs + r->offset);
7644 }
7645 }
c906108c
SS
7646}
7647
29709017 7648static void
56be3814 7649fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
7650{
7651 send_g_packet ();
56be3814 7652 process_g_packet (regcache);
29709017
DJ
7653}
7654
e6e4e701
PA
7655/* Make the remote selected traceframe match GDB's selected
7656 traceframe. */
7657
7658static void
7659set_remote_traceframe (void)
7660{
7661 int newnum;
262e1174 7662 struct remote_state *rs = get_remote_state ();
e6e4e701 7663
262e1174 7664 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
7665 return;
7666
7667 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 7668 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
7669
7670 newnum = target_trace_find (tfind_number,
7671 get_traceframe_number (), 0, 0, NULL);
7672
7673 /* Should not happen. If it does, all bets are off. */
7674 if (newnum != get_traceframe_number ())
7675 warning (_("could not set remote traceframe"));
7676}
7677
74ca34ce 7678static void
28439f5e
PA
7679remote_fetch_registers (struct target_ops *ops,
7680 struct regcache *regcache, int regnum)
74ca34ce 7681{
ac7936df 7682 struct gdbarch *gdbarch = regcache->arch ();
5cd63fda 7683 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
74ca34ce
DJ
7684 int i;
7685
e6e4e701 7686 set_remote_traceframe ();
bcc0c096 7687 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7688
7689 if (regnum >= 0)
7690 {
5cd63fda 7691 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 7692
74ca34ce
DJ
7693 gdb_assert (reg != NULL);
7694
7695 /* If this register might be in the 'g' packet, try that first -
7696 we are likely to read more than one register. If this is the
7697 first 'g' packet, we might be overly optimistic about its
7698 contents, so fall back to 'p'. */
7699 if (reg->in_g_packet)
7700 {
56be3814 7701 fetch_registers_using_g (regcache);
74ca34ce
DJ
7702 if (reg->in_g_packet)
7703 return;
7704 }
7705
56be3814 7706 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
7707 return;
7708
7709 /* This register is not available. */
56be3814 7710 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
7711
7712 return;
7713 }
7714
56be3814 7715 fetch_registers_using_g (regcache);
74ca34ce 7716
5cd63fda 7717 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 7718 if (!rsa->regs[i].in_g_packet)
56be3814 7719 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
7720 {
7721 /* This register is not available. */
56be3814 7722 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
7723 }
7724}
7725
c906108c
SS
7726/* Prepare to store registers. Since we may send them all (using a
7727 'G' request), we have to read out the ones we don't want to change
7728 first. */
7729
c5aa993b 7730static void
f32dbf8c 7731remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 7732{
5cd63fda 7733 remote_arch_state *rsa = get_remote_arch_state (regcache->arch ());
cf0e1e0d 7734 int i;
cf0e1e0d 7735
c906108c 7736 /* Make sure the entire registers array is valid. */
4082afcc 7737 switch (packet_support (PACKET_P))
5a2468f5
JM
7738 {
7739 case PACKET_DISABLE:
7740 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 7741 /* Make sure all the necessary registers are cached. */
ac7936df 7742 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 7743 if (rsa->regs[i].in_g_packet)
8e368124 7744 regcache_raw_update (regcache, rsa->regs[i].regnum);
5a2468f5
JM
7745 break;
7746 case PACKET_ENABLE:
7747 break;
7748 }
7749}
7750
ad10f812 7751/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 7752 packet was not recognized. */
5a2468f5
JM
7753
7754static int
1f4437a4
MS
7755store_register_using_P (const struct regcache *regcache,
7756 struct packet_reg *reg)
5a2468f5 7757{
ac7936df 7758 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 7759 struct remote_state *rs = get_remote_state ();
5a2468f5 7760 /* Try storing a single register. */
6d820c5c 7761 char *buf = rs->buf;
9890e433 7762 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 7763 char *p;
5a2468f5 7764
4082afcc 7765 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
7766 return 0;
7767
7768 if (reg->pnum == -1)
7769 return 0;
7770
ea9c271d 7771 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 7772 p = buf + strlen (buf);
56be3814 7773 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 7774 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
7775 putpkt (rs->buf);
7776 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 7777
74ca34ce
DJ
7778 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7779 {
7780 case PACKET_OK:
7781 return 1;
7782 case PACKET_ERROR:
27a9c0bf
MS
7783 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7784 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
7785 case PACKET_UNKNOWN:
7786 return 0;
7787 default:
7788 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7789 }
c906108c
SS
7790}
7791
23860348
MS
7792/* Store register REGNUM, or all registers if REGNUM == -1, from the
7793 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
7794
7795static void
56be3814 7796store_registers_using_G (const struct regcache *regcache)
c906108c 7797{
d01949b6 7798 struct remote_state *rs = get_remote_state ();
5cd63fda 7799 remote_arch_state *rsa = get_remote_arch_state (regcache->arch ());
cfd77fa1 7800 gdb_byte *regs;
c906108c
SS
7801 char *p;
7802
193cb69f
AC
7803 /* Extract all the registers in the regcache copying them into a
7804 local buffer. */
7805 {
b323314b 7806 int i;
a744cf53 7807
224c3ddb 7808 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 7809 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 7810 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 7811 {
ea9c271d 7812 struct packet_reg *r = &rsa->regs[i];
a744cf53 7813
b323314b 7814 if (r->in_g_packet)
56be3814 7815 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
7816 }
7817 }
c906108c
SS
7818
7819 /* Command describes registers byte by byte,
7820 each byte encoded as two hex characters. */
6d820c5c 7821 p = rs->buf;
193cb69f 7822 *p++ = 'G';
74ca34ce 7823 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
7824 putpkt (rs->buf);
7825 getpkt (&rs->buf, &rs->buf_size, 0);
7826 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
7827 error (_("Could not write registers; remote failure reply '%s'"),
7828 rs->buf);
c906108c 7829}
74ca34ce
DJ
7830
7831/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7832 of the register cache buffer. FIXME: ignores errors. */
7833
7834static void
28439f5e
PA
7835remote_store_registers (struct target_ops *ops,
7836 struct regcache *regcache, int regnum)
74ca34ce 7837{
5cd63fda
PA
7838 struct gdbarch *gdbarch = regcache->arch ();
7839 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
74ca34ce
DJ
7840 int i;
7841
e6e4e701 7842 set_remote_traceframe ();
bcc0c096 7843 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7844
7845 if (regnum >= 0)
7846 {
5cd63fda 7847 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 7848
74ca34ce
DJ
7849 gdb_assert (reg != NULL);
7850
7851 /* Always prefer to store registers using the 'P' packet if
7852 possible; we often change only a small number of registers.
7853 Sometimes we change a larger number; we'd need help from a
7854 higher layer to know to use 'G'. */
56be3814 7855 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
7856 return;
7857
7858 /* For now, don't complain if we have no way to write the
7859 register. GDB loses track of unavailable registers too
7860 easily. Some day, this may be an error. We don't have
0df8b418 7861 any way to read the register, either... */
74ca34ce
DJ
7862 if (!reg->in_g_packet)
7863 return;
7864
56be3814 7865 store_registers_using_G (regcache);
74ca34ce
DJ
7866 return;
7867 }
7868
56be3814 7869 store_registers_using_G (regcache);
74ca34ce 7870
5cd63fda 7871 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 7872 if (!rsa->regs[i].in_g_packet)
56be3814 7873 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
7874 /* See above for why we do not issue an error here. */
7875 continue;
7876}
c906108c
SS
7877\f
7878
7879/* Return the number of hex digits in num. */
7880
7881static int
fba45db2 7882hexnumlen (ULONGEST num)
c906108c
SS
7883{
7884 int i;
7885
7886 for (i = 0; num != 0; i++)
7887 num >>= 4;
7888
325fac50 7889 return std::max (i, 1);
c906108c
SS
7890}
7891
2df3850c 7892/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
7893
7894static int
fba45db2 7895hexnumstr (char *buf, ULONGEST num)
c906108c 7896{
c906108c 7897 int len = hexnumlen (num);
a744cf53 7898
2df3850c
JM
7899 return hexnumnstr (buf, num, len);
7900}
7901
c906108c 7902
2df3850c 7903/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 7904
2df3850c 7905static int
fba45db2 7906hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
7907{
7908 int i;
7909
7910 buf[width] = '\0';
7911
7912 for (i = width - 1; i >= 0; i--)
c906108c 7913 {
c5aa993b 7914 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
7915 num >>= 4;
7916 }
7917
2df3850c 7918 return width;
c906108c
SS
7919}
7920
23860348 7921/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
7922
7923static CORE_ADDR
fba45db2 7924remote_address_masked (CORE_ADDR addr)
c906108c 7925{
883b9c6c 7926 unsigned int address_size = remote_address_size;
a744cf53 7927
911c95a5
UW
7928 /* If "remoteaddresssize" was not set, default to target address size. */
7929 if (!address_size)
f5656ead 7930 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
7931
7932 if (address_size > 0
7933 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
7934 {
7935 /* Only create a mask when that mask can safely be constructed
23860348 7936 in a ULONGEST variable. */
c906108c 7937 ULONGEST mask = 1;
a744cf53 7938
911c95a5 7939 mask = (mask << address_size) - 1;
c906108c
SS
7940 addr &= mask;
7941 }
7942 return addr;
7943}
7944
7945/* Determine whether the remote target supports binary downloading.
7946 This is accomplished by sending a no-op memory write of zero length
7947 to the target at the specified address. It does not suffice to send
23860348
MS
7948 the whole packet, since many stubs strip the eighth bit and
7949 subsequently compute a wrong checksum, which causes real havoc with
7950 remote_write_bytes.
7a292a7a 7951
96baa820 7952 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 7953 clean. In cases like this, the user should clear "remote
23860348 7954 X-packet". */
96baa820 7955
c906108c 7956static void
fba45db2 7957check_binary_download (CORE_ADDR addr)
c906108c 7958{
d01949b6 7959 struct remote_state *rs = get_remote_state ();
24b06219 7960
4082afcc 7961 switch (packet_support (PACKET_X))
c906108c 7962 {
96baa820
JM
7963 case PACKET_DISABLE:
7964 break;
7965 case PACKET_ENABLE:
7966 break;
7967 case PACKET_SUPPORT_UNKNOWN:
7968 {
96baa820 7969 char *p;
802188a7 7970
2e9f7625 7971 p = rs->buf;
96baa820
JM
7972 *p++ = 'X';
7973 p += hexnumstr (p, (ULONGEST) addr);
7974 *p++ = ',';
7975 p += hexnumstr (p, (ULONGEST) 0);
7976 *p++ = ':';
7977 *p = '\0';
802188a7 7978
2e9f7625 7979 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 7980 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 7981
2e9f7625 7982 if (rs->buf[0] == '\0')
96baa820
JM
7983 {
7984 if (remote_debug)
7985 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
7986 "binary downloading NOT "
7987 "supported by target\n");
444abaca 7988 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
7989 }
7990 else
7991 {
7992 if (remote_debug)
7993 fprintf_unfiltered (gdb_stdlog,
64b9b334 7994 "binary downloading supported by target\n");
444abaca 7995 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
7996 }
7997 break;
7998 }
c906108c
SS
7999 }
8000}
8001
124e13d9
SM
8002/* Helper function to resize the payload in order to try to get a good
8003 alignment. We try to write an amount of data such that the next write will
8004 start on an address aligned on REMOTE_ALIGN_WRITES. */
8005
8006static int
8007align_for_efficient_write (int todo, CORE_ADDR memaddr)
8008{
8009 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8010}
8011
c906108c
SS
8012/* Write memory data directly to the remote machine.
8013 This does not inform the data cache; the data cache uses this.
a76d924d 8014 HEADER is the starting part of the packet.
c906108c
SS
8015 MEMADDR is the address in the remote memory space.
8016 MYADDR is the address of the buffer in our space.
124e13d9
SM
8017 LEN_UNITS is the number of addressable units to write.
8018 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8019 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8020 should send data as binary ('X'), or hex-encoded ('M').
8021
8022 The function creates packet of the form
8023 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8024
124e13d9 8025 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8026
8027 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8028 are omitted.
8029
9b409511 8030 Return the transferred status, error or OK (an
124e13d9
SM
8031 'enum target_xfer_status' value). Save the number of addressable units
8032 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8033
8034 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8035 exchange between gdb and the stub could look like (?? in place of the
8036 checksum):
8037
8038 -> $m1000,4#??
8039 <- aaaabbbbccccdddd
8040
8041 -> $M1000,3:eeeeffffeeee#??
8042 <- OK
8043
8044 -> $m1000,4#??
8045 <- eeeeffffeeeedddd */
c906108c 8046
9b409511 8047static enum target_xfer_status
a76d924d 8048remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
124e13d9
SM
8049 const gdb_byte *myaddr, ULONGEST len_units,
8050 int unit_size, ULONGEST *xfered_len_units,
8051 char packet_format, int use_length)
c906108c 8052{
6d820c5c 8053 struct remote_state *rs = get_remote_state ();
cfd77fa1 8054 char *p;
a76d924d
DJ
8055 char *plen = NULL;
8056 int plenlen = 0;
124e13d9
SM
8057 int todo_units;
8058 int units_written;
8059 int payload_capacity_bytes;
8060 int payload_length_bytes;
a76d924d
DJ
8061
8062 if (packet_format != 'X' && packet_format != 'M')
8063 internal_error (__FILE__, __LINE__,
9b20d036 8064 _("remote_write_bytes_aux: bad packet format"));
c906108c 8065
124e13d9 8066 if (len_units == 0)
9b409511 8067 return TARGET_XFER_EOF;
b2182ed2 8068
124e13d9 8069 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8070
6d820c5c
DJ
8071 /* The packet buffer will be large enough for the payload;
8072 get_memory_packet_size ensures this. */
a76d924d 8073 rs->buf[0] = '\0';
c906108c 8074
a257b5bb 8075 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8076 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8077
124e13d9 8078 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8079 if (!use_length)
0df8b418 8080 /* The comma won't be used. */
124e13d9
SM
8081 payload_capacity_bytes += 1;
8082 payload_capacity_bytes -= strlen (header);
8083 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8084
a76d924d 8085 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8086
a76d924d
DJ
8087 strcat (rs->buf, header);
8088 p = rs->buf + strlen (header);
8089
8090 /* Compute a best guess of the number of bytes actually transfered. */
8091 if (packet_format == 'X')
c906108c 8092 {
23860348 8093 /* Best guess at number of bytes that will fit. */
325fac50
PA
8094 todo_units = std::min (len_units,
8095 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8096 if (use_length)
124e13d9 8097 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8098 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8099 }
8100 else
8101 {
124e13d9 8102 /* Number of bytes that will fit. */
325fac50
PA
8103 todo_units
8104 = std::min (len_units,
8105 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8106 if (use_length)
124e13d9 8107 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8108 todo_units = std::min (todo_units,
8109 (payload_capacity_bytes / unit_size) / 2);
917317f4 8110 }
a76d924d 8111
124e13d9 8112 if (todo_units <= 0)
3de11b2e 8113 internal_error (__FILE__, __LINE__,
405f8e94 8114 _("minimum packet size too small to write data"));
802188a7 8115
6765f3e5
DJ
8116 /* If we already need another packet, then try to align the end
8117 of this packet to a useful boundary. */
124e13d9
SM
8118 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8119 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8120
a257b5bb 8121 /* Append "<memaddr>". */
917317f4
JM
8122 memaddr = remote_address_masked (memaddr);
8123 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8124
a76d924d
DJ
8125 if (use_length)
8126 {
8127 /* Append ",". */
8128 *p++ = ',';
802188a7 8129
124e13d9
SM
8130 /* Append the length and retain its location and size. It may need to be
8131 adjusted once the packet body has been created. */
a76d924d 8132 plen = p;
124e13d9 8133 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8134 p += plenlen;
8135 }
a257b5bb
AC
8136
8137 /* Append ":". */
917317f4
JM
8138 *p++ = ':';
8139 *p = '\0';
802188a7 8140
a257b5bb 8141 /* Append the packet body. */
a76d924d 8142 if (packet_format == 'X')
917317f4 8143 {
917317f4
JM
8144 /* Binary mode. Send target system values byte by byte, in
8145 increasing byte addresses. Only escape certain critical
8146 characters. */
124e13d9
SM
8147 payload_length_bytes =
8148 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8149 &units_written, payload_capacity_bytes);
6765f3e5 8150
124e13d9 8151 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8152 a second try to keep the end of the packet aligned. Don't do
8153 this if the packet is tiny. */
124e13d9 8154 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8155 {
124e13d9
SM
8156 int new_todo_units;
8157
8158 new_todo_units = align_for_efficient_write (units_written, memaddr);
8159
8160 if (new_todo_units != units_written)
8161 payload_length_bytes =
8162 remote_escape_output (myaddr, new_todo_units, unit_size,
8163 (gdb_byte *) p, &units_written,
8164 payload_capacity_bytes);
6765f3e5
DJ
8165 }
8166
124e13d9
SM
8167 p += payload_length_bytes;
8168 if (use_length && units_written < todo_units)
c906108c 8169 {
802188a7 8170 /* Escape chars have filled up the buffer prematurely,
124e13d9 8171 and we have actually sent fewer units than planned.
917317f4
JM
8172 Fix-up the length field of the packet. Use the same
8173 number of characters as before. */
124e13d9
SM
8174 plen += hexnumnstr (plen, (ULONGEST) units_written,
8175 plenlen);
917317f4 8176 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8177 }
a76d924d
DJ
8178 }
8179 else
8180 {
917317f4
JM
8181 /* Normal mode: Send target system values byte by byte, in
8182 increasing byte addresses. Each byte is encoded as a two hex
8183 value. */
124e13d9
SM
8184 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8185 units_written = todo_units;
c906108c 8186 }
802188a7 8187
2e9f7625 8188 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8189 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8190
2e9f7625 8191 if (rs->buf[0] == 'E')
00d84524 8192 return TARGET_XFER_E_IO;
802188a7 8193
124e13d9
SM
8194 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8195 send fewer units than we'd planned. */
8196 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8197 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8198}
8199
a76d924d
DJ
8200/* Write memory data directly to the remote machine.
8201 This does not inform the data cache; the data cache uses this.
8202 MEMADDR is the address in the remote memory space.
8203 MYADDR is the address of the buffer in our space.
8204 LEN is the number of bytes.
8205
9b409511
YQ
8206 Return the transferred status, error or OK (an
8207 'enum target_xfer_status' value). Save the number of bytes
8208 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8209
9b409511
YQ
8210static enum target_xfer_status
8211remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
124e13d9 8212 int unit_size, ULONGEST *xfered_len)
a76d924d 8213{
a121b7c1 8214 const char *packet_format = NULL;
a76d924d
DJ
8215
8216 /* Check whether the target supports binary download. */
8217 check_binary_download (memaddr);
8218
4082afcc 8219 switch (packet_support (PACKET_X))
a76d924d
DJ
8220 {
8221 case PACKET_ENABLE:
8222 packet_format = "X";
8223 break;
8224 case PACKET_DISABLE:
8225 packet_format = "M";
8226 break;
8227 case PACKET_SUPPORT_UNKNOWN:
8228 internal_error (__FILE__, __LINE__,
8229 _("remote_write_bytes: bad internal state"));
8230 default:
8231 internal_error (__FILE__, __LINE__, _("bad switch"));
8232 }
8233
8234 return remote_write_bytes_aux (packet_format,
124e13d9 8235 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8236 packet_format[0], 1);
a76d924d
DJ
8237}
8238
9217e74e
YQ
8239/* Read memory data directly from the remote machine.
8240 This does not use the data cache; the data cache uses this.
8241 MEMADDR is the address in the remote memory space.
8242 MYADDR is the address of the buffer in our space.
124e13d9
SM
8243 LEN_UNITS is the number of addressable memory units to read..
8244 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8245
8246 Return the transferred status, error or OK (an
8247 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8248 transferred in *XFERED_LEN_UNITS.
8249
8250 See the comment of remote_write_bytes_aux for an example of
8251 memory read/write exchange between gdb and the stub. */
9217e74e
YQ
8252
8253static enum target_xfer_status
124e13d9
SM
8254remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
8255 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8256{
8257 struct remote_state *rs = get_remote_state ();
124e13d9 8258 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8259 char *p;
124e13d9
SM
8260 int todo_units;
8261 int decoded_bytes;
9217e74e 8262
124e13d9 8263 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8264 /* The packet buffer will be large enough for the payload;
8265 get_memory_packet_size ensures this. */
8266
124e13d9 8267 /* Number of units that will fit. */
325fac50
PA
8268 todo_units = std::min (len_units,
8269 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8270
8271 /* Construct "m"<memaddr>","<len>". */
8272 memaddr = remote_address_masked (memaddr);
8273 p = rs->buf;
8274 *p++ = 'm';
8275 p += hexnumstr (p, (ULONGEST) memaddr);
8276 *p++ = ',';
124e13d9 8277 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8278 *p = '\0';
8279 putpkt (rs->buf);
8280 getpkt (&rs->buf, &rs->buf_size, 0);
8281 if (rs->buf[0] == 'E'
8282 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8283 && rs->buf[3] == '\0')
8284 return TARGET_XFER_E_IO;
8285 /* Reply describes memory byte by byte, each byte encoded as two hex
8286 characters. */
8287 p = rs->buf;
124e13d9 8288 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8289 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8290 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8291 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8292}
8293
b55fbac4
YQ
8294/* Using the set of read-only target sections of remote, read live
8295 read-only memory.
8acf9577
YQ
8296
8297 For interface/parameters/return description see target.h,
8298 to_xfer_partial. */
8299
8300static enum target_xfer_status
b55fbac4
YQ
8301remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
8302 ULONGEST memaddr, ULONGEST len,
124e13d9 8303 int unit_size, ULONGEST *xfered_len)
8acf9577
YQ
8304{
8305 struct target_section *secp;
8306 struct target_section_table *table;
8307
8308 secp = target_section_by_addr (ops, memaddr);
8309 if (secp != NULL
8310 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8311 secp->the_bfd_section)
8312 & SEC_READONLY))
8313 {
8314 struct target_section *p;
8315 ULONGEST memend = memaddr + len;
8316
8317 table = target_get_section_table (ops);
8318
8319 for (p = table->sections; p < table->sections_end; p++)
8320 {
8321 if (memaddr >= p->addr)
8322 {
8323 if (memend <= p->endaddr)
8324 {
8325 /* Entire transfer is within this section. */
124e13d9 8326 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8327 xfered_len);
8acf9577
YQ
8328 }
8329 else if (memaddr >= p->endaddr)
8330 {
8331 /* This section ends before the transfer starts. */
8332 continue;
8333 }
8334 else
8335 {
8336 /* This section overlaps the transfer. Just do half. */
8337 len = p->endaddr - memaddr;
124e13d9 8338 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8339 xfered_len);
8acf9577
YQ
8340 }
8341 }
8342 }
8343 }
8344
8345 return TARGET_XFER_EOF;
8346}
8347
9217e74e
YQ
8348/* Similar to remote_read_bytes_1, but it reads from the remote stub
8349 first if the requested memory is unavailable in traceframe.
8350 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8351
9b409511 8352static enum target_xfer_status
8acf9577 8353remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
124e13d9
SM
8354 gdb_byte *myaddr, ULONGEST len, int unit_size,
8355 ULONGEST *xfered_len)
c906108c 8356{
6b6aa828 8357 if (len == 0)
96c4f946 8358 return TARGET_XFER_EOF;
b2182ed2 8359
8acf9577
YQ
8360 if (get_traceframe_number () != -1)
8361 {
a79b1bc6 8362 std::vector<mem_range> available;
8acf9577
YQ
8363
8364 /* If we fail to get the set of available memory, then the
8365 target does not support querying traceframe info, and so we
8366 attempt reading from the traceframe anyway (assuming the
8367 target implements the old QTro packet then). */
8368 if (traceframe_available_memory (&available, memaddr, len))
8369 {
a79b1bc6 8370 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8371 {
8372 enum target_xfer_status res;
8373
8374 /* Don't read into the traceframe's available
8375 memory. */
a79b1bc6 8376 if (!available.empty ())
8acf9577
YQ
8377 {
8378 LONGEST oldlen = len;
8379
a79b1bc6 8380 len = available[0].start - memaddr;
8acf9577
YQ
8381 gdb_assert (len <= oldlen);
8382 }
8383
8acf9577 8384 /* This goes through the topmost target again. */
b55fbac4 8385 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
124e13d9 8386 len, unit_size, xfered_len);
8acf9577
YQ
8387 if (res == TARGET_XFER_OK)
8388 return TARGET_XFER_OK;
8389 else
8390 {
8391 /* No use trying further, we know some memory starting
8392 at MEMADDR isn't available. */
8393 *xfered_len = len;
92ffd475
PC
8394 return (*xfered_len != 0) ?
8395 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8396 }
8397 }
8398
8399 /* Don't try to read more than how much is available, in
8400 case the target implements the deprecated QTro packet to
8401 cater for older GDBs (the target's knowledge of read-only
8402 sections may be outdated by now). */
a79b1bc6 8403 len = available[0].length;
8acf9577
YQ
8404 }
8405 }
8406
124e13d9 8407 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8408}
74531fed 8409
c906108c 8410\f
c906108c 8411
a76d924d
DJ
8412/* Sends a packet with content determined by the printf format string
8413 FORMAT and the remaining arguments, then gets the reply. Returns
8414 whether the packet was a success, a failure, or unknown. */
8415
77b64a49
PA
8416static enum packet_result remote_send_printf (const char *format, ...)
8417 ATTRIBUTE_PRINTF (1, 2);
8418
2c0b251b 8419static enum packet_result
a76d924d
DJ
8420remote_send_printf (const char *format, ...)
8421{
8422 struct remote_state *rs = get_remote_state ();
8423 int max_size = get_remote_packet_size ();
a76d924d 8424 va_list ap;
a744cf53 8425
a76d924d
DJ
8426 va_start (ap, format);
8427
8428 rs->buf[0] = '\0';
8429 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 8430 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8431
8432 if (putpkt (rs->buf) < 0)
8433 error (_("Communication problem with target."));
8434
8435 rs->buf[0] = '\0';
8436 getpkt (&rs->buf, &rs->buf_size, 0);
8437
8438 return packet_check_result (rs->buf);
8439}
8440
a76d924d
DJ
8441/* Flash writing can take quite some time. We'll set
8442 effectively infinite timeout for flash operations.
8443 In future, we'll need to decide on a better approach. */
8444static const int remote_flash_timeout = 1000;
8445
8446static void
8447remote_flash_erase (struct target_ops *ops,
8448 ULONGEST address, LONGEST length)
8449{
f5656ead 8450 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8451 enum packet_result ret;
2ec845e7
TT
8452 scoped_restore restore_timeout
8453 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8454
8455 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8456 phex (address, addr_size),
a76d924d
DJ
8457 phex (length, 4));
8458 switch (ret)
8459 {
8460 case PACKET_UNKNOWN:
8461 error (_("Remote target does not support flash erase"));
8462 case PACKET_ERROR:
8463 error (_("Error erasing flash with vFlashErase packet"));
8464 default:
8465 break;
8466 }
a76d924d
DJ
8467}
8468
9b409511
YQ
8469static enum target_xfer_status
8470remote_flash_write (struct target_ops *ops, ULONGEST address,
8471 ULONGEST length, ULONGEST *xfered_len,
8472 const gdb_byte *data)
a76d924d 8473{
2ec845e7
TT
8474 scoped_restore restore_timeout
8475 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8476 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8477 xfered_len,'X', 0);
a76d924d
DJ
8478}
8479
8480static void
8481remote_flash_done (struct target_ops *ops)
8482{
a76d924d 8483 int ret;
a76d924d 8484
2ec845e7
TT
8485 scoped_restore restore_timeout
8486 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8487
a76d924d 8488 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8489
8490 switch (ret)
8491 {
8492 case PACKET_UNKNOWN:
8493 error (_("Remote target does not support vFlashDone"));
8494 case PACKET_ERROR:
8495 error (_("Error finishing flash operation"));
8496 default:
8497 break;
8498 }
8499}
8500
c906108c 8501static void
fba45db2 8502remote_files_info (struct target_ops *ignore)
c906108c
SS
8503{
8504 puts_filtered ("Debugging a target over a serial line.\n");
8505}
8506\f
8507/* Stuff for dealing with the packets which are part of this protocol.
8508 See comment at top of file for details. */
8509
1927e618
PA
8510/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8511 error to higher layers. Called when a serial error is detected.
8512 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8513 the system error message for errno at function entry and final dot
8514 for output compatibility with throw_perror_with_name. */
1927e618
PA
8515
8516static void
8517unpush_and_perror (const char *string)
8518{
d6cb50a2 8519 int saved_errno = errno;
1927e618
PA
8520
8521 remote_unpush_target ();
d6cb50a2
JK
8522 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8523 safe_strerror (saved_errno));
1927e618
PA
8524}
8525
048094ac
PA
8526/* Read a single character from the remote end. The current quit
8527 handler is overridden to avoid quitting in the middle of packet
8528 sequence, as that would break communication with the remote server.
8529 See remote_serial_quit_handler for more detail. */
c906108c
SS
8530
8531static int
fba45db2 8532readchar (int timeout)
c906108c
SS
8533{
8534 int ch;
5d93a237 8535 struct remote_state *rs = get_remote_state ();
048094ac 8536
2ec845e7
TT
8537 {
8538 scoped_restore restore_quit
8539 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
c906108c 8540
2ec845e7 8541 rs->got_ctrlc_during_io = 0;
c906108c 8542
2ec845e7 8543 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8544
2ec845e7
TT
8545 if (rs->got_ctrlc_during_io)
8546 set_quit_flag ();
8547 }
048094ac 8548
2acceee2 8549 if (ch >= 0)
0876f84a 8550 return ch;
2acceee2
JM
8551
8552 switch ((enum serial_rc) ch)
c906108c
SS
8553 {
8554 case SERIAL_EOF:
78a095c3 8555 remote_unpush_target ();
598d3636 8556 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8557 /* no return */
c906108c 8558 case SERIAL_ERROR:
1927e618
PA
8559 unpush_and_perror (_("Remote communication error. "
8560 "Target disconnected."));
2acceee2 8561 /* no return */
c906108c 8562 case SERIAL_TIMEOUT:
2acceee2 8563 break;
c906108c 8564 }
2acceee2 8565 return ch;
c906108c
SS
8566}
8567
c33e31fd 8568/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8569 writing fails. The current quit handler is overridden to avoid
8570 quitting in the middle of packet sequence, as that would break
8571 communication with the remote server. See
8572 remote_serial_quit_handler for more detail. */
c33e31fd
PA
8573
8574static void
8575remote_serial_write (const char *str, int len)
8576{
5d93a237 8577 struct remote_state *rs = get_remote_state ();
048094ac 8578
2ec845e7
TT
8579 scoped_restore restore_quit
8580 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
048094ac
PA
8581
8582 rs->got_ctrlc_during_io = 0;
5d93a237
TT
8583
8584 if (serial_write (rs->remote_desc, str, len))
c33e31fd 8585 {
1927e618
PA
8586 unpush_and_perror (_("Remote communication error. "
8587 "Target disconnected."));
c33e31fd 8588 }
048094ac
PA
8589
8590 if (rs->got_ctrlc_during_io)
8591 set_quit_flag ();
c33e31fd
PA
8592}
8593
6d820c5c
DJ
8594/* Send the command in *BUF to the remote machine, and read the reply
8595 into *BUF. Report an error if we get an error reply. Resize
8596 *BUF using xrealloc if necessary to hold the result, and update
8597 *SIZEOF_BUF. */
c906108c
SS
8598
8599static void
6d820c5c
DJ
8600remote_send (char **buf,
8601 long *sizeof_buf)
c906108c 8602{
6d820c5c 8603 putpkt (*buf);
c2d11a7d 8604 getpkt (buf, sizeof_buf, 0);
c906108c 8605
6d820c5c
DJ
8606 if ((*buf)[0] == 'E')
8607 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
8608}
8609
b3ced9ba
PA
8610/* Return a string representing an escaped version of BUF, of len N.
8611 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 8612
b3ced9ba 8613static std::string
6e5abd65
PA
8614escape_buffer (const char *buf, int n)
8615{
d7e74731 8616 string_file stb;
6e5abd65 8617
d7e74731
PA
8618 stb.putstrn (buf, n, '\\');
8619 return std::move (stb.string ());
6e5abd65
PA
8620}
8621
c906108c
SS
8622/* Display a null-terminated packet on stdout, for debugging, using C
8623 string notation. */
8624
8625static void
baa336ce 8626print_packet (const char *buf)
c906108c
SS
8627{
8628 puts_filtered ("\"");
43e526b9 8629 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
8630 puts_filtered ("\"");
8631}
8632
8633int
baa336ce 8634putpkt (const char *buf)
c906108c
SS
8635{
8636 return putpkt_binary (buf, strlen (buf));
8637}
8638
8639/* Send a packet to the remote machine, with error checking. The data
23860348 8640 of the packet is in BUF. The string in BUF can be at most
ea9c271d 8641 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
8642 and for a possible /0 if we are debugging (remote_debug) and want
8643 to print the sent packet as a string. */
c906108c
SS
8644
8645static int
baa336ce 8646putpkt_binary (const char *buf, int cnt)
c906108c 8647{
2d717e4f 8648 struct remote_state *rs = get_remote_state ();
c906108c
SS
8649 int i;
8650 unsigned char csum = 0;
b80406ac
TT
8651 gdb::def_vector<char> data (cnt + 6);
8652 char *buf2 = data.data ();
085dd6e6 8653
c906108c
SS
8654 int ch;
8655 int tcount = 0;
8656 char *p;
8657
e24a49d8
PA
8658 /* Catch cases like trying to read memory or listing threads while
8659 we're waiting for a stop reply. The remote server wouldn't be
8660 ready to handle this request, so we'd hang and timeout. We don't
8661 have to worry about this in synchronous mode, because in that
8662 case it's not possible to issue a command while the target is
74531fed
PA
8663 running. This is not a problem in non-stop mode, because in that
8664 case, the stub is always ready to process serial input. */
6efcd9a8
PA
8665 if (!target_is_non_stop_p ()
8666 && target_is_async_p ()
8667 && rs->waiting_for_stop_reply)
9597b22a
DE
8668 {
8669 error (_("Cannot execute this command while the target is running.\n"
8670 "Use the \"interrupt\" command to stop the target\n"
8671 "and then try again."));
8672 }
e24a49d8 8673
2d717e4f
DJ
8674 /* We're sending out a new packet. Make sure we don't look at a
8675 stale cached response. */
8676 rs->cached_wait_status = 0;
8677
c906108c
SS
8678 /* Copy the packet into buffer BUF2, encapsulating it
8679 and giving it a checksum. */
8680
c906108c
SS
8681 p = buf2;
8682 *p++ = '$';
8683
8684 for (i = 0; i < cnt; i++)
8685 {
8686 csum += buf[i];
8687 *p++ = buf[i];
8688 }
8689 *p++ = '#';
8690 *p++ = tohex ((csum >> 4) & 0xf);
8691 *p++ = tohex (csum & 0xf);
8692
8693 /* Send it over and over until we get a positive ack. */
8694
8695 while (1)
8696 {
8697 int started_error_output = 0;
8698
8699 if (remote_debug)
8700 {
8701 *p = '\0';
b3ced9ba 8702
6f8976bf
YQ
8703 int len = (int) (p - buf2);
8704
8705 std::string str
8706 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
8707
8708 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
8709
567a3e54
SM
8710 if (len > REMOTE_DEBUG_MAX_CHAR)
8711 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
8712 len - REMOTE_DEBUG_MAX_CHAR);
6f8976bf
YQ
8713
8714 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 8715
0f71a2f6 8716 gdb_flush (gdb_stdlog);
c906108c 8717 }
c33e31fd 8718 remote_serial_write (buf2, p - buf2);
c906108c 8719
a6f3e723
SL
8720 /* If this is a no acks version of the remote protocol, send the
8721 packet and move on. */
8722 if (rs->noack_mode)
8723 break;
8724
74531fed
PA
8725 /* Read until either a timeout occurs (-2) or '+' is read.
8726 Handle any notification that arrives in the mean time. */
c906108c
SS
8727 while (1)
8728 {
8729 ch = readchar (remote_timeout);
8730
c5aa993b 8731 if (remote_debug)
c906108c
SS
8732 {
8733 switch (ch)
8734 {
8735 case '+':
1216fa2c 8736 case '-':
c906108c
SS
8737 case SERIAL_TIMEOUT:
8738 case '$':
74531fed 8739 case '%':
c906108c
SS
8740 if (started_error_output)
8741 {
8742 putchar_unfiltered ('\n');
8743 started_error_output = 0;
8744 }
8745 }
8746 }
8747
8748 switch (ch)
8749 {
8750 case '+':
8751 if (remote_debug)
0f71a2f6 8752 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 8753 return 1;
1216fa2c
AC
8754 case '-':
8755 if (remote_debug)
8756 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 8757 /* FALLTHROUGH */
c906108c 8758 case SERIAL_TIMEOUT:
c5aa993b 8759 tcount++;
c906108c 8760 if (tcount > 3)
b80406ac 8761 return 0;
23860348 8762 break; /* Retransmit buffer. */
c906108c
SS
8763 case '$':
8764 {
40e3f985 8765 if (remote_debug)
2bc416ba 8766 fprintf_unfiltered (gdb_stdlog,
23860348 8767 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
8768 /* It's probably an old response sent because an ACK
8769 was lost. Gobble up the packet and ack it so it
8770 doesn't get retransmitted when we resend this
8771 packet. */
6d820c5c 8772 skip_frame ();
c33e31fd 8773 remote_serial_write ("+", 1);
23860348 8774 continue; /* Now, go look for +. */
c906108c 8775 }
74531fed
PA
8776
8777 case '%':
8778 {
8779 int val;
8780
8781 /* If we got a notification, handle it, and go back to looking
8782 for an ack. */
8783 /* We've found the start of a notification. Now
8784 collect the data. */
8785 val = read_frame (&rs->buf, &rs->buf_size);
8786 if (val >= 0)
8787 {
8788 if (remote_debug)
8789 {
b3ced9ba 8790 std::string str = escape_buffer (rs->buf, val);
6e5abd65 8791
6e5abd65
PA
8792 fprintf_unfiltered (gdb_stdlog,
8793 " Notification received: %s\n",
b3ced9ba 8794 str.c_str ());
74531fed 8795 }
5965e028 8796 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
8797 /* We're in sync now, rewait for the ack. */
8798 tcount = 0;
8799 }
8800 else
8801 {
8802 if (remote_debug)
8803 {
8804 if (!started_error_output)
8805 {
8806 started_error_output = 1;
8807 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8808 }
8809 fputc_unfiltered (ch & 0177, gdb_stdlog);
8810 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8811 }
8812 }
8813 continue;
8814 }
8815 /* fall-through */
c906108c
SS
8816 default:
8817 if (remote_debug)
8818 {
8819 if (!started_error_output)
8820 {
8821 started_error_output = 1;
0f71a2f6 8822 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 8823 }
0f71a2f6 8824 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
8825 }
8826 continue;
8827 }
23860348 8828 break; /* Here to retransmit. */
c906108c
SS
8829 }
8830
8831#if 0
8832 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
8833 able to get out next time we call QUIT, without anything as
8834 violent as interrupt_query. If we want to provide a way out of
8835 here without getting to the next QUIT, it should be based on
8836 hitting ^C twice as in remote_wait. */
c906108c
SS
8837 if (quit_flag)
8838 {
8839 quit_flag = 0;
8840 interrupt_query ();
8841 }
8842#endif
8843 }
a5c0808e 8844
a6f3e723 8845 return 0;
c906108c
SS
8846}
8847
6d820c5c
DJ
8848/* Come here after finding the start of a frame when we expected an
8849 ack. Do our best to discard the rest of this packet. */
8850
8851static void
8852skip_frame (void)
8853{
8854 int c;
8855
8856 while (1)
8857 {
8858 c = readchar (remote_timeout);
8859 switch (c)
8860 {
8861 case SERIAL_TIMEOUT:
8862 /* Nothing we can do. */
8863 return;
8864 case '#':
8865 /* Discard the two bytes of checksum and stop. */
8866 c = readchar (remote_timeout);
8867 if (c >= 0)
8868 c = readchar (remote_timeout);
8869
8870 return;
8871 case '*': /* Run length encoding. */
8872 /* Discard the repeat count. */
8873 c = readchar (remote_timeout);
8874 if (c < 0)
8875 return;
8876 break;
8877 default:
8878 /* A regular character. */
8879 break;
8880 }
8881 }
8882}
8883
c906108c 8884/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
8885 into *BUF, verifying the checksum, length, and handling run-length
8886 compression. NUL terminate the buffer. If there is not enough room,
8887 expand *BUF using xrealloc.
c906108c 8888
c2d11a7d
JM
8889 Returns -1 on error, number of characters in buffer (ignoring the
8890 trailing NULL) on success. (could be extended to return one of the
23860348 8891 SERIAL status indications). */
c2d11a7d
JM
8892
8893static long
6d820c5c
DJ
8894read_frame (char **buf_p,
8895 long *sizeof_buf)
c906108c
SS
8896{
8897 unsigned char csum;
c2d11a7d 8898 long bc;
c906108c 8899 int c;
6d820c5c 8900 char *buf = *buf_p;
a6f3e723 8901 struct remote_state *rs = get_remote_state ();
c906108c
SS
8902
8903 csum = 0;
c2d11a7d 8904 bc = 0;
c906108c
SS
8905
8906 while (1)
8907 {
8908 c = readchar (remote_timeout);
c906108c
SS
8909 switch (c)
8910 {
8911 case SERIAL_TIMEOUT:
8912 if (remote_debug)
0f71a2f6 8913 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 8914 return -1;
c906108c
SS
8915 case '$':
8916 if (remote_debug)
0f71a2f6
JM
8917 fputs_filtered ("Saw new packet start in middle of old one\n",
8918 gdb_stdlog);
23860348 8919 return -1; /* Start a new packet, count retries. */
c906108c
SS
8920 case '#':
8921 {
8922 unsigned char pktcsum;
e1b09194
AC
8923 int check_0 = 0;
8924 int check_1 = 0;
c906108c 8925
c2d11a7d 8926 buf[bc] = '\0';
c906108c 8927
e1b09194
AC
8928 check_0 = readchar (remote_timeout);
8929 if (check_0 >= 0)
8930 check_1 = readchar (remote_timeout);
802188a7 8931
e1b09194
AC
8932 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8933 {
8934 if (remote_debug)
2bc416ba 8935 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 8936 gdb_stdlog);
e1b09194
AC
8937 return -1;
8938 }
8939 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
8940 {
8941 if (remote_debug)
2bc416ba 8942 fputs_filtered ("Communication error in checksum\n",
23860348 8943 gdb_stdlog);
40e3f985
FN
8944 return -1;
8945 }
c906108c 8946
a6f3e723
SL
8947 /* Don't recompute the checksum; with no ack packets we
8948 don't have any way to indicate a packet retransmission
8949 is necessary. */
8950 if (rs->noack_mode)
8951 return bc;
8952
e1b09194 8953 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 8954 if (csum == pktcsum)
c2d11a7d 8955 return bc;
c906108c 8956
c5aa993b 8957 if (remote_debug)
c906108c 8958 {
b3ced9ba 8959 std::string str = escape_buffer (buf, bc);
6e5abd65 8960
6e5abd65 8961 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8962 "Bad checksum, sentsum=0x%x, "
8963 "csum=0x%x, buf=%s\n",
b3ced9ba 8964 pktcsum, csum, str.c_str ());
c906108c 8965 }
c2d11a7d 8966 /* Number of characters in buffer ignoring trailing
23860348 8967 NULL. */
c2d11a7d 8968 return -1;
c906108c 8969 }
23860348 8970 case '*': /* Run length encoding. */
c2c6d25f
JM
8971 {
8972 int repeat;
c906108c 8973
a744cf53 8974 csum += c;
b4501125
AC
8975 c = readchar (remote_timeout);
8976 csum += c;
23860348 8977 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 8978
23860348 8979 /* The character before ``*'' is repeated. */
c2d11a7d 8980
6d820c5c 8981 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 8982 {
6d820c5c
DJ
8983 if (bc + repeat - 1 >= *sizeof_buf - 1)
8984 {
8985 /* Make some more room in the buffer. */
8986 *sizeof_buf += repeat;
224c3ddb 8987 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
8988 buf = *buf_p;
8989 }
8990
c2d11a7d
JM
8991 memset (&buf[bc], buf[bc - 1], repeat);
8992 bc += repeat;
c2c6d25f
JM
8993 continue;
8994 }
8995
c2d11a7d 8996 buf[bc] = '\0';
6d820c5c 8997 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 8998 return -1;
c2c6d25f 8999 }
c906108c 9000 default:
6d820c5c 9001 if (bc >= *sizeof_buf - 1)
c906108c 9002 {
6d820c5c
DJ
9003 /* Make some more room in the buffer. */
9004 *sizeof_buf *= 2;
224c3ddb 9005 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 9006 buf = *buf_p;
c906108c
SS
9007 }
9008
6d820c5c
DJ
9009 buf[bc++] = c;
9010 csum += c;
9011 continue;
c906108c
SS
9012 }
9013 }
9014}
9015
9016/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9017 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9018 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9019 rather than timing out; this is used (in synchronous mode) to wait
9020 for a target that is is executing user code to stop. */
d9fcf2fb
JM
9021/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9022 don't have to change all the calls to getpkt to deal with the
9023 return value, because at the moment I don't know what the right
23860348 9024 thing to do it for those. */
c906108c 9025void
6d820c5c
DJ
9026getpkt (char **buf,
9027 long *sizeof_buf,
c2d11a7d 9028 int forever)
d9fcf2fb 9029{
54887903 9030 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
9031}
9032
9033
9034/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9035 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9036 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9037 rather than timing out; this is used (in synchronous mode) to wait
9038 for a target that is is executing user code to stop. If FOREVER ==
9039 0, this function is allowed to time out gracefully and return an
74531fed
PA
9040 indication of this to the caller. Otherwise return the number of
9041 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
9042 enough reason to return to the caller. *IS_NOTIF is an output
9043 boolean that indicates whether *BUF holds a notification or not
9044 (a regular packet). */
74531fed 9045
3172dc30 9046static int
74531fed 9047getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 9048 int expecting_notif, int *is_notif)
c906108c 9049{
2d717e4f 9050 struct remote_state *rs = get_remote_state ();
c906108c
SS
9051 int c;
9052 int tries;
9053 int timeout;
df4b58fe 9054 int val = -1;
c906108c 9055
2d717e4f
DJ
9056 /* We're reading a new response. Make sure we don't look at a
9057 previously cached response. */
9058 rs->cached_wait_status = 0;
9059
6d820c5c 9060 strcpy (*buf, "timeout");
c906108c
SS
9061
9062 if (forever)
74531fed
PA
9063 timeout = watchdog > 0 ? watchdog : -1;
9064 else if (expecting_notif)
9065 timeout = 0; /* There should already be a char in the buffer. If
9066 not, bail out. */
c906108c
SS
9067 else
9068 timeout = remote_timeout;
9069
9070#define MAX_TRIES 3
9071
74531fed
PA
9072 /* Process any number of notifications, and then return when
9073 we get a packet. */
9074 for (;;)
c906108c 9075 {
d9c43928 9076 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9077 times. */
9078 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9079 {
74531fed
PA
9080 /* This can loop forever if the remote side sends us
9081 characters continuously, but if it pauses, we'll get
9082 SERIAL_TIMEOUT from readchar because of timeout. Then
9083 we'll count that as a retry.
9084
9085 Note that even when forever is set, we will only wait
9086 forever prior to the start of a packet. After that, we
9087 expect characters to arrive at a brisk pace. They should
9088 show up within remote_timeout intervals. */
9089 do
9090 c = readchar (timeout);
9091 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9092
9093 if (c == SERIAL_TIMEOUT)
9094 {
74531fed
PA
9095 if (expecting_notif)
9096 return -1; /* Don't complain, it's normal to not get
9097 anything in this case. */
9098
23860348 9099 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9100 {
78a095c3 9101 remote_unpush_target ();
598d3636
JK
9102 throw_error (TARGET_CLOSE_ERROR,
9103 _("Watchdog timeout has expired. "
9104 "Target detached."));
c906108c 9105 }
c906108c 9106 if (remote_debug)
0f71a2f6 9107 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9108 }
74531fed
PA
9109 else
9110 {
9111 /* We've found the start of a packet or notification.
9112 Now collect the data. */
9113 val = read_frame (buf, sizeof_buf);
9114 if (val >= 0)
9115 break;
9116 }
9117
c33e31fd 9118 remote_serial_write ("-", 1);
c906108c 9119 }
c906108c 9120
74531fed
PA
9121 if (tries > MAX_TRIES)
9122 {
9123 /* We have tried hard enough, and just can't receive the
9124 packet/notification. Give up. */
9125 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9126
74531fed
PA
9127 /* Skip the ack char if we're in no-ack mode. */
9128 if (!rs->noack_mode)
c33e31fd 9129 remote_serial_write ("+", 1);
74531fed
PA
9130 return -1;
9131 }
c906108c 9132
74531fed
PA
9133 /* If we got an ordinary packet, return that to our caller. */
9134 if (c == '$')
c906108c
SS
9135 {
9136 if (remote_debug)
43e526b9 9137 {
6f8976bf
YQ
9138 std::string str
9139 = escape_buffer (*buf,
9140 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9141
9142 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9143 str.c_str ());
9144
567a3e54
SM
9145 if (val > REMOTE_DEBUG_MAX_CHAR)
9146 fprintf_unfiltered (gdb_stdlog, "[%d bytes omitted]",
9147 val - REMOTE_DEBUG_MAX_CHAR);
6e5abd65 9148
6f8976bf 9149 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9150 }
a6f3e723
SL
9151
9152 /* Skip the ack char if we're in no-ack mode. */
9153 if (!rs->noack_mode)
c33e31fd 9154 remote_serial_write ("+", 1);
fee9eda9
YQ
9155 if (is_notif != NULL)
9156 *is_notif = 0;
0876f84a 9157 return val;
c906108c
SS
9158 }
9159
74531fed
PA
9160 /* If we got a notification, handle it, and go back to looking
9161 for a packet. */
9162 else
9163 {
9164 gdb_assert (c == '%');
9165
9166 if (remote_debug)
9167 {
b3ced9ba 9168 std::string str = escape_buffer (*buf, val);
6e5abd65 9169
6e5abd65
PA
9170 fprintf_unfiltered (gdb_stdlog,
9171 " Notification received: %s\n",
b3ced9ba 9172 str.c_str ());
74531fed 9173 }
fee9eda9
YQ
9174 if (is_notif != NULL)
9175 *is_notif = 1;
c906108c 9176
5965e028 9177 handle_notification (rs->notif_state, *buf);
c906108c 9178
74531fed 9179 /* Notifications require no acknowledgement. */
a6f3e723 9180
74531fed 9181 if (expecting_notif)
fee9eda9 9182 return val;
74531fed
PA
9183 }
9184 }
9185}
9186
9187static int
9188getpkt_sane (char **buf, long *sizeof_buf, int forever)
9189{
fee9eda9 9190 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
9191}
9192
9193static int
fee9eda9
YQ
9194getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9195 int *is_notif)
74531fed 9196{
fee9eda9
YQ
9197 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9198 is_notif);
c906108c 9199}
74531fed 9200
cbb8991c
DB
9201/* Check whether EVENT is a fork event for the process specified
9202 by the pid passed in DATA, and if it is, kill the fork child. */
9203
9204static int
9205kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
9206 QUEUE_ITER (stop_reply_p) *iter,
9207 stop_reply_p event,
9208 void *data)
9209{
19ba03f4 9210 struct queue_iter_param *param = (struct queue_iter_param *) data;
cbb8991c
DB
9211 int parent_pid = *(int *) param->input;
9212
9213 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
9214 {
9215 struct remote_state *rs = get_remote_state ();
9216 int child_pid = ptid_get_pid (event->ws.value.related_pid);
9217 int res;
9218
9219 res = remote_vkill (child_pid, rs);
9220 if (res != 0)
9221 error (_("Can't kill fork child process %d"), child_pid);
9222 }
9223
9224 return 1;
9225}
9226
9227/* Kill any new fork children of process PID that haven't been
9228 processed by follow_fork. */
9229
9230static void
9231kill_new_fork_children (int pid, struct remote_state *rs)
9232{
9233 struct thread_info *thread;
9234 struct notif_client *notif = &notif_client_stop;
9235 struct queue_iter_param param;
9236
9237 /* Kill the fork child threads of any threads in process PID
9238 that are stopped at a fork event. */
9239 ALL_NON_EXITED_THREADS (thread)
9240 {
9241 struct target_waitstatus *ws = &thread->pending_follow;
9242
9243 if (is_pending_fork_parent (ws, pid, thread->ptid))
9244 {
9245 struct remote_state *rs = get_remote_state ();
9246 int child_pid = ptid_get_pid (ws->value.related_pid);
9247 int res;
9248
9249 res = remote_vkill (child_pid, rs);
9250 if (res != 0)
9251 error (_("Can't kill fork child process %d"), child_pid);
9252 }
9253 }
9254
9255 /* Check for any pending fork events (not reported or processed yet)
9256 in process PID and kill those fork child threads as well. */
9257 remote_notif_get_pending_events (notif);
9258 param.input = &pid;
9259 param.output = NULL;
9260 QUEUE_iterate (stop_reply_p, stop_reply_queue,
9261 kill_child_of_pending_fork, &param);
9262}
9263
c906108c 9264\f
8020350c
DB
9265/* Target hook to kill the current inferior. */
9266
c906108c 9267static void
7d85a9c0 9268remote_kill (struct target_ops *ops)
43ff13b4 9269{
8020350c
DB
9270 int res = -1;
9271 int pid = ptid_get_pid (inferior_ptid);
9272 struct remote_state *rs = get_remote_state ();
0fdf84ca 9273
8020350c 9274 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9275 {
8020350c
DB
9276 /* If we're stopped while forking and we haven't followed yet,
9277 kill the child task. We need to do this before killing the
9278 parent task because if this is a vfork then the parent will
9279 be sleeping. */
9280 kill_new_fork_children (pid, rs);
9281
9282 res = remote_vkill (pid, rs);
9283 if (res == 0)
0fdf84ca 9284 {
bc1e6c81 9285 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9286 return;
9287 }
8020350c 9288 }
0fdf84ca 9289
8020350c
DB
9290 /* If we are in 'target remote' mode and we are killing the only
9291 inferior, then we will tell gdbserver to exit and unpush the
9292 target. */
9293 if (res == -1 && !remote_multi_process_p (rs)
9294 && number_of_live_inferiors () == 1)
9295 {
9296 remote_kill_k ();
9297
9298 /* We've killed the remote end, we get to mourn it. If we are
9299 not in extended mode, mourning the inferior also unpushes
9300 remote_ops from the target stack, which closes the remote
9301 connection. */
bc1e6c81 9302 target_mourn_inferior (inferior_ptid);
8020350c
DB
9303
9304 return;
0fdf84ca 9305 }
43ff13b4 9306
8020350c 9307 error (_("Can't kill process"));
43ff13b4
JM
9308}
9309
8020350c
DB
9310/* Send a kill request to the target using the 'vKill' packet. */
9311
82f73884
PA
9312static int
9313remote_vkill (int pid, struct remote_state *rs)
9314{
4082afcc 9315 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9316 return -1;
9317
9318 /* Tell the remote target to detach. */
bba74b36 9319 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
9320 putpkt (rs->buf);
9321 getpkt (&rs->buf, &rs->buf_size, 0);
9322
4082afcc
PA
9323 switch (packet_ok (rs->buf,
9324 &remote_protocol_packets[PACKET_vKill]))
9325 {
9326 case PACKET_OK:
9327 return 0;
9328 case PACKET_ERROR:
9329 return 1;
9330 case PACKET_UNKNOWN:
9331 return -1;
9332 default:
9333 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9334 }
82f73884
PA
9335}
9336
8020350c
DB
9337/* Send a kill request to the target using the 'k' packet. */
9338
82f73884 9339static void
8020350c 9340remote_kill_k (void)
82f73884 9341{
8020350c
DB
9342 /* Catch errors so the user can quit from gdb even when we
9343 aren't on speaking terms with the remote system. */
9344 TRY
82f73884 9345 {
82f73884 9346 putpkt ("k");
82f73884 9347 }
8020350c
DB
9348 CATCH (ex, RETURN_MASK_ERROR)
9349 {
9350 if (ex.error == TARGET_CLOSE_ERROR)
9351 {
9352 /* If we got an (EOF) error that caused the target
9353 to go away, then we're done, that's what we wanted.
9354 "k" is susceptible to cause a premature EOF, given
9355 that the remote server isn't actually required to
9356 reply to "k", and it can happen that it doesn't
9357 even get to reply ACK to the "k". */
9358 return;
9359 }
82f73884 9360
8020350c
DB
9361 /* Otherwise, something went wrong. We didn't actually kill
9362 the target. Just propagate the exception, and let the
9363 user or higher layers decide what to do. */
9364 throw_exception (ex);
9365 }
9366 END_CATCH
82f73884
PA
9367}
9368
c906108c 9369static void
20f796c9 9370remote_mourn (struct target_ops *target)
c906108c 9371{
8020350c 9372 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9373
8020350c
DB
9374 /* In 'target remote' mode with one inferior, we close the connection. */
9375 if (!rs->extended && number_of_live_inferiors () <= 1)
9376 {
9377 unpush_target (target);
c906108c 9378
8020350c
DB
9379 /* remote_close takes care of doing most of the clean up. */
9380 generic_mourn_inferior ();
9381 return;
9382 }
c906108c 9383
e24a49d8
PA
9384 /* In case we got here due to an error, but we're going to stay
9385 connected. */
9386 rs->waiting_for_stop_reply = 0;
9387
dc1981d7
PA
9388 /* If the current general thread belonged to the process we just
9389 detached from or has exited, the remote side current general
9390 thread becomes undefined. Considering a case like this:
9391
9392 - We just got here due to a detach.
9393 - The process that we're detaching from happens to immediately
9394 report a global breakpoint being hit in non-stop mode, in the
9395 same thread we had selected before.
9396 - GDB attaches to this process again.
9397 - This event happens to be the next event we handle.
9398
9399 GDB would consider that the current general thread didn't need to
9400 be set on the stub side (with Hg), since for all it knew,
9401 GENERAL_THREAD hadn't changed.
9402
9403 Notice that although in all-stop mode, the remote server always
9404 sets the current thread to the thread reporting the stop event,
9405 that doesn't happen in non-stop mode; in non-stop, the stub *must
9406 not* change the current thread when reporting a breakpoint hit,
9407 due to the decoupling of event reporting and event handling.
9408
9409 To keep things simple, we always invalidate our notion of the
9410 current thread. */
47f8a51d 9411 record_currthread (rs, minus_one_ptid);
dc1981d7 9412
8020350c 9413 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9414 generic_mourn_inferior ();
9415
d729566a 9416 if (!have_inferiors ())
2d717e4f 9417 {
82f73884
PA
9418 if (!remote_multi_process_p (rs))
9419 {
9420 /* Check whether the target is running now - some remote stubs
9421 automatically restart after kill. */
9422 putpkt ("?");
9423 getpkt (&rs->buf, &rs->buf_size, 0);
9424
9425 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9426 {
3e43a32a
MS
9427 /* Assume that the target has been restarted. Set
9428 inferior_ptid so that bits of core GDB realizes
9429 there's something here, e.g., so that the user can
9430 say "kill" again. */
82f73884
PA
9431 inferior_ptid = magic_null_ptid;
9432 }
82f73884 9433 }
2d717e4f
DJ
9434 }
9435}
c906108c 9436
03583c20 9437static int
2bfc0540 9438extended_remote_supports_disable_randomization (struct target_ops *self)
03583c20 9439{
4082afcc 9440 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9441}
9442
9443static void
9444extended_remote_disable_randomization (int val)
9445{
9446 struct remote_state *rs = get_remote_state ();
9447 char *reply;
9448
bba74b36
YQ
9449 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9450 val);
03583c20 9451 putpkt (rs->buf);
b6bb3468 9452 reply = remote_get_noisy_reply ();
03583c20
UW
9453 if (*reply == '\0')
9454 error (_("Target does not support QDisableRandomization."));
9455 if (strcmp (reply, "OK") != 0)
9456 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9457}
9458
2d717e4f 9459static int
7c5ded6a 9460extended_remote_run (const std::string &args)
2d717e4f
DJ
9461{
9462 struct remote_state *rs = get_remote_state ();
2d717e4f 9463 int len;
94585166 9464 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9465
2d717e4f
DJ
9466 /* If the user has disabled vRun support, or we have detected that
9467 support is not available, do not try it. */
4082afcc 9468 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9469 return -1;
424163ea 9470
2d717e4f
DJ
9471 strcpy (rs->buf, "vRun;");
9472 len = strlen (rs->buf);
c906108c 9473
2d717e4f
DJ
9474 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9475 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9476 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9477 strlen (remote_exec_file));
2d717e4f 9478
7c5ded6a 9479 if (!args.empty ())
2d717e4f 9480 {
2d717e4f 9481 int i;
2d717e4f 9482
773a1edc 9483 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9484 for (i = 0; argv[i] != NULL; i++)
9485 {
9486 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9487 error (_("Argument list too long for run packet"));
9488 rs->buf[len++] = ';';
9f1b45b0
TT
9489 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9490 strlen (argv[i]));
2d717e4f 9491 }
2d717e4f
DJ
9492 }
9493
9494 rs->buf[len++] = '\0';
9495
9496 putpkt (rs->buf);
9497 getpkt (&rs->buf, &rs->buf_size, 0);
9498
4082afcc 9499 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9500 {
4082afcc 9501 case PACKET_OK:
3405876a 9502 /* We have a wait response. All is well. */
2d717e4f 9503 return 0;
4082afcc
PA
9504 case PACKET_UNKNOWN:
9505 return -1;
9506 case PACKET_ERROR:
2d717e4f
DJ
9507 if (remote_exec_file[0] == '\0')
9508 error (_("Running the default executable on the remote target failed; "
9509 "try \"set remote exec-file\"?"));
9510 else
9511 error (_("Running \"%s\" on the remote target failed"),
9512 remote_exec_file);
4082afcc
PA
9513 default:
9514 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9515 }
c906108c
SS
9516}
9517
0a2dde4a
SDJ
9518/* Helper function to send set/unset environment packets. ACTION is
9519 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9520 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9521 sent. */
9522
9523static void
9524send_environment_packet (struct remote_state *rs,
9525 const char *action,
9526 const char *packet,
9527 const char *value)
9528{
9529 /* Convert the environment variable to an hex string, which
9530 is the best format to be transmitted over the wire. */
9531 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9532 strlen (value));
9533
9534 xsnprintf (rs->buf, get_remote_packet_size (),
9535 "%s:%s", packet, encoded_value.c_str ());
9536
9537 putpkt (rs->buf);
9538 getpkt (&rs->buf, &rs->buf_size, 0);
9539 if (strcmp (rs->buf, "OK") != 0)
9540 warning (_("Unable to %s environment variable '%s' on remote."),
9541 action, value);
9542}
9543
9544/* Helper function to handle the QEnvironment* packets. */
9545
9546static void
9547extended_remote_environment_support (struct remote_state *rs)
9548{
9549 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9550 {
9551 putpkt ("QEnvironmentReset");
9552 getpkt (&rs->buf, &rs->buf_size, 0);
9553 if (strcmp (rs->buf, "OK") != 0)
9554 warning (_("Unable to reset environment on remote."));
9555 }
9556
9557 gdb_environ *e = &current_inferior ()->environment;
9558
9559 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9560 for (const std::string &el : e->user_set_env ())
9561 send_environment_packet (rs, "set", "QEnvironmentHexEncoded",
9562 el.c_str ());
9563
9564 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9565 for (const std::string &el : e->user_unset_env ())
9566 send_environment_packet (rs, "unset", "QEnvironmentUnset", el.c_str ());
9567}
9568
bc3b087d
SDJ
9569/* Helper function to set the current working directory for the
9570 inferior in the remote target. */
9571
9572static void
9573extended_remote_set_inferior_cwd (struct remote_state *rs)
9574{
9575 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9576 {
9577 const char *inferior_cwd = get_inferior_cwd ();
9578
9579 if (inferior_cwd != NULL)
9580 {
9581 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9582 strlen (inferior_cwd));
9583
9584 xsnprintf (rs->buf, get_remote_packet_size (),
9585 "QSetWorkingDir:%s", hexpath.c_str ());
9586 }
9587 else
9588 {
9589 /* An empty inferior_cwd means that the user wants us to
9590 reset the remote server's inferior's cwd. */
9591 xsnprintf (rs->buf, get_remote_packet_size (),
9592 "QSetWorkingDir:");
9593 }
9594
9595 putpkt (rs->buf);
9596 getpkt (&rs->buf, &rs->buf_size, 0);
9597 if (packet_ok (rs->buf,
9598 &remote_protocol_packets[PACKET_QSetWorkingDir])
9599 != PACKET_OK)
9600 error (_("\
9601Remote replied unexpectedly while setting the inferior's working\n\
9602directory: %s"),
9603 rs->buf);
9604
9605 }
9606}
9607
2d717e4f
DJ
9608/* In the extended protocol we want to be able to do things like
9609 "run" and have them basically work as expected. So we need
9610 a special create_inferior function. We support changing the
9611 executable file and the command line arguments, but not the
9612 environment. */
9613
43ff13b4 9614static void
77a19445 9615extended_remote_create_inferior (struct target_ops *ops,
7c5ded6a
SDJ
9616 const char *exec_file,
9617 const std::string &args,
77a19445 9618 char **env, int from_tty)
43ff13b4 9619{
3405876a
PA
9620 int run_worked;
9621 char *stop_reply;
9622 struct remote_state *rs = get_remote_state ();
94585166 9623 const char *remote_exec_file = get_remote_exec_file ();
3405876a 9624
43ff13b4 9625 /* If running asynchronously, register the target file descriptor
23860348 9626 with the event loop. */
75c99385 9627 if (target_can_async_p ())
6a3753b3 9628 target_async (1);
43ff13b4 9629
03583c20 9630 /* Disable address space randomization if requested (and supported). */
2bfc0540 9631 if (extended_remote_supports_disable_randomization (ops))
03583c20
UW
9632 extended_remote_disable_randomization (disable_randomization);
9633
aefd8b33
SDJ
9634 /* If startup-with-shell is on, we inform gdbserver to start the
9635 remote inferior using a shell. */
9636 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
9637 {
9638 xsnprintf (rs->buf, get_remote_packet_size (),
9639 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
9640 putpkt (rs->buf);
9641 getpkt (&rs->buf, &rs->buf_size, 0);
9642 if (strcmp (rs->buf, "OK") != 0)
9643 error (_("\
9644Remote replied unexpectedly while setting startup-with-shell: %s"),
9645 rs->buf);
9646 }
9647
0a2dde4a
SDJ
9648 extended_remote_environment_support (rs);
9649
bc3b087d
SDJ
9650 extended_remote_set_inferior_cwd (rs);
9651
43ff13b4 9652 /* Now restart the remote server. */
3405876a
PA
9653 run_worked = extended_remote_run (args) != -1;
9654 if (!run_worked)
2d717e4f
DJ
9655 {
9656 /* vRun was not supported. Fail if we need it to do what the
9657 user requested. */
9658 if (remote_exec_file[0])
9659 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 9660 if (!args.empty ())
2d717e4f 9661 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 9662
2d717e4f
DJ
9663 /* Fall back to "R". */
9664 extended_remote_restart ();
9665 }
424163ea 9666
6c95b8df
PA
9667 if (!have_inferiors ())
9668 {
9669 /* Clean up from the last time we ran, before we mark the target
9670 running again. This will mark breakpoints uninserted, and
9671 get_offsets may insert breakpoints. */
9672 init_thread_list ();
9673 init_wait_for_inferior ();
9674 }
45280a52 9675
3405876a
PA
9676 /* vRun's success return is a stop reply. */
9677 stop_reply = run_worked ? rs->buf : NULL;
9678 add_current_inferior_and_thread (stop_reply);
c0a2216e 9679
2d717e4f
DJ
9680 /* Get updated offsets, if the stub uses qOffsets. */
9681 get_offsets ();
2d717e4f 9682}
c906108c 9683\f
c5aa993b 9684
b775012e
LM
9685/* Given a location's target info BP_TGT and the packet buffer BUF, output
9686 the list of conditions (in agent expression bytecode format), if any, the
9687 target needs to evaluate. The output is placed into the packet buffer
bba74b36 9688 started from BUF and ended at BUF_END. */
b775012e
LM
9689
9690static int
9691remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
9692 struct bp_target_info *bp_tgt, char *buf,
9693 char *buf_end)
b775012e 9694{
3cde5c42 9695 if (bp_tgt->conditions.empty ())
b775012e
LM
9696 return 0;
9697
9698 buf += strlen (buf);
bba74b36 9699 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
9700 buf++;
9701
83621223 9702 /* Send conditions to the target. */
d538e36d 9703 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 9704 {
bba74b36 9705 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 9706 buf += strlen (buf);
3cde5c42 9707 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
9708 buf = pack_hex_byte (buf, aexpr->buf[i]);
9709 *buf = '\0';
9710 }
b775012e
LM
9711 return 0;
9712}
9713
d3ce09f5
SS
9714static void
9715remote_add_target_side_commands (struct gdbarch *gdbarch,
9716 struct bp_target_info *bp_tgt, char *buf)
9717{
3cde5c42 9718 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
9719 return;
9720
9721 buf += strlen (buf);
9722
9723 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9724 buf += strlen (buf);
9725
9726 /* Concatenate all the agent expressions that are commands into the
9727 cmds parameter. */
df97be55 9728 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
9729 {
9730 sprintf (buf, "X%x,", aexpr->len);
9731 buf += strlen (buf);
3cde5c42 9732 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
9733 buf = pack_hex_byte (buf, aexpr->buf[i]);
9734 *buf = '\0';
9735 }
d3ce09f5
SS
9736}
9737
8181d85f
DJ
9738/* Insert a breakpoint. On targets that have software breakpoint
9739 support, we ask the remote target to do the work; on targets
9740 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
9741
9742static int
3db08215
MM
9743remote_insert_breakpoint (struct target_ops *ops,
9744 struct gdbarch *gdbarch,
a6d9a66e 9745 struct bp_target_info *bp_tgt)
c906108c 9746{
d471ea57
AC
9747 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9748 If it succeeds, then set the support to PACKET_ENABLE. If it
9749 fails, and the user has explicitly requested the Z support then
23860348 9750 report an error, otherwise, mark it disabled and go on. */
802188a7 9751
4082afcc 9752 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9753 {
0d5ed153 9754 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 9755 struct remote_state *rs;
bba74b36 9756 char *p, *endbuf;
4fff2411 9757
28439a30
PA
9758 /* Make sure the remote is pointing at the right process, if
9759 necessary. */
9760 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9761 set_general_process ();
9762
4fff2411
JZ
9763 rs = get_remote_state ();
9764 p = rs->buf;
bba74b36 9765 endbuf = rs->buf + get_remote_packet_size ();
802188a7 9766
96baa820
JM
9767 *(p++) = 'Z';
9768 *(p++) = '0';
9769 *(p++) = ',';
7c0f6dcc 9770 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 9771 p += hexnumstr (p, addr);
579c6ad9 9772 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 9773
efcc2da7 9774 if (remote_supports_cond_breakpoints (ops))
bba74b36 9775 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 9776
78eff0ec 9777 if (remote_can_run_breakpoint_commands (ops))
d3ce09f5
SS
9778 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9779
6d820c5c
DJ
9780 putpkt (rs->buf);
9781 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9782
6d820c5c 9783 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 9784 {
d471ea57
AC
9785 case PACKET_ERROR:
9786 return -1;
9787 case PACKET_OK:
9788 return 0;
9789 case PACKET_UNKNOWN:
9790 break;
96baa820
JM
9791 }
9792 }
c906108c 9793
0000e5cc
PA
9794 /* If this breakpoint has target-side commands but this stub doesn't
9795 support Z0 packets, throw error. */
3cde5c42 9796 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
9797 throw_error (NOT_SUPPORTED_ERROR, _("\
9798Target doesn't support breakpoints that have target side commands."));
9799
3db08215 9800 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
c906108c
SS
9801}
9802
9803static int
3db08215
MM
9804remote_remove_breakpoint (struct target_ops *ops,
9805 struct gdbarch *gdbarch,
73971819
PA
9806 struct bp_target_info *bp_tgt,
9807 enum remove_bp_reason reason)
c906108c 9808{
8181d85f 9809 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 9810 struct remote_state *rs = get_remote_state ();
96baa820 9811
4082afcc 9812 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9813 {
6d820c5c 9814 char *p = rs->buf;
bba74b36 9815 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 9816
28439a30
PA
9817 /* Make sure the remote is pointing at the right process, if
9818 necessary. */
9819 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9820 set_general_process ();
9821
96baa820
JM
9822 *(p++) = 'z';
9823 *(p++) = '0';
9824 *(p++) = ',';
9825
8181d85f
DJ
9826 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9827 p += hexnumstr (p, addr);
579c6ad9 9828 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 9829
6d820c5c
DJ
9830 putpkt (rs->buf);
9831 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9832
6d820c5c 9833 return (rs->buf[0] == 'E');
96baa820
JM
9834 }
9835
73971819 9836 return memory_remove_breakpoint (ops, gdbarch, bp_tgt, reason);
c906108c
SS
9837}
9838
f486487f 9839static enum Z_packet_type
d471ea57
AC
9840watchpoint_to_Z_packet (int type)
9841{
9842 switch (type)
9843 {
9844 case hw_write:
bb858e6a 9845 return Z_PACKET_WRITE_WP;
d471ea57
AC
9846 break;
9847 case hw_read:
bb858e6a 9848 return Z_PACKET_READ_WP;
d471ea57
AC
9849 break;
9850 case hw_access:
bb858e6a 9851 return Z_PACKET_ACCESS_WP;
d471ea57
AC
9852 break;
9853 default:
8e65ff28 9854 internal_error (__FILE__, __LINE__,
e2e0b3e5 9855 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
9856 }
9857}
9858
3c3bea1c 9859static int
f486487f
SM
9860remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9861 enum target_hw_bp_type type, struct expression *cond)
96baa820 9862{
d01949b6 9863 struct remote_state *rs = get_remote_state ();
bba74b36 9864 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9865 char *p;
d471ea57 9866 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 9867
4082afcc 9868 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 9869 return 1;
802188a7 9870
28439a30
PA
9871 /* Make sure the remote is pointing at the right process, if
9872 necessary. */
9873 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9874 set_general_process ();
9875
bba74b36 9876 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 9877 p = strchr (rs->buf, '\0');
96baa820
JM
9878 addr = remote_address_masked (addr);
9879 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9880 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 9881
6d820c5c
DJ
9882 putpkt (rs->buf);
9883 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9884
6d820c5c 9885 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9886 {
9887 case PACKET_ERROR:
d471ea57 9888 return -1;
85d721b8
PA
9889 case PACKET_UNKNOWN:
9890 return 1;
d471ea57
AC
9891 case PACKET_OK:
9892 return 0;
9893 }
8e65ff28 9894 internal_error (__FILE__, __LINE__,
e2e0b3e5 9895 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
9896}
9897
283002cf
MR
9898static int
9899remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9900 CORE_ADDR start, int length)
9901{
9902 CORE_ADDR diff = remote_address_masked (addr - start);
9903
9904 return diff < length;
9905}
9906
d471ea57 9907
3c3bea1c 9908static int
f486487f
SM
9909remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9910 enum target_hw_bp_type type, struct expression *cond)
96baa820 9911{
d01949b6 9912 struct remote_state *rs = get_remote_state ();
bba74b36 9913 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9914 char *p;
d471ea57
AC
9915 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9916
4082afcc 9917 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 9918 return -1;
802188a7 9919
28439a30
PA
9920 /* Make sure the remote is pointing at the right process, if
9921 necessary. */
9922 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9923 set_general_process ();
9924
bba74b36 9925 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 9926 p = strchr (rs->buf, '\0');
96baa820
JM
9927 addr = remote_address_masked (addr);
9928 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9929 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
9930 putpkt (rs->buf);
9931 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9932
6d820c5c 9933 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9934 {
9935 case PACKET_ERROR:
9936 case PACKET_UNKNOWN:
9937 return -1;
9938 case PACKET_OK:
9939 return 0;
9940 }
8e65ff28 9941 internal_error (__FILE__, __LINE__,
e2e0b3e5 9942 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
9943}
9944
3c3bea1c 9945
501eef12 9946int remote_hw_watchpoint_limit = -1;
480a3f21 9947int remote_hw_watchpoint_length_limit = -1;
501eef12 9948int remote_hw_breakpoint_limit = -1;
d471ea57 9949
480a3f21 9950static int
31568a15
TT
9951remote_region_ok_for_hw_watchpoint (struct target_ops *self,
9952 CORE_ADDR addr, int len)
480a3f21
PW
9953{
9954 if (remote_hw_watchpoint_length_limit == 0)
9955 return 0;
9956 else if (remote_hw_watchpoint_length_limit < 0)
9957 return 1;
9958 else if (len <= remote_hw_watchpoint_length_limit)
9959 return 1;
9960 else
9961 return 0;
9962}
9963
b9362cc7 9964static int
5461485a 9965remote_check_watch_resources (struct target_ops *self,
f486487f 9966 enum bptype type, int cnt, int ot)
96baa820 9967{
3c3bea1c
GS
9968 if (type == bp_hardware_breakpoint)
9969 {
9970 if (remote_hw_breakpoint_limit == 0)
9971 return 0;
501eef12
AC
9972 else if (remote_hw_breakpoint_limit < 0)
9973 return 1;
3c3bea1c
GS
9974 else if (cnt <= remote_hw_breakpoint_limit)
9975 return 1;
9976 }
9977 else
9978 {
9979 if (remote_hw_watchpoint_limit == 0)
9980 return 0;
501eef12
AC
9981 else if (remote_hw_watchpoint_limit < 0)
9982 return 1;
3c3bea1c
GS
9983 else if (ot)
9984 return -1;
9985 else if (cnt <= remote_hw_watchpoint_limit)
9986 return 1;
9987 }
9988 return -1;
9989}
9990
f7e6eed5
PA
9991/* The to_stopped_by_sw_breakpoint method of target remote. */
9992
9993static int
9994remote_stopped_by_sw_breakpoint (struct target_ops *ops)
9995{
799a2abe 9996 struct thread_info *thread = inferior_thread ();
f7e6eed5 9997
799a2abe 9998 return (thread->priv != NULL
7aabaf9d
SM
9999 && (get_remote_thread_info (thread)->stop_reason
10000 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10001}
10002
10003/* The to_supports_stopped_by_sw_breakpoint method of target
10004 remote. */
10005
10006static int
10007remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
10008{
f7e6eed5
PA
10009 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10010}
10011
10012/* The to_stopped_by_hw_breakpoint method of target remote. */
10013
10014static int
10015remote_stopped_by_hw_breakpoint (struct target_ops *ops)
10016{
799a2abe 10017 struct thread_info *thread = inferior_thread ();
f7e6eed5 10018
799a2abe 10019 return (thread->priv != NULL
7aabaf9d
SM
10020 && (get_remote_thread_info (thread)->stop_reason
10021 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10022}
10023
10024/* The to_supports_stopped_by_hw_breakpoint method of target
10025 remote. */
10026
10027static int
10028remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
10029{
f7e6eed5
PA
10030 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10031}
10032
b9362cc7 10033static int
6a109b6b 10034remote_stopped_by_watchpoint (struct target_ops *ops)
3c3bea1c 10035{
799a2abe 10036 struct thread_info *thread = inferior_thread ();
ee154bee 10037
799a2abe 10038 return (thread->priv != NULL
7aabaf9d
SM
10039 && (get_remote_thread_info (thread)->stop_reason
10040 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10041}
10042
4aa7a7f5
JJ
10043static int
10044remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 10045{
799a2abe 10046 struct thread_info *thread = inferior_thread ();
a744cf53 10047
799a2abe 10048 if (thread->priv != NULL
7aabaf9d
SM
10049 && (get_remote_thread_info (thread)->stop_reason
10050 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10051 {
7aabaf9d 10052 *addr_p = get_remote_thread_info (thread)->watch_data_address;
799a2abe 10053 return 1;
4aa7a7f5
JJ
10054 }
10055
799a2abe 10056 return 0;
3c3bea1c
GS
10057}
10058
10059
10060static int
23a26771 10061remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10062 struct bp_target_info *bp_tgt)
3c3bea1c 10063{
0d5ed153 10064 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10065 struct remote_state *rs;
bba74b36 10066 char *p, *endbuf;
dd61ec5c 10067 char *message;
3c3bea1c 10068
4082afcc 10069 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10070 return -1;
2bc416ba 10071
28439a30
PA
10072 /* Make sure the remote is pointing at the right process, if
10073 necessary. */
10074 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10075 set_general_process ();
10076
4fff2411
JZ
10077 rs = get_remote_state ();
10078 p = rs->buf;
bba74b36 10079 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 10080
96baa820
JM
10081 *(p++) = 'Z';
10082 *(p++) = '1';
10083 *(p++) = ',';
802188a7 10084
0d5ed153 10085 addr = remote_address_masked (addr);
96baa820 10086 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10087 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10088
efcc2da7 10089 if (remote_supports_cond_breakpoints (self))
bba74b36 10090 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10091
78eff0ec 10092 if (remote_can_run_breakpoint_commands (self))
d3ce09f5
SS
10093 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10094
6d820c5c
DJ
10095 putpkt (rs->buf);
10096 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10097
6d820c5c 10098 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10099 {
10100 case PACKET_ERROR:
dd61ec5c
MW
10101 if (rs->buf[1] == '.')
10102 {
10103 message = strchr (rs->buf + 2, '.');
10104 if (message)
0316657e 10105 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10106 }
10107 return -1;
d471ea57
AC
10108 case PACKET_UNKNOWN:
10109 return -1;
10110 case PACKET_OK:
10111 return 0;
10112 }
8e65ff28 10113 internal_error (__FILE__, __LINE__,
e2e0b3e5 10114 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10115}
10116
d471ea57 10117
802188a7 10118static int
a64dc96c 10119remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10120 struct bp_target_info *bp_tgt)
96baa820 10121{
8181d85f 10122 CORE_ADDR addr;
d01949b6 10123 struct remote_state *rs = get_remote_state ();
6d820c5c 10124 char *p = rs->buf;
bba74b36 10125 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 10126
4082afcc 10127 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10128 return -1;
802188a7 10129
28439a30
PA
10130 /* Make sure the remote is pointing at the right process, if
10131 necessary. */
10132 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10133 set_general_process ();
10134
96baa820
JM
10135 *(p++) = 'z';
10136 *(p++) = '1';
10137 *(p++) = ',';
802188a7 10138
8181d85f 10139 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10140 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10141 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10142
6d820c5c
DJ
10143 putpkt (rs->buf);
10144 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 10145
6d820c5c 10146 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10147 {
10148 case PACKET_ERROR:
10149 case PACKET_UNKNOWN:
10150 return -1;
10151 case PACKET_OK:
10152 return 0;
10153 }
8e65ff28 10154 internal_error (__FILE__, __LINE__,
e2e0b3e5 10155 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10156}
96baa820 10157
4a5e7a5b
PA
10158/* Verify memory using the "qCRC:" request. */
10159
10160static int
10161remote_verify_memory (struct target_ops *ops,
10162 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10163{
10164 struct remote_state *rs = get_remote_state ();
10165 unsigned long host_crc, target_crc;
10166 char *tmp;
10167
936d2992
PA
10168 /* It doesn't make sense to use qCRC if the remote target is
10169 connected but not running. */
10170 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10171 {
10172 enum packet_result result;
28439a30 10173
936d2992
PA
10174 /* Make sure the remote is pointing at the right process. */
10175 set_general_process ();
4a5e7a5b 10176
936d2992
PA
10177 /* FIXME: assumes lma can fit into long. */
10178 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10179 (long) lma, (long) size);
10180 putpkt (rs->buf);
4a5e7a5b 10181
936d2992
PA
10182 /* Be clever; compute the host_crc before waiting for target
10183 reply. */
10184 host_crc = xcrc32 (data, size, 0xffffffff);
10185
10186 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 10187
936d2992
PA
10188 result = packet_ok (rs->buf,
10189 &remote_protocol_packets[PACKET_qCRC]);
10190 if (result == PACKET_ERROR)
10191 return -1;
10192 else if (result == PACKET_OK)
10193 {
10194 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10195 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10196
936d2992
PA
10197 return (host_crc == target_crc);
10198 }
10199 }
4a5e7a5b 10200
936d2992 10201 return simple_verify_memory (ops, data, lma, size);
4a5e7a5b
PA
10202}
10203
c906108c
SS
10204/* compare-sections command
10205
10206 With no arguments, compares each loadable section in the exec bfd
10207 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10208 Useful for verifying the image on the target against the exec file. */
e514a9d6 10209
c906108c 10210static void
ac88e2de 10211compare_sections_command (const char *args, int from_tty)
c906108c
SS
10212{
10213 asection *s;
ce359b09 10214 const char *sectname;
c906108c
SS
10215 bfd_size_type size;
10216 bfd_vma lma;
10217 int matched = 0;
10218 int mismatched = 0;
4a5e7a5b 10219 int res;
95cf3b38 10220 int read_only = 0;
c906108c
SS
10221
10222 if (!exec_bfd)
8a3fe4f8 10223 error (_("command cannot be used without an exec file"));
c906108c 10224
28439a30
PA
10225 /* Make sure the remote is pointing at the right process. */
10226 set_general_process ();
10227
95cf3b38
DT
10228 if (args != NULL && strcmp (args, "-r") == 0)
10229 {
10230 read_only = 1;
10231 args = NULL;
10232 }
10233
c5aa993b 10234 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10235 {
10236 if (!(s->flags & SEC_LOAD))
0df8b418 10237 continue; /* Skip non-loadable section. */
c906108c 10238
95cf3b38
DT
10239 if (read_only && (s->flags & SEC_READONLY) == 0)
10240 continue; /* Skip writeable sections */
10241
2c500098 10242 size = bfd_get_section_size (s);
c906108c 10243 if (size == 0)
0df8b418 10244 continue; /* Skip zero-length section. */
c906108c 10245
ce359b09 10246 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10247 if (args && strcmp (args, sectname) != 0)
0df8b418 10248 continue; /* Not the section selected by user. */
c906108c 10249
0df8b418 10250 matched = 1; /* Do this section. */
c906108c 10251 lma = s->lma;
c906108c 10252
b80406ac
TT
10253 gdb::byte_vector sectdata (size);
10254 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10255
b80406ac 10256 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10257
10258 if (res == -1)
5af949e3 10259 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10260 paddress (target_gdbarch (), lma),
10261 paddress (target_gdbarch (), lma + size));
c906108c 10262
5af949e3 10263 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10264 paddress (target_gdbarch (), lma),
10265 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10266 if (res)
c906108c
SS
10267 printf_filtered ("matched.\n");
10268 else
c5aa993b
JM
10269 {
10270 printf_filtered ("MIS-MATCHED!\n");
10271 mismatched++;
10272 }
c906108c
SS
10273 }
10274 if (mismatched > 0)
936d2992 10275 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10276the loaded file\n"));
c906108c 10277 if (args && !matched)
a3f17187 10278 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10279}
10280
0e7f50da
UW
10281/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10282 into remote target. The number of bytes written to the remote
10283 target is returned, or -1 for error. */
10284
9b409511 10285static enum target_xfer_status
0e7f50da
UW
10286remote_write_qxfer (struct target_ops *ops, const char *object_name,
10287 const char *annex, const gdb_byte *writebuf,
9b409511 10288 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
0e7f50da
UW
10289 struct packet_config *packet)
10290{
10291 int i, buf_len;
10292 ULONGEST n;
0e7f50da
UW
10293 struct remote_state *rs = get_remote_state ();
10294 int max_size = get_memory_write_packet_size ();
10295
7cc244de 10296 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10297 return TARGET_XFER_E_IO;
0e7f50da
UW
10298
10299 /* Insert header. */
10300 i = snprintf (rs->buf, max_size,
10301 "qXfer:%s:write:%s:%s:",
10302 object_name, annex ? annex : "",
10303 phex_nz (offset, sizeof offset));
10304 max_size -= (i + 1);
10305
10306 /* Escape as much data as fits into rs->buf. */
10307 buf_len = remote_escape_output
124e13d9 10308 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
10309
10310 if (putpkt_binary (rs->buf, i + buf_len) < 0
10311 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10312 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10313 return TARGET_XFER_E_IO;
0e7f50da
UW
10314
10315 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
10316
10317 *xfered_len = n;
92ffd475 10318 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10319}
10320
0876f84a
DJ
10321/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10322 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10323 number of bytes read is returned, or 0 for EOF, or -1 for error.
10324 The number of bytes read may be less than LEN without indicating an
10325 EOF. PACKET is checked and updated to indicate whether the remote
10326 target supports this object. */
10327
9b409511 10328static enum target_xfer_status
0876f84a
DJ
10329remote_read_qxfer (struct target_ops *ops, const char *object_name,
10330 const char *annex,
10331 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9b409511 10332 ULONGEST *xfered_len,
0876f84a
DJ
10333 struct packet_config *packet)
10334{
0876f84a 10335 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10336 LONGEST i, n, packet_len;
10337
7cc244de 10338 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10339 return TARGET_XFER_E_IO;
0876f84a
DJ
10340
10341 /* Check whether we've cached an end-of-object packet that matches
10342 this request. */
8e88304f 10343 if (rs->finished_object)
0876f84a 10344 {
8e88304f
TT
10345 if (strcmp (object_name, rs->finished_object) == 0
10346 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10347 && offset == rs->finished_offset)
9b409511
YQ
10348 return TARGET_XFER_EOF;
10349
0876f84a
DJ
10350
10351 /* Otherwise, we're now reading something different. Discard
10352 the cache. */
8e88304f
TT
10353 xfree (rs->finished_object);
10354 xfree (rs->finished_annex);
10355 rs->finished_object = NULL;
10356 rs->finished_annex = NULL;
0876f84a
DJ
10357 }
10358
10359 /* Request only enough to fit in a single packet. The actual data
10360 may not, since we don't know how much of it will need to be escaped;
10361 the target is free to respond with slightly less data. We subtract
10362 five to account for the response type and the protocol frame. */
768adc05 10363 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
0876f84a
DJ
10364 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10365 object_name, annex ? annex : "",
10366 phex_nz (offset, sizeof offset),
10367 phex_nz (n, sizeof n));
10368 i = putpkt (rs->buf);
10369 if (i < 0)
2ed4b548 10370 return TARGET_XFER_E_IO;
0876f84a
DJ
10371
10372 rs->buf[0] = '\0';
10373 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10374 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10375 return TARGET_XFER_E_IO;
0876f84a
DJ
10376
10377 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10378 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10379
10380 /* 'm' means there is (or at least might be) more data after this
10381 batch. That does not make sense unless there's at least one byte
10382 of data in this reply. */
10383 if (rs->buf[0] == 'm' && packet_len == 1)
10384 error (_("Remote qXfer reply contained no data."));
10385
10386 /* Got some data. */
bc20a4af
PA
10387 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10388 packet_len - 1, readbuf, n);
0876f84a
DJ
10389
10390 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10391 or possibly empty. If we have the final block of a non-empty
10392 object, record this fact to bypass a subsequent partial read. */
10393 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10394 {
8e88304f
TT
10395 rs->finished_object = xstrdup (object_name);
10396 rs->finished_annex = xstrdup (annex ? annex : "");
10397 rs->finished_offset = offset + i;
0876f84a
DJ
10398 }
10399
9b409511
YQ
10400 if (i == 0)
10401 return TARGET_XFER_EOF;
10402 else
10403 {
10404 *xfered_len = i;
10405 return TARGET_XFER_OK;
10406 }
0876f84a
DJ
10407}
10408
9b409511 10409static enum target_xfer_status
4b8a223f 10410remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5 10411 const char *annex, gdb_byte *readbuf,
9b409511
YQ
10412 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10413 ULONGEST *xfered_len)
c906108c 10414{
82f73884 10415 struct remote_state *rs;
c906108c 10416 int i;
6d820c5c 10417 char *p2;
1e3ff5ad 10418 char query_type;
124e13d9 10419 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10420
e6e4e701 10421 set_remote_traceframe ();
82f73884
PA
10422 set_general_thread (inferior_ptid);
10423
10424 rs = get_remote_state ();
10425
b2182ed2 10426 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10427 if (object == TARGET_OBJECT_MEMORY)
10428 {
2d717e4f
DJ
10429 /* If the remote target is connected but not running, we should
10430 pass this request down to a lower stratum (e.g. the executable
10431 file). */
10432 if (!target_has_execution)
9b409511 10433 return TARGET_XFER_EOF;
2d717e4f 10434
21e3b9b9 10435 if (writebuf != NULL)
124e13d9
SM
10436 return remote_write_bytes (offset, writebuf, len, unit_size,
10437 xfered_len);
21e3b9b9 10438 else
124e13d9
SM
10439 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
10440 xfered_len);
21e3b9b9
DJ
10441 }
10442
0df8b418 10443 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10444 if (object == TARGET_OBJECT_SPU)
10445 {
10446 if (readbuf)
10447 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9b409511
YQ
10448 xfered_len, &remote_protocol_packets
10449 [PACKET_qXfer_spu_read]);
0e7f50da
UW
10450 else
10451 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9b409511
YQ
10452 xfered_len, &remote_protocol_packets
10453 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10454 }
10455
4aa995e1
PA
10456 /* Handle extra signal info using qxfer packets. */
10457 if (object == TARGET_OBJECT_SIGNAL_INFO)
10458 {
10459 if (readbuf)
10460 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9b409511 10461 xfered_len, &remote_protocol_packets
4aa995e1
PA
10462 [PACKET_qXfer_siginfo_read]);
10463 else
3e43a32a 10464 return remote_write_qxfer (ops, "siginfo", annex,
9b409511 10465 writebuf, offset, len, xfered_len,
4aa995e1
PA
10466 &remote_protocol_packets
10467 [PACKET_qXfer_siginfo_write]);
10468 }
10469
0fb4aa4b
PA
10470 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10471 {
10472 if (readbuf)
3e43a32a 10473 return remote_read_qxfer (ops, "statictrace", annex,
9b409511 10474 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10475 &remote_protocol_packets
10476 [PACKET_qXfer_statictrace_read]);
10477 else
2ed4b548 10478 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10479 }
10480
a76d924d
DJ
10481 /* Only handle flash writes. */
10482 if (writebuf != NULL)
10483 {
a76d924d
DJ
10484 switch (object)
10485 {
10486 case TARGET_OBJECT_FLASH:
9b409511
YQ
10487 return remote_flash_write (ops, offset, len, xfered_len,
10488 writebuf);
a76d924d
DJ
10489
10490 default:
2ed4b548 10491 return TARGET_XFER_E_IO;
a76d924d
DJ
10492 }
10493 }
4b8a223f 10494
1e3ff5ad
AC
10495 /* Map pre-existing objects onto letters. DO NOT do this for new
10496 objects!!! Instead specify new query packets. */
10497 switch (object)
c906108c 10498 {
1e3ff5ad
AC
10499 case TARGET_OBJECT_AVR:
10500 query_type = 'R';
10501 break;
802188a7
RM
10502
10503 case TARGET_OBJECT_AUXV:
0876f84a
DJ
10504 gdb_assert (annex == NULL);
10505 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
9b409511 10506 xfered_len,
0876f84a 10507 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10508
23181151
DJ
10509 case TARGET_OBJECT_AVAILABLE_FEATURES:
10510 return remote_read_qxfer
9b409511 10511 (ops, "features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10512 &remote_protocol_packets[PACKET_qXfer_features]);
10513
cfa9d6d9
DJ
10514 case TARGET_OBJECT_LIBRARIES:
10515 return remote_read_qxfer
9b409511 10516 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10517 &remote_protocol_packets[PACKET_qXfer_libraries]);
10518
2268b414
JK
10519 case TARGET_OBJECT_LIBRARIES_SVR4:
10520 return remote_read_qxfer
9b409511 10521 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10522 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10523
fd79ecee
DJ
10524 case TARGET_OBJECT_MEMORY_MAP:
10525 gdb_assert (annex == NULL);
10526 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
9b409511 10527 xfered_len,
fd79ecee
DJ
10528 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10529
07e059b5
VP
10530 case TARGET_OBJECT_OSDATA:
10531 /* Should only get here if we're connected. */
5d93a237 10532 gdb_assert (rs->remote_desc);
07e059b5 10533 return remote_read_qxfer
9b409511 10534 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10535 &remote_protocol_packets[PACKET_qXfer_osdata]);
10536
dc146f7c
VP
10537 case TARGET_OBJECT_THREADS:
10538 gdb_assert (annex == NULL);
10539 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
9b409511 10540 xfered_len,
dc146f7c
VP
10541 &remote_protocol_packets[PACKET_qXfer_threads]);
10542
b3b9301e
PA
10543 case TARGET_OBJECT_TRACEFRAME_INFO:
10544 gdb_assert (annex == NULL);
10545 return remote_read_qxfer
9b409511 10546 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10547 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10548
10549 case TARGET_OBJECT_FDPIC:
10550 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
9b409511 10551 xfered_len,
78d85199 10552 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10553
10554 case TARGET_OBJECT_OPENVMS_UIB:
10555 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
9b409511 10556 xfered_len,
169081d0
TG
10557 &remote_protocol_packets[PACKET_qXfer_uib]);
10558
9accd112
MM
10559 case TARGET_OBJECT_BTRACE:
10560 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
9b409511 10561 xfered_len,
9accd112
MM
10562 &remote_protocol_packets[PACKET_qXfer_btrace]);
10563
f4abbc16
MM
10564 case TARGET_OBJECT_BTRACE_CONF:
10565 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10566 len, xfered_len,
10567 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10568
c78fa86a
GB
10569 case TARGET_OBJECT_EXEC_FILE:
10570 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10571 len, xfered_len,
10572 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10573
1e3ff5ad 10574 default:
2ed4b548 10575 return TARGET_XFER_E_IO;
c906108c
SS
10576 }
10577
0df8b418 10578 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10579 large enough let the caller deal with it. */
ea9c271d 10580 if (len < get_remote_packet_size ())
2ed4b548 10581 return TARGET_XFER_E_IO;
ea9c271d 10582 len = get_remote_packet_size ();
1e3ff5ad 10583
23860348 10584 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10585 if (!rs->remote_desc)
8a3fe4f8 10586 error (_("remote query is only available after target open"));
c906108c 10587
1e3ff5ad 10588 gdb_assert (annex != NULL);
4b8a223f 10589 gdb_assert (readbuf != NULL);
c906108c 10590
6d820c5c 10591 p2 = rs->buf;
c906108c
SS
10592 *p2++ = 'q';
10593 *p2++ = query_type;
10594
23860348
MS
10595 /* We used one buffer char for the remote protocol q command and
10596 another for the query type. As the remote protocol encapsulation
10597 uses 4 chars plus one extra in case we are debugging
10598 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10599 string. */
c906108c 10600 i = 0;
ea9c271d 10601 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10602 {
1e3ff5ad
AC
10603 /* Bad caller may have sent forbidden characters. */
10604 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10605 *p2++ = annex[i];
c906108c
SS
10606 i++;
10607 }
1e3ff5ad
AC
10608 *p2 = '\0';
10609 gdb_assert (annex[i] == '\0');
c906108c 10610
6d820c5c 10611 i = putpkt (rs->buf);
c5aa993b 10612 if (i < 0)
2ed4b548 10613 return TARGET_XFER_E_IO;
c906108c 10614
6d820c5c
DJ
10615 getpkt (&rs->buf, &rs->buf_size, 0);
10616 strcpy ((char *) readbuf, rs->buf);
c906108c 10617
9b409511 10618 *xfered_len = strlen ((char *) readbuf);
92ffd475 10619 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
10620}
10621
09c98b44
DB
10622/* Implementation of to_get_memory_xfer_limit. */
10623
10624static ULONGEST
10625remote_get_memory_xfer_limit (struct target_ops *ops)
10626{
10627 return get_memory_write_packet_size ();
10628}
10629
08388c79
DE
10630static int
10631remote_search_memory (struct target_ops* ops,
10632 CORE_ADDR start_addr, ULONGEST search_space_len,
10633 const gdb_byte *pattern, ULONGEST pattern_len,
10634 CORE_ADDR *found_addrp)
10635{
f5656ead 10636 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
10637 struct remote_state *rs = get_remote_state ();
10638 int max_size = get_memory_write_packet_size ();
10639 struct packet_config *packet =
10640 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
10641 /* Number of packet bytes used to encode the pattern;
10642 this could be more than PATTERN_LEN due to escape characters. */
08388c79 10643 int escaped_pattern_len;
0df8b418 10644 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
10645 int used_pattern_len;
10646 int i;
10647 int found;
10648 ULONGEST found_addr;
10649
7cc244de
PA
10650 /* Don't go to the target if we don't have to. This is done before
10651 checking packet_config_support to avoid the possibility that a
10652 success for this edge case means the facility works in
10653 general. */
08388c79
DE
10654 if (pattern_len > search_space_len)
10655 return 0;
10656 if (pattern_len == 0)
10657 {
10658 *found_addrp = start_addr;
10659 return 1;
10660 }
10661
10662 /* If we already know the packet isn't supported, fall back to the simple
10663 way of searching memory. */
10664
4082afcc 10665 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10666 {
10667 /* Target doesn't provided special support, fall back and use the
10668 standard support (copy memory and do the search here). */
10669 return simple_search_memory (ops, start_addr, search_space_len,
10670 pattern, pattern_len, found_addrp);
10671 }
10672
28439a30
PA
10673 /* Make sure the remote is pointing at the right process. */
10674 set_general_process ();
10675
08388c79
DE
10676 /* Insert header. */
10677 i = snprintf (rs->buf, max_size,
10678 "qSearch:memory:%s;%s;",
5af949e3 10679 phex_nz (start_addr, addr_size),
08388c79
DE
10680 phex_nz (search_space_len, sizeof (search_space_len)));
10681 max_size -= (i + 1);
10682
10683 /* Escape as much data as fits into rs->buf. */
10684 escaped_pattern_len =
124e13d9 10685 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
08388c79
DE
10686 &used_pattern_len, max_size);
10687
10688 /* Bail if the pattern is too large. */
10689 if (used_pattern_len != pattern_len)
9b20d036 10690 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
10691
10692 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10693 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10694 || packet_ok (rs->buf, packet) != PACKET_OK)
10695 {
10696 /* The request may not have worked because the command is not
10697 supported. If so, fall back to the simple way. */
7cc244de 10698 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10699 {
10700 return simple_search_memory (ops, start_addr, search_space_len,
10701 pattern, pattern_len, found_addrp);
10702 }
10703 return -1;
10704 }
10705
10706 if (rs->buf[0] == '0')
10707 found = 0;
10708 else if (rs->buf[0] == '1')
10709 {
10710 found = 1;
10711 if (rs->buf[1] != ',')
10e0fa18 10712 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10713 unpack_varlen_hex (rs->buf + 2, &found_addr);
10714 *found_addrp = found_addr;
10715 }
10716 else
10e0fa18 10717 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10718
10719 return found;
10720}
10721
96baa820 10722static void
a30bf1f1 10723remote_rcmd (struct target_ops *self, const char *command,
d9fcf2fb 10724 struct ui_file *outbuf)
96baa820 10725{
d01949b6 10726 struct remote_state *rs = get_remote_state ();
2e9f7625 10727 char *p = rs->buf;
96baa820 10728
5d93a237 10729 if (!rs->remote_desc)
8a3fe4f8 10730 error (_("remote rcmd is only available after target open"));
96baa820 10731
23860348 10732 /* Send a NULL command across as an empty command. */
7be570e7
JM
10733 if (command == NULL)
10734 command = "";
10735
23860348 10736 /* The query prefix. */
2e9f7625
DJ
10737 strcpy (rs->buf, "qRcmd,");
10738 p = strchr (rs->buf, '\0');
96baa820 10739
3e43a32a
MS
10740 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10741 > get_remote_packet_size ())
8a3fe4f8 10742 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 10743
23860348 10744 /* Encode the actual command. */
a30bf1f1 10745 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 10746
6d820c5c 10747 if (putpkt (rs->buf) < 0)
8a3fe4f8 10748 error (_("Communication problem with target."));
96baa820
JM
10749
10750 /* get/display the response */
10751 while (1)
10752 {
2e9f7625
DJ
10753 char *buf;
10754
00bf0b85 10755 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 10756 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 10757 rs->buf[0] = '\0';
5b37825d
PW
10758 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10759 {
10760 /* Timeout. Continue to (try to) read responses.
10761 This is better than stopping with an error, assuming the stub
10762 is still executing the (long) monitor command.
10763 If needed, the user can interrupt gdb using C-c, obtaining
10764 an effect similar to stop on timeout. */
10765 continue;
10766 }
2e9f7625 10767 buf = rs->buf;
96baa820 10768 if (buf[0] == '\0')
8a3fe4f8 10769 error (_("Target does not support this command."));
96baa820
JM
10770 if (buf[0] == 'O' && buf[1] != 'K')
10771 {
23860348 10772 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
10773 continue;
10774 }
10775 if (strcmp (buf, "OK") == 0)
10776 break;
7be570e7
JM
10777 if (strlen (buf) == 3 && buf[0] == 'E'
10778 && isdigit (buf[1]) && isdigit (buf[2]))
10779 {
8a3fe4f8 10780 error (_("Protocol error with Rcmd"));
7be570e7 10781 }
96baa820
JM
10782 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10783 {
10784 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 10785
96baa820
JM
10786 fputc_unfiltered (c, outbuf);
10787 }
10788 break;
10789 }
10790}
10791
a664f67e 10792static std::vector<mem_region>
fd79ecee
DJ
10793remote_memory_map (struct target_ops *ops)
10794{
a664f67e 10795 std::vector<mem_region> result;
9018be22 10796 gdb::optional<gdb::char_vector> text
b7b030ad 10797 = target_read_stralloc (&current_target, TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
10798
10799 if (text)
9018be22 10800 result = parse_memory_map (text->data ());
fd79ecee
DJ
10801
10802 return result;
10803}
10804
c906108c 10805static void
ac88e2de 10806packet_command (const char *args, int from_tty)
c906108c 10807{
d01949b6 10808 struct remote_state *rs = get_remote_state ();
c906108c 10809
5d93a237 10810 if (!rs->remote_desc)
8a3fe4f8 10811 error (_("command can only be used with remote target"));
c906108c 10812
c5aa993b 10813 if (!args)
8a3fe4f8 10814 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
10815
10816 puts_filtered ("sending: ");
10817 print_packet (args);
10818 puts_filtered ("\n");
10819 putpkt (args);
10820
6d820c5c 10821 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 10822 puts_filtered ("received: ");
6d820c5c 10823 print_packet (rs->buf);
c906108c
SS
10824 puts_filtered ("\n");
10825}
10826
10827#if 0
23860348 10828/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 10829
a14ed312 10830static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 10831
a14ed312 10832static void threadset_test_cmd (char *cmd, int tty);
c906108c 10833
a14ed312 10834static void threadalive_test (char *cmd, int tty);
c906108c 10835
a14ed312 10836static void threadlist_test_cmd (char *cmd, int tty);
c906108c 10837
23860348 10838int get_and_display_threadinfo (threadref *ref);
c906108c 10839
a14ed312 10840static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 10841
23860348 10842static int thread_display_step (threadref *ref, void *context);
c906108c 10843
a14ed312 10844static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 10845
a14ed312 10846static void init_remote_threadtests (void);
c906108c 10847
23860348 10848#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
10849
10850static void
0b39b52e 10851threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
10852{
10853 int sample_thread = SAMPLE_THREAD;
10854
a3f17187 10855 printf_filtered (_("Remote threadset test\n"));
79d7f229 10856 set_general_thread (sample_thread);
c906108c
SS
10857}
10858
10859
10860static void
0b39b52e 10861threadalive_test (const char *cmd, int tty)
c906108c
SS
10862{
10863 int sample_thread = SAMPLE_THREAD;
79d7f229 10864 int pid = ptid_get_pid (inferior_ptid);
ba348170 10865 ptid_t ptid = ptid_build (pid, sample_thread, 0);
c906108c 10866
79d7f229 10867 if (remote_thread_alive (ptid))
c906108c
SS
10868 printf_filtered ("PASS: Thread alive test\n");
10869 else
10870 printf_filtered ("FAIL: Thread alive test\n");
10871}
10872
23860348 10873void output_threadid (char *title, threadref *ref);
c906108c
SS
10874
10875void
fba45db2 10876output_threadid (char *title, threadref *ref)
c906108c
SS
10877{
10878 char hexid[20];
10879
23860348 10880 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
10881 hexid[16] = 0;
10882 printf_filtered ("%s %s\n", title, (&hexid[0]));
10883}
10884
10885static void
0b39b52e 10886threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
10887{
10888 int startflag = 1;
10889 threadref nextthread;
10890 int done, result_count;
10891 threadref threadlist[3];
10892
10893 printf_filtered ("Remote Threadlist test\n");
10894 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10895 &result_count, &threadlist[0]))
10896 printf_filtered ("FAIL: threadlist test\n");
10897 else
10898 {
10899 threadref *scan = threadlist;
10900 threadref *limit = scan + result_count;
10901
10902 while (scan < limit)
10903 output_threadid (" thread ", scan++);
10904 }
10905}
10906
10907void
fba45db2 10908display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
10909{
10910 output_threadid ("Threadid: ", &info->threadid);
10911 printf_filtered ("Name: %s\n ", info->shortname);
10912 printf_filtered ("State: %s\n", info->display);
10913 printf_filtered ("other: %s\n\n", info->more_display);
10914}
10915
10916int
fba45db2 10917get_and_display_threadinfo (threadref *ref)
c906108c
SS
10918{
10919 int result;
10920 int set;
10921 struct gdb_ext_thread_info threadinfo;
10922
10923 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10924 | TAG_MOREDISPLAY | TAG_DISPLAY;
10925 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10926 display_thread_info (&threadinfo);
10927 return result;
10928}
10929
10930static void
0b39b52e 10931threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
10932{
10933 int athread = SAMPLE_THREAD;
10934 threadref thread;
10935 int set;
10936
10937 int_to_threadref (&thread, athread);
10938 printf_filtered ("Remote Threadinfo test\n");
10939 if (!get_and_display_threadinfo (&thread))
10940 printf_filtered ("FAIL cannot get thread info\n");
10941}
10942
10943static int
fba45db2 10944thread_display_step (threadref *ref, void *context)
c906108c
SS
10945{
10946 /* output_threadid(" threadstep ",ref); *//* simple test */
10947 return get_and_display_threadinfo (ref);
10948}
10949
10950static void
0b39b52e 10951threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
10952{
10953 printf_filtered ("Remote Threadlist update test\n");
10954 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10955}
10956
10957static void
10958init_remote_threadtests (void)
10959{
3e43a32a
MS
10960 add_com ("tlist", class_obscure, threadlist_test_cmd,
10961 _("Fetch and print the remote list of "
10962 "thread identifiers, one pkt only"));
c906108c 10963 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 10964 _("Fetch and display info about one thread"));
c906108c 10965 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 10966 _("Test setting to a different thread"));
c906108c 10967 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 10968 _("Iterate through updating all remote thread info"));
c906108c 10969 add_com ("talive", class_obscure, threadalive_test,
1bedd215 10970 _(" Remote thread alive test "));
c906108c
SS
10971}
10972
10973#endif /* 0 */
10974
f3fb8c85
MS
10975/* Convert a thread ID to a string. Returns the string in a static
10976 buffer. */
10977
7a114964 10978static const char *
117de6a9 10979remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 10980{
79d7f229 10981 static char buf[64];
82f73884 10982 struct remote_state *rs = get_remote_state ();
f3fb8c85 10983
7cee1e54
PA
10984 if (ptid_equal (ptid, null_ptid))
10985 return normal_pid_to_str (ptid);
10986 else if (ptid_is_pid (ptid))
ecd0ada5
PA
10987 {
10988 /* Printing an inferior target id. */
10989
10990 /* When multi-process extensions are off, there's no way in the
10991 remote protocol to know the remote process id, if there's any
10992 at all. There's one exception --- when we're connected with
10993 target extended-remote, and we manually attached to a process
10994 with "attach PID". We don't record anywhere a flag that
10995 allows us to distinguish that case from the case of
10996 connecting with extended-remote and the stub already being
10997 attached to a process, and reporting yes to qAttached, hence
10998 no smart special casing here. */
10999 if (!remote_multi_process_p (rs))
11000 {
11001 xsnprintf (buf, sizeof buf, "Remote target");
11002 return buf;
11003 }
11004
11005 return normal_pid_to_str (ptid);
82f73884 11006 }
ecd0ada5 11007 else
79d7f229 11008 {
ecd0ada5
PA
11009 if (ptid_equal (magic_null_ptid, ptid))
11010 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11011 else if (remote_multi_process_p (rs))
de0d863e
DB
11012 if (ptid_get_lwp (ptid) == 0)
11013 return normal_pid_to_str (ptid);
11014 else
11015 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11016 ptid_get_pid (ptid), ptid_get_lwp (ptid));
ecd0ada5
PA
11017 else
11018 xsnprintf (buf, sizeof buf, "Thread %ld",
ba348170 11019 ptid_get_lwp (ptid));
79d7f229
PA
11020 return buf;
11021 }
f3fb8c85
MS
11022}
11023
38691318
KB
11024/* Get the address of the thread local variable in OBJFILE which is
11025 stored at OFFSET within the thread local storage for thread PTID. */
11026
11027static CORE_ADDR
117de6a9
PA
11028remote_get_thread_local_address (struct target_ops *ops,
11029 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 11030{
4082afcc 11031 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11032 {
11033 struct remote_state *rs = get_remote_state ();
6d820c5c 11034 char *p = rs->buf;
82f73884 11035 char *endp = rs->buf + get_remote_packet_size ();
571dd617 11036 enum packet_result result;
38691318
KB
11037
11038 strcpy (p, "qGetTLSAddr:");
11039 p += strlen (p);
82f73884 11040 p = write_ptid (p, endp, ptid);
38691318
KB
11041 *p++ = ',';
11042 p += hexnumstr (p, offset);
11043 *p++ = ',';
11044 p += hexnumstr (p, lm);
11045 *p++ = '\0';
11046
6d820c5c
DJ
11047 putpkt (rs->buf);
11048 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
11049 result = packet_ok (rs->buf,
11050 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11051 if (result == PACKET_OK)
38691318
KB
11052 {
11053 ULONGEST result;
11054
6d820c5c 11055 unpack_varlen_hex (rs->buf, &result);
38691318
KB
11056 return result;
11057 }
571dd617 11058 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11059 throw_error (TLS_GENERIC_ERROR,
11060 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11061 else
109c3e39
AC
11062 throw_error (TLS_GENERIC_ERROR,
11063 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11064 }
11065 else
109c3e39
AC
11066 throw_error (TLS_GENERIC_ERROR,
11067 _("TLS not supported or disabled on this target"));
38691318
KB
11068 /* Not reached. */
11069 return 0;
11070}
11071
711e434b
PM
11072/* Provide thread local base, i.e. Thread Information Block address.
11073 Returns 1 if ptid is found and thread_local_base is non zero. */
11074
70221824 11075static int
bd7ae0f5 11076remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
711e434b 11077{
4082afcc 11078 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11079 {
11080 struct remote_state *rs = get_remote_state ();
11081 char *p = rs->buf;
11082 char *endp = rs->buf + get_remote_packet_size ();
11083 enum packet_result result;
11084
11085 strcpy (p, "qGetTIBAddr:");
11086 p += strlen (p);
11087 p = write_ptid (p, endp, ptid);
11088 *p++ = '\0';
11089
11090 putpkt (rs->buf);
11091 getpkt (&rs->buf, &rs->buf_size, 0);
11092 result = packet_ok (rs->buf,
11093 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11094 if (result == PACKET_OK)
11095 {
11096 ULONGEST result;
11097
11098 unpack_varlen_hex (rs->buf, &result);
11099 if (addr)
11100 *addr = (CORE_ADDR) result;
11101 return 1;
11102 }
11103 else if (result == PACKET_UNKNOWN)
11104 error (_("Remote target doesn't support qGetTIBAddr packet"));
11105 else
11106 error (_("Remote target failed to process qGetTIBAddr request"));
11107 }
11108 else
11109 error (_("qGetTIBAddr not supported or disabled on this target"));
11110 /* Not reached. */
11111 return 0;
11112}
11113
29709017
DJ
11114/* Support for inferring a target description based on the current
11115 architecture and the size of a 'g' packet. While the 'g' packet
11116 can have any size (since optional registers can be left off the
11117 end), some sizes are easily recognizable given knowledge of the
11118 approximate architecture. */
11119
11120struct remote_g_packet_guess
11121{
11122 int bytes;
11123 const struct target_desc *tdesc;
11124};
11125typedef struct remote_g_packet_guess remote_g_packet_guess_s;
11126DEF_VEC_O(remote_g_packet_guess_s);
11127
11128struct remote_g_packet_data
11129{
11130 VEC(remote_g_packet_guess_s) *guesses;
11131};
11132
11133static struct gdbarch_data *remote_g_packet_data_handle;
11134
11135static void *
11136remote_g_packet_data_init (struct obstack *obstack)
11137{
11138 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
11139}
11140
11141void
11142register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11143 const struct target_desc *tdesc)
11144{
11145 struct remote_g_packet_data *data
19ba03f4
SM
11146 = ((struct remote_g_packet_data *)
11147 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11148 struct remote_g_packet_guess new_guess, *guess;
11149 int ix;
11150
11151 gdb_assert (tdesc != NULL);
11152
11153 for (ix = 0;
11154 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11155 ix++)
11156 if (guess->bytes == bytes)
11157 internal_error (__FILE__, __LINE__,
9b20d036 11158 _("Duplicate g packet description added for size %d"),
29709017
DJ
11159 bytes);
11160
11161 new_guess.bytes = bytes;
11162 new_guess.tdesc = tdesc;
11163 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
11164}
11165
d962ef82
DJ
11166/* Return 1 if remote_read_description would do anything on this target
11167 and architecture, 0 otherwise. */
11168
11169static int
11170remote_read_description_p (struct target_ops *target)
11171{
11172 struct remote_g_packet_data *data
19ba03f4
SM
11173 = ((struct remote_g_packet_data *)
11174 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82
DJ
11175
11176 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11177 return 1;
11178
11179 return 0;
11180}
11181
29709017
DJ
11182static const struct target_desc *
11183remote_read_description (struct target_ops *target)
11184{
11185 struct remote_g_packet_data *data
19ba03f4
SM
11186 = ((struct remote_g_packet_data *)
11187 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11188
d962ef82
DJ
11189 /* Do not try this during initial connection, when we do not know
11190 whether there is a running but stopped thread. */
11191 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
2117c711 11192 return target->beneath->to_read_description (target->beneath);
d962ef82 11193
29709017
DJ
11194 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11195 {
11196 struct remote_g_packet_guess *guess;
11197 int ix;
11198 int bytes = send_g_packet ();
11199
11200 for (ix = 0;
11201 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11202 ix++)
11203 if (guess->bytes == bytes)
11204 return guess->tdesc;
11205
11206 /* We discard the g packet. A minor optimization would be to
11207 hold on to it, and fill the register cache once we have selected
11208 an architecture, but it's too tricky to do safely. */
11209 }
11210
2117c711 11211 return target->beneath->to_read_description (target->beneath);
29709017
DJ
11212}
11213
a6b151f1
DJ
11214/* Remote file transfer support. This is host-initiated I/O, not
11215 target-initiated; for target-initiated, see remote-fileio.c. */
11216
11217/* If *LEFT is at least the length of STRING, copy STRING to
11218 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11219 decrease *LEFT. Otherwise raise an error. */
11220
11221static void
a121b7c1 11222remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11223{
11224 int len = strlen (string);
11225
11226 if (len > *left)
11227 error (_("Packet too long for target."));
11228
11229 memcpy (*buffer, string, len);
11230 *buffer += len;
11231 *left -= len;
11232
11233 /* NUL-terminate the buffer as a convenience, if there is
11234 room. */
11235 if (*left)
11236 **buffer = '\0';
11237}
11238
11239/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11240 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11241 decrease *LEFT. Otherwise raise an error. */
11242
11243static void
11244remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11245 int len)
11246{
11247 if (2 * len > *left)
11248 error (_("Packet too long for target."));
11249
11250 bin2hex (bytes, *buffer, len);
11251 *buffer += 2 * len;
11252 *left -= 2 * len;
11253
11254 /* NUL-terminate the buffer as a convenience, if there is
11255 room. */
11256 if (*left)
11257 **buffer = '\0';
11258}
11259
11260/* If *LEFT is large enough, convert VALUE to hex and add it to
11261 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11262 decrease *LEFT. Otherwise raise an error. */
11263
11264static void
11265remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11266{
11267 int len = hexnumlen (value);
11268
11269 if (len > *left)
11270 error (_("Packet too long for target."));
11271
11272 hexnumstr (*buffer, value);
11273 *buffer += len;
11274 *left -= len;
11275
11276 /* NUL-terminate the buffer as a convenience, if there is
11277 room. */
11278 if (*left)
11279 **buffer = '\0';
11280}
11281
11282/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11283 value, *REMOTE_ERRNO to the remote error number or zero if none
11284 was included, and *ATTACHMENT to point to the start of the annex
11285 if any. The length of the packet isn't needed here; there may
11286 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11287
11288 Return 0 if the packet could be parsed, -1 if it could not. If
11289 -1 is returned, the other variables may not be initialized. */
11290
11291static int
11292remote_hostio_parse_result (char *buffer, int *retcode,
11293 int *remote_errno, char **attachment)
11294{
11295 char *p, *p2;
11296
11297 *remote_errno = 0;
11298 *attachment = NULL;
11299
11300 if (buffer[0] != 'F')
11301 return -1;
11302
11303 errno = 0;
11304 *retcode = strtol (&buffer[1], &p, 16);
11305 if (errno != 0 || p == &buffer[1])
11306 return -1;
11307
11308 /* Check for ",errno". */
11309 if (*p == ',')
11310 {
11311 errno = 0;
11312 *remote_errno = strtol (p + 1, &p2, 16);
11313 if (errno != 0 || p + 1 == p2)
11314 return -1;
11315 p = p2;
11316 }
11317
11318 /* Check for ";attachment". If there is no attachment, the
11319 packet should end here. */
11320 if (*p == ';')
11321 {
11322 *attachment = p + 1;
11323 return 0;
11324 }
11325 else if (*p == '\0')
11326 return 0;
11327 else
11328 return -1;
11329}
11330
11331/* Send a prepared I/O packet to the target and read its response.
11332 The prepared packet is in the global RS->BUF before this function
11333 is called, and the answer is there when we return.
11334
11335 COMMAND_BYTES is the length of the request to send, which may include
11336 binary data. WHICH_PACKET is the packet configuration to check
11337 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11338 is set to the error number and -1 is returned. Otherwise the value
11339 returned by the function is returned.
11340
11341 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11342 attachment is expected; an error will be reported if there's a
11343 mismatch. If one is found, *ATTACHMENT will be set to point into
11344 the packet buffer and *ATTACHMENT_LEN will be set to the
11345 attachment's length. */
11346
11347static int
11348remote_hostio_send_command (int command_bytes, int which_packet,
11349 int *remote_errno, char **attachment,
11350 int *attachment_len)
11351{
11352 struct remote_state *rs = get_remote_state ();
11353 int ret, bytes_read;
11354 char *attachment_tmp;
11355
20db9c52 11356 if (packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11357 {
11358 *remote_errno = FILEIO_ENOSYS;
11359 return -1;
11360 }
11361
11362 putpkt_binary (rs->buf, command_bytes);
11363 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11364
11365 /* If it timed out, something is wrong. Don't try to parse the
11366 buffer. */
11367 if (bytes_read < 0)
11368 {
11369 *remote_errno = FILEIO_EINVAL;
11370 return -1;
11371 }
11372
11373 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11374 {
11375 case PACKET_ERROR:
11376 *remote_errno = FILEIO_EINVAL;
11377 return -1;
11378 case PACKET_UNKNOWN:
11379 *remote_errno = FILEIO_ENOSYS;
11380 return -1;
11381 case PACKET_OK:
11382 break;
11383 }
11384
11385 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11386 &attachment_tmp))
11387 {
11388 *remote_errno = FILEIO_EINVAL;
11389 return -1;
11390 }
11391
11392 /* Make sure we saw an attachment if and only if we expected one. */
11393 if ((attachment_tmp == NULL && attachment != NULL)
11394 || (attachment_tmp != NULL && attachment == NULL))
11395 {
11396 *remote_errno = FILEIO_EINVAL;
11397 return -1;
11398 }
11399
11400 /* If an attachment was found, it must point into the packet buffer;
11401 work out how many bytes there were. */
11402 if (attachment_tmp != NULL)
11403 {
11404 *attachment = attachment_tmp;
11405 *attachment_len = bytes_read - (*attachment - rs->buf);
11406 }
11407
11408 return ret;
11409}
11410
80152258
PA
11411/* Invalidate the readahead cache. */
11412
11413static void
11414readahead_cache_invalidate (void)
11415{
11416 struct remote_state *rs = get_remote_state ();
11417
11418 rs->readahead_cache.fd = -1;
11419}
11420
11421/* Invalidate the readahead cache if it is holding data for FD. */
11422
11423static void
11424readahead_cache_invalidate_fd (int fd)
11425{
11426 struct remote_state *rs = get_remote_state ();
11427
11428 if (rs->readahead_cache.fd == fd)
11429 rs->readahead_cache.fd = -1;
11430}
11431
15a201c8
GB
11432/* Set the filesystem remote_hostio functions that take FILENAME
11433 arguments will use. Return 0 on success, or -1 if an error
11434 occurs (and set *REMOTE_ERRNO). */
11435
11436static int
11437remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11438{
11439 struct remote_state *rs = get_remote_state ();
11440 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11441 char *p = rs->buf;
11442 int left = get_remote_packet_size () - 1;
11443 char arg[9];
11444 int ret;
11445
11446 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11447 return 0;
11448
11449 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11450 return 0;
11451
11452 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11453
11454 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11455 remote_buffer_add_string (&p, &left, arg);
11456
11457 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11458 remote_errno, NULL, NULL);
11459
11460 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11461 return 0;
11462
11463 if (ret == 0)
11464 rs->fs_pid = required_pid;
11465
11466 return ret;
11467}
11468
12e2a5fd 11469/* Implementation of to_fileio_open. */
a6b151f1
DJ
11470
11471static int
cd897586 11472remote_hostio_open (struct target_ops *self,
07c138c8 11473 struct inferior *inf, const char *filename,
4313b8c0
GB
11474 int flags, int mode, int warn_if_slow,
11475 int *remote_errno)
a6b151f1
DJ
11476{
11477 struct remote_state *rs = get_remote_state ();
11478 char *p = rs->buf;
11479 int left = get_remote_packet_size () - 1;
11480
4313b8c0
GB
11481 if (warn_if_slow)
11482 {
11483 static int warning_issued = 0;
11484
11485 printf_unfiltered (_("Reading %s from remote target...\n"),
11486 filename);
11487
11488 if (!warning_issued)
11489 {
11490 warning (_("File transfers from remote targets can be slow."
11491 " Use \"set sysroot\" to access files locally"
11492 " instead."));
11493 warning_issued = 1;
11494 }
11495 }
11496
15a201c8
GB
11497 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11498 return -1;
11499
a6b151f1
DJ
11500 remote_buffer_add_string (&p, &left, "vFile:open:");
11501
11502 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11503 strlen (filename));
11504 remote_buffer_add_string (&p, &left, ",");
11505
11506 remote_buffer_add_int (&p, &left, flags);
11507 remote_buffer_add_string (&p, &left, ",");
11508
11509 remote_buffer_add_int (&p, &left, mode);
11510
11511 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11512 remote_errno, NULL, NULL);
11513}
11514
12e2a5fd 11515/* Implementation of to_fileio_pwrite. */
a6b151f1
DJ
11516
11517static int
0d866f62
TT
11518remote_hostio_pwrite (struct target_ops *self,
11519 int fd, const gdb_byte *write_buf, int len,
a6b151f1
DJ
11520 ULONGEST offset, int *remote_errno)
11521{
11522 struct remote_state *rs = get_remote_state ();
11523 char *p = rs->buf;
11524 int left = get_remote_packet_size ();
11525 int out_len;
11526
80152258
PA
11527 readahead_cache_invalidate_fd (fd);
11528
a6b151f1
DJ
11529 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11530
11531 remote_buffer_add_int (&p, &left, fd);
11532 remote_buffer_add_string (&p, &left, ",");
11533
11534 remote_buffer_add_int (&p, &left, offset);
11535 remote_buffer_add_string (&p, &left, ",");
11536
124e13d9 11537 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11538 get_remote_packet_size () - (p - rs->buf));
11539
11540 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11541 remote_errno, NULL, NULL);
11542}
11543
80152258
PA
11544/* Helper for the implementation of to_fileio_pread. Read the file
11545 from the remote side with vFile:pread. */
a6b151f1
DJ
11546
11547static int
80152258
PA
11548remote_hostio_pread_vFile (struct target_ops *self,
11549 int fd, gdb_byte *read_buf, int len,
11550 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11551{
11552 struct remote_state *rs = get_remote_state ();
11553 char *p = rs->buf;
11554 char *attachment;
11555 int left = get_remote_packet_size ();
11556 int ret, attachment_len;
11557 int read_len;
11558
11559 remote_buffer_add_string (&p, &left, "vFile:pread:");
11560
11561 remote_buffer_add_int (&p, &left, fd);
11562 remote_buffer_add_string (&p, &left, ",");
11563
11564 remote_buffer_add_int (&p, &left, len);
11565 remote_buffer_add_string (&p, &left, ",");
11566
11567 remote_buffer_add_int (&p, &left, offset);
11568
11569 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11570 remote_errno, &attachment,
11571 &attachment_len);
11572
11573 if (ret < 0)
11574 return ret;
11575
bc20a4af 11576 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11577 read_buf, len);
11578 if (read_len != ret)
11579 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11580
11581 return ret;
11582}
11583
80152258
PA
11584/* Serve pread from the readahead cache. Returns number of bytes
11585 read, or 0 if the request can't be served from the cache. */
11586
11587static int
11588remote_hostio_pread_from_cache (struct remote_state *rs,
11589 int fd, gdb_byte *read_buf, size_t len,
11590 ULONGEST offset)
11591{
11592 struct readahead_cache *cache = &rs->readahead_cache;
11593
11594 if (cache->fd == fd
11595 && cache->offset <= offset
11596 && offset < cache->offset + cache->bufsize)
11597 {
11598 ULONGEST max = cache->offset + cache->bufsize;
11599
11600 if (offset + len > max)
11601 len = max - offset;
11602
11603 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11604 return len;
11605 }
11606
11607 return 0;
11608}
11609
11610/* Implementation of to_fileio_pread. */
11611
11612static int
11613remote_hostio_pread (struct target_ops *self,
11614 int fd, gdb_byte *read_buf, int len,
11615 ULONGEST offset, int *remote_errno)
11616{
11617 int ret;
11618 struct remote_state *rs = get_remote_state ();
11619 struct readahead_cache *cache = &rs->readahead_cache;
11620
11621 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11622 if (ret > 0)
11623 {
11624 cache->hit_count++;
11625
11626 if (remote_debug)
11627 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11628 pulongest (cache->hit_count));
11629 return ret;
11630 }
11631
11632 cache->miss_count++;
11633 if (remote_debug)
11634 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11635 pulongest (cache->miss_count));
11636
11637 cache->fd = fd;
11638 cache->offset = offset;
11639 cache->bufsize = get_remote_packet_size ();
224c3ddb 11640 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258
PA
11641
11642 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11643 cache->offset, remote_errno);
11644 if (ret <= 0)
11645 {
11646 readahead_cache_invalidate_fd (fd);
11647 return ret;
11648 }
11649
11650 cache->bufsize = ret;
11651 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11652}
11653
12e2a5fd 11654/* Implementation of to_fileio_close. */
a6b151f1
DJ
11655
11656static int
df39ea25 11657remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
a6b151f1
DJ
11658{
11659 struct remote_state *rs = get_remote_state ();
11660 char *p = rs->buf;
11661 int left = get_remote_packet_size () - 1;
11662
80152258
PA
11663 readahead_cache_invalidate_fd (fd);
11664
a6b151f1
DJ
11665 remote_buffer_add_string (&p, &left, "vFile:close:");
11666
11667 remote_buffer_add_int (&p, &left, fd);
11668
11669 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11670 remote_errno, NULL, NULL);
11671}
11672
12e2a5fd 11673/* Implementation of to_fileio_unlink. */
a6b151f1
DJ
11674
11675static int
dbbca37d 11676remote_hostio_unlink (struct target_ops *self,
07c138c8
GB
11677 struct inferior *inf, const char *filename,
11678 int *remote_errno)
a6b151f1
DJ
11679{
11680 struct remote_state *rs = get_remote_state ();
11681 char *p = rs->buf;
11682 int left = get_remote_packet_size () - 1;
11683
15a201c8
GB
11684 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11685 return -1;
11686
a6b151f1
DJ
11687 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11688
11689 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11690 strlen (filename));
11691
11692 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11693 remote_errno, NULL, NULL);
11694}
11695
12e2a5fd 11696/* Implementation of to_fileio_readlink. */
b9e7b9c3 11697
e0d3522b 11698static gdb::optional<std::string>
fab5aa7c 11699remote_hostio_readlink (struct target_ops *self,
07c138c8
GB
11700 struct inferior *inf, const char *filename,
11701 int *remote_errno)
b9e7b9c3
UW
11702{
11703 struct remote_state *rs = get_remote_state ();
11704 char *p = rs->buf;
11705 char *attachment;
11706 int left = get_remote_packet_size ();
11707 int len, attachment_len;
11708 int read_len;
b9e7b9c3 11709
15a201c8 11710 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
e0d3522b 11711 return {};
15a201c8 11712
b9e7b9c3
UW
11713 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11714
11715 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11716 strlen (filename));
11717
11718 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11719 remote_errno, &attachment,
11720 &attachment_len);
11721
11722 if (len < 0)
e0d3522b 11723 return {};
b9e7b9c3 11724
e0d3522b 11725 std::string ret (len, '\0');
b9e7b9c3 11726
bc20a4af 11727 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
e0d3522b 11728 (gdb_byte *) &ret[0], len);
b9e7b9c3
UW
11729 if (read_len != len)
11730 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11731
b9e7b9c3
UW
11732 return ret;
11733}
11734
12e2a5fd 11735/* Implementation of to_fileio_fstat. */
0a93529c
GB
11736
11737static int
11738remote_hostio_fstat (struct target_ops *self,
11739 int fd, struct stat *st,
11740 int *remote_errno)
11741{
11742 struct remote_state *rs = get_remote_state ();
11743 char *p = rs->buf;
11744 int left = get_remote_packet_size ();
11745 int attachment_len, ret;
11746 char *attachment;
11747 struct fio_stat fst;
11748 int read_len;
11749
464b0089
GB
11750 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11751
11752 remote_buffer_add_int (&p, &left, fd);
11753
11754 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11755 remote_errno, &attachment,
11756 &attachment_len);
11757 if (ret < 0)
0a93529c 11758 {
464b0089
GB
11759 if (*remote_errno != FILEIO_ENOSYS)
11760 return ret;
11761
0a93529c
GB
11762 /* Strictly we should return -1, ENOSYS here, but when
11763 "set sysroot remote:" was implemented in August 2008
11764 BFD's need for a stat function was sidestepped with
11765 this hack. This was not remedied until March 2015
11766 so we retain the previous behavior to avoid breaking
11767 compatibility.
11768
11769 Note that the memset is a March 2015 addition; older
11770 GDBs set st_size *and nothing else* so the structure
11771 would have garbage in all other fields. This might
11772 break something but retaining the previous behavior
11773 here would be just too wrong. */
11774
11775 memset (st, 0, sizeof (struct stat));
11776 st->st_size = INT_MAX;
11777 return 0;
11778 }
11779
0a93529c
GB
11780 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11781 (gdb_byte *) &fst, sizeof (fst));
11782
11783 if (read_len != ret)
11784 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11785
11786 if (read_len != sizeof (fst))
11787 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11788 read_len, (int) sizeof (fst));
11789
11790 remote_fileio_to_host_stat (&fst, st);
11791
11792 return 0;
11793}
11794
12e2a5fd 11795/* Implementation of to_filesystem_is_local. */
e3dd7556
GB
11796
11797static int
11798remote_filesystem_is_local (struct target_ops *self)
11799{
11800 /* Valgrind GDB presents itself as a remote target but works
11801 on the local filesystem: it does not implement remote get
11802 and users are not expected to set a sysroot. To handle
11803 this case we treat the remote filesystem as local if the
11804 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11805 does not support vFile:open. */
a3be80c3 11806 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
11807 {
11808 enum packet_support ps = packet_support (PACKET_vFile_open);
11809
11810 if (ps == PACKET_SUPPORT_UNKNOWN)
11811 {
11812 int fd, remote_errno;
11813
11814 /* Try opening a file to probe support. The supplied
11815 filename is irrelevant, we only care about whether
11816 the stub recognizes the packet or not. */
07c138c8 11817 fd = remote_hostio_open (self, NULL, "just probing",
4313b8c0 11818 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
11819 &remote_errno);
11820
11821 if (fd >= 0)
11822 remote_hostio_close (self, fd, &remote_errno);
11823
11824 ps = packet_support (PACKET_vFile_open);
11825 }
11826
11827 if (ps == PACKET_DISABLE)
11828 {
11829 static int warning_issued = 0;
11830
11831 if (!warning_issued)
11832 {
11833 warning (_("remote target does not support file"
11834 " transfer, attempting to access files"
11835 " from local filesystem."));
11836 warning_issued = 1;
11837 }
11838
11839 return 1;
11840 }
11841 }
11842
11843 return 0;
11844}
11845
a6b151f1
DJ
11846static int
11847remote_fileio_errno_to_host (int errnum)
11848{
11849 switch (errnum)
11850 {
11851 case FILEIO_EPERM:
11852 return EPERM;
11853 case FILEIO_ENOENT:
11854 return ENOENT;
11855 case FILEIO_EINTR:
11856 return EINTR;
11857 case FILEIO_EIO:
11858 return EIO;
11859 case FILEIO_EBADF:
11860 return EBADF;
11861 case FILEIO_EACCES:
11862 return EACCES;
11863 case FILEIO_EFAULT:
11864 return EFAULT;
11865 case FILEIO_EBUSY:
11866 return EBUSY;
11867 case FILEIO_EEXIST:
11868 return EEXIST;
11869 case FILEIO_ENODEV:
11870 return ENODEV;
11871 case FILEIO_ENOTDIR:
11872 return ENOTDIR;
11873 case FILEIO_EISDIR:
11874 return EISDIR;
11875 case FILEIO_EINVAL:
11876 return EINVAL;
11877 case FILEIO_ENFILE:
11878 return ENFILE;
11879 case FILEIO_EMFILE:
11880 return EMFILE;
11881 case FILEIO_EFBIG:
11882 return EFBIG;
11883 case FILEIO_ENOSPC:
11884 return ENOSPC;
11885 case FILEIO_ESPIPE:
11886 return ESPIPE;
11887 case FILEIO_EROFS:
11888 return EROFS;
11889 case FILEIO_ENOSYS:
11890 return ENOSYS;
11891 case FILEIO_ENAMETOOLONG:
11892 return ENAMETOOLONG;
11893 }
11894 return -1;
11895}
11896
11897static char *
11898remote_hostio_error (int errnum)
11899{
11900 int host_error = remote_fileio_errno_to_host (errnum);
11901
11902 if (host_error == -1)
11903 error (_("Unknown remote I/O error %d"), errnum);
11904 else
11905 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11906}
11907
a6b151f1
DJ
11908static void
11909remote_hostio_close_cleanup (void *opaque)
11910{
11911 int fd = *(int *) opaque;
11912 int remote_errno;
11913
df39ea25 11914 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
a6b151f1
DJ
11915}
11916
11917void
11918remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11919{
11920 struct cleanup *back_to, *close_cleanup;
11921 int retcode, fd, remote_errno, bytes, io_size;
a6b151f1
DJ
11922 gdb_byte *buffer;
11923 int bytes_in_buffer;
11924 int saw_eof;
11925 ULONGEST offset;
5d93a237 11926 struct remote_state *rs = get_remote_state ();
a6b151f1 11927
5d93a237 11928 if (!rs->remote_desc)
a6b151f1
DJ
11929 error (_("command can only be used with remote target"));
11930
d419f42d 11931 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
11932 if (file == NULL)
11933 perror_with_name (local_file);
a6b151f1 11934
07c138c8 11935 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
cd897586 11936 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
a6b151f1 11937 | FILEIO_O_TRUNC),
4313b8c0 11938 0700, 0, &remote_errno);
a6b151f1
DJ
11939 if (fd == -1)
11940 remote_hostio_error (remote_errno);
11941
11942 /* Send up to this many bytes at once. They won't all fit in the
11943 remote packet limit, so we'll transfer slightly fewer. */
11944 io_size = get_remote_packet_size ();
224c3ddb 11945 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 11946 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
11947
11948 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11949
11950 bytes_in_buffer = 0;
11951 saw_eof = 0;
11952 offset = 0;
11953 while (bytes_in_buffer || !saw_eof)
11954 {
11955 if (!saw_eof)
11956 {
3e43a32a
MS
11957 bytes = fread (buffer + bytes_in_buffer, 1,
11958 io_size - bytes_in_buffer,
d419f42d 11959 file.get ());
a6b151f1
DJ
11960 if (bytes == 0)
11961 {
d419f42d 11962 if (ferror (file.get ()))
a6b151f1
DJ
11963 error (_("Error reading %s."), local_file);
11964 else
11965 {
11966 /* EOF. Unless there is something still in the
11967 buffer from the last iteration, we are done. */
11968 saw_eof = 1;
11969 if (bytes_in_buffer == 0)
11970 break;
11971 }
11972 }
11973 }
11974 else
11975 bytes = 0;
11976
11977 bytes += bytes_in_buffer;
11978 bytes_in_buffer = 0;
11979
0d866f62
TT
11980 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11981 fd, buffer, bytes,
3e43a32a 11982 offset, &remote_errno);
a6b151f1
DJ
11983
11984 if (retcode < 0)
11985 remote_hostio_error (remote_errno);
11986 else if (retcode == 0)
11987 error (_("Remote write of %d bytes returned 0!"), bytes);
11988 else if (retcode < bytes)
11989 {
11990 /* Short write. Save the rest of the read data for the next
11991 write. */
11992 bytes_in_buffer = bytes - retcode;
11993 memmove (buffer, buffer + retcode, bytes_in_buffer);
11994 }
11995
11996 offset += retcode;
11997 }
11998
11999 discard_cleanups (close_cleanup);
df39ea25 12000 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12001 remote_hostio_error (remote_errno);
12002
12003 if (from_tty)
12004 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12005 do_cleanups (back_to);
12006}
12007
12008void
12009remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12010{
12011 struct cleanup *back_to, *close_cleanup;
cea39f65 12012 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
12013 gdb_byte *buffer;
12014 ULONGEST offset;
5d93a237 12015 struct remote_state *rs = get_remote_state ();
a6b151f1 12016
5d93a237 12017 if (!rs->remote_desc)
a6b151f1
DJ
12018 error (_("command can only be used with remote target"));
12019
07c138c8 12020 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
4313b8c0
GB
12021 remote_file, FILEIO_O_RDONLY, 0, 0,
12022 &remote_errno);
a6b151f1
DJ
12023 if (fd == -1)
12024 remote_hostio_error (remote_errno);
12025
d419f42d 12026 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12027 if (file == NULL)
12028 perror_with_name (local_file);
a6b151f1
DJ
12029
12030 /* Send up to this many bytes at once. They won't all fit in the
12031 remote packet limit, so we'll transfer slightly fewer. */
12032 io_size = get_remote_packet_size ();
224c3ddb 12033 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12034 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
12035
12036 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
12037
12038 offset = 0;
12039 while (1)
12040 {
a3be983c
TT
12041 bytes = remote_hostio_pread (find_target_at (process_stratum),
12042 fd, buffer, io_size, offset, &remote_errno);
a6b151f1
DJ
12043 if (bytes == 0)
12044 /* Success, but no bytes, means end-of-file. */
12045 break;
12046 if (bytes == -1)
12047 remote_hostio_error (remote_errno);
12048
12049 offset += bytes;
12050
d419f42d 12051 bytes = fwrite (buffer, 1, bytes, file.get ());
a6b151f1
DJ
12052 if (bytes == 0)
12053 perror_with_name (local_file);
12054 }
12055
12056 discard_cleanups (close_cleanup);
df39ea25 12057 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12058 remote_hostio_error (remote_errno);
12059
12060 if (from_tty)
12061 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12062 do_cleanups (back_to);
12063}
12064
12065void
12066remote_file_delete (const char *remote_file, int from_tty)
12067{
12068 int retcode, remote_errno;
5d93a237 12069 struct remote_state *rs = get_remote_state ();
a6b151f1 12070
5d93a237 12071 if (!rs->remote_desc)
a6b151f1
DJ
12072 error (_("command can only be used with remote target"));
12073
dbbca37d 12074 retcode = remote_hostio_unlink (find_target_at (process_stratum),
07c138c8 12075 NULL, remote_file, &remote_errno);
a6b151f1
DJ
12076 if (retcode == -1)
12077 remote_hostio_error (remote_errno);
12078
12079 if (from_tty)
12080 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12081}
12082
12083static void
ac88e2de 12084remote_put_command (const char *args, int from_tty)
a6b151f1 12085{
d1a41061
PP
12086 if (args == NULL)
12087 error_no_arg (_("file to put"));
12088
773a1edc 12089 gdb_argv argv (args);
a6b151f1
DJ
12090 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12091 error (_("Invalid parameters to remote put"));
12092
12093 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12094}
12095
12096static void
ac88e2de 12097remote_get_command (const char *args, int from_tty)
a6b151f1 12098{
d1a41061
PP
12099 if (args == NULL)
12100 error_no_arg (_("file to get"));
12101
773a1edc 12102 gdb_argv argv (args);
a6b151f1
DJ
12103 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12104 error (_("Invalid parameters to remote get"));
12105
12106 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12107}
12108
12109static void
ac88e2de 12110remote_delete_command (const char *args, int from_tty)
a6b151f1 12111{
d1a41061
PP
12112 if (args == NULL)
12113 error_no_arg (_("file to delete"));
12114
773a1edc 12115 gdb_argv argv (args);
a6b151f1
DJ
12116 if (argv[0] == NULL || argv[1] != NULL)
12117 error (_("Invalid parameters to remote delete"));
12118
12119 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12120}
12121
12122static void
981a3fb3 12123remote_command (const char *args, int from_tty)
a6b151f1 12124{
635c7e8a 12125 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12126}
12127
b2175913 12128static int
19db3e69 12129remote_can_execute_reverse (struct target_ops *self)
b2175913 12130{
4082afcc
PA
12131 if (packet_support (PACKET_bs) == PACKET_ENABLE
12132 || packet_support (PACKET_bc) == PACKET_ENABLE)
40ab02ce
MS
12133 return 1;
12134 else
12135 return 0;
b2175913
MS
12136}
12137
74531fed 12138static int
2a9a2795 12139remote_supports_non_stop (struct target_ops *self)
74531fed
PA
12140{
12141 return 1;
12142}
12143
03583c20 12144static int
2bfc0540 12145remote_supports_disable_randomization (struct target_ops *self)
03583c20
UW
12146{
12147 /* Only supported in extended mode. */
12148 return 0;
12149}
12150
8a305172 12151static int
86ce2668 12152remote_supports_multi_process (struct target_ops *self)
8a305172
PA
12153{
12154 struct remote_state *rs = get_remote_state ();
a744cf53 12155
8020350c 12156 return remote_multi_process_p (rs);
8a305172
PA
12157}
12158
70221824 12159static int
782b2b07
SS
12160remote_supports_cond_tracepoints (void)
12161{
4082afcc 12162 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12163}
12164
3788aec7 12165static int
efcc2da7 12166remote_supports_cond_breakpoints (struct target_ops *self)
3788aec7 12167{
4082afcc 12168 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12169}
12170
70221824 12171static int
7a697b8d
SS
12172remote_supports_fast_tracepoints (void)
12173{
4082afcc 12174 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12175}
12176
0fb4aa4b
PA
12177static int
12178remote_supports_static_tracepoints (void)
12179{
4082afcc 12180 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12181}
12182
1e4d1764
YQ
12183static int
12184remote_supports_install_in_trace (void)
12185{
4082afcc 12186 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12187}
12188
d248b706 12189static int
7d178d6a 12190remote_supports_enable_disable_tracepoint (struct target_ops *self)
d248b706 12191{
4082afcc
PA
12192 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12193 == PACKET_ENABLE);
d248b706
KY
12194}
12195
3065dfb6 12196static int
6de37a3a 12197remote_supports_string_tracing (struct target_ops *self)
3065dfb6 12198{
4082afcc 12199 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12200}
12201
d3ce09f5 12202static int
78eff0ec 12203remote_can_run_breakpoint_commands (struct target_ops *self)
d3ce09f5 12204{
4082afcc 12205 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12206}
12207
35b1e5cc 12208static void
ecae04e1 12209remote_trace_init (struct target_ops *self)
35b1e5cc 12210{
b6bb3468
PA
12211 struct remote_state *rs = get_remote_state ();
12212
35b1e5cc 12213 putpkt ("QTinit");
b6bb3468
PA
12214 remote_get_noisy_reply ();
12215 if (strcmp (rs->buf, "OK") != 0)
35b1e5cc
SS
12216 error (_("Target does not support this command."));
12217}
12218
409873ef
SS
12219/* Recursive routine to walk through command list including loops, and
12220 download packets for each command. */
12221
12222static void
12223remote_download_command_source (int num, ULONGEST addr,
12224 struct command_line *cmds)
12225{
12226 struct remote_state *rs = get_remote_state ();
12227 struct command_line *cmd;
12228
12229 for (cmd = cmds; cmd; cmd = cmd->next)
12230 {
0df8b418 12231 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12232 strcpy (rs->buf, "QTDPsrc:");
12233 encode_source_string (num, addr, "cmd", cmd->line,
12234 rs->buf + strlen (rs->buf),
12235 rs->buf_size - strlen (rs->buf));
12236 putpkt (rs->buf);
b6bb3468
PA
12237 remote_get_noisy_reply ();
12238 if (strcmp (rs->buf, "OK"))
409873ef
SS
12239 warning (_("Target does not support source download."));
12240
12241 if (cmd->control_type == while_control
12242 || cmd->control_type == while_stepping_control)
12243 {
12244 remote_download_command_source (num, addr, *cmd->body_list);
12245
0df8b418 12246 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12247 strcpy (rs->buf, "QTDPsrc:");
12248 encode_source_string (num, addr, "cmd", "end",
12249 rs->buf + strlen (rs->buf),
12250 rs->buf_size - strlen (rs->buf));
12251 putpkt (rs->buf);
b6bb3468
PA
12252 remote_get_noisy_reply ();
12253 if (strcmp (rs->buf, "OK"))
409873ef
SS
12254 warning (_("Target does not support source download."));
12255 }
12256 }
12257}
12258
35b1e5cc 12259static void
548f7808 12260remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
35b1e5cc 12261{
bba74b36 12262#define BUF_SIZE 2048
e8ba3115 12263
35b1e5cc 12264 CORE_ADDR tpaddr;
409873ef 12265 char addrbuf[40];
bba74b36 12266 char buf[BUF_SIZE];
b44ec619
SM
12267 std::vector<std::string> tdp_actions;
12268 std::vector<std::string> stepping_actions;
35b1e5cc 12269 char *pkt;
e8ba3115 12270 struct breakpoint *b = loc->owner;
d9b3f62e 12271 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12272 struct remote_state *rs = get_remote_state ();
35b1e5cc 12273
dc673c81 12274 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12275
12276 tpaddr = loc->address;
12277 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
12278 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
12279 addrbuf, /* address */
12280 (b->enable_state == bp_enabled ? 'E' : 'D'),
12281 t->step_count, t->pass_count);
e8ba3115
YQ
12282 /* Fast tracepoints are mostly handled by the target, but we can
12283 tell the target how big of an instruction block should be moved
12284 around. */
12285 if (b->type == bp_fast_tracepoint)
12286 {
12287 /* Only test for support at download time; we may not know
12288 target capabilities at definition time. */
12289 if (remote_supports_fast_tracepoints ())
35b1e5cc 12290 {
6b940e6a
PL
12291 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12292 NULL))
bba74b36 12293 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
6b940e6a 12294 gdb_insn_length (loc->gdbarch, tpaddr));
35b1e5cc 12295 else
e8ba3115
YQ
12296 /* If it passed validation at definition but fails now,
12297 something is very wrong. */
12298 internal_error (__FILE__, __LINE__,
12299 _("Fast tracepoint not "
12300 "valid during download"));
35b1e5cc 12301 }
e8ba3115
YQ
12302 else
12303 /* Fast tracepoints are functionally identical to regular
12304 tracepoints, so don't take lack of support as a reason to
12305 give up on the trace run. */
12306 warning (_("Target does not support fast tracepoints, "
12307 "downloading %d as regular tracepoint"), b->number);
12308 }
12309 else if (b->type == bp_static_tracepoint)
12310 {
12311 /* Only test for support at download time; we may not know
12312 target capabilities at definition time. */
12313 if (remote_supports_static_tracepoints ())
0fb4aa4b 12314 {
e8ba3115 12315 struct static_tracepoint_marker marker;
0fb4aa4b 12316
e8ba3115
YQ
12317 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12318 strcat (buf, ":S");
0fb4aa4b 12319 else
e8ba3115 12320 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12321 }
e8ba3115
YQ
12322 else
12323 /* Fast tracepoints are functionally identical to regular
12324 tracepoints, so don't take lack of support as a reason
12325 to give up on the trace run. */
12326 error (_("Target does not support static tracepoints"));
12327 }
12328 /* If the tracepoint has a conditional, make it into an agent
12329 expression and append to the definition. */
12330 if (loc->cond)
12331 {
12332 /* Only test support at download time, we may not know target
12333 capabilities at definition time. */
12334 if (remote_supports_cond_tracepoints ())
35b1e5cc 12335 {
833177a4 12336 agent_expr_up aexpr = gen_eval_for_expr (tpaddr, loc->cond.get ());
bba74b36
YQ
12337 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
12338 aexpr->len);
e8ba3115 12339 pkt = buf + strlen (buf);
b44ec619 12340 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12341 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12342 *pkt = '\0';
35b1e5cc 12343 }
e8ba3115
YQ
12344 else
12345 warning (_("Target does not support conditional tracepoints, "
12346 "ignoring tp %d cond"), b->number);
12347 }
35b1e5cc 12348
d9b3f62e 12349 if (b->commands || *default_collect)
e8ba3115
YQ
12350 strcat (buf, "-");
12351 putpkt (buf);
b6bb3468
PA
12352 remote_get_noisy_reply ();
12353 if (strcmp (rs->buf, "OK"))
e8ba3115 12354 error (_("Target does not support tracepoints."));
35b1e5cc 12355
e8ba3115 12356 /* do_single_steps (t); */
b44ec619
SM
12357 for (auto action_it = tdp_actions.begin ();
12358 action_it != tdp_actions.end (); action_it++)
e8ba3115 12359 {
b44ec619
SM
12360 QUIT; /* Allow user to bail out with ^C. */
12361
12362 bool has_more = (action_it != tdp_actions.end ()
12363 || !stepping_actions.empty ());
12364
12365 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
12366 b->number, addrbuf, /* address */
12367 action_it->c_str (),
12368 has_more ? '-' : 0);
12369 putpkt (buf);
12370 remote_get_noisy_reply ();
12371 if (strcmp (rs->buf, "OK"))
12372 error (_("Error on target while setting tracepoints."));
e8ba3115 12373 }
409873ef 12374
b44ec619
SM
12375 for (auto action_it = stepping_actions.begin ();
12376 action_it != stepping_actions.end (); action_it++)
12377 {
12378 QUIT; /* Allow user to bail out with ^C. */
12379
12380 bool is_first = action_it == stepping_actions.begin ();
12381 bool has_more = action_it != stepping_actions.end ();
12382
12383 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12384 b->number, addrbuf, /* address */
12385 is_first ? "S" : "",
12386 action_it->c_str (),
12387 has_more ? "-" : "");
12388 putpkt (buf);
12389 remote_get_noisy_reply ();
12390 if (strcmp (rs->buf, "OK"))
12391 error (_("Error on target while setting tracepoints."));
12392 }
12393
4082afcc 12394 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12395 {
f00aae0f 12396 if (b->location != NULL)
409873ef 12397 {
e8ba3115 12398 strcpy (buf, "QTDPsrc:");
f00aae0f 12399 encode_source_string (b->number, loc->address, "at",
d28cd78a 12400 event_location_to_string (b->location.get ()),
f00aae0f 12401 buf + strlen (buf), 2048 - strlen (buf));
e8ba3115 12402 putpkt (buf);
b6bb3468
PA
12403 remote_get_noisy_reply ();
12404 if (strcmp (rs->buf, "OK"))
e8ba3115 12405 warning (_("Target does not support source download."));
409873ef 12406 }
e8ba3115
YQ
12407 if (b->cond_string)
12408 {
12409 strcpy (buf, "QTDPsrc:");
12410 encode_source_string (b->number, loc->address,
12411 "cond", b->cond_string, buf + strlen (buf),
12412 2048 - strlen (buf));
12413 putpkt (buf);
b6bb3468
PA
12414 remote_get_noisy_reply ();
12415 if (strcmp (rs->buf, "OK"))
e8ba3115
YQ
12416 warning (_("Target does not support source download."));
12417 }
12418 remote_download_command_source (b->number, loc->address,
12419 breakpoint_commands (b));
35b1e5cc 12420 }
35b1e5cc
SS
12421}
12422
1e4d1764 12423static int
a52a8357 12424remote_can_download_tracepoint (struct target_ops *self)
1e4d1764 12425{
1e51243a
PA
12426 struct remote_state *rs = get_remote_state ();
12427 struct trace_status *ts;
12428 int status;
12429
12430 /* Don't try to install tracepoints until we've relocated our
12431 symbols, and fetched and merged the target's tracepoint list with
12432 ours. */
12433 if (rs->starting_up)
12434 return 0;
12435
12436 ts = current_trace_status ();
8bd200f1 12437 status = remote_get_trace_status (self, ts);
1e4d1764
YQ
12438
12439 if (status == -1 || !ts->running_known || !ts->running)
12440 return 0;
12441
12442 /* If we are in a tracing experiment, but remote stub doesn't support
12443 installing tracepoint in trace, we have to return. */
12444 if (!remote_supports_install_in_trace ())
12445 return 0;
12446
12447 return 1;
12448}
12449
12450
35b1e5cc 12451static void
559d2b81 12452remote_download_trace_state_variable (struct target_ops *self,
c252925c 12453 const trace_state_variable &tsv)
35b1e5cc
SS
12454{
12455 struct remote_state *rs = get_remote_state ();
00bf0b85 12456 char *p;
35b1e5cc 12457
bba74b36 12458 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
c252925c
SM
12459 tsv.number, phex ((ULONGEST) tsv.initial_value, 8),
12460 tsv.builtin);
00bf0b85 12461 p = rs->buf + strlen (rs->buf);
c252925c 12462 if ((p - rs->buf) + tsv.name.length () * 2 >= get_remote_packet_size ())
00bf0b85 12463 error (_("Trace state variable name too long for tsv definition packet"));
c252925c 12464 p += 2 * bin2hex ((gdb_byte *) (tsv.name.data ()), p, tsv.name.length ());
00bf0b85 12465 *p++ = '\0';
35b1e5cc 12466 putpkt (rs->buf);
b6bb3468
PA
12467 remote_get_noisy_reply ();
12468 if (*rs->buf == '\0')
ad91cd99 12469 error (_("Target does not support this command."));
b6bb3468 12470 if (strcmp (rs->buf, "OK") != 0)
ad91cd99 12471 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12472}
12473
d248b706 12474static void
46670d57
TT
12475remote_enable_tracepoint (struct target_ops *self,
12476 struct bp_location *location)
d248b706
KY
12477{
12478 struct remote_state *rs = get_remote_state ();
12479 char addr_buf[40];
12480
12481 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12482 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12483 location->owner->number, addr_buf);
d248b706 12484 putpkt (rs->buf);
b6bb3468 12485 remote_get_noisy_reply ();
d248b706
KY
12486 if (*rs->buf == '\0')
12487 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12488 if (strcmp (rs->buf, "OK") != 0)
12489 error (_("Error on target while enabling tracepoint."));
12490}
12491
12492static void
780b049c
TT
12493remote_disable_tracepoint (struct target_ops *self,
12494 struct bp_location *location)
d248b706
KY
12495{
12496 struct remote_state *rs = get_remote_state ();
12497 char addr_buf[40];
12498
12499 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12500 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12501 location->owner->number, addr_buf);
d248b706 12502 putpkt (rs->buf);
b6bb3468 12503 remote_get_noisy_reply ();
d248b706
KY
12504 if (*rs->buf == '\0')
12505 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12506 if (strcmp (rs->buf, "OK") != 0)
12507 error (_("Error on target while disabling tracepoint."));
12508}
12509
35b1e5cc 12510static void
583f9a86 12511remote_trace_set_readonly_regions (struct target_ops *self)
35b1e5cc
SS
12512{
12513 asection *s;
81b9b86e 12514 bfd *abfd = NULL;
35b1e5cc 12515 bfd_size_type size;
608bcef2 12516 bfd_vma vma;
35b1e5cc 12517 int anysecs = 0;
c2fa21f1 12518 int offset = 0;
35b1e5cc
SS
12519
12520 if (!exec_bfd)
12521 return; /* No information to give. */
12522
b6bb3468
PA
12523 struct remote_state *rs = get_remote_state ();
12524
12525 strcpy (rs->buf, "QTro");
12526 offset = strlen (rs->buf);
35b1e5cc
SS
12527 for (s = exec_bfd->sections; s; s = s->next)
12528 {
12529 char tmp1[40], tmp2[40];
c2fa21f1 12530 int sec_length;
35b1e5cc
SS
12531
12532 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 12533 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
12534 (s->flags & SEC_READONLY) == 0)
12535 continue;
12536
12537 anysecs = 1;
81b9b86e 12538 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 12539 size = bfd_get_section_size (s);
608bcef2
HZ
12540 sprintf_vma (tmp1, vma);
12541 sprintf_vma (tmp2, vma + size);
c2fa21f1 12542 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
b6bb3468 12543 if (offset + sec_length + 1 > rs->buf_size)
c2fa21f1 12544 {
4082afcc 12545 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 12546 warning (_("\
c2fa21f1
HZ
12547Too many sections for read-only sections definition packet."));
12548 break;
12549 }
b6bb3468 12550 xsnprintf (rs->buf + offset, rs->buf_size - offset, ":%s,%s",
bba74b36 12551 tmp1, tmp2);
c2fa21f1 12552 offset += sec_length;
35b1e5cc
SS
12553 }
12554 if (anysecs)
12555 {
b6bb3468
PA
12556 putpkt (rs->buf);
12557 getpkt (&rs->buf, &rs->buf_size, 0);
35b1e5cc
SS
12558 }
12559}
12560
12561static void
e2d1aae3 12562remote_trace_start (struct target_ops *self)
35b1e5cc 12563{
b6bb3468
PA
12564 struct remote_state *rs = get_remote_state ();
12565
35b1e5cc 12566 putpkt ("QTStart");
b6bb3468
PA
12567 remote_get_noisy_reply ();
12568 if (*rs->buf == '\0')
ad91cd99 12569 error (_("Target does not support this command."));
b6bb3468
PA
12570 if (strcmp (rs->buf, "OK") != 0)
12571 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12572}
12573
12574static int
8bd200f1 12575remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
35b1e5cc 12576{
953b98d1 12577 /* Initialize it just to avoid a GCC false warning. */
f652de6f 12578 char *p = NULL;
0df8b418 12579 /* FIXME we need to get register block size some other way. */
00bf0b85 12580 extern int trace_regblock_size;
bd3eecc3 12581 enum packet_result result;
b6bb3468 12582 struct remote_state *rs = get_remote_state ();
bd3eecc3 12583
4082afcc 12584 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 12585 return -1;
a744cf53 12586
5cd63fda
PA
12587 trace_regblock_size
12588 = get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 12589
049dc89b
JK
12590 putpkt ("qTStatus");
12591
492d29ea 12592 TRY
67f41397 12593 {
b6bb3468 12594 p = remote_get_noisy_reply ();
67f41397 12595 }
492d29ea 12596 CATCH (ex, RETURN_MASK_ERROR)
67f41397 12597 {
598d3636
JK
12598 if (ex.error != TARGET_CLOSE_ERROR)
12599 {
12600 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12601 return -1;
12602 }
12603 throw_exception (ex);
67f41397 12604 }
492d29ea 12605 END_CATCH
00bf0b85 12606
bd3eecc3
PA
12607 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12608
00bf0b85 12609 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 12610 if (result == PACKET_UNKNOWN)
00bf0b85 12611 return -1;
35b1e5cc 12612
00bf0b85 12613 /* We're working with a live target. */
f5911ea1 12614 ts->filename = NULL;
00bf0b85 12615
00bf0b85 12616 if (*p++ != 'T')
b6bb3468 12617 error (_("Bogus trace status reply from target: %s"), rs->buf);
35b1e5cc 12618
84cebc4a
YQ
12619 /* Function 'parse_trace_status' sets default value of each field of
12620 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
12621 parse_trace_status (p, ts);
12622
12623 return ts->running;
35b1e5cc
SS
12624}
12625
70221824 12626static void
db90e85c 12627remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
f196051f
SS
12628 struct uploaded_tp *utp)
12629{
12630 struct remote_state *rs = get_remote_state ();
f196051f
SS
12631 char *reply;
12632 struct bp_location *loc;
12633 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 12634 size_t size = get_remote_packet_size ();
f196051f
SS
12635
12636 if (tp)
12637 {
c1fc2657 12638 tp->hit_count = 0;
f196051f 12639 tp->traceframe_usage = 0;
c1fc2657 12640 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
12641 {
12642 /* If the tracepoint was never downloaded, don't go asking for
12643 any status. */
12644 if (tp->number_on_target == 0)
12645 continue;
bba74b36
YQ
12646 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12647 phex_nz (loc->address, 0));
f196051f 12648 putpkt (rs->buf);
b6bb3468 12649 reply = remote_get_noisy_reply ();
f196051f
SS
12650 if (reply && *reply)
12651 {
12652 if (*reply == 'V')
12653 parse_tracepoint_status (reply + 1, bp, utp);
12654 }
12655 }
12656 }
12657 else if (utp)
12658 {
12659 utp->hit_count = 0;
12660 utp->traceframe_usage = 0;
bba74b36
YQ
12661 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12662 phex_nz (utp->addr, 0));
f196051f 12663 putpkt (rs->buf);
b6bb3468 12664 reply = remote_get_noisy_reply ();
f196051f
SS
12665 if (reply && *reply)
12666 {
12667 if (*reply == 'V')
12668 parse_tracepoint_status (reply + 1, bp, utp);
12669 }
12670 }
12671}
12672
35b1e5cc 12673static void
74499f1b 12674remote_trace_stop (struct target_ops *self)
35b1e5cc 12675{
b6bb3468
PA
12676 struct remote_state *rs = get_remote_state ();
12677
35b1e5cc 12678 putpkt ("QTStop");
b6bb3468
PA
12679 remote_get_noisy_reply ();
12680 if (*rs->buf == '\0')
ad91cd99 12681 error (_("Target does not support this command."));
b6bb3468
PA
12682 if (strcmp (rs->buf, "OK") != 0)
12683 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12684}
12685
12686static int
bd4c6793
TT
12687remote_trace_find (struct target_ops *self,
12688 enum trace_find_type type, int num,
cc5925ad 12689 CORE_ADDR addr1, CORE_ADDR addr2,
35b1e5cc
SS
12690 int *tpp)
12691{
12692 struct remote_state *rs = get_remote_state ();
bba74b36 12693 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
12694 char *p, *reply;
12695 int target_frameno = -1, target_tracept = -1;
12696
e6e4e701
PA
12697 /* Lookups other than by absolute frame number depend on the current
12698 trace selected, so make sure it is correct on the remote end
12699 first. */
12700 if (type != tfind_number)
12701 set_remote_traceframe ();
12702
35b1e5cc
SS
12703 p = rs->buf;
12704 strcpy (p, "QTFrame:");
12705 p = strchr (p, '\0');
12706 switch (type)
12707 {
12708 case tfind_number:
bba74b36 12709 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
12710 break;
12711 case tfind_pc:
bba74b36 12712 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
12713 break;
12714 case tfind_tp:
bba74b36 12715 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
12716 break;
12717 case tfind_range:
bba74b36
YQ
12718 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12719 phex_nz (addr2, 0));
35b1e5cc
SS
12720 break;
12721 case tfind_outside:
bba74b36
YQ
12722 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12723 phex_nz (addr2, 0));
35b1e5cc
SS
12724 break;
12725 default:
9b20d036 12726 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
12727 }
12728
12729 putpkt (rs->buf);
b6bb3468 12730 reply = remote_get_noisy_reply ();
ad91cd99
PA
12731 if (*reply == '\0')
12732 error (_("Target does not support this command."));
35b1e5cc
SS
12733
12734 while (reply && *reply)
12735 switch (*reply)
12736 {
12737 case 'F':
f197e0f1
VP
12738 p = ++reply;
12739 target_frameno = (int) strtol (p, &reply, 16);
12740 if (reply == p)
12741 error (_("Unable to parse trace frame number"));
e6e4e701
PA
12742 /* Don't update our remote traceframe number cache on failure
12743 to select a remote traceframe. */
f197e0f1
VP
12744 if (target_frameno == -1)
12745 return -1;
35b1e5cc
SS
12746 break;
12747 case 'T':
f197e0f1
VP
12748 p = ++reply;
12749 target_tracept = (int) strtol (p, &reply, 16);
12750 if (reply == p)
12751 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
12752 break;
12753 case 'O': /* "OK"? */
12754 if (reply[1] == 'K' && reply[2] == '\0')
12755 reply += 2;
12756 else
12757 error (_("Bogus reply from target: %s"), reply);
12758 break;
12759 default:
12760 error (_("Bogus reply from target: %s"), reply);
12761 }
12762 if (tpp)
12763 *tpp = target_tracept;
e6e4e701 12764
262e1174 12765 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
12766 return target_frameno;
12767}
12768
12769static int
4011015b
TT
12770remote_get_trace_state_variable_value (struct target_ops *self,
12771 int tsvnum, LONGEST *val)
35b1e5cc
SS
12772{
12773 struct remote_state *rs = get_remote_state ();
12774 char *reply;
12775 ULONGEST uval;
12776
e6e4e701
PA
12777 set_remote_traceframe ();
12778
bba74b36 12779 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 12780 putpkt (rs->buf);
b6bb3468 12781 reply = remote_get_noisy_reply ();
35b1e5cc
SS
12782 if (reply && *reply)
12783 {
12784 if (*reply == 'V')
12785 {
12786 unpack_varlen_hex (reply + 1, &uval);
12787 *val = (LONGEST) uval;
12788 return 1;
12789 }
12790 }
12791 return 0;
12792}
12793
00bf0b85 12794static int
dc3decaf 12795remote_save_trace_data (struct target_ops *self, const char *filename)
00bf0b85
SS
12796{
12797 struct remote_state *rs = get_remote_state ();
12798 char *p, *reply;
12799
12800 p = rs->buf;
12801 strcpy (p, "QTSave:");
12802 p += strlen (p);
12803 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12804 error (_("Remote file name too long for trace save packet"));
9f1b45b0 12805 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
12806 *p++ = '\0';
12807 putpkt (rs->buf);
b6bb3468 12808 reply = remote_get_noisy_reply ();
d6c5869f 12809 if (*reply == '\0')
ad91cd99
PA
12810 error (_("Target does not support this command."));
12811 if (strcmp (reply, "OK") != 0)
12812 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
12813 return 0;
12814}
12815
12816/* This is basically a memory transfer, but needs to be its own packet
12817 because we don't know how the target actually organizes its trace
12818 memory, plus we want to be able to ask for as much as possible, but
12819 not be unhappy if we don't get as much as we ask for. */
12820
12821static LONGEST
88ee6f45
TT
12822remote_get_raw_trace_data (struct target_ops *self,
12823 gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
12824{
12825 struct remote_state *rs = get_remote_state ();
12826 char *reply;
12827 char *p;
12828 int rslt;
12829
12830 p = rs->buf;
12831 strcpy (p, "qTBuffer:");
12832 p += strlen (p);
12833 p += hexnumstr (p, offset);
12834 *p++ = ',';
12835 p += hexnumstr (p, len);
12836 *p++ = '\0';
12837
12838 putpkt (rs->buf);
b6bb3468 12839 reply = remote_get_noisy_reply ();
00bf0b85
SS
12840 if (reply && *reply)
12841 {
12842 /* 'l' by itself means we're at the end of the buffer and
12843 there is nothing more to get. */
12844 if (*reply == 'l')
12845 return 0;
12846
12847 /* Convert the reply into binary. Limit the number of bytes to
12848 convert according to our passed-in buffer size, rather than
12849 what was returned in the packet; if the target is
12850 unexpectedly generous and gives us a bigger reply than we
12851 asked for, we don't want to crash. */
b6bb3468 12852 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
12853 return rslt;
12854 }
12855
12856 /* Something went wrong, flag as an error. */
12857 return -1;
12858}
12859
35b1e5cc 12860static void
37b25738 12861remote_set_disconnected_tracing (struct target_ops *self, int val)
35b1e5cc
SS
12862{
12863 struct remote_state *rs = get_remote_state ();
12864
4082afcc 12865 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 12866 {
ad91cd99
PA
12867 char *reply;
12868
bba74b36 12869 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 12870 putpkt (rs->buf);
b6bb3468 12871 reply = remote_get_noisy_reply ();
ad91cd99 12872 if (*reply == '\0')
33da3f1c 12873 error (_("Target does not support this command."));
ad91cd99
PA
12874 if (strcmp (reply, "OK") != 0)
12875 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
12876 }
12877 else if (val)
12878 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
12879}
12880
dc146f7c
VP
12881static int
12882remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12883{
12884 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 12885
7aabaf9d
SM
12886 if (info != NULL && info->priv != NULL)
12887 return get_remote_thread_info (info)->core;
12888
dc146f7c
VP
12889 return -1;
12890}
12891
4daf5ac0 12892static void
736d5b1f 12893remote_set_circular_trace_buffer (struct target_ops *self, int val)
4daf5ac0
SS
12894{
12895 struct remote_state *rs = get_remote_state ();
ad91cd99 12896 char *reply;
4daf5ac0 12897
bba74b36 12898 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 12899 putpkt (rs->buf);
b6bb3468 12900 reply = remote_get_noisy_reply ();
ad91cd99 12901 if (*reply == '\0')
4daf5ac0 12902 error (_("Target does not support this command."));
ad91cd99
PA
12903 if (strcmp (reply, "OK") != 0)
12904 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
12905}
12906
2098b393 12907static traceframe_info_up
a893e81f 12908remote_traceframe_info (struct target_ops *self)
b3b9301e 12909{
9018be22 12910 gdb::optional<gdb::char_vector> text
b7b030ad
TT
12911 = target_read_stralloc (&current_target, TARGET_OBJECT_TRACEFRAME_INFO,
12912 NULL);
9018be22
SM
12913 if (text)
12914 return parse_traceframe_info (text->data ());
b3b9301e
PA
12915
12916 return NULL;
12917}
12918
405f8e94
SS
12919/* Handle the qTMinFTPILen packet. Returns the minimum length of
12920 instruction on which a fast tracepoint may be placed. Returns -1
12921 if the packet is not supported, and 0 if the minimum instruction
12922 length is unknown. */
12923
12924static int
0e67620a 12925remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
405f8e94
SS
12926{
12927 struct remote_state *rs = get_remote_state ();
12928 char *reply;
12929
e886a173
PA
12930 /* If we're not debugging a process yet, the IPA can't be
12931 loaded. */
12932 if (!target_has_execution)
12933 return 0;
12934
12935 /* Make sure the remote is pointing at the right process. */
12936 set_general_process ();
12937
bba74b36 12938 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94 12939 putpkt (rs->buf);
b6bb3468 12940 reply = remote_get_noisy_reply ();
405f8e94
SS
12941 if (*reply == '\0')
12942 return -1;
12943 else
12944 {
12945 ULONGEST min_insn_len;
12946
12947 unpack_varlen_hex (reply, &min_insn_len);
12948
12949 return (int) min_insn_len;
12950 }
12951}
12952
f6f899bf 12953static void
4da384be 12954remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
f6f899bf 12955{
4082afcc 12956 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
12957 {
12958 struct remote_state *rs = get_remote_state ();
12959 char *buf = rs->buf;
12960 char *endbuf = rs->buf + get_remote_packet_size ();
12961 enum packet_result result;
12962
12963 gdb_assert (val >= 0 || val == -1);
12964 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
12965 /* Send -1 as literal "-1" to avoid host size dependency. */
12966 if (val < 0)
12967 {
12968 *buf++ = '-';
12969 buf += hexnumstr (buf, (ULONGEST) -val);
12970 }
12971 else
12972 buf += hexnumstr (buf, (ULONGEST) val);
12973
12974 putpkt (rs->buf);
b6bb3468 12975 remote_get_noisy_reply ();
f6f899bf
HAQ
12976 result = packet_ok (rs->buf,
12977 &remote_protocol_packets[PACKET_QTBuffer_size]);
12978
12979 if (result != PACKET_OK)
12980 warning (_("Bogus reply from target: %s"), rs->buf);
12981 }
12982}
12983
f196051f 12984static int
d9e68a2c
TT
12985remote_set_trace_notes (struct target_ops *self,
12986 const char *user, const char *notes,
ca623f82 12987 const char *stop_notes)
f196051f
SS
12988{
12989 struct remote_state *rs = get_remote_state ();
12990 char *reply;
12991 char *buf = rs->buf;
12992 char *endbuf = rs->buf + get_remote_packet_size ();
12993 int nbytes;
12994
12995 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
12996 if (user)
12997 {
12998 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 12999 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13000 buf += 2 * nbytes;
13001 *buf++ = ';';
13002 }
13003 if (notes)
13004 {
13005 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13006 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13007 buf += 2 * nbytes;
13008 *buf++ = ';';
13009 }
13010 if (stop_notes)
13011 {
13012 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13013 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13014 buf += 2 * nbytes;
13015 *buf++ = ';';
13016 }
13017 /* Ensure the buffer is terminated. */
13018 *buf = '\0';
13019
13020 putpkt (rs->buf);
b6bb3468 13021 reply = remote_get_noisy_reply ();
f196051f
SS
13022 if (*reply == '\0')
13023 return 0;
13024
13025 if (strcmp (reply, "OK") != 0)
13026 error (_("Bogus reply from target: %s"), reply);
13027
13028 return 1;
13029}
13030
d1feda86 13031static int
2c152180 13032remote_use_agent (struct target_ops *self, int use)
d1feda86 13033{
4082afcc 13034 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13035 {
13036 struct remote_state *rs = get_remote_state ();
13037
13038 /* If the stub supports QAgent. */
bba74b36 13039 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
13040 putpkt (rs->buf);
13041 getpkt (&rs->buf, &rs->buf_size, 0);
13042
13043 if (strcmp (rs->buf, "OK") == 0)
13044 {
13045 use_agent = use;
13046 return 1;
13047 }
13048 }
13049
13050 return 0;
13051}
13052
13053static int
fe38f897 13054remote_can_use_agent (struct target_ops *self)
d1feda86 13055{
4082afcc 13056 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13057}
13058
9accd112
MM
13059struct btrace_target_info
13060{
13061 /* The ptid of the traced thread. */
13062 ptid_t ptid;
f4abbc16
MM
13063
13064 /* The obtained branch trace configuration. */
13065 struct btrace_config conf;
9accd112
MM
13066};
13067
f4abbc16
MM
13068/* Reset our idea of our target's btrace configuration. */
13069
13070static void
13071remote_btrace_reset (void)
13072{
13073 struct remote_state *rs = get_remote_state ();
13074
13075 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13076}
13077
f4abbc16
MM
13078/* Synchronize the configuration with the target. */
13079
13080static void
13081btrace_sync_conf (const struct btrace_config *conf)
13082{
d33501a5
MM
13083 struct packet_config *packet;
13084 struct remote_state *rs;
13085 char *buf, *pos, *endbuf;
13086
13087 rs = get_remote_state ();
13088 buf = rs->buf;
13089 endbuf = buf + get_remote_packet_size ();
13090
13091 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13092 if (packet_config_support (packet) == PACKET_ENABLE
13093 && conf->bts.size != rs->btrace_config.bts.size)
13094 {
13095 pos = buf;
13096 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13097 conf->bts.size);
13098
13099 putpkt (buf);
13100 getpkt (&buf, &rs->buf_size, 0);
13101
13102 if (packet_ok (buf, packet) == PACKET_ERROR)
13103 {
13104 if (buf[0] == 'E' && buf[1] == '.')
13105 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13106 else
13107 error (_("Failed to configure the BTS buffer size."));
13108 }
13109
13110 rs->btrace_config.bts.size = conf->bts.size;
13111 }
b20a6524
MM
13112
13113 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13114 if (packet_config_support (packet) == PACKET_ENABLE
13115 && conf->pt.size != rs->btrace_config.pt.size)
13116 {
13117 pos = buf;
13118 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13119 conf->pt.size);
13120
13121 putpkt (buf);
13122 getpkt (&buf, &rs->buf_size, 0);
13123
13124 if (packet_ok (buf, packet) == PACKET_ERROR)
13125 {
13126 if (buf[0] == 'E' && buf[1] == '.')
13127 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13128 else
13129 error (_("Failed to configure the trace buffer size."));
13130 }
13131
13132 rs->btrace_config.pt.size = conf->pt.size;
13133 }
f4abbc16
MM
13134}
13135
13136/* Read the current thread's btrace configuration from the target and
13137 store it into CONF. */
13138
13139static void
13140btrace_read_config (struct btrace_config *conf)
13141{
9018be22 13142 gdb::optional<gdb::char_vector> xml
b7b030ad 13143 = target_read_stralloc (&current_target, TARGET_OBJECT_BTRACE_CONF, "");
9018be22
SM
13144 if (xml)
13145 parse_xml_btrace_conf (conf, xml->data ());
f4abbc16
MM
13146}
13147
c0272db5
TW
13148/* Maybe reopen target btrace. */
13149
13150static void
13151remote_btrace_maybe_reopen (void)
13152{
13153 struct remote_state *rs = get_remote_state ();
c0272db5
TW
13154 struct thread_info *tp;
13155 int btrace_target_pushed = 0;
13156 int warned = 0;
13157
5ed8105e
PA
13158 scoped_restore_current_thread restore_thread;
13159
c0272db5
TW
13160 ALL_NON_EXITED_THREADS (tp)
13161 {
13162 set_general_thread (tp->ptid);
13163
13164 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13165 btrace_read_config (&rs->btrace_config);
13166
13167 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13168 continue;
13169
13170#if !defined (HAVE_LIBIPT)
13171 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13172 {
13173 if (!warned)
13174 {
13175 warned = 1;
c4e12631
MM
13176 warning (_("Target is recording using Intel Processor Trace "
13177 "but support was disabled at compile time."));
c0272db5
TW
13178 }
13179
13180 continue;
13181 }
13182#endif /* !defined (HAVE_LIBIPT) */
13183
13184 /* Push target, once, but before anything else happens. This way our
13185 changes to the threads will be cleaned up by unpushing the target
13186 in case btrace_read_config () throws. */
13187 if (!btrace_target_pushed)
13188 {
13189 btrace_target_pushed = 1;
13190 record_btrace_push_target ();
13191 printf_filtered (_("Target is recording using %s.\n"),
13192 btrace_format_string (rs->btrace_config.format));
13193 }
13194
13195 tp->btrace.target = XCNEW (struct btrace_target_info);
13196 tp->btrace.target->ptid = tp->ptid;
13197 tp->btrace.target->conf = rs->btrace_config;
13198 }
c0272db5
TW
13199}
13200
9accd112
MM
13201/* Enable branch tracing. */
13202
13203static struct btrace_target_info *
f4abbc16
MM
13204remote_enable_btrace (struct target_ops *self, ptid_t ptid,
13205 const struct btrace_config *conf)
9accd112
MM
13206{
13207 struct btrace_target_info *tinfo = NULL;
b20a6524 13208 struct packet_config *packet = NULL;
9accd112
MM
13209 struct remote_state *rs = get_remote_state ();
13210 char *buf = rs->buf;
13211 char *endbuf = rs->buf + get_remote_packet_size ();
13212
b20a6524
MM
13213 switch (conf->format)
13214 {
13215 case BTRACE_FORMAT_BTS:
13216 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13217 break;
13218
13219 case BTRACE_FORMAT_PT:
13220 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13221 break;
13222 }
13223
13224 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13225 error (_("Target does not support branch tracing."));
13226
f4abbc16
MM
13227 btrace_sync_conf (conf);
13228
9accd112
MM
13229 set_general_thread (ptid);
13230
13231 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13232 putpkt (rs->buf);
13233 getpkt (&rs->buf, &rs->buf_size, 0);
13234
13235 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13236 {
13237 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13238 error (_("Could not enable branch tracing for %s: %s"),
13239 target_pid_to_str (ptid), rs->buf + 2);
13240 else
13241 error (_("Could not enable branch tracing for %s."),
13242 target_pid_to_str (ptid));
13243 }
13244
8d749320 13245 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13246 tinfo->ptid = ptid;
13247
f4abbc16
MM
13248 /* If we fail to read the configuration, we lose some information, but the
13249 tracing itself is not impacted. */
492d29ea
PA
13250 TRY
13251 {
13252 btrace_read_config (&tinfo->conf);
13253 }
13254 CATCH (err, RETURN_MASK_ERROR)
13255 {
13256 if (err.message != NULL)
13257 warning ("%s", err.message);
13258 }
13259 END_CATCH
f4abbc16 13260
9accd112
MM
13261 return tinfo;
13262}
13263
13264/* Disable branch tracing. */
13265
13266static void
25e95349
TT
13267remote_disable_btrace (struct target_ops *self,
13268 struct btrace_target_info *tinfo)
9accd112
MM
13269{
13270 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13271 struct remote_state *rs = get_remote_state ();
13272 char *buf = rs->buf;
13273 char *endbuf = rs->buf + get_remote_packet_size ();
13274
4082afcc 13275 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13276 error (_("Target does not support branch tracing."));
13277
13278 set_general_thread (tinfo->ptid);
13279
13280 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13281 putpkt (rs->buf);
13282 getpkt (&rs->buf, &rs->buf_size, 0);
13283
13284 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13285 {
13286 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13287 error (_("Could not disable branch tracing for %s: %s"),
13288 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13289 else
13290 error (_("Could not disable branch tracing for %s."),
13291 target_pid_to_str (tinfo->ptid));
13292 }
13293
13294 xfree (tinfo);
13295}
13296
13297/* Teardown branch tracing. */
13298
13299static void
1777056d
TT
13300remote_teardown_btrace (struct target_ops *self,
13301 struct btrace_target_info *tinfo)
9accd112
MM
13302{
13303 /* We must not talk to the target during teardown. */
13304 xfree (tinfo);
13305}
13306
13307/* Read the branch trace. */
13308
969c39fb 13309static enum btrace_error
39c49f83 13310remote_read_btrace (struct target_ops *self,
734b0e4b 13311 struct btrace_data *btrace,
969c39fb 13312 struct btrace_target_info *tinfo,
9accd112
MM
13313 enum btrace_read_type type)
13314{
13315 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13316 const char *annex;
9accd112 13317
4082afcc 13318 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13319 error (_("Target does not support branch tracing."));
13320
13321#if !defined(HAVE_LIBEXPAT)
13322 error (_("Cannot process branch tracing result. XML parsing not supported."));
13323#endif
13324
13325 switch (type)
13326 {
864089d2 13327 case BTRACE_READ_ALL:
9accd112
MM
13328 annex = "all";
13329 break;
864089d2 13330 case BTRACE_READ_NEW:
9accd112
MM
13331 annex = "new";
13332 break;
969c39fb
MM
13333 case BTRACE_READ_DELTA:
13334 annex = "delta";
13335 break;
9accd112
MM
13336 default:
13337 internal_error (__FILE__, __LINE__,
13338 _("Bad branch tracing read type: %u."),
13339 (unsigned int) type);
13340 }
13341
9018be22 13342 gdb::optional<gdb::char_vector> xml
b7b030ad 13343 = target_read_stralloc (&current_target, TARGET_OBJECT_BTRACE, annex);
9018be22 13344 if (!xml)
969c39fb 13345 return BTRACE_ERR_UNKNOWN;
9accd112 13346
9018be22 13347 parse_xml_btrace (btrace, xml->data ());
9accd112 13348
969c39fb 13349 return BTRACE_ERR_NONE;
9accd112
MM
13350}
13351
f4abbc16
MM
13352static const struct btrace_config *
13353remote_btrace_conf (struct target_ops *self,
13354 const struct btrace_target_info *tinfo)
13355{
13356 return &tinfo->conf;
13357}
13358
ced63ec0 13359static int
5436ff03 13360remote_augmented_libraries_svr4_read (struct target_ops *self)
ced63ec0 13361{
4082afcc
PA
13362 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13363 == PACKET_ENABLE);
ced63ec0
GB
13364}
13365
9dd130a0
TT
13366/* Implementation of to_load. */
13367
13368static void
9cbe5fff 13369remote_load (struct target_ops *self, const char *name, int from_tty)
9dd130a0
TT
13370{
13371 generic_load (name, from_tty);
13372}
13373
c78fa86a
GB
13374/* Accepts an integer PID; returns a string representing a file that
13375 can be opened on the remote side to get the symbols for the child
13376 process. Returns NULL if the operation is not supported. */
13377
13378static char *
13379remote_pid_to_exec_file (struct target_ops *self, int pid)
13380{
9018be22 13381 static gdb::optional<gdb::char_vector> filename;
835205d0
GB
13382 struct inferior *inf;
13383 char *annex = NULL;
c78fa86a
GB
13384
13385 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13386 return NULL;
13387
835205d0
GB
13388 inf = find_inferior_pid (pid);
13389 if (inf == NULL)
13390 internal_error (__FILE__, __LINE__,
13391 _("not currently attached to process %d"), pid);
13392
13393 if (!inf->fake_pid_p)
13394 {
13395 const int annex_size = 9;
13396
224c3ddb 13397 annex = (char *) alloca (annex_size);
835205d0
GB
13398 xsnprintf (annex, annex_size, "%x", pid);
13399 }
13400
c78fa86a
GB
13401 filename = target_read_stralloc (&current_target,
13402 TARGET_OBJECT_EXEC_FILE, annex);
13403
9018be22 13404 return filename ? filename->data () : nullptr;
c78fa86a
GB
13405}
13406
750ce8d1
YQ
13407/* Implement the to_can_do_single_step target_ops method. */
13408
13409static int
13410remote_can_do_single_step (struct target_ops *ops)
13411{
13412 /* We can only tell whether target supports single step or not by
13413 supported s and S vCont actions if the stub supports vContSupported
13414 feature. If the stub doesn't support vContSupported feature,
13415 we have conservatively to think target doesn't supports single
13416 step. */
13417 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13418 {
13419 struct remote_state *rs = get_remote_state ();
13420
13421 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13422 remote_vcont_probe (rs);
13423
13424 return rs->supports_vCont.s && rs->supports_vCont.S;
13425 }
13426 else
13427 return 0;
13428}
13429
3a00c802
PA
13430/* Implementation of the to_execution_direction method for the remote
13431 target. */
13432
13433static enum exec_direction_kind
13434remote_execution_direction (struct target_ops *self)
13435{
13436 struct remote_state *rs = get_remote_state ();
13437
13438 return rs->last_resume_exec_dir;
13439}
13440
f6327dcb
KB
13441/* Return pointer to the thread_info struct which corresponds to
13442 THREAD_HANDLE (having length HANDLE_LEN). */
13443
13444static struct thread_info *
13445remote_thread_handle_to_thread_info (struct target_ops *ops,
13446 const gdb_byte *thread_handle,
13447 int handle_len,
13448 struct inferior *inf)
13449{
13450 struct thread_info *tp;
13451
13452 ALL_NON_EXITED_THREADS (tp)
13453 {
7aabaf9d 13454 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13455
13456 if (tp->inf == inf && priv != NULL)
13457 {
7aabaf9d 13458 if (handle_len != priv->thread_handle.size ())
f6327dcb 13459 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13460 handle_len, priv->thread_handle.size ());
13461 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13462 handle_len) == 0)
13463 return tp;
13464 }
13465 }
13466
13467 return NULL;
13468}
13469
c906108c 13470static void
fba45db2 13471init_remote_ops (void)
c906108c 13472{
c5aa993b 13473 remote_ops.to_shortname = "remote";
c906108c 13474 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 13475 remote_ops.to_doc =
c906108c 13476 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
13477Specify the serial device it is connected to\n\
13478(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
13479 remote_ops.to_open = remote_open;
13480 remote_ops.to_close = remote_close;
c906108c 13481 remote_ops.to_detach = remote_detach;
6ad8ae5c 13482 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 13483 remote_ops.to_resume = remote_resume;
85ad3aaf 13484 remote_ops.to_commit_resume = remote_commit_resume;
c906108c
SS
13485 remote_ops.to_wait = remote_wait;
13486 remote_ops.to_fetch_registers = remote_fetch_registers;
13487 remote_ops.to_store_registers = remote_store_registers;
13488 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b 13489 remote_ops.to_files_info = remote_files_info;
c906108c
SS
13490 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13491 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
f7e6eed5
PA
13492 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13493 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13494 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13495 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
3c3bea1c
GS
13496 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13497 remote_ops.to_stopped_data_address = remote_stopped_data_address;
283002cf
MR
13498 remote_ops.to_watchpoint_addr_within_range =
13499 remote_watchpoint_addr_within_range;
3c3bea1c
GS
13500 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13501 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13502 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
480a3f21
PW
13503 remote_ops.to_region_ok_for_hw_watchpoint
13504 = remote_region_ok_for_hw_watchpoint;
3c3bea1c
GS
13505 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13506 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b 13507 remote_ops.to_kill = remote_kill;
9dd130a0 13508 remote_ops.to_load = remote_load;
c906108c 13509 remote_ops.to_mourn_inferior = remote_mourn;
2455069d 13510 remote_ops.to_pass_signals = remote_pass_signals;
82075af2 13511 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
9b224c5e 13512 remote_ops.to_program_signals = remote_program_signals;
c906108c 13513 remote_ops.to_thread_alive = remote_thread_alive;
79efa585 13514 remote_ops.to_thread_name = remote_thread_name;
e8032dde 13515 remote_ops.to_update_thread_list = remote_update_thread_list;
0caabb7e 13516 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 13517 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10760264 13518 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
c906108c 13519 remote_ops.to_stop = remote_stop;
bfedc46a 13520 remote_ops.to_interrupt = remote_interrupt;
93692b58 13521 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
4b8a223f 13522 remote_ops.to_xfer_partial = remote_xfer_partial;
09c98b44 13523 remote_ops.to_get_memory_xfer_limit = remote_get_memory_xfer_limit;
96baa820 13524 remote_ops.to_rcmd = remote_rcmd;
c78fa86a 13525 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
49d03eab 13526 remote_ops.to_log_command = serial_log_command;
38691318 13527 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 13528 remote_ops.to_stratum = process_stratum;
c35b1492
PA
13529 remote_ops.to_has_all_memory = default_child_has_all_memory;
13530 remote_ops.to_has_memory = default_child_has_memory;
13531 remote_ops.to_has_stack = default_child_has_stack;
13532 remote_ops.to_has_registers = default_child_has_registers;
13533 remote_ops.to_has_execution = default_child_has_execution;
3e43a32a 13534 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 13535 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 13536 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 13537 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
13538 remote_ops.to_flash_erase = remote_flash_erase;
13539 remote_ops.to_flash_done = remote_flash_done;
29709017 13540 remote_ops.to_read_description = remote_read_description;
08388c79 13541 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
13542 remote_ops.to_can_async_p = remote_can_async_p;
13543 remote_ops.to_is_async_p = remote_is_async_p;
13544 remote_ops.to_async = remote_async;
65706a29 13545 remote_ops.to_thread_events = remote_thread_events;
750ce8d1 13546 remote_ops.to_can_do_single_step = remote_can_do_single_step;
75c99385
PA
13547 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13548 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 13549 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 13550 remote_ops.to_supports_multi_process = remote_supports_multi_process;
03583c20
UW
13551 remote_ops.to_supports_disable_randomization
13552 = remote_supports_disable_randomization;
4bd7dc42 13553 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
7313baad
UW
13554 remote_ops.to_fileio_open = remote_hostio_open;
13555 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13556 remote_ops.to_fileio_pread = remote_hostio_pread;
9b15c1f0 13557 remote_ops.to_fileio_fstat = remote_hostio_fstat;
7313baad
UW
13558 remote_ops.to_fileio_close = remote_hostio_close;
13559 remote_ops.to_fileio_unlink = remote_hostio_unlink;
b9e7b9c3 13560 remote_ops.to_fileio_readlink = remote_hostio_readlink;
d248b706 13561 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
3065dfb6 13562 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
b775012e 13563 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
d3ce09f5 13564 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
35b1e5cc
SS
13565 remote_ops.to_trace_init = remote_trace_init;
13566 remote_ops.to_download_tracepoint = remote_download_tracepoint;
1e4d1764 13567 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
3e43a32a
MS
13568 remote_ops.to_download_trace_state_variable
13569 = remote_download_trace_state_variable;
d248b706
KY
13570 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13571 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
35b1e5cc
SS
13572 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13573 remote_ops.to_trace_start = remote_trace_start;
13574 remote_ops.to_get_trace_status = remote_get_trace_status;
f196051f 13575 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
35b1e5cc
SS
13576 remote_ops.to_trace_stop = remote_trace_stop;
13577 remote_ops.to_trace_find = remote_trace_find;
3e43a32a
MS
13578 remote_ops.to_get_trace_state_variable_value
13579 = remote_get_trace_state_variable_value;
00bf0b85
SS
13580 remote_ops.to_save_trace_data = remote_save_trace_data;
13581 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
3e43a32a
MS
13582 remote_ops.to_upload_trace_state_variables
13583 = remote_upload_trace_state_variables;
00bf0b85 13584 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
405f8e94 13585 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
35b1e5cc 13586 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
4daf5ac0 13587 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
f6f899bf 13588 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
f196051f 13589 remote_ops.to_set_trace_notes = remote_set_trace_notes;
dc146f7c 13590 remote_ops.to_core_of_thread = remote_core_of_thread;
4a5e7a5b 13591 remote_ops.to_verify_memory = remote_verify_memory;
711e434b 13592 remote_ops.to_get_tib_address = remote_get_tib_address;
d914c394 13593 remote_ops.to_set_permissions = remote_set_permissions;
0fb4aa4b
PA
13594 remote_ops.to_static_tracepoint_marker_at
13595 = remote_static_tracepoint_marker_at;
13596 remote_ops.to_static_tracepoint_markers_by_strid
13597 = remote_static_tracepoint_markers_by_strid;
b3b9301e 13598 remote_ops.to_traceframe_info = remote_traceframe_info;
d1feda86
YQ
13599 remote_ops.to_use_agent = remote_use_agent;
13600 remote_ops.to_can_use_agent = remote_can_use_agent;
9accd112
MM
13601 remote_ops.to_enable_btrace = remote_enable_btrace;
13602 remote_ops.to_disable_btrace = remote_disable_btrace;
13603 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13604 remote_ops.to_read_btrace = remote_read_btrace;
f4abbc16 13605 remote_ops.to_btrace_conf = remote_btrace_conf;
ced63ec0
GB
13606 remote_ops.to_augmented_libraries_svr4_read =
13607 remote_augmented_libraries_svr4_read;
8020350c
DB
13608 remote_ops.to_follow_fork = remote_follow_fork;
13609 remote_ops.to_follow_exec = remote_follow_exec;
13610 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13611 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13612 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13613 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13614 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13615 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
3a00c802 13616 remote_ops.to_execution_direction = remote_execution_direction;
f6327dcb
KB
13617 remote_ops.to_thread_handle_to_thread_info =
13618 remote_thread_handle_to_thread_info;
c906108c
SS
13619}
13620
13621/* Set up the extended remote vector by making a copy of the standard
13622 remote vector and adding to it. */
13623
13624static void
fba45db2 13625init_extended_remote_ops (void)
c906108c
SS
13626{
13627 extended_remote_ops = remote_ops;
13628
0f71a2f6 13629 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 13630 extended_remote_ops.to_longname =
c906108c 13631 "Extended remote serial target in gdb-specific protocol";
c5aa993b 13632 extended_remote_ops.to_doc =
c906108c 13633 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
13634Specify the serial device it is connected to (e.g. /dev/ttya).";
13635 extended_remote_ops.to_open = extended_remote_open;
c906108c 13636 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
2d717e4f
DJ
13637 extended_remote_ops.to_detach = extended_remote_detach;
13638 extended_remote_ops.to_attach = extended_remote_attach;
b9c1d481 13639 extended_remote_ops.to_post_attach = extended_remote_post_attach;
03583c20
UW
13640 extended_remote_ops.to_supports_disable_randomization
13641 = extended_remote_supports_disable_randomization;
0f71a2f6
JM
13642}
13643
6426a772 13644static int
6a109b6b 13645remote_can_async_p (struct target_ops *ops)
6426a772 13646{
5d93a237
TT
13647 struct remote_state *rs = get_remote_state ();
13648
3015c064
SM
13649 /* We don't go async if the user has explicitly prevented it with the
13650 "maint set target-async" command. */
c6ebd6cf 13651 if (!target_async_permitted)
75c99385
PA
13652 return 0;
13653
23860348 13654 /* We're async whenever the serial device is. */
5d93a237 13655 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13656}
13657
13658static int
6a109b6b 13659remote_is_async_p (struct target_ops *ops)
6426a772 13660{
5d93a237
TT
13661 struct remote_state *rs = get_remote_state ();
13662
c6ebd6cf 13663 if (!target_async_permitted)
75c99385
PA
13664 /* We only enable async when the user specifically asks for it. */
13665 return 0;
13666
23860348 13667 /* We're async whenever the serial device is. */
5d93a237 13668 return serial_is_async_p (rs->remote_desc);
6426a772
JM
13669}
13670
2acceee2
JM
13671/* Pass the SERIAL event on and up to the client. One day this code
13672 will be able to delay notifying the client of an event until the
23860348 13673 point where an entire packet has been received. */
2acceee2 13674
2acceee2
JM
13675static serial_event_ftype remote_async_serial_handler;
13676
6426a772 13677static void
819cc324 13678remote_async_serial_handler (struct serial *scb, void *context)
6426a772 13679{
2acceee2
JM
13680 /* Don't propogate error information up to the client. Instead let
13681 the client find out about the error by querying the target. */
6a3753b3 13682 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
13683}
13684
74531fed
PA
13685static void
13686remote_async_inferior_event_handler (gdb_client_data data)
13687{
13688 inferior_event_handler (INF_REG_EVENT, NULL);
13689}
13690
2acceee2 13691static void
6a3753b3 13692remote_async (struct target_ops *ops, int enable)
2acceee2 13693{
5d93a237
TT
13694 struct remote_state *rs = get_remote_state ();
13695
6a3753b3 13696 if (enable)
2acceee2 13697 {
88b496c3 13698 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
13699
13700 /* If there are pending events in the stop reply queue tell the
13701 event loop to process them. */
13702 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13703 mark_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13704 /* For simplicity, below we clear the pending events token
13705 without remembering whether it is marked, so here we always
13706 mark it. If there's actually no pending notification to
13707 process, this ends up being a no-op (other than a spurious
13708 event-loop wakeup). */
13709 if (target_is_non_stop_p ())
13710 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
13711 }
13712 else
b7d2e916
PA
13713 {
13714 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
13715 /* If the core is disabling async, it doesn't want to be
13716 disturbed with target events. Clear all async event sources
13717 too. */
b7d2e916 13718 clear_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13719 if (target_is_non_stop_p ())
13720 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 13721 }
6426a772
JM
13722}
13723
65706a29
PA
13724/* Implementation of the to_thread_events method. */
13725
13726static void
13727remote_thread_events (struct target_ops *ops, int enable)
13728{
13729 struct remote_state *rs = get_remote_state ();
13730 size_t size = get_remote_packet_size ();
65706a29
PA
13731
13732 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13733 return;
13734
13735 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13736 putpkt (rs->buf);
13737 getpkt (&rs->buf, &rs->buf_size, 0);
13738
13739 switch (packet_ok (rs->buf,
13740 &remote_protocol_packets[PACKET_QThreadEvents]))
13741 {
13742 case PACKET_OK:
13743 if (strcmp (rs->buf, "OK") != 0)
13744 error (_("Remote refused setting thread events: %s"), rs->buf);
13745 break;
13746 case PACKET_ERROR:
13747 warning (_("Remote failure reply: %s"), rs->buf);
13748 break;
13749 case PACKET_UNKNOWN:
13750 break;
13751 }
13752}
13753
5a2468f5 13754static void
981a3fb3 13755set_remote_cmd (const char *args, int from_tty)
5a2468f5 13756{
635c7e8a 13757 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
13758}
13759
d471ea57 13760static void
981a3fb3 13761show_remote_cmd (const char *args, int from_tty)
d471ea57 13762{
37a105a1 13763 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 13764 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 13765 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 13766 struct ui_out *uiout = current_uiout;
37a105a1 13767
2e783024 13768 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
13769 for (; list != NULL; list = list->next)
13770 if (strcmp (list->name, "Z-packet") == 0)
13771 continue;
427c3a89
DJ
13772 else if (list->type == not_set_cmd)
13773 /* Alias commands are exactly like the original, except they
13774 don't have the normal type. */
13775 continue;
13776 else
37a105a1 13777 {
2e783024 13778 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 13779
112e8700
SM
13780 uiout->field_string ("name", list->name);
13781 uiout->text (": ");
427c3a89 13782 if (list->type == show_cmd)
f5c4fcd9 13783 do_show_command (NULL, from_tty, list);
427c3a89
DJ
13784 else
13785 cmd_func (list, NULL, from_tty);
37a105a1 13786 }
d471ea57 13787}
5a2468f5 13788
0f71a2f6 13789
23860348 13790/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
13791static void
13792remote_new_objfile (struct objfile *objfile)
13793{
5d93a237
TT
13794 struct remote_state *rs = get_remote_state ();
13795
13796 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 13797 remote_check_symbols ();
dc8acb97
MS
13798}
13799
00bf0b85
SS
13800/* Pull all the tracepoints defined on the target and create local
13801 data structures representing them. We don't want to create real
13802 tracepoints yet, we don't want to mess up the user's existing
13803 collection. */
13804
13805static int
ab6617cc 13806remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
d5551862 13807{
00bf0b85
SS
13808 struct remote_state *rs = get_remote_state ();
13809 char *p;
d5551862 13810
00bf0b85
SS
13811 /* Ask for a first packet of tracepoint definition. */
13812 putpkt ("qTfP");
13813 getpkt (&rs->buf, &rs->buf_size, 0);
13814 p = rs->buf;
13815 while (*p && *p != 'l')
d5551862 13816 {
00bf0b85
SS
13817 parse_tracepoint_definition (p, utpp);
13818 /* Ask for another packet of tracepoint definition. */
13819 putpkt ("qTsP");
13820 getpkt (&rs->buf, &rs->buf_size, 0);
13821 p = rs->buf;
d5551862 13822 }
00bf0b85 13823 return 0;
d5551862
SS
13824}
13825
00bf0b85 13826static int
181e3713
TT
13827remote_upload_trace_state_variables (struct target_ops *self,
13828 struct uploaded_tsv **utsvp)
d5551862 13829{
00bf0b85 13830 struct remote_state *rs = get_remote_state ();
d5551862 13831 char *p;
d5551862 13832
00bf0b85
SS
13833 /* Ask for a first packet of variable definition. */
13834 putpkt ("qTfV");
d5551862
SS
13835 getpkt (&rs->buf, &rs->buf_size, 0);
13836 p = rs->buf;
00bf0b85 13837 while (*p && *p != 'l')
d5551862 13838 {
00bf0b85
SS
13839 parse_tsv_definition (p, utsvp);
13840 /* Ask for another packet of variable definition. */
13841 putpkt ("qTsV");
d5551862
SS
13842 getpkt (&rs->buf, &rs->buf_size, 0);
13843 p = rs->buf;
13844 }
00bf0b85 13845 return 0;
d5551862
SS
13846}
13847
c1e36e3e
PA
13848/* The "set/show range-stepping" show hook. */
13849
13850static void
13851show_range_stepping (struct ui_file *file, int from_tty,
13852 struct cmd_list_element *c,
13853 const char *value)
13854{
13855 fprintf_filtered (file,
13856 _("Debugger's willingness to use range stepping "
13857 "is %s.\n"), value);
13858}
13859
13860/* The "set/show range-stepping" set hook. */
13861
13862static void
eb4c3f4a 13863set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
13864 struct cmd_list_element *c)
13865{
5d93a237
TT
13866 struct remote_state *rs = get_remote_state ();
13867
c1e36e3e
PA
13868 /* Whene enabling, check whether range stepping is actually
13869 supported by the target, and warn if not. */
13870 if (use_range_stepping)
13871 {
5d93a237 13872 if (rs->remote_desc != NULL)
c1e36e3e 13873 {
4082afcc 13874 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
c1e36e3e
PA
13875 remote_vcont_probe (rs);
13876
4082afcc 13877 if (packet_support (PACKET_vCont) == PACKET_ENABLE
c1e36e3e
PA
13878 && rs->supports_vCont.r)
13879 return;
13880 }
13881
13882 warning (_("Range stepping is not supported by the current target"));
13883 }
13884}
13885
c906108c 13886void
fba45db2 13887_initialize_remote (void)
c906108c 13888{
9a7071a8 13889 struct cmd_list_element *cmd;
6f937416 13890 const char *cmd_name;
ea9c271d 13891
0f71a2f6 13892 /* architecture specific data */
2bc416ba 13893 remote_gdbarch_data_handle =
23860348 13894 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
13895 remote_g_packet_data_handle =
13896 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 13897
94585166
DB
13898 remote_pspace_data
13899 = register_program_space_data_with_cleanup (NULL,
13900 remote_pspace_data_cleanup);
13901
ea9c271d
DJ
13902 /* Initialize the per-target state. At the moment there is only one
13903 of these, not one per target. Only one target is active at a
cf792862
TT
13904 time. */
13905 remote_state = new_remote_state ();
ea9c271d 13906
c906108c
SS
13907 init_remote_ops ();
13908 add_target (&remote_ops);
13909
13910 init_extended_remote_ops ();
13911 add_target (&extended_remote_ops);
cce74817 13912
dc8acb97 13913 /* Hook into new objfile notification. */
76727919 13914 gdb::observers::new_objfile.attach (remote_new_objfile);
5f4cf0bb
YQ
13915 /* We're no longer interested in notification events of an inferior
13916 when it exits. */
76727919 13917 gdb::observers::inferior_exit.attach (discard_pending_stop_replies);
dc8acb97 13918
c906108c
SS
13919#if 0
13920 init_remote_threadtests ();
13921#endif
13922
722247f1 13923 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 13924 /* set/show remote ... */
d471ea57 13925
1bedd215 13926 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
13927Remote protocol specific variables\n\
13928Configure various remote-protocol specific variables such as\n\
1bedd215 13929the packets being used"),
cff3e48b 13930 &remote_set_cmdlist, "set remote ",
23860348 13931 0 /* allow-unknown */, &setlist);
1bedd215 13932 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
13933Remote protocol specific variables\n\
13934Configure various remote-protocol specific variables such as\n\
1bedd215 13935the packets being used"),
cff3e48b 13936 &remote_show_cmdlist, "show remote ",
23860348 13937 0 /* allow-unknown */, &showlist);
5a2468f5 13938
1a966eab
AC
13939 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13940Compare section data on target to the exec file.\n\
95cf3b38
DT
13941Argument is a single section name (default: all loaded sections).\n\
13942To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
13943 &cmdlist);
13944
1a966eab
AC
13945 add_cmd ("packet", class_maintenance, packet_command, _("\
13946Send an arbitrary packet to a remote target.\n\
c906108c
SS
13947 maintenance packet TEXT\n\
13948If GDB is talking to an inferior via the GDB serial protocol, then\n\
13949this command sends the string TEXT to the inferior, and displays the\n\
13950response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 13951terminating `#' character and checksum."),
c906108c
SS
13952 &maintenancelist);
13953
7915a72c
AC
13954 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
13955Set whether to send break if interrupted."), _("\
13956Show whether to send break if interrupted."), _("\
13957If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 13958 set_remotebreak, show_remotebreak,
e707bbc2 13959 &setlist, &showlist);
9a7071a8
JB
13960 cmd_name = "remotebreak";
13961 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
13962 deprecate_cmd (cmd, "set remote interrupt-sequence");
13963 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
13964 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
13965 deprecate_cmd (cmd, "show remote interrupt-sequence");
13966
13967 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
13968 interrupt_sequence_modes, &interrupt_sequence_mode,
13969 _("\
9a7071a8
JB
13970Set interrupt sequence to remote target."), _("\
13971Show interrupt sequence to remote target."), _("\
13972Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
13973 NULL, show_interrupt_sequence,
13974 &remote_set_cmdlist,
13975 &remote_show_cmdlist);
13976
13977 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
13978 &interrupt_on_connect, _("\
13979Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13980Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13981If set, interrupt sequence is sent to remote target."),
13982 NULL, NULL,
13983 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 13984
23860348 13985 /* Install commands for configuring memory read/write packets. */
11cf8741 13986
1a966eab
AC
13987 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
13988Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 13989 &setlist);
1a966eab
AC
13990 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
13991Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
13992 &showlist);
13993 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
13994 set_memory_write_packet_size, _("\
13995Set the maximum number of bytes per memory-write packet.\n\
13996Specify the number of bytes in a packet or 0 (zero) for the\n\
13997default packet size. The actual limit is further reduced\n\
13998dependent on the target. Specify ``fixed'' to disable the\n\
13999further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14000 &remote_set_cmdlist);
14001 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14002 set_memory_read_packet_size, _("\
14003Set the maximum number of bytes per memory-read packet.\n\
14004Specify the number of bytes in a packet or 0 (zero) for the\n\
14005default packet size. The actual limit is further reduced\n\
14006dependent on the target. Specify ``fixed'' to disable the\n\
14007further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14008 &remote_set_cmdlist);
14009 add_cmd ("memory-write-packet-size", no_class,
14010 show_memory_write_packet_size,
1a966eab 14011 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14012 &remote_show_cmdlist);
14013 add_cmd ("memory-read-packet-size", no_class,
14014 show_memory_read_packet_size,
1a966eab 14015 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14016 &remote_show_cmdlist);
c906108c 14017
b3f42336 14018 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14019 &remote_hw_watchpoint_limit, _("\
14020Set the maximum number of target hardware watchpoints."), _("\
14021Show the maximum number of target hardware watchpoints."), _("\
14022Specify a negative limit for unlimited."),
3e43a32a
MS
14023 NULL, NULL, /* FIXME: i18n: The maximum
14024 number of target hardware
14025 watchpoints is %s. */
b3f42336 14026 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
14027 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
14028 &remote_hw_watchpoint_length_limit, _("\
14029Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14030Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14031Specify a negative limit for unlimited."),
14032 NULL, NULL, /* FIXME: i18n: The maximum
14033 length (in bytes) of a target
14034 hardware watchpoint is %s. */
14035 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 14036 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14037 &remote_hw_breakpoint_limit, _("\
14038Set the maximum number of target hardware breakpoints."), _("\
14039Show the maximum number of target hardware breakpoints."), _("\
14040Specify a negative limit for unlimited."),
3e43a32a
MS
14041 NULL, NULL, /* FIXME: i18n: The maximum
14042 number of target hardware
14043 breakpoints is %s. */
b3f42336 14044 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14045
1b493192
PA
14046 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14047 &remote_address_size, _("\
4d28ad1e
AC
14048Set the maximum size of the address (in bits) in a memory packet."), _("\
14049Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14050 NULL,
14051 NULL, /* FIXME: i18n: */
14052 &setlist, &showlist);
c906108c 14053
ca4f7f8b
PA
14054 init_all_packet_configs ();
14055
444abaca 14056 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14057 "X", "binary-download", 1);
0f71a2f6 14058
444abaca 14059 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14060 "vCont", "verbose-resume", 0);
506fb367 14061
89be2091
DJ
14062 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14063 "QPassSignals", "pass-signals", 0);
14064
82075af2
JS
14065 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14066 "QCatchSyscalls", "catch-syscalls", 0);
14067
9b224c5e
PA
14068 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14069 "QProgramSignals", "program-signals", 0);
14070
bc3b087d
SDJ
14071 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14072 "QSetWorkingDir", "set-working-dir", 0);
14073
aefd8b33
SDJ
14074 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14075 "QStartupWithShell", "startup-with-shell", 0);
14076
0a2dde4a
SDJ
14077 add_packet_config_cmd (&remote_protocol_packets
14078 [PACKET_QEnvironmentHexEncoded],
14079 "QEnvironmentHexEncoded", "environment-hex-encoded",
14080 0);
14081
14082 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14083 "QEnvironmentReset", "environment-reset",
14084 0);
14085
14086 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14087 "QEnvironmentUnset", "environment-unset",
14088 0);
14089
444abaca 14090 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14091 "qSymbol", "symbol-lookup", 0);
dc8acb97 14092
444abaca 14093 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14094 "P", "set-register", 1);
d471ea57 14095
444abaca 14096 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14097 "p", "fetch-register", 1);
b96ec7ac 14098
444abaca 14099 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14100 "Z0", "software-breakpoint", 0);
d471ea57 14101
444abaca 14102 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14103 "Z1", "hardware-breakpoint", 0);
d471ea57 14104
444abaca 14105 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14106 "Z2", "write-watchpoint", 0);
d471ea57 14107
444abaca 14108 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14109 "Z3", "read-watchpoint", 0);
d471ea57 14110
444abaca 14111 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14112 "Z4", "access-watchpoint", 0);
d471ea57 14113
0876f84a
DJ
14114 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14115 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14116
c78fa86a
GB
14117 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14118 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14119
23181151
DJ
14120 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14121 "qXfer:features:read", "target-features", 0);
14122
cfa9d6d9
DJ
14123 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14124 "qXfer:libraries:read", "library-info", 0);
14125
2268b414
JK
14126 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14127 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14128
fd79ecee
DJ
14129 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14130 "qXfer:memory-map:read", "memory-map", 0);
14131
0e7f50da
UW
14132 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14133 "qXfer:spu:read", "read-spu-object", 0);
14134
14135 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14136 "qXfer:spu:write", "write-spu-object", 0);
14137
07e059b5
VP
14138 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14139 "qXfer:osdata:read", "osdata", 0);
14140
dc146f7c
VP
14141 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14142 "qXfer:threads:read", "threads", 0);
14143
4aa995e1
PA
14144 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14145 "qXfer:siginfo:read", "read-siginfo-object", 0);
14146
14147 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14148 "qXfer:siginfo:write", "write-siginfo-object", 0);
14149
b3b9301e
PA
14150 add_packet_config_cmd
14151 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14152 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14153
169081d0
TG
14154 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14155 "qXfer:uib:read", "unwind-info-block", 0);
14156
444abaca 14157 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14158 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14159 0);
14160
711e434b
PM
14161 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14162 "qGetTIBAddr", "get-thread-information-block-address",
14163 0);
14164
40ab02ce
MS
14165 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14166 "bc", "reverse-continue", 0);
14167
14168 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14169 "bs", "reverse-step", 0);
14170
be2a5f71
DJ
14171 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14172 "qSupported", "supported-packets", 0);
14173
08388c79
DE
14174 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14175 "qSearch:memory", "search-memory", 0);
14176
bd3eecc3
PA
14177 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14178 "qTStatus", "trace-status", 0);
14179
15a201c8
GB
14180 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14181 "vFile:setfs", "hostio-setfs", 0);
14182
a6b151f1
DJ
14183 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14184 "vFile:open", "hostio-open", 0);
14185
14186 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14187 "vFile:pread", "hostio-pread", 0);
14188
14189 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14190 "vFile:pwrite", "hostio-pwrite", 0);
14191
14192 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14193 "vFile:close", "hostio-close", 0);
14194
14195 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14196 "vFile:unlink", "hostio-unlink", 0);
14197
b9e7b9c3
UW
14198 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14199 "vFile:readlink", "hostio-readlink", 0);
14200
0a93529c
GB
14201 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14202 "vFile:fstat", "hostio-fstat", 0);
14203
2d717e4f
DJ
14204 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14205 "vAttach", "attach", 0);
14206
14207 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14208 "vRun", "run", 0);
14209
a6f3e723
SL
14210 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14211 "QStartNoAckMode", "noack", 0);
14212
82f73884
PA
14213 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14214 "vKill", "kill", 0);
14215
0b16c5cf
PA
14216 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14217 "qAttached", "query-attached", 0);
14218
782b2b07 14219 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14220 "ConditionalTracepoints",
14221 "conditional-tracepoints", 0);
3788aec7
LM
14222
14223 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14224 "ConditionalBreakpoints",
14225 "conditional-breakpoints", 0);
14226
d3ce09f5
SS
14227 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14228 "BreakpointCommands",
14229 "breakpoint-commands", 0);
14230
7a697b8d
SS
14231 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14232 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14233
409873ef
SS
14234 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14235 "TracepointSource", "TracepointSource", 0);
14236
d914c394
SS
14237 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14238 "QAllow", "allow", 0);
14239
0fb4aa4b
PA
14240 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14241 "StaticTracepoints", "static-tracepoints", 0);
14242
1e4d1764
YQ
14243 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14244 "InstallInTrace", "install-in-trace", 0);
14245
0fb4aa4b
PA
14246 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14247 "qXfer:statictrace:read", "read-sdata-object", 0);
14248
78d85199
YQ
14249 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14250 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14251
03583c20
UW
14252 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14253 "QDisableRandomization", "disable-randomization", 0);
14254
d1feda86
YQ
14255 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14256 "QAgent", "agent", 0);
14257
f6f899bf
HAQ
14258 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14259 "QTBuffer:size", "trace-buffer-size", 0);
14260
9accd112
MM
14261 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14262 "Qbtrace:off", "disable-btrace", 0);
14263
14264 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14265 "Qbtrace:bts", "enable-btrace-bts", 0);
14266
14267 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14268 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14269
14270 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14271 "qXfer:btrace", "read-btrace", 0);
14272
f4abbc16
MM
14273 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14274 "qXfer:btrace-conf", "read-btrace-conf", 0);
14275
d33501a5
MM
14276 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14277 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14278
73b8c1fd
PA
14279 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14280 "multiprocess-feature", "multiprocess-feature", 0);
14281
f7e6eed5
PA
14282 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14283 "swbreak-feature", "swbreak-feature", 0);
14284
14285 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14286 "hwbreak-feature", "hwbreak-feature", 0);
14287
89245bc0
DB
14288 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14289 "fork-event-feature", "fork-event-feature", 0);
14290
14291 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14292 "vfork-event-feature", "vfork-event-feature", 0);
14293
b20a6524
MM
14294 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14295 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14296
750ce8d1
YQ
14297 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14298 "vContSupported", "verbose-resume-supported", 0);
14299
94585166
DB
14300 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14301 "exec-event-feature", "exec-event-feature", 0);
14302
de979965
PA
14303 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14304 "vCtrlC", "ctrl-c", 0);
14305
65706a29
PA
14306 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14307 "QThreadEvents", "thread-events", 0);
14308
f2faf941
PA
14309 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14310 "N stop reply", "no-resumed-stop-reply", 0);
14311
0b736949
DB
14312 /* Assert that we've registered "set remote foo-packet" commands
14313 for all packet configs. */
ca4f7f8b
PA
14314 {
14315 int i;
14316
14317 for (i = 0; i < PACKET_MAX; i++)
14318 {
14319 /* Ideally all configs would have a command associated. Some
14320 still don't though. */
14321 int excepted;
14322
14323 switch (i)
14324 {
14325 case PACKET_QNonStop:
ca4f7f8b
PA
14326 case PACKET_EnableDisableTracepoints_feature:
14327 case PACKET_tracenz_feature:
14328 case PACKET_DisconnectedTracing_feature:
14329 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14330 case PACKET_qCRC:
14331 /* Additions to this list need to be well justified:
14332 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14333 excepted = 1;
14334 break;
14335 default:
14336 excepted = 0;
14337 break;
14338 }
14339
14340 /* This catches both forgetting to add a config command, and
14341 forgetting to remove a packet from the exception list. */
14342 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14343 }
14344 }
14345
37a105a1
DJ
14346 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14347 Z sub-packet has its own set and show commands, but users may
14348 have sets to this variable in their .gdbinit files (or in their
14349 documentation). */
e9e68a56 14350 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14351 &remote_Z_packet_detect, _("\
14352Set use of remote protocol `Z' packets"), _("\
14353Show use of remote protocol `Z' packets "), _("\
3b64bf98 14354When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14355packets."),
e9e68a56 14356 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14357 show_remote_protocol_Z_packet_cmd,
14358 /* FIXME: i18n: Use of remote protocol
14359 `Z' packets is %s. */
e9e68a56 14360 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14361
a6b151f1
DJ
14362 add_prefix_cmd ("remote", class_files, remote_command, _("\
14363Manipulate files on the remote system\n\
14364Transfer files to and from the remote target system."),
14365 &remote_cmdlist, "remote ",
14366 0 /* allow-unknown */, &cmdlist);
14367
14368 add_cmd ("put", class_files, remote_put_command,
14369 _("Copy a local file to the remote system."),
14370 &remote_cmdlist);
14371
14372 add_cmd ("get", class_files, remote_get_command,
14373 _("Copy a remote file to the local system."),
14374 &remote_cmdlist);
14375
14376 add_cmd ("delete", class_files, remote_delete_command,
14377 _("Delete a remote file."),
14378 &remote_cmdlist);
14379
2d717e4f 14380 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14381 &remote_exec_file_var, _("\
2d717e4f 14382Set the remote pathname for \"run\""), _("\
94585166
DB
14383Show the remote pathname for \"run\""), NULL,
14384 set_remote_exec_file,
14385 show_remote_exec_file,
14386 &remote_set_cmdlist,
14387 &remote_show_cmdlist);
2d717e4f 14388
c1e36e3e
PA
14389 add_setshow_boolean_cmd ("range-stepping", class_run,
14390 &use_range_stepping, _("\
14391Enable or disable range stepping."), _("\
14392Show whether target-assisted range stepping is enabled."), _("\
14393If on, and the target supports it, when stepping a source line, GDB\n\
14394tells the target to step the corresponding range of addresses itself instead\n\
14395of issuing multiple single-steps. This speeds up source level\n\
14396stepping. If off, GDB always issues single-steps, even if range\n\
14397stepping is supported by the target. The default is on."),
14398 set_range_stepping,
14399 show_range_stepping,
14400 &setlist,
14401 &showlist);
14402
449092f6
CV
14403 /* Eventually initialize fileio. See fileio.c */
14404 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14405
ba348170 14406 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14407 special ptids with it set to != 0. */
ba348170
PA
14408 magic_null_ptid = ptid_build (42000, -1, 1);
14409 not_sent_ptid = ptid_build (42000, -2, 1);
14410 any_thread_ptid = ptid_build (42000, 0, 1);
c906108c 14411}
This page took 3.7663 seconds and 4 git commands to generate.