Fix syscall group completion
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
61baf725 3 Copyright (C) 1988-2017 Free Software Foundation, Inc.
c906108c 4
c5aa993b
JM
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 19
23860348 20/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 21
c906108c 22#include "defs.h"
c906108c
SS
23#include <ctype.h>
24#include <fcntl.h>
c906108c 25#include "inferior.h"
45741a9c 26#include "infrun.h"
c906108c
SS
27#include "bfd.h"
28#include "symfile.h"
29#include "target.h"
c5aa993b 30/*#include "terminal.h" */
c906108c
SS
31#include "gdbcmd.h"
32#include "objfiles.h"
33#include "gdb-stabs.h"
34#include "gdbthread.h"
c2c6d25f 35#include "remote.h"
722247f1 36#include "remote-notif.h"
4e052eda 37#include "regcache.h"
fd0407d6 38#include "value.h"
6867ae3e 39#include "observer.h"
a77053c2 40#include "solib.h"
37a105a1
DJ
41#include "cli/cli-decode.h"
42#include "cli/cli-setshow.h"
424163ea 43#include "target-descriptions.h"
a4453b7e 44#include "gdb_bfd.h"
614c279d 45#include "filestuff.h"
9c3d6531 46#include "rsp-low.h"
6b940e6a 47#include "disasm.h"
f00aae0f 48#include "location.h"
c906108c 49
438e1e42 50#include "gdb_sys_time.h"
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6 61#include "remote-fileio.h"
a6b151f1 62#include "gdb/fileio.h"
53ce3c39 63#include <sys/stat.h>
dc146f7c 64#include "xml-support.h"
449092f6 65
fd79ecee
DJ
66#include "memory-map.h"
67
35b1e5cc
SS
68#include "tracepoint.h"
69#include "ax.h"
70#include "ax-gdb.h"
d1feda86 71#include "agent.h"
9accd112 72#include "btrace.h"
c0272db5 73#include "record-btrace.h"
325fac50 74#include <algorithm>
2ec845e7 75#include "common/scoped_restore.h"
0a2dde4a 76#include "environ.h"
f6327dcb 77#include "common/byte-vector.h"
35b1e5cc 78
94585166
DB
79/* Per-program-space data key. */
80static const struct program_space_data *remote_pspace_data;
81
82/* The variable registered as the control variable used by the
83 remote exec-file commands. While the remote exec-file setting is
84 per-program-space, the set/show machinery uses this as the
85 location of the remote exec-file value. */
86static char *remote_exec_file_var;
87
6765f3e5
DJ
88/* The size to align memory write packets, when practical. The protocol
89 does not guarantee any alignment, and gdb will generate short
90 writes and unaligned writes, but even as a best-effort attempt this
91 can improve bulk transfers. For instance, if a write is misaligned
92 relative to the target's data bus, the stub may need to make an extra
93 round trip fetching data from the target. This doesn't make a
94 huge difference, but it's easy to do, so we try to be helpful.
95
96 The alignment chosen is arbitrary; usually data bus width is
97 important here, not the possibly larger cache line size. */
98enum { REMOTE_ALIGN_WRITES = 16 };
99
23860348 100/* Prototypes for local functions. */
6d820c5c 101static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed 102static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
fee9eda9 103 int forever, int *is_notif);
6426a772 104
a14ed312 105static void remote_files_info (struct target_ops *ignore);
c906108c 106
f32dbf8c
MM
107static void remote_prepare_to_store (struct target_ops *self,
108 struct regcache *regcache);
c906108c 109
014f9477
TT
110static void remote_open_1 (const char *, int, struct target_ops *,
111 int extended_p);
c906108c 112
de90e03d 113static void remote_close (struct target_ops *self);
c906108c 114
cbb8991c
DB
115struct remote_state;
116
117static int remote_vkill (int pid, struct remote_state *rs);
118
8020350c
DB
119static void remote_kill_k (void);
120
136d6dae 121static void remote_mourn (struct target_ops *ops);
c906108c 122
a14ed312 123static void extended_remote_restart (void);
c906108c 124
6d820c5c 125static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 126
a14ed312 127static int readchar (int timeout);
c906108c 128
c33e31fd
PA
129static void remote_serial_write (const char *str, int len);
130
7d85a9c0 131static void remote_kill (struct target_ops *ops);
c906108c 132
6a109b6b 133static int remote_can_async_p (struct target_ops *);
75c99385 134
6a109b6b 135static int remote_is_async_p (struct target_ops *);
75c99385 136
6a3753b3 137static void remote_async (struct target_ops *ops, int enable);
75c99385 138
65706a29
PA
139static void remote_thread_events (struct target_ops *ops, int enable);
140
a14ed312 141static void interrupt_query (void);
c906108c 142
d62a8ae2
SM
143static void set_general_thread (ptid_t ptid);
144static void set_continue_thread (ptid_t ptid);
c906108c 145
a14ed312 146static void get_offsets (void);
c906108c 147
6d820c5c
DJ
148static void skip_frame (void);
149
150static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 151
a14ed312 152static int hexnumlen (ULONGEST num);
c906108c 153
a14ed312 154static void init_remote_ops (void);
c906108c 155
a14ed312 156static void init_extended_remote_ops (void);
c906108c 157
1eab8a48 158static void remote_stop (struct target_ops *self, ptid_t);
c906108c 159
a14ed312 160static int stubhex (int ch);
c906108c 161
a14ed312 162static int hexnumstr (char *, ULONGEST);
c906108c 163
a14ed312 164static int hexnumnstr (char *, ULONGEST, int);
2df3850c 165
a14ed312 166static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 167
baa336ce 168static void print_packet (const char *);
c906108c 169
a14ed312 170static int stub_unpack_int (char *buff, int fieldlength);
c906108c 171
39f77062 172static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 173
baa336ce 174static int putpkt_binary (const char *buf, int cnt);
c906108c 175
a14ed312 176static void check_binary_download (CORE_ADDR addr);
c906108c 177
5a2468f5 178struct packet_config;
5a2468f5 179
a14ed312 180static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 181
bb572ddd
DJ
182static void show_remote_protocol_packet_cmd (struct ui_file *file,
183 int from_tty,
184 struct cmd_list_element *c,
185 const char *value);
186
82f73884 187static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
256642e8 188static ptid_t read_ptid (const char *buf, const char **obuf);
82f73884 189
c378d69d 190static void remote_set_permissions (struct target_ops *self);
d914c394 191
8bd200f1
TT
192static int remote_get_trace_status (struct target_ops *self,
193 struct trace_status *ts);
d5551862 194
ab6617cc
TT
195static int remote_upload_tracepoints (struct target_ops *self,
196 struct uploaded_tp **utpp);
00bf0b85 197
181e3713
TT
198static int remote_upload_trace_state_variables (struct target_ops *self,
199 struct uploaded_tsv **utsvp);
00bf0b85 200
c8d104ad
PA
201static void remote_query_supported (void);
202
36d25514 203static void remote_check_symbols (void);
c8d104ad 204
74531fed 205struct stop_reply;
74531fed 206static void stop_reply_xfree (struct stop_reply *);
722247f1 207static void remote_parse_stop_reply (char *, struct stop_reply *);
74531fed 208static void push_stop_reply (struct stop_reply *);
bcc75809 209static void discard_pending_stop_replies_in_queue (struct remote_state *);
74531fed
PA
210static int peek_stop_reply (ptid_t ptid);
211
cbb8991c
DB
212struct threads_listing_context;
213static void remove_new_fork_children (struct threads_listing_context *);
214
74531fed 215static void remote_async_inferior_event_handler (gdb_client_data);
74531fed 216
e3594fd1 217static void remote_terminal_ours (struct target_ops *self);
d3fd5342 218
d962ef82
DJ
219static int remote_read_description_p (struct target_ops *target);
220
176a6961 221static void remote_console_output (char *msg);
dde08ee1 222
efcc2da7 223static int remote_supports_cond_breakpoints (struct target_ops *self);
b775012e 224
78eff0ec 225static int remote_can_run_breakpoint_commands (struct target_ops *self);
d3ce09f5 226
f4abbc16
MM
227static void remote_btrace_reset (void);
228
c0272db5
TW
229static void remote_btrace_maybe_reopen (void);
230
221e1a37
PA
231static int stop_reply_queue_length (void);
232
80152258
PA
233static void readahead_cache_invalidate (void);
234
048094ac
PA
235static void remote_unpush_and_throw (void);
236
b6bb3468
PA
237static struct remote_state *get_remote_state (void);
238
a6b151f1
DJ
239/* For "remote". */
240
241static struct cmd_list_element *remote_cmdlist;
242
bb572ddd
DJ
243/* For "set remote" and "show remote". */
244
245static struct cmd_list_element *remote_set_cmdlist;
246static struct cmd_list_element *remote_show_cmdlist;
247
d458bd84
PA
248/* Stub vCont actions support.
249
250 Each field is a boolean flag indicating whether the stub reports
251 support for the corresponding action. */
252
253struct vCont_action_support
254{
255 /* vCont;t */
256 int t;
c1e36e3e
PA
257
258 /* vCont;r */
259 int r;
750ce8d1
YQ
260
261 /* vCont;s */
262 int s;
263
264 /* vCont;S */
265 int S;
d458bd84
PA
266};
267
c1e36e3e
PA
268/* Controls whether GDB is willing to use range stepping. */
269
270static int use_range_stepping = 1;
271
0d031856
TT
272#define OPAQUETHREADBYTES 8
273
274/* a 64 bit opaque identifier */
275typedef unsigned char threadref[OPAQUETHREADBYTES];
276
277/* About this many threadisds fit in a packet. */
278
279#define MAXTHREADLISTRESULTS 32
280
6f8976bf
YQ
281/* The max number of chars in debug output. The rest of chars are
282 omitted. */
283
284#define REMOTE_DEBUG_MAX_CHAR 512
285
80152258
PA
286/* Data for the vFile:pread readahead cache. */
287
288struct readahead_cache
289{
290 /* The file descriptor for the file that is being cached. -1 if the
291 cache is invalid. */
292 int fd;
293
294 /* The offset into the file that the cache buffer corresponds
295 to. */
296 ULONGEST offset;
297
298 /* The buffer holding the cache contents. */
299 gdb_byte *buf;
300 /* The buffer's size. We try to read as much as fits into a packet
301 at a time. */
302 size_t bufsize;
303
304 /* Cache hit and miss counters. */
305 ULONGEST hit_count;
306 ULONGEST miss_count;
307};
308
ea9c271d
DJ
309/* Description of the remote protocol state for the currently
310 connected target. This is per-target state, and independent of the
311 selected architecture. */
312
313struct remote_state
314{
315 /* A buffer to use for incoming packets, and its current size. The
316 buffer is grown dynamically for larger incoming packets.
317 Outgoing packets may also be constructed in this buffer.
318 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
319 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
320 packets. */
321 char *buf;
322 long buf_size;
be2a5f71 323
1e51243a
PA
324 /* True if we're going through initial connection setup (finding out
325 about the remote side's threads, relocating symbols, etc.). */
326 int starting_up;
327
be2a5f71
DJ
328 /* If we negotiated packet size explicitly (and thus can bypass
329 heuristics for the largest packet size that will not overflow
330 a buffer in the stub), this will be set to that packet size.
331 Otherwise zero, meaning to use the guessed size. */
332 long explicit_packet_size;
2d717e4f
DJ
333
334 /* remote_wait is normally called when the target is running and
335 waits for a stop reply packet. But sometimes we need to call it
336 when the target is already stopped. We can send a "?" packet
337 and have remote_wait read the response. Or, if we already have
338 the response, we can stash it in BUF and tell remote_wait to
339 skip calling getpkt. This flag is set when BUF contains a
340 stop reply packet and the target is not waiting. */
341 int cached_wait_status;
a6f3e723
SL
342
343 /* True, if in no ack mode. That is, neither GDB nor the stub will
344 expect acks from each other. The connection is assumed to be
345 reliable. */
346 int noack_mode;
82f73884
PA
347
348 /* True if we're connected in extended remote mode. */
349 int extended;
350
e24a49d8
PA
351 /* True if we resumed the target and we're waiting for the target to
352 stop. In the mean time, we can't start another command/query.
353 The remote server wouldn't be ready to process it, so we'd
354 timeout waiting for a reply that would never come and eventually
355 we'd close the connection. This can happen in asynchronous mode
356 because we allow GDB commands while the target is running. */
357 int waiting_for_stop_reply;
74531fed 358
d458bd84
PA
359 /* The status of the stub support for the various vCont actions. */
360 struct vCont_action_support supports_vCont;
782b2b07 361
3a29589a
DJ
362 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
363 responded to that. */
364 int ctrlc_pending_p;
5d93a237 365
048094ac
PA
366 /* True if we saw a Ctrl-C while reading or writing from/to the
367 remote descriptor. At that point it is not safe to send a remote
368 interrupt packet, so we instead remember we saw the Ctrl-C and
369 process it once we're done with sending/receiving the current
370 packet, which should be shortly. If however that takes too long,
371 and the user presses Ctrl-C again, we offer to disconnect. */
372 int got_ctrlc_during_io;
373
5d93a237
TT
374 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
375 remote_open knows that we don't have a file open when the program
376 starts. */
377 struct serial *remote_desc;
47f8a51d
TT
378
379 /* These are the threads which we last sent to the remote system. The
380 TID member will be -1 for all or -2 for not sent yet. */
381 ptid_t general_thread;
382 ptid_t continue_thread;
262e1174
TT
383
384 /* This is the traceframe which we last selected on the remote system.
385 It will be -1 if no traceframe is selected. */
386 int remote_traceframe_number;
747dc59d
TT
387
388 char *last_pass_packet;
5e4a05c4
TT
389
390 /* The last QProgramSignals packet sent to the target. We bypass
391 sending a new program signals list down to the target if the new
392 packet is exactly the same as the last we sent. IOW, we only let
393 the target know about program signals list changes. */
394 char *last_program_signals_packet;
b73be471
TT
395
396 enum gdb_signal last_sent_signal;
280ceea3
TT
397
398 int last_sent_step;
8e88304f 399
3a00c802
PA
400 /* The execution direction of the last resume we got. */
401 enum exec_direction_kind last_resume_exec_dir;
402
8e88304f
TT
403 char *finished_object;
404 char *finished_annex;
405 ULONGEST finished_offset;
b80fafe3
TT
406
407 /* Should we try the 'ThreadInfo' query packet?
408
409 This variable (NOT available to the user: auto-detect only!)
410 determines whether GDB will use the new, simpler "ThreadInfo"
411 query or the older, more complex syntax for thread queries.
412 This is an auto-detect variable (set to true at each connect,
413 and set to false when the target fails to recognize it). */
414 int use_threadinfo_query;
415 int use_threadextra_query;
88b496c3 416
0d031856
TT
417 threadref echo_nextthread;
418 threadref nextthread;
419 threadref resultthreadlist[MAXTHREADLISTRESULTS];
5965e028
YQ
420
421 /* The state of remote notification. */
422 struct remote_notif_state *notif_state;
f4abbc16
MM
423
424 /* The branch trace configuration. */
425 struct btrace_config btrace_config;
15a201c8
GB
426
427 /* The argument to the last "vFile:setfs:" packet we sent, used
428 to avoid sending repeated unnecessary "vFile:setfs:" packets.
429 Initialized to -1 to indicate that no "vFile:setfs:" packet
430 has yet been sent. */
431 int fs_pid;
80152258
PA
432
433 /* A readahead cache for vFile:pread. Often, reading a binary
434 involves a sequence of small reads. E.g., when parsing an ELF
435 file. A readahead cache helps mostly the case of remote
436 debugging on a connection with higher latency, due to the
437 request/reply nature of the RSP. We only cache data for a single
438 file descriptor at a time. */
439 struct readahead_cache readahead_cache;
ea9c271d
DJ
440};
441
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,
2027 int pid, int needed, int any_count,
2028 int table_size, int *table)
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
2040 if (needed && !any_count)
2041 {
2042 int i;
2043
2044 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2045 for (i = 0; i < table_size; i++)
2046 {
2047 if (table[i] != 0)
2048 n_sysno++;
2049 }
2050 }
2051
2052 if (remote_debug)
2053 {
2054 fprintf_unfiltered (gdb_stdlog,
2055 "remote_set_syscall_catchpoint "
2056 "pid %d needed %d any_count %d n_sysno %d\n",
2057 pid, needed, any_count, n_sysno);
2058 }
2059
1b81856f 2060 std::string built_packet;
82075af2
JS
2061 if (needed)
2062 {
2063 /* Prepare a packet with the sysno list, assuming max 8+1
2064 characters for a sysno. If the resulting packet size is too
2065 big, fallback on the non-selective packet. */
2066 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
1b81856f
PA
2067 built_packet.reserve (maxpktsz);
2068 built_packet = "QCatchSyscalls:1";
82075af2
JS
2069 if (!any_count)
2070 {
82075af2 2071 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
1b81856f 2072 for (int i = 0; i < table_size; i++)
82075af2
JS
2073 {
2074 if (table[i] != 0)
1b81856f 2075 string_appendf (built_packet, ";%x", i);
82075af2
JS
2076 }
2077 }
1b81856f 2078 if (built_packet.size () > get_remote_packet_size ())
82075af2
JS
2079 {
2080 /* catch_packet too big. Fallback to less efficient
2081 non selective mode, with GDB doing the filtering. */
b80406ac 2082 catch_packet = "QCatchSyscalls:1";
82075af2 2083 }
b80406ac 2084 else
1b81856f 2085 catch_packet = built_packet.c_str ();
82075af2
JS
2086 }
2087 else
b80406ac 2088 catch_packet = "QCatchSyscalls:0";
82075af2 2089
b80406ac 2090 struct remote_state *rs = get_remote_state ();
82075af2 2091
b80406ac
TT
2092 putpkt (catch_packet);
2093 getpkt (&rs->buf, &rs->buf_size, 0);
2094 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2095 if (result == PACKET_OK)
2096 return 0;
2097 else
2098 return -1;
82075af2
JS
2099}
2100
9b224c5e
PA
2101/* If 'QProgramSignals' is supported, tell the remote stub what
2102 signals it should pass through to the inferior when detaching. */
2103
2104static void
daf5e9b6
TT
2105remote_program_signals (struct target_ops *self,
2106 int numsigs, unsigned char *signals)
9b224c5e 2107{
4082afcc 2108 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2109 {
2110 char *packet, *p;
2111 int count = 0, i;
5e4a05c4 2112 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2113
2114 gdb_assert (numsigs < 256);
2115 for (i = 0; i < numsigs; i++)
2116 {
2117 if (signals[i])
2118 count++;
2119 }
224c3ddb 2120 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2121 strcpy (packet, "QProgramSignals:");
2122 p = packet + strlen (packet);
2123 for (i = 0; i < numsigs; i++)
2124 {
2125 if (signal_pass_state (i))
2126 {
2127 if (i >= 16)
2128 *p++ = tohex (i >> 4);
2129 *p++ = tohex (i & 15);
2130 if (count)
2131 *p++ = ';';
2132 else
2133 break;
2134 count--;
2135 }
2136 }
2137 *p = 0;
5e4a05c4
TT
2138 if (!rs->last_program_signals_packet
2139 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2140 {
9b224c5e
PA
2141 putpkt (packet);
2142 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2143 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2144 xfree (rs->last_program_signals_packet);
2145 rs->last_program_signals_packet = packet;
9b224c5e
PA
2146 }
2147 else
2148 xfree (packet);
2149 }
2150}
2151
79d7f229
PA
2152/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2153 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2154 thread. If GEN is set, set the general thread, if not, then set
2155 the step/continue thread. */
c906108c 2156static void
d62a8ae2 2157set_thread (ptid_t ptid, int gen)
c906108c 2158{
d01949b6 2159 struct remote_state *rs = get_remote_state ();
47f8a51d 2160 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2161 char *buf = rs->buf;
79d7f229 2162 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2163
79d7f229 2164 if (ptid_equal (state, ptid))
c906108c
SS
2165 return;
2166
79d7f229
PA
2167 *buf++ = 'H';
2168 *buf++ = gen ? 'g' : 'c';
2169 if (ptid_equal (ptid, magic_null_ptid))
2170 xsnprintf (buf, endbuf - buf, "0");
2171 else if (ptid_equal (ptid, any_thread_ptid))
2172 xsnprintf (buf, endbuf - buf, "0");
2173 else if (ptid_equal (ptid, minus_one_ptid))
2174 xsnprintf (buf, endbuf - buf, "-1");
2175 else
82f73884 2176 write_ptid (buf, endbuf, ptid);
79d7f229 2177 putpkt (rs->buf);
6d820c5c 2178 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2179 if (gen)
47f8a51d 2180 rs->general_thread = ptid;
c906108c 2181 else
47f8a51d 2182 rs->continue_thread = ptid;
c906108c 2183}
79d7f229
PA
2184
2185static void
d62a8ae2 2186set_general_thread (ptid_t ptid)
79d7f229
PA
2187{
2188 set_thread (ptid, 1);
2189}
2190
2191static void
d62a8ae2 2192set_continue_thread (ptid_t ptid)
79d7f229
PA
2193{
2194 set_thread (ptid, 0);
2195}
2196
3c9c4b83
PA
2197/* Change the remote current process. Which thread within the process
2198 ends up selected isn't important, as long as it is the same process
2199 as what INFERIOR_PTID points to.
2200
2201 This comes from that fact that there is no explicit notion of
2202 "selected process" in the protocol. The selected process for
2203 general operations is the process the selected general thread
2204 belongs to. */
2205
2206static void
2207set_general_process (void)
2208{
2209 struct remote_state *rs = get_remote_state ();
2210
2211 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2212 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2213 return;
2214
2215 /* We only need to change the remote current thread if it's pointing
2216 at some other process. */
47f8a51d 2217 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
2218 set_general_thread (inferior_ptid);
2219}
2220
c906108c 2221\f
7d1a114c
PA
2222/* Return nonzero if this is the main thread that we made up ourselves
2223 to model non-threaded targets as single-threaded. */
c906108c
SS
2224
2225static int
7d1a114c 2226remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
c906108c 2227{
c0a2216e
PA
2228 if (ptid_equal (ptid, magic_null_ptid))
2229 /* The main thread is always alive. */
2230 return 1;
2231
ba348170 2232 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
c0a2216e
PA
2233 /* The main thread is always alive. This can happen after a
2234 vAttach, if the remote side doesn't support
2235 multi-threading. */
2236 return 1;
2237
7d1a114c
PA
2238 return 0;
2239}
2240
2241/* Return nonzero if the thread PTID is still alive on the remote
2242 system. */
2243
2244static int
2245remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2246{
2247 struct remote_state *rs = get_remote_state ();
2248 char *p, *endp;
2249
2250 /* Check if this is a thread that we made up ourselves to model
2251 non-threaded targets as single-threaded. */
2252 if (remote_thread_always_alive (ops, ptid))
2253 return 1;
2254
82f73884
PA
2255 p = rs->buf;
2256 endp = rs->buf + get_remote_packet_size ();
2257
2258 *p++ = 'T';
2259 write_ptid (p, endp, ptid);
2260
2e9f7625 2261 putpkt (rs->buf);
6d820c5c 2262 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2263 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2264}
2265
79efa585
SM
2266/* Return a pointer to a thread name if we know it and NULL otherwise.
2267 The thread_info object owns the memory for the name. */
2268
2269static const char *
2270remote_thread_name (struct target_ops *ops, struct thread_info *info)
2271{
2272 if (info->priv != NULL)
7aabaf9d 2273 return get_remote_thread_info (info)->name.c_str ();
79efa585
SM
2274
2275 return NULL;
2276}
2277
c906108c
SS
2278/* About these extended threadlist and threadinfo packets. They are
2279 variable length packets but, the fields within them are often fixed
2280 length. They are redundent enough to send over UDP as is the
2281 remote protocol in general. There is a matching unit test module
2282 in libstub. */
2283
23860348 2284/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2285 libstub protocol encoding, and remote.c. It is not particularly
23860348 2286 changable. */
cce74817
JM
2287
2288/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2289 Plan to fix this. */
cce74817 2290
23860348 2291typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2292
9d1f7ab2 2293/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2294 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2295
2296struct gdb_ext_thread_info
c5aa993b 2297 {
23860348 2298 threadref threadid; /* External form of thread reference. */
2bc416ba 2299 int active; /* Has state interesting to GDB?
23860348 2300 regs, stack. */
2bc416ba 2301 char display[256]; /* Brief state display, name,
cedea757 2302 blocked/suspended. */
23860348 2303 char shortname[32]; /* To be used to name threads. */
2bc416ba 2304 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2305 whatever. */
c5aa993b 2306 };
cce74817
JM
2307
2308/* The volume of remote transfers can be limited by submitting
2309 a mask containing bits specifying the desired information.
2310 Use a union of these values as the 'selection' parameter to
0df8b418 2311 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2312
2313#define TAG_THREADID 1
2314#define TAG_EXISTS 2
2315#define TAG_DISPLAY 4
2316#define TAG_THREADNAME 8
c5aa993b 2317#define TAG_MOREDISPLAY 16
cce74817 2318
23860348 2319#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2320
a14ed312 2321static char *unpack_nibble (char *buf, int *val);
cce74817 2322
a14ed312 2323static char *unpack_byte (char *buf, int *value);
cce74817 2324
a14ed312 2325static char *pack_int (char *buf, int value);
cce74817 2326
a14ed312 2327static char *unpack_int (char *buf, int *value);
cce74817 2328
a14ed312 2329static char *unpack_string (char *src, char *dest, int length);
cce74817 2330
23860348 2331static char *pack_threadid (char *pkt, threadref *id);
cce74817 2332
23860348 2333static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2334
23860348 2335void int_to_threadref (threadref *id, int value);
cce74817 2336
23860348 2337static int threadref_to_int (threadref *ref);
cce74817 2338
23860348 2339static void copy_threadref (threadref *dest, threadref *src);
cce74817 2340
23860348 2341static int threadmatch (threadref *dest, threadref *src);
cce74817 2342
2bc416ba 2343static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2344 threadref *id);
cce74817 2345
a14ed312 2346static int remote_unpack_thread_info_response (char *pkt,
23860348 2347 threadref *expectedref,
a14ed312
KB
2348 struct gdb_ext_thread_info
2349 *info);
cce74817
JM
2350
2351
2bc416ba 2352static int remote_get_threadinfo (threadref *threadid,
23860348 2353 int fieldset, /*TAG mask */
a14ed312 2354 struct gdb_ext_thread_info *info);
cce74817 2355
a14ed312
KB
2356static char *pack_threadlist_request (char *pkt, int startflag,
2357 int threadcount,
23860348 2358 threadref *nextthread);
cce74817 2359
a14ed312
KB
2360static int parse_threadlist_response (char *pkt,
2361 int result_limit,
23860348 2362 threadref *original_echo,
2bc416ba 2363 threadref *resultlist,
23860348 2364 int *doneflag);
cce74817 2365
a14ed312 2366static int remote_get_threadlist (int startflag,
23860348 2367 threadref *nextthread,
a14ed312
KB
2368 int result_limit,
2369 int *done,
2bc416ba 2370 int *result_count,
23860348 2371 threadref *threadlist);
cce74817 2372
23860348 2373typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 2374
a14ed312
KB
2375static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2376 void *context, int looplimit);
cce74817 2377
23860348 2378static int remote_newthread_step (threadref *ref, void *context);
cce74817 2379
82f73884
PA
2380
2381/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2382 buffer we're allowed to write to. Returns
2383 BUF+CHARACTERS_WRITTEN. */
2384
2385static char *
2386write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2387{
2388 int pid, tid;
2389 struct remote_state *rs = get_remote_state ();
2390
2391 if (remote_multi_process_p (rs))
2392 {
2393 pid = ptid_get_pid (ptid);
2394 if (pid < 0)
2395 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2396 else
2397 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2398 }
ba348170 2399 tid = ptid_get_lwp (ptid);
82f73884
PA
2400 if (tid < 0)
2401 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2402 else
2403 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2404
2405 return buf;
2406}
2407
256642e8
PA
2408/* Extract a PTID from BUF. If non-null, OBUF is set to one past the
2409 last parsed char. Returns null_ptid if no thread id is found, and
2410 throws an error if the thread id has an invalid format. */
82f73884
PA
2411
2412static ptid_t
256642e8 2413read_ptid (const char *buf, const char **obuf)
82f73884 2414{
256642e8
PA
2415 const char *p = buf;
2416 const char *pp;
82f73884 2417 ULONGEST pid = 0, tid = 0;
82f73884
PA
2418
2419 if (*p == 'p')
2420 {
2421 /* Multi-process ptid. */
2422 pp = unpack_varlen_hex (p + 1, &pid);
2423 if (*pp != '.')
b37520b6 2424 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2425
2426 p = pp;
2427 pp = unpack_varlen_hex (p + 1, &tid);
2428 if (obuf)
2429 *obuf = pp;
ba348170 2430 return ptid_build (pid, tid, 0);
82f73884
PA
2431 }
2432
2433 /* No multi-process. Just a tid. */
2434 pp = unpack_varlen_hex (p, &tid);
2435
c9f35b34
KB
2436 /* Return null_ptid when no thread id is found. */
2437 if (p == pp)
2438 {
2439 if (obuf)
2440 *obuf = pp;
2441 return null_ptid;
2442 }
2443
82f73884 2444 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2445 what's in inferior_ptid, unless it's null at this point. If so,
2446 then since there's no way to know the pid of the reported
2447 threads, use the magic number. */
2448 if (ptid_equal (inferior_ptid, null_ptid))
2449 pid = ptid_get_pid (magic_null_ptid);
2450 else
2451 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2452
2453 if (obuf)
2454 *obuf = pp;
ba348170 2455 return ptid_build (pid, tid, 0);
82f73884
PA
2456}
2457
c906108c 2458static int
fba45db2 2459stubhex (int ch)
c906108c
SS
2460{
2461 if (ch >= 'a' && ch <= 'f')
2462 return ch - 'a' + 10;
2463 if (ch >= '0' && ch <= '9')
2464 return ch - '0';
2465 if (ch >= 'A' && ch <= 'F')
2466 return ch - 'A' + 10;
2467 return -1;
2468}
2469
2470static int
fba45db2 2471stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2472{
2473 int nibble;
2474 int retval = 0;
2475
2476 while (fieldlength)
2477 {
2478 nibble = stubhex (*buff++);
2479 retval |= nibble;
2480 fieldlength--;
2481 if (fieldlength)
2482 retval = retval << 4;
2483 }
2484 return retval;
2485}
2486
c906108c 2487static char *
fba45db2 2488unpack_nibble (char *buf, int *val)
c906108c 2489{
b7589f7d 2490 *val = fromhex (*buf++);
c906108c
SS
2491 return buf;
2492}
2493
c906108c 2494static char *
fba45db2 2495unpack_byte (char *buf, int *value)
c906108c
SS
2496{
2497 *value = stub_unpack_int (buf, 2);
2498 return buf + 2;
2499}
2500
2501static char *
fba45db2 2502pack_int (char *buf, int value)
c906108c
SS
2503{
2504 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2505 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2506 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2507 buf = pack_hex_byte (buf, (value & 0xff));
2508 return buf;
2509}
2510
2511static char *
fba45db2 2512unpack_int (char *buf, int *value)
c906108c
SS
2513{
2514 *value = stub_unpack_int (buf, 8);
2515 return buf + 8;
2516}
2517
23860348 2518#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2519static char *pack_string (char *pkt, char *string);
c906108c
SS
2520
2521static char *
fba45db2 2522pack_string (char *pkt, char *string)
c906108c
SS
2523{
2524 char ch;
2525 int len;
2526
2527 len = strlen (string);
2528 if (len > 200)
23860348 2529 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2530 pkt = pack_hex_byte (pkt, len);
2531 while (len-- > 0)
2532 {
2533 ch = *string++;
2534 if ((ch == '\0') || (ch == '#'))
23860348 2535 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2536 *pkt++ = ch;
2537 }
2538 return pkt;
2539}
2540#endif /* 0 (unused) */
2541
2542static char *
fba45db2 2543unpack_string (char *src, char *dest, int length)
c906108c
SS
2544{
2545 while (length--)
2546 *dest++ = *src++;
2547 *dest = '\0';
2548 return src;
2549}
2550
2551static char *
fba45db2 2552pack_threadid (char *pkt, threadref *id)
c906108c
SS
2553{
2554 char *limit;
2555 unsigned char *altid;
2556
2557 altid = (unsigned char *) id;
2558 limit = pkt + BUF_THREAD_ID_SIZE;
2559 while (pkt < limit)
2560 pkt = pack_hex_byte (pkt, *altid++);
2561 return pkt;
2562}
2563
2564
2565static char *
fba45db2 2566unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2567{
2568 char *altref;
2569 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2570 int x, y;
2571
2572 altref = (char *) id;
2573
2574 while (inbuf < limit)
2575 {
2576 x = stubhex (*inbuf++);
2577 y = stubhex (*inbuf++);
2578 *altref++ = (x << 4) | y;
2579 }
2580 return inbuf;
2581}
2582
2583/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2584 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2585 to use 64bit thread references internally. This is an adapter
2586 function. */
2587
2588void
fba45db2 2589int_to_threadref (threadref *id, int value)
c906108c
SS
2590{
2591 unsigned char *scan;
2592
2593 scan = (unsigned char *) id;
2594 {
2595 int i = 4;
2596 while (i--)
2597 *scan++ = 0;
2598 }
2599 *scan++ = (value >> 24) & 0xff;
2600 *scan++ = (value >> 16) & 0xff;
2601 *scan++ = (value >> 8) & 0xff;
2602 *scan++ = (value & 0xff);
2603}
2604
2605static int
fba45db2 2606threadref_to_int (threadref *ref)
c906108c
SS
2607{
2608 int i, value = 0;
2609 unsigned char *scan;
2610
cfd77fa1 2611 scan = *ref;
c906108c
SS
2612 scan += 4;
2613 i = 4;
2614 while (i-- > 0)
2615 value = (value << 8) | ((*scan++) & 0xff);
2616 return value;
2617}
2618
2619static void
fba45db2 2620copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2621{
2622 int i;
2623 unsigned char *csrc, *cdest;
2624
2625 csrc = (unsigned char *) src;
2626 cdest = (unsigned char *) dest;
2627 i = 8;
2628 while (i--)
2629 *cdest++ = *csrc++;
2630}
2631
2632static int
fba45db2 2633threadmatch (threadref *dest, threadref *src)
c906108c 2634{
23860348 2635 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2636#if 0
2637 unsigned char *srcp, *destp;
2638 int i, result;
2639 srcp = (char *) src;
2640 destp = (char *) dest;
2641
2642 result = 1;
2643 while (i-- > 0)
2644 result &= (*srcp++ == *destp++) ? 1 : 0;
2645 return result;
2646#endif
2647 return 1;
2648}
2649
2650/*
c5aa993b
JM
2651 threadid:1, # always request threadid
2652 context_exists:2,
2653 display:4,
2654 unique_name:8,
2655 more_display:16
2656 */
c906108c
SS
2657
2658/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2659
2660static char *
fba45db2 2661pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2662{
23860348
MS
2663 *pkt++ = 'q'; /* Info Query */
2664 *pkt++ = 'P'; /* process or thread info */
2665 pkt = pack_int (pkt, mode); /* mode */
c906108c 2666 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2667 *pkt = '\0'; /* terminate */
c906108c
SS
2668 return pkt;
2669}
2670
23860348 2671/* These values tag the fields in a thread info response packet. */
c906108c 2672/* Tagging the fields allows us to request specific fields and to
23860348 2673 add more fields as time goes by. */
c906108c 2674
23860348 2675#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 2676#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 2677 fetch registers and its stack? */
c5aa993b 2678#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 2679#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 2680#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 2681 the process. */
c906108c
SS
2682
2683static int
fba45db2
KB
2684remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2685 struct gdb_ext_thread_info *info)
c906108c 2686{
d01949b6 2687 struct remote_state *rs = get_remote_state ();
c906108c 2688 int mask, length;
cfd77fa1 2689 int tag;
c906108c 2690 threadref ref;
6d820c5c 2691 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
2692 int retval = 1;
2693
23860348 2694 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
2695 info->active = 0;
2696 info->display[0] = '\0';
2697 info->shortname[0] = '\0';
2698 info->more_display[0] = '\0';
2699
23860348
MS
2700 /* Assume the characters indicating the packet type have been
2701 stripped. */
c906108c
SS
2702 pkt = unpack_int (pkt, &mask); /* arg mask */
2703 pkt = unpack_threadid (pkt, &ref);
2704
2705 if (mask == 0)
8a3fe4f8 2706 warning (_("Incomplete response to threadinfo request."));
c906108c 2707 if (!threadmatch (&ref, expectedref))
23860348 2708 { /* This is an answer to a different request. */
8a3fe4f8 2709 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
2710 return 0;
2711 }
2712 copy_threadref (&info->threadid, &ref);
2713
23860348 2714 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 2715
23860348
MS
2716 /* Packets are terminated with nulls. */
2717 while ((pkt < limit) && mask && *pkt)
c906108c
SS
2718 {
2719 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
2720 pkt = unpack_byte (pkt, &length); /* length */
2721 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 2722 {
8a3fe4f8 2723 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
2724 retval = 0;
2725 break;
2726 }
2727 if (tag == TAG_THREADID)
2728 {
2729 if (length != 16)
2730 {
8a3fe4f8 2731 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
2732 retval = 0;
2733 break;
2734 }
2735 pkt = unpack_threadid (pkt, &ref);
2736 mask = mask & ~TAG_THREADID;
2737 continue;
2738 }
2739 if (tag == TAG_EXISTS)
2740 {
2741 info->active = stub_unpack_int (pkt, length);
2742 pkt += length;
2743 mask = mask & ~(TAG_EXISTS);
2744 if (length > 8)
2745 {
8a3fe4f8 2746 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
2747 retval = 0;
2748 break;
2749 }
2750 continue;
2751 }
2752 if (tag == TAG_THREADNAME)
2753 {
2754 pkt = unpack_string (pkt, &info->shortname[0], length);
2755 mask = mask & ~TAG_THREADNAME;
2756 continue;
2757 }
2758 if (tag == TAG_DISPLAY)
2759 {
2760 pkt = unpack_string (pkt, &info->display[0], length);
2761 mask = mask & ~TAG_DISPLAY;
2762 continue;
2763 }
2764 if (tag == TAG_MOREDISPLAY)
2765 {
2766 pkt = unpack_string (pkt, &info->more_display[0], length);
2767 mask = mask & ~TAG_MOREDISPLAY;
2768 continue;
2769 }
8a3fe4f8 2770 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2771 break; /* Not a tag we know about. */
c906108c
SS
2772 }
2773 return retval;
2774}
2775
2776static int
fba45db2
KB
2777remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2778 struct gdb_ext_thread_info *info)
c906108c 2779{
d01949b6 2780 struct remote_state *rs = get_remote_state ();
c906108c 2781 int result;
c906108c 2782
2e9f7625
DJ
2783 pack_threadinfo_request (rs->buf, fieldset, threadid);
2784 putpkt (rs->buf);
6d820c5c 2785 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2786
2787 if (rs->buf[0] == '\0')
2788 return 0;
2789
2e9f7625 2790 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2791 threadid, info);
c906108c
SS
2792 return result;
2793}
2794
c906108c
SS
2795/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2796
2797static char *
fba45db2
KB
2798pack_threadlist_request (char *pkt, int startflag, int threadcount,
2799 threadref *nextthread)
c906108c
SS
2800{
2801 *pkt++ = 'q'; /* info query packet */
2802 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2803 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2804 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2805 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2806 *pkt = '\0';
2807 return pkt;
2808}
2809
2810/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2811
2812static int
fba45db2
KB
2813parse_threadlist_response (char *pkt, int result_limit,
2814 threadref *original_echo, threadref *resultlist,
2815 int *doneflag)
c906108c 2816{
d01949b6 2817 struct remote_state *rs = get_remote_state ();
c906108c
SS
2818 char *limit;
2819 int count, resultcount, done;
2820
2821 resultcount = 0;
2822 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2823 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2824 /* done parse past here */
c906108c
SS
2825 pkt = unpack_byte (pkt, &count); /* count field */
2826 pkt = unpack_nibble (pkt, &done);
2827 /* The first threadid is the argument threadid. */
2828 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2829 while ((count-- > 0) && (pkt < limit))
2830 {
2831 pkt = unpack_threadid (pkt, resultlist++);
2832 if (resultcount++ >= result_limit)
2833 break;
2834 }
2835 if (doneflag)
2836 *doneflag = done;
2837 return resultcount;
2838}
2839
6dc54d91
PA
2840/* Fetch the next batch of threads from the remote. Returns -1 if the
2841 qL packet is not supported, 0 on error and 1 on success. */
2842
c906108c 2843static int
fba45db2
KB
2844remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2845 int *done, int *result_count, threadref *threadlist)
c906108c 2846{
d01949b6 2847 struct remote_state *rs = get_remote_state ();
c906108c
SS
2848 int result = 1;
2849
23860348 2850 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
2851 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2852 >= get_remote_packet_size ())
ea9c271d 2853 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2854
6d820c5c
DJ
2855 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2856 putpkt (rs->buf);
2857 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 2858 if (*rs->buf == '\0')
6dc54d91
PA
2859 {
2860 /* Packet not supported. */
2861 return -1;
2862 }
2863
2864 *result_count =
2865 parse_threadlist_response (rs->buf + 2, result_limit,
2866 &rs->echo_nextthread, threadlist, done);
c906108c 2867
0d031856 2868 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 2869 {
23860348
MS
2870 /* FIXME: This is a good reason to drop the packet. */
2871 /* Possably, there is a duplicate response. */
c906108c
SS
2872 /* Possabilities :
2873 retransmit immediatly - race conditions
2874 retransmit after timeout - yes
2875 exit
2876 wait for packet, then exit
2877 */
8a3fe4f8 2878 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2879 return 0; /* I choose simply exiting. */
c906108c
SS
2880 }
2881 if (*result_count <= 0)
2882 {
2883 if (*done != 1)
2884 {
8a3fe4f8 2885 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2886 result = 0;
2887 }
2888 return result; /* break; */
2889 }
2890 if (*result_count > result_limit)
2891 {
2892 *result_count = 0;
8a3fe4f8 2893 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2894 return 0;
2895 }
2896 return result;
2897}
2898
6dc54d91
PA
2899/* Fetch the list of remote threads, with the qL packet, and call
2900 STEPFUNCTION for each thread found. Stops iterating and returns 1
2901 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2902 STEPFUNCTION returns false. If the packet is not supported,
2903 returns -1. */
c906108c 2904
c906108c 2905static int
fba45db2
KB
2906remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2907 int looplimit)
c906108c 2908{
0d031856 2909 struct remote_state *rs = get_remote_state ();
c906108c
SS
2910 int done, i, result_count;
2911 int startflag = 1;
2912 int result = 1;
2913 int loopcount = 0;
c906108c
SS
2914
2915 done = 0;
2916 while (!done)
2917 {
2918 if (loopcount++ > looplimit)
2919 {
2920 result = 0;
8a3fe4f8 2921 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2922 break;
2923 }
6dc54d91
PA
2924 result = remote_get_threadlist (startflag, &rs->nextthread,
2925 MAXTHREADLISTRESULTS,
2926 &done, &result_count,
2927 rs->resultthreadlist);
2928 if (result <= 0)
2929 break;
23860348 2930 /* Clear for later iterations. */
c906108c
SS
2931 startflag = 0;
2932 /* Setup to resume next batch of thread references, set nextthread. */
2933 if (result_count >= 1)
0d031856
TT
2934 copy_threadref (&rs->nextthread,
2935 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
2936 i = 0;
2937 while (result_count--)
6dc54d91
PA
2938 {
2939 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2940 {
2941 result = 0;
2942 break;
2943 }
2944 }
c906108c
SS
2945 }
2946 return result;
2947}
2948
6dc54d91
PA
2949/* A thread found on the remote target. */
2950
21fe1c75 2951struct thread_item
6dc54d91 2952{
21fe1c75
SM
2953 explicit thread_item (ptid_t ptid_)
2954 : ptid (ptid_)
2955 {}
2956
2957 thread_item (thread_item &&other) = default;
2958 thread_item &operator= (thread_item &&other) = default;
2959
2960 DISABLE_COPY_AND_ASSIGN (thread_item);
2961
6dc54d91
PA
2962 /* The thread's PTID. */
2963 ptid_t ptid;
2964
21fe1c75
SM
2965 /* The thread's extra info. */
2966 std::string extra;
6dc54d91 2967
21fe1c75
SM
2968 /* The thread's name. */
2969 std::string name;
79efa585 2970
6dc54d91 2971 /* The core the thread was running on. -1 if not known. */
21fe1c75 2972 int core = -1;
f6327dcb
KB
2973
2974 /* The thread handle associated with the thread. */
21fe1c75 2975 gdb::byte_vector thread_handle;
21fe1c75 2976};
6dc54d91
PA
2977
2978/* Context passed around to the various methods listing remote
2979 threads. As new threads are found, they're added to the ITEMS
2980 vector. */
2981
2982struct threads_listing_context
2983{
21fe1c75
SM
2984 /* Return true if this object contains an entry for a thread with ptid
2985 PTID. */
6dc54d91 2986
21fe1c75
SM
2987 bool contains_thread (ptid_t ptid) const
2988 {
2989 auto match_ptid = [&] (const thread_item &item)
2990 {
2991 return item.ptid == ptid;
2992 };
80134cf5 2993
21fe1c75
SM
2994 auto it = std::find_if (this->items.begin (),
2995 this->items.end (),
2996 match_ptid);
80134cf5 2997
21fe1c75
SM
2998 return it != this->items.end ();
2999 }
80134cf5 3000
21fe1c75 3001 /* Remove the thread with ptid PTID. */
80134cf5 3002
21fe1c75
SM
3003 void remove_thread (ptid_t ptid)
3004 {
3005 auto match_ptid = [&] (const thread_item &item)
3006 {
3007 return item.ptid == ptid;
3008 };
cbb8991c 3009
21fe1c75
SM
3010 auto it = std::remove_if (this->items.begin (),
3011 this->items.end (),
3012 match_ptid);
cbb8991c 3013
21fe1c75
SM
3014 if (it != this->items.end ())
3015 this->items.erase (it);
3016 }
3017
3018 /* The threads found on the remote target. */
3019 std::vector<thread_item> items;
3020};
cbb8991c 3021
c906108c 3022static int
6dc54d91 3023remote_newthread_step (threadref *ref, void *data)
c906108c 3024{
19ba03f4
SM
3025 struct threads_listing_context *context
3026 = (struct threads_listing_context *) data;
21fe1c75
SM
3027 int pid = inferior_ptid.pid ();
3028 int lwp = threadref_to_int (ref);
3029 ptid_t ptid (pid, lwp);
6dc54d91 3030
21fe1c75 3031 context->items.emplace_back (ptid);
6dc54d91 3032
c906108c
SS
3033 return 1; /* continue iterator */
3034}
3035
3036#define CRAZY_MAX_THREADS 1000
3037
39f77062
KB
3038static ptid_t
3039remote_current_thread (ptid_t oldpid)
c906108c 3040{
d01949b6 3041 struct remote_state *rs = get_remote_state ();
c906108c
SS
3042
3043 putpkt ("qC");
6d820c5c 3044 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3045 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34 3046 {
256642e8 3047 const char *obuf;
c9f35b34
KB
3048 ptid_t result;
3049
3050 result = read_ptid (&rs->buf[2], &obuf);
3051 if (*obuf != '\0' && remote_debug)
3052 fprintf_unfiltered (gdb_stdlog,
3053 "warning: garbage in qC reply\n");
3054
3055 return result;
3056 }
c906108c
SS
3057 else
3058 return oldpid;
3059}
3060
6dc54d91 3061/* List remote threads using the deprecated qL packet. */
cce74817 3062
6dc54d91
PA
3063static int
3064remote_get_threads_with_ql (struct target_ops *ops,
3065 struct threads_listing_context *context)
c906108c 3066{
6dc54d91
PA
3067 if (remote_threadlist_iterator (remote_newthread_step, context,
3068 CRAZY_MAX_THREADS) >= 0)
3069 return 1;
3070
3071 return 0;
c906108c
SS
3072}
3073
dc146f7c
VP
3074#if defined(HAVE_LIBEXPAT)
3075
dc146f7c
VP
3076static void
3077start_thread (struct gdb_xml_parser *parser,
3078 const struct gdb_xml_element *element,
3079 void *user_data, VEC(gdb_xml_value_s) *attributes)
3080{
19ba03f4
SM
3081 struct threads_listing_context *data
3082 = (struct threads_listing_context *) user_data;
3d2c1d41 3083 struct gdb_xml_value *attr;
dc146f7c 3084
21fe1c75
SM
3085 char *id = (char *) xml_find_attribute (attributes, "id")->value;
3086 ptid_t ptid = read_ptid (id, NULL);
3087
3088 data->items.emplace_back (ptid);
3089 thread_item &item = data->items.back ();
dc146f7c 3090
3d2c1d41
PA
3091 attr = xml_find_attribute (attributes, "core");
3092 if (attr != NULL)
3093 item.core = *(ULONGEST *) attr->value;
dc146f7c 3094
79efa585 3095 attr = xml_find_attribute (attributes, "name");
21fe1c75
SM
3096 if (attr != NULL)
3097 item.name = (const char *) attr->value;
79efa585 3098
f6327dcb
KB
3099 attr = xml_find_attribute (attributes, "handle");
3100 if (attr != NULL)
21fe1c75 3101 item.thread_handle = hex2bin ((const char *) attr->value);
dc146f7c
VP
3102}
3103
3104static void
3105end_thread (struct gdb_xml_parser *parser,
3106 const struct gdb_xml_element *element,
3107 void *user_data, const char *body_text)
3108{
19ba03f4
SM
3109 struct threads_listing_context *data
3110 = (struct threads_listing_context *) user_data;
dc146f7c 3111
21fe1c75
SM
3112 if (body_text != NULL && *body_text != '\0')
3113 data->items.back ().extra = body_text;
dc146f7c
VP
3114}
3115
3116const struct gdb_xml_attribute thread_attributes[] = {
3117 { "id", GDB_XML_AF_NONE, NULL, NULL },
3118 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3119 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
f6327dcb 3120 { "handle", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3121 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3122};
3123
3124const struct gdb_xml_element thread_children[] = {
3125 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3126};
3127
3128const struct gdb_xml_element threads_children[] = {
3129 { "thread", thread_attributes, thread_children,
3130 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3131 start_thread, end_thread },
3132 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3133};
3134
3135const struct gdb_xml_element threads_elements[] = {
3136 { "threads", NULL, threads_children,
3137 GDB_XML_EF_NONE, NULL, NULL },
3138 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3139};
3140
3141#endif
3142
6dc54d91 3143/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3144
6dc54d91
PA
3145static int
3146remote_get_threads_with_qxfer (struct target_ops *ops,
3147 struct threads_listing_context *context)
0f71a2f6 3148{
dc146f7c 3149#if defined(HAVE_LIBEXPAT)
4082afcc 3150 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3151 {
b7b030ad
TT
3152 gdb::unique_xmalloc_ptr<char> xml
3153 = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
efc0eabd 3154
6dc54d91 3155 if (xml != NULL && *xml != '\0')
dc146f7c 3156 {
6dc54d91 3157 gdb_xml_parse_quick (_("threads"), "threads.dtd",
b7b030ad 3158 threads_elements, xml.get (), context);
dc146f7c
VP
3159 }
3160
6dc54d91 3161 return 1;
dc146f7c
VP
3162 }
3163#endif
3164
6dc54d91
PA
3165 return 0;
3166}
3167
3168/* List remote threads using qfThreadInfo/qsThreadInfo. */
3169
3170static int
3171remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3172 struct threads_listing_context *context)
3173{
3174 struct remote_state *rs = get_remote_state ();
3175
b80fafe3 3176 if (rs->use_threadinfo_query)
9d1f7ab2 3177 {
256642e8 3178 const char *bufp;
6dc54d91 3179
9d1f7ab2 3180 putpkt ("qfThreadInfo");
6d820c5c 3181 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3182 bufp = rs->buf;
9d1f7ab2 3183 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3184 {
9d1f7ab2
MS
3185 while (*bufp++ == 'm') /* reply contains one or more TID */
3186 {
3187 do
3188 {
21fe1c75
SM
3189 ptid_t ptid = read_ptid (bufp, &bufp);
3190 context->items.emplace_back (ptid);
9d1f7ab2
MS
3191 }
3192 while (*bufp++ == ','); /* comma-separated list */
3193 putpkt ("qsThreadInfo");
6d820c5c 3194 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3195 bufp = rs->buf;
9d1f7ab2 3196 }
6dc54d91
PA
3197 return 1;
3198 }
3199 else
3200 {
3201 /* Packet not recognized. */
3202 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3203 }
3204 }
3205
6dc54d91
PA
3206 return 0;
3207}
3208
e8032dde 3209/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3210 targets. */
3211
3212static void
e8032dde 3213remote_update_thread_list (struct target_ops *ops)
6dc54d91 3214{
6dc54d91 3215 struct threads_listing_context context;
ab970af1 3216 int got_list = 0;
e8032dde 3217
6dc54d91
PA
3218 /* We have a few different mechanisms to fetch the thread list. Try
3219 them all, starting with the most preferred one first, falling
3220 back to older methods. */
3221 if (remote_get_threads_with_qxfer (ops, &context)
3222 || remote_get_threads_with_qthreadinfo (ops, &context)
3223 || remote_get_threads_with_ql (ops, &context))
3224 {
ab970af1
PA
3225 struct thread_info *tp, *tmp;
3226
3227 got_list = 1;
3228
21fe1c75 3229 if (context.items.empty ()
7d1a114c
PA
3230 && remote_thread_always_alive (ops, inferior_ptid))
3231 {
3232 /* Some targets don't really support threads, but still
3233 reply an (empty) thread list in response to the thread
3234 listing packets, instead of replying "packet not
3235 supported". Exit early so we don't delete the main
3236 thread. */
7d1a114c
PA
3237 return;
3238 }
3239
ab970af1
PA
3240 /* CONTEXT now holds the current thread list on the remote
3241 target end. Delete GDB-side threads no longer found on the
3242 target. */
8a06aea7 3243 ALL_THREADS_SAFE (tp, tmp)
cbb8991c 3244 {
21fe1c75 3245 if (!context.contains_thread (tp->ptid))
ab970af1
PA
3246 {
3247 /* Not found. */
3248 delete_thread (tp->ptid);
3249 }
cbb8991c
DB
3250 }
3251
3252 /* Remove any unreported fork child threads from CONTEXT so
3253 that we don't interfere with follow fork, which is where
3254 creation of such threads is handled. */
3255 remove_new_fork_children (&context);
74531fed 3256
ab970af1 3257 /* And now add threads we don't know about yet to our list. */
21fe1c75 3258 for (thread_item &item : context.items)
6dc54d91 3259 {
21fe1c75 3260 if (item.ptid != null_ptid)
6dc54d91 3261 {
6dc54d91 3262 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3263 executing until proven otherwise with a stop reply.
3264 In all-stop, we can only get here if all threads are
6dc54d91 3265 stopped. */
0d5b594f 3266 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3267
21fe1c75 3268 remote_notice_new_inferior (item.ptid, executing);
6dc54d91 3269
7aabaf9d 3270 remote_thread_info *info = get_remote_thread_info (item.ptid);
21fe1c75 3271 info->core = item.core;
7aabaf9d
SM
3272 info->extra = std::move (item.extra);
3273 info->name = std::move (item.name);
3274 info->thread_handle = std::move (item.thread_handle);
6dc54d91
PA
3275 }
3276 }
3277 }
3278
ab970af1
PA
3279 if (!got_list)
3280 {
3281 /* If no thread listing method is supported, then query whether
3282 each known thread is alive, one by one, with the T packet.
3283 If the target doesn't support threads at all, then this is a
3284 no-op. See remote_thread_alive. */
3285 prune_threads ();
3286 }
9d1f7ab2
MS
3287}
3288
802188a7 3289/*
9d1f7ab2
MS
3290 * Collect a descriptive string about the given thread.
3291 * The target may say anything it wants to about the thread
3292 * (typically info about its blocked / runnable state, name, etc.).
3293 * This string will appear in the info threads display.
802188a7 3294 *
9d1f7ab2
MS
3295 * Optional: targets are not required to implement this function.
3296 */
3297
7a114964 3298static const char *
c15906d8 3299remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
9d1f7ab2 3300{
d01949b6 3301 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3302 int result;
3303 int set;
3304 threadref id;
3305 struct gdb_ext_thread_info threadinfo;
23860348 3306 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
3307 int n = 0; /* position in display_buf */
3308
5d93a237 3309 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3310 internal_error (__FILE__, __LINE__,
e2e0b3e5 3311 _("remote_threads_extra_info"));
9d1f7ab2 3312
60e569b9 3313 if (ptid_equal (tp->ptid, magic_null_ptid)
ba348170 3314 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
60e569b9
PA
3315 /* This is the main thread which was added by GDB. The remote
3316 server doesn't know about it. */
3317 return NULL;
3318
4082afcc 3319 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c
VP
3320 {
3321 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 3322
7aabaf9d
SM
3323 if (info != NULL && info->priv != NULL)
3324 return get_remote_thread_info (info)->extra.c_str ();
dc146f7c
VP
3325 else
3326 return NULL;
3327 }
3328
b80fafe3 3329 if (rs->use_threadextra_query)
9d1f7ab2 3330 {
82f73884
PA
3331 char *b = rs->buf;
3332 char *endb = rs->buf + get_remote_packet_size ();
3333
3334 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3335 b += strlen (b);
3336 write_ptid (b, endb, tp->ptid);
3337
2e9f7625 3338 putpkt (rs->buf);
6d820c5c 3339 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3340 if (rs->buf[0] != 0)
9d1f7ab2 3341 {
325fac50 3342 n = std::min (strlen (rs->buf) / 2, sizeof (display_buf));
2e9f7625 3343 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 3344 display_buf [result] = '\0';
9d1f7ab2
MS
3345 return display_buf;
3346 }
0f71a2f6 3347 }
9d1f7ab2
MS
3348
3349 /* If the above query fails, fall back to the old method. */
b80fafe3 3350 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3351 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3352 | TAG_MOREDISPLAY | TAG_DISPLAY;
ba348170 3353 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
9d1f7ab2
MS
3354 if (remote_get_threadinfo (&id, set, &threadinfo))
3355 if (threadinfo.active)
0f71a2f6 3356 {
9d1f7ab2 3357 if (*threadinfo.shortname)
2bc416ba 3358 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 3359 " Name: %s,", threadinfo.shortname);
9d1f7ab2 3360 if (*threadinfo.display)
2bc416ba 3361 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3362 " State: %s,", threadinfo.display);
9d1f7ab2 3363 if (*threadinfo.more_display)
2bc416ba 3364 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3365 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
3366
3367 if (n > 0)
c5aa993b 3368 {
23860348 3369 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
3370 if (',' == display_buf[n-1])
3371 display_buf[n-1] = ' ';
3372 return display_buf;
c5aa993b 3373 }
0f71a2f6 3374 }
9d1f7ab2 3375 return NULL;
0f71a2f6 3376}
c906108c 3377\f
c5aa993b 3378
0fb4aa4b 3379static int
61fc905d 3380remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
0fb4aa4b
PA
3381 struct static_tracepoint_marker *marker)
3382{
3383 struct remote_state *rs = get_remote_state ();
3384 char *p = rs->buf;
3385
bba74b36 3386 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3387 p += strlen (p);
3388 p += hexnumstr (p, addr);
3389 putpkt (rs->buf);
3390 getpkt (&rs->buf, &rs->buf_size, 0);
3391 p = rs->buf;
3392
3393 if (*p == 'E')
3394 error (_("Remote failure reply: %s"), p);
3395
3396 if (*p++ == 'm')
3397 {
256642e8 3398 parse_static_tracepoint_marker_definition (p, NULL, marker);
0fb4aa4b
PA
3399 return 1;
3400 }
3401
3402 return 0;
3403}
3404
0fb4aa4b 3405static VEC(static_tracepoint_marker_p) *
c686c57f
TT
3406remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3407 const char *strid)
0fb4aa4b
PA
3408{
3409 struct remote_state *rs = get_remote_state ();
3410 VEC(static_tracepoint_marker_p) *markers = NULL;
3411 struct static_tracepoint_marker *marker = NULL;
3412 struct cleanup *old_chain;
256642e8 3413 const char *p;
0fb4aa4b
PA
3414
3415 /* Ask for a first packet of static tracepoint marker
3416 definition. */
3417 putpkt ("qTfSTM");
3418 getpkt (&rs->buf, &rs->buf_size, 0);
3419 p = rs->buf;
3420 if (*p == 'E')
3421 error (_("Remote failure reply: %s"), p);
3422
3423 old_chain = make_cleanup (free_current_marker, &marker);
3424
3425 while (*p++ == 'm')
3426 {
3427 if (marker == NULL)
3428 marker = XCNEW (struct static_tracepoint_marker);
3429
3430 do
3431 {
3432 parse_static_tracepoint_marker_definition (p, &p, marker);
3433
3434 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3435 {
3436 VEC_safe_push (static_tracepoint_marker_p,
3437 markers, marker);
3438 marker = NULL;
3439 }
3440 else
3441 {
3442 release_static_tracepoint_marker (marker);
3443 memset (marker, 0, sizeof (*marker));
3444 }
3445 }
3446 while (*p++ == ','); /* comma-separated list */
3447 /* Ask for another packet of static tracepoint definition. */
3448 putpkt ("qTsSTM");
3449 getpkt (&rs->buf, &rs->buf_size, 0);
3450 p = rs->buf;
3451 }
3452
3453 do_cleanups (old_chain);
3454 return markers;
3455}
3456
3457\f
10760264
JB
3458/* Implement the to_get_ada_task_ptid function for the remote targets. */
3459
3460static ptid_t
1e6b91a4 3461remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
10760264 3462{
ba348170 3463 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
10760264
JB
3464}
3465\f
3466
24b06219 3467/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3468
3469static void
fba45db2 3470extended_remote_restart (void)
c906108c 3471{
d01949b6 3472 struct remote_state *rs = get_remote_state ();
c906108c
SS
3473
3474 /* Send the restart command; for reasons I don't understand the
3475 remote side really expects a number after the "R". */
ea9c271d 3476 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3477 putpkt (rs->buf);
c906108c 3478
ad9a8f3f 3479 remote_fileio_reset ();
c906108c
SS
3480}
3481\f
3482/* Clean up connection to a remote debugger. */
3483
c906108c 3484static void
de90e03d 3485remote_close (struct target_ops *self)
c906108c 3486{
5d93a237
TT
3487 struct remote_state *rs = get_remote_state ();
3488
3489 if (rs->remote_desc == NULL)
d3fd5342
PA
3490 return; /* already closed */
3491
048094ac 3492 /* Make sure we leave stdin registered in the event loop. */
e3594fd1 3493 remote_terminal_ours (self);
ce5ce7ed 3494
5d93a237
TT
3495 serial_close (rs->remote_desc);
3496 rs->remote_desc = NULL;
ce5ce7ed
PA
3497
3498 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3499 of all the inferiors and their threads we were controlling.
3500 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3501 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3502 inferior_ptid = null_ptid;
f67fd822 3503 discard_all_inferiors ();
ce5ce7ed 3504
f48ff2a7
YQ
3505 /* We are closing the remote target, so we should discard
3506 everything of this target. */
bcc75809 3507 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3508
3509 if (remote_async_inferior_event_token)
3510 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3511
5965e028 3512 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3513
3514 trace_reset_local_state ();
c906108c
SS
3515}
3516
23860348 3517/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3518
3519static void
fba45db2 3520get_offsets (void)
c906108c 3521{
d01949b6 3522 struct remote_state *rs = get_remote_state ();
2e9f7625 3523 char *buf;
085dd6e6 3524 char *ptr;
31d99776
DJ
3525 int lose, num_segments = 0, do_sections, do_segments;
3526 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3527 struct section_offsets *offs;
31d99776
DJ
3528 struct symfile_segment_data *data;
3529
3530 if (symfile_objfile == NULL)
3531 return;
c906108c
SS
3532
3533 putpkt ("qOffsets");
6d820c5c 3534 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3535 buf = rs->buf;
c906108c
SS
3536
3537 if (buf[0] == '\000')
3538 return; /* Return silently. Stub doesn't support
23860348 3539 this command. */
c906108c
SS
3540 if (buf[0] == 'E')
3541 {
8a3fe4f8 3542 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3543 return;
3544 }
3545
3546 /* Pick up each field in turn. This used to be done with scanf, but
3547 scanf will make trouble if CORE_ADDR size doesn't match
3548 conversion directives correctly. The following code will work
3549 with any size of CORE_ADDR. */
3550 text_addr = data_addr = bss_addr = 0;
3551 ptr = buf;
3552 lose = 0;
3553
61012eef 3554 if (startswith (ptr, "Text="))
c906108c
SS
3555 {
3556 ptr += 5;
3557 /* Don't use strtol, could lose on big values. */
3558 while (*ptr && *ptr != ';')
3559 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3560
61012eef 3561 if (startswith (ptr, ";Data="))
31d99776
DJ
3562 {
3563 ptr += 6;
3564 while (*ptr && *ptr != ';')
3565 data_addr = (data_addr << 4) + fromhex (*ptr++);
3566 }
3567 else
3568 lose = 1;
3569
61012eef 3570 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
3571 {
3572 ptr += 5;
3573 while (*ptr && *ptr != ';')
3574 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3575
31d99776
DJ
3576 if (bss_addr != data_addr)
3577 warning (_("Target reported unsupported offsets: %s"), buf);
3578 }
3579 else
3580 lose = 1;
3581 }
61012eef 3582 else if (startswith (ptr, "TextSeg="))
c906108c 3583 {
31d99776
DJ
3584 ptr += 8;
3585 /* Don't use strtol, could lose on big values. */
c906108c 3586 while (*ptr && *ptr != ';')
31d99776
DJ
3587 text_addr = (text_addr << 4) + fromhex (*ptr++);
3588 num_segments = 1;
3589
61012eef 3590 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
3591 {
3592 ptr += 9;
3593 while (*ptr && *ptr != ';')
3594 data_addr = (data_addr << 4) + fromhex (*ptr++);
3595 num_segments++;
3596 }
c906108c
SS
3597 }
3598 else
3599 lose = 1;
3600
3601 if (lose)
8a3fe4f8 3602 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3603 else if (*ptr != '\0')
3604 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3605
802188a7 3606 offs = ((struct section_offsets *)
a39a16c4 3607 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3608 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3609 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3610
31d99776
DJ
3611 data = get_symfile_segment_data (symfile_objfile->obfd);
3612 do_segments = (data != NULL);
3613 do_sections = num_segments == 0;
c906108c 3614
28c32713 3615 if (num_segments > 0)
31d99776 3616 {
31d99776
DJ
3617 segments[0] = text_addr;
3618 segments[1] = data_addr;
3619 }
28c32713
JB
3620 /* If we have two segments, we can still try to relocate everything
3621 by assuming that the .text and .data offsets apply to the whole
3622 text and data segments. Convert the offsets given in the packet
3623 to base addresses for symfile_map_offsets_to_segments. */
3624 else if (data && data->num_segments == 2)
3625 {
3626 segments[0] = data->segment_bases[0] + text_addr;
3627 segments[1] = data->segment_bases[1] + data_addr;
3628 num_segments = 2;
3629 }
8d385431
DJ
3630 /* If the object file has only one segment, assume that it is text
3631 rather than data; main programs with no writable data are rare,
3632 but programs with no code are useless. Of course the code might
3633 have ended up in the data segment... to detect that we would need
3634 the permissions here. */
3635 else if (data && data->num_segments == 1)
3636 {
3637 segments[0] = data->segment_bases[0] + text_addr;
3638 num_segments = 1;
3639 }
28c32713
JB
3640 /* There's no way to relocate by segment. */
3641 else
3642 do_segments = 0;
31d99776
DJ
3643
3644 if (do_segments)
3645 {
3646 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3647 offs, num_segments, segments);
3648
3649 if (ret == 0 && !do_sections)
3e43a32a
MS
3650 error (_("Can not handle qOffsets TextSeg "
3651 "response with this symbol file"));
31d99776
DJ
3652
3653 if (ret > 0)
3654 do_sections = 0;
3655 }
c906108c 3656
9ef895d6
DJ
3657 if (data)
3658 free_symfile_segment_data (data);
31d99776
DJ
3659
3660 if (do_sections)
3661 {
3662 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3663
3e43a32a
MS
3664 /* This is a temporary kludge to force data and bss to use the
3665 same offsets because that's what nlmconv does now. The real
3666 solution requires changes to the stub and remote.c that I
3667 don't have time to do right now. */
31d99776
DJ
3668
3669 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3670 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3671 }
c906108c
SS
3672
3673 objfile_relocate (symfile_objfile, offs);
3674}
3675
9a7071a8
JB
3676/* Send interrupt_sequence to remote target. */
3677static void
eeae04df 3678send_interrupt_sequence (void)
9a7071a8 3679{
5d93a237
TT
3680 struct remote_state *rs = get_remote_state ();
3681
9a7071a8 3682 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 3683 remote_serial_write ("\x03", 1);
9a7071a8 3684 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 3685 serial_send_break (rs->remote_desc);
9a7071a8
JB
3686 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3687 {
5d93a237 3688 serial_send_break (rs->remote_desc);
c33e31fd 3689 remote_serial_write ("g", 1);
9a7071a8
JB
3690 }
3691 else
3692 internal_error (__FILE__, __LINE__,
3693 _("Invalid value for interrupt_sequence_mode: %s."),
3694 interrupt_sequence_mode);
3695}
3696
3405876a
PA
3697
3698/* If STOP_REPLY is a T stop reply, look for the "thread" register,
3699 and extract the PTID. Returns NULL_PTID if not found. */
3700
3701static ptid_t
3702stop_reply_extract_thread (char *stop_reply)
3703{
3704 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3705 {
256642e8 3706 const char *p;
3405876a
PA
3707
3708 /* Txx r:val ; r:val (...) */
3709 p = &stop_reply[3];
3710
3711 /* Look for "register" named "thread". */
3712 while (*p != '\0')
3713 {
256642e8 3714 const char *p1;
3405876a
PA
3715
3716 p1 = strchr (p, ':');
3717 if (p1 == NULL)
3718 return null_ptid;
3719
3720 if (strncmp (p, "thread", p1 - p) == 0)
3721 return read_ptid (++p1, &p);
3722
3723 p1 = strchr (p, ';');
3724 if (p1 == NULL)
3725 return null_ptid;
3726 p1++;
3727
3728 p = p1;
3729 }
3730 }
3731
3732 return null_ptid;
3733}
3734
b7ea362b
PA
3735/* Determine the remote side's current thread. If we have a stop
3736 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3737 "thread" register we can extract the current thread from. If not,
3738 ask the remote which is the current thread with qC. The former
3739 method avoids a roundtrip. */
3740
3741static ptid_t
3742get_current_thread (char *wait_status)
3743{
6a49a997 3744 ptid_t ptid = null_ptid;
b7ea362b
PA
3745
3746 /* Note we don't use remote_parse_stop_reply as that makes use of
3747 the target architecture, which we haven't yet fully determined at
3748 this point. */
3749 if (wait_status != NULL)
3750 ptid = stop_reply_extract_thread (wait_status);
3751 if (ptid_equal (ptid, null_ptid))
3752 ptid = remote_current_thread (inferior_ptid);
3753
3754 return ptid;
3755}
3756
49c62f2e
PA
3757/* Query the remote target for which is the current thread/process,
3758 add it to our tables, and update INFERIOR_PTID. The caller is
3759 responsible for setting the state such that the remote end is ready
3405876a
PA
3760 to return the current thread.
3761
3762 This function is called after handling the '?' or 'vRun' packets,
3763 whose response is a stop reply from which we can also try
3764 extracting the thread. If the target doesn't support the explicit
3765 qC query, we infer the current thread from that stop reply, passed
3766 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
3767
3768static void
3405876a 3769add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
3770{
3771 struct remote_state *rs = get_remote_state ();
3772 int fake_pid_p = 0;
49c62f2e
PA
3773
3774 inferior_ptid = null_ptid;
3775
b7ea362b 3776 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 3777 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 3778
87215ad1 3779 if (curr_ptid != null_ptid)
49c62f2e
PA
3780 {
3781 if (!remote_multi_process_p (rs))
3782 fake_pid_p = 1;
49c62f2e
PA
3783 }
3784 else
3785 {
3786 /* Without this, some commands which require an active target
3787 (such as kill) won't work. This variable serves (at least)
3788 double duty as both the pid of the target process (if it has
3789 such), and as a flag indicating that a target is active. */
87215ad1 3790 curr_ptid = magic_null_ptid;
49c62f2e
PA
3791 fake_pid_p = 1;
3792 }
3793
87215ad1 3794 remote_add_inferior (fake_pid_p, ptid_get_pid (curr_ptid), -1, 1);
49c62f2e 3795
87215ad1
SDJ
3796 /* Add the main thread and switch to it. Don't try reading
3797 registers yet, since we haven't fetched the target description
3798 yet. */
3799 thread_info *tp = add_thread_silent (curr_ptid);
3800 switch_to_thread_no_regs (tp);
49c62f2e
PA
3801}
3802
6efcd9a8
PA
3803/* Print info about a thread that was found already stopped on
3804 connection. */
3805
3806static void
3807print_one_stopped_thread (struct thread_info *thread)
3808{
3809 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3810
3811 switch_to_thread (thread->ptid);
3812 stop_pc = get_frame_pc (get_current_frame ());
3813 set_current_sal_from_frame (get_current_frame ());
3814
3815 thread->suspend.waitstatus_pending_p = 0;
3816
3817 if (ws->kind == TARGET_WAITKIND_STOPPED)
3818 {
3819 enum gdb_signal sig = ws->value.sig;
3820
3821 if (signal_print_state (sig))
3822 observer_notify_signal_received (sig);
3823 }
3824 observer_notify_normal_stop (NULL, 1);
3825}
3826
221e1a37
PA
3827/* Process all initial stop replies the remote side sent in response
3828 to the ? packet. These indicate threads that were already stopped
3829 on initial connection. We mark these threads as stopped and print
3830 their current frame before giving the user the prompt. */
3831
3832static void
6efcd9a8 3833process_initial_stop_replies (int from_tty)
221e1a37
PA
3834{
3835 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
3836 struct inferior *inf;
3837 struct thread_info *thread;
3838 struct thread_info *selected = NULL;
3839 struct thread_info *lowest_stopped = NULL;
3840 struct thread_info *first = NULL;
221e1a37
PA
3841
3842 /* Consume the initial pending events. */
3843 while (pending_stop_replies-- > 0)
3844 {
3845 ptid_t waiton_ptid = minus_one_ptid;
3846 ptid_t event_ptid;
3847 struct target_waitstatus ws;
3848 int ignore_event = 0;
6efcd9a8 3849 struct thread_info *thread;
221e1a37
PA
3850
3851 memset (&ws, 0, sizeof (ws));
3852 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3853 if (remote_debug)
3854 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3855
3856 switch (ws.kind)
3857 {
3858 case TARGET_WAITKIND_IGNORE:
3859 case TARGET_WAITKIND_NO_RESUMED:
3860 case TARGET_WAITKIND_SIGNALLED:
3861 case TARGET_WAITKIND_EXITED:
3862 /* We shouldn't see these, but if we do, just ignore. */
3863 if (remote_debug)
3864 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3865 ignore_event = 1;
3866 break;
3867
3868 case TARGET_WAITKIND_EXECD:
3869 xfree (ws.value.execd_pathname);
3870 break;
3871 default:
3872 break;
3873 }
3874
3875 if (ignore_event)
3876 continue;
3877
6efcd9a8 3878 thread = find_thread_ptid (event_ptid);
221e1a37
PA
3879
3880 if (ws.kind == TARGET_WAITKIND_STOPPED)
3881 {
3882 enum gdb_signal sig = ws.value.sig;
3883
3884 /* Stubs traditionally report SIGTRAP as initial signal,
3885 instead of signal 0. Suppress it. */
3886 if (sig == GDB_SIGNAL_TRAP)
3887 sig = GDB_SIGNAL_0;
6efcd9a8
PA
3888 thread->suspend.stop_signal = sig;
3889 ws.value.sig = sig;
3890 }
221e1a37 3891
6efcd9a8
PA
3892 thread->suspend.waitstatus = ws;
3893
3894 if (ws.kind != TARGET_WAITKIND_STOPPED
3895 || ws.value.sig != GDB_SIGNAL_0)
3896 thread->suspend.waitstatus_pending_p = 1;
3897
3898 set_executing (event_ptid, 0);
3899 set_running (event_ptid, 0);
7aabaf9d 3900 get_remote_thread_info (thread)->vcont_resumed = 0;
6efcd9a8
PA
3901 }
3902
3903 /* "Notice" the new inferiors before anything related to
3904 registers/memory. */
3905 ALL_INFERIORS (inf)
3906 {
3907 if (inf->pid == 0)
3908 continue;
3909
3910 inf->needs_setup = 1;
3911
3912 if (non_stop)
3913 {
3914 thread = any_live_thread_of_process (inf->pid);
3915 notice_new_inferior (thread->ptid,
3916 thread->state == THREAD_RUNNING,
3917 from_tty);
3918 }
3919 }
3920
3921 /* If all-stop on top of non-stop, pause all threads. Note this
3922 records the threads' stop pc, so must be done after "noticing"
3923 the inferiors. */
3924 if (!non_stop)
3925 {
3926 stop_all_threads ();
3927
3928 /* If all threads of an inferior were already stopped, we
3929 haven't setup the inferior yet. */
3930 ALL_INFERIORS (inf)
3931 {
3932 if (inf->pid == 0)
3933 continue;
221e1a37 3934
6efcd9a8
PA
3935 if (inf->needs_setup)
3936 {
3937 thread = any_live_thread_of_process (inf->pid);
3938 switch_to_thread_no_regs (thread);
3939 setup_inferior (0);
3940 }
3941 }
221e1a37 3942 }
6efcd9a8
PA
3943
3944 /* Now go over all threads that are stopped, and print their current
3945 frame. If all-stop, then if there's a signalled thread, pick
3946 that as current. */
3947 ALL_NON_EXITED_THREADS (thread)
3948 {
6efcd9a8
PA
3949 if (first == NULL)
3950 first = thread;
3951
3952 if (!non_stop)
3953 set_running (thread->ptid, 0);
3954 else if (thread->state != THREAD_STOPPED)
3955 continue;
3956
6efcd9a8
PA
3957 if (selected == NULL
3958 && thread->suspend.waitstatus_pending_p)
3959 selected = thread;
3960
5d5658a1
PA
3961 if (lowest_stopped == NULL
3962 || thread->inf->num < lowest_stopped->inf->num
3963 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
3964 lowest_stopped = thread;
3965
3966 if (non_stop)
3967 print_one_stopped_thread (thread);
3968 }
3969
3970 /* In all-stop, we only print the status of one thread, and leave
3971 others with their status pending. */
3972 if (!non_stop)
3973 {
3974 thread = selected;
3975 if (thread == NULL)
3976 thread = lowest_stopped;
3977 if (thread == NULL)
3978 thread = first;
3979
3980 print_one_stopped_thread (thread);
3981 }
3982
3983 /* For "info program". */
3984 thread = inferior_thread ();
3985 if (thread->state == THREAD_STOPPED)
3986 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
3987}
3988
048094ac
PA
3989/* Start the remote connection and sync state. */
3990
9cbc821d 3991static void
04bd08de 3992remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
c906108c 3993{
c8d104ad
PA
3994 struct remote_state *rs = get_remote_state ();
3995 struct packet_config *noack_config;
2d717e4f 3996 char *wait_status = NULL;
8621d6a9 3997
048094ac
PA
3998 /* Signal other parts that we're going through the initial setup,
3999 and so things may not be stable yet. E.g., we don't try to
4000 install tracepoints until we've relocated symbols. Also, a
4001 Ctrl-C before we're connected and synced up can't interrupt the
4002 target. Instead, it offers to drop the (potentially wedged)
4003 connection. */
4004 rs->starting_up = 1;
4005
522002f9 4006 QUIT;
c906108c 4007
9a7071a8
JB
4008 if (interrupt_on_connect)
4009 send_interrupt_sequence ();
4010
57e12211 4011 /* Ack any packet which the remote side has already sent. */
048094ac 4012 remote_serial_write ("+", 1);
1e51243a 4013
c8d104ad
PA
4014 /* The first packet we send to the target is the optional "supported
4015 packets" request. If the target can answer this, it will tell us
4016 which later probes to skip. */
4017 remote_query_supported ();
4018
d914c394 4019 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4020 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
c378d69d 4021 remote_set_permissions (target);
d914c394 4022
57809e5e
JK
4023 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4024 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4025 as a reply to known packet. For packet "vFile:setfs:" it is an
4026 invalid reply and GDB would return error in
4027 remote_hostio_set_filesystem, making remote files access impossible.
4028 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4029 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4030 {
4031 const char v_mustreplyempty[] = "vMustReplyEmpty";
4032
4033 putpkt (v_mustreplyempty);
4034 getpkt (&rs->buf, &rs->buf_size, 0);
4035 if (strcmp (rs->buf, "OK") == 0)
4036 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4037 else if (strcmp (rs->buf, "") != 0)
4038 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4039 rs->buf);
4040 }
4041
c8d104ad
PA
4042 /* Next, we possibly activate noack mode.
4043
4044 If the QStartNoAckMode packet configuration is set to AUTO,
4045 enable noack mode if the stub reported a wish for it with
4046 qSupported.
4047
4048 If set to TRUE, then enable noack mode even if the stub didn't
4049 report it in qSupported. If the stub doesn't reply OK, the
4050 session ends with an error.
4051
4052 If FALSE, then don't activate noack mode, regardless of what the
4053 stub claimed should be the default with qSupported. */
4054
4055 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4056 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4057 {
4058 putpkt ("QStartNoAckMode");
4059 getpkt (&rs->buf, &rs->buf_size, 0);
4060 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4061 rs->noack_mode = 1;
4062 }
4063
04bd08de 4064 if (extended_p)
5fe04517
PA
4065 {
4066 /* Tell the remote that we are using the extended protocol. */
4067 putpkt ("!");
4068 getpkt (&rs->buf, &rs->buf_size, 0);
4069 }
4070
9b224c5e
PA
4071 /* Let the target know which signals it is allowed to pass down to
4072 the program. */
4073 update_signals_program_target ();
4074
d962ef82
DJ
4075 /* Next, if the target can specify a description, read it. We do
4076 this before anything involving memory or registers. */
4077 target_find_description ();
4078
6c95b8df
PA
4079 /* Next, now that we know something about the target, update the
4080 address spaces in the program spaces. */
4081 update_address_spaces ();
4082
50c71eaf
PA
4083 /* On OSs where the list of libraries is global to all
4084 processes, we fetch them early. */
f5656ead 4085 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4086 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4087
6efcd9a8 4088 if (target_is_non_stop_p ())
74531fed 4089 {
4082afcc 4090 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4091 error (_("Non-stop mode requested, but remote "
4092 "does not support non-stop"));
74531fed
PA
4093
4094 putpkt ("QNonStop:1");
4095 getpkt (&rs->buf, &rs->buf_size, 0);
4096
4097 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4098 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4099
4100 /* Find about threads and processes the stub is already
4101 controlling. We default to adding them in the running state.
4102 The '?' query below will then tell us about which threads are
4103 stopped. */
e8032dde 4104 remote_update_thread_list (target);
74531fed 4105 }
4082afcc 4106 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4107 {
4108 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4109 Request it explicitly. */
74531fed
PA
4110 putpkt ("QNonStop:0");
4111 getpkt (&rs->buf, &rs->buf_size, 0);
4112
4113 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4114 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4115 }
4116
a0743c90
YQ
4117 /* Upload TSVs regardless of whether the target is running or not. The
4118 remote stub, such as GDBserver, may have some predefined or builtin
4119 TSVs, even if the target is not running. */
8bd200f1 4120 if (remote_get_trace_status (target, current_trace_status ()) != -1)
a0743c90
YQ
4121 {
4122 struct uploaded_tsv *uploaded_tsvs = NULL;
4123
181e3713 4124 remote_upload_trace_state_variables (target, &uploaded_tsvs);
a0743c90
YQ
4125 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4126 }
4127
2d717e4f
DJ
4128 /* Check whether the target is running now. */
4129 putpkt ("?");
4130 getpkt (&rs->buf, &rs->buf_size, 0);
4131
6efcd9a8 4132 if (!target_is_non_stop_p ())
2d717e4f 4133 {
74531fed 4134 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4135 {
04bd08de 4136 if (!extended_p)
74531fed 4137 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4138
4139 /* We're connected, but not running. Drop out before we
4140 call start_remote. */
e278ad5b 4141 rs->starting_up = 0;
c35b1492 4142 return;
2d717e4f
DJ
4143 }
4144 else
74531fed 4145 {
74531fed 4146 /* Save the reply for later. */
224c3ddb 4147 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4148 strcpy (wait_status, rs->buf);
4149 }
4150
b7ea362b 4151 /* Fetch thread list. */
e8032dde 4152 target_update_thread_list ();
b7ea362b 4153
74531fed
PA
4154 /* Let the stub know that we want it to return the thread. */
4155 set_continue_thread (minus_one_ptid);
4156
b7ea362b
PA
4157 if (thread_count () == 0)
4158 {
4159 /* Target has no concept of threads at all. GDB treats
4160 non-threaded target as single-threaded; add a main
4161 thread. */
4162 add_current_inferior_and_thread (wait_status);
4163 }
4164 else
4165 {
4166 /* We have thread information; select the thread the target
4167 says should be current. If we're reconnecting to a
4168 multi-threaded program, this will ideally be the thread
4169 that last reported an event before GDB disconnected. */
4170 inferior_ptid = get_current_thread (wait_status);
4171 if (ptid_equal (inferior_ptid, null_ptid))
4172 {
4173 /* Odd... The target was able to list threads, but not
4174 tell us which thread was current (no "thread"
4175 register in T stop reply?). Just pick the first
4176 thread in the thread list then. */
c9f35b34
KB
4177
4178 if (remote_debug)
4179 fprintf_unfiltered (gdb_stdlog,
4180 "warning: couldn't determine remote "
4181 "current thread; picking first in list.\n");
4182
b7ea362b
PA
4183 inferior_ptid = thread_list->ptid;
4184 }
4185 }
74531fed 4186
6e586cc5
YQ
4187 /* init_wait_for_inferior should be called before get_offsets in order
4188 to manage `inserted' flag in bp loc in a correct state.
4189 breakpoint_init_inferior, called from init_wait_for_inferior, set
4190 `inserted' flag to 0, while before breakpoint_re_set, called from
4191 start_remote, set `inserted' flag to 1. In the initialization of
4192 inferior, breakpoint_init_inferior should be called first, and then
4193 breakpoint_re_set can be called. If this order is broken, state of
4194 `inserted' flag is wrong, and cause some problems on breakpoint
4195 manipulation. */
4196 init_wait_for_inferior ();
4197
74531fed
PA
4198 get_offsets (); /* Get text, data & bss offsets. */
4199
d962ef82
DJ
4200 /* If we could not find a description using qXfer, and we know
4201 how to do it some other way, try again. This is not
4202 supported for non-stop; it could be, but it is tricky if
4203 there are no stopped threads when we connect. */
04bd08de 4204 if (remote_read_description_p (target)
f5656ead 4205 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4206 {
4207 target_clear_description ();
4208 target_find_description ();
4209 }
4210
74531fed
PA
4211 /* Use the previously fetched status. */
4212 gdb_assert (wait_status != NULL);
4213 strcpy (rs->buf, wait_status);
4214 rs->cached_wait_status = 1;
4215
04bd08de 4216 start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4217 }
4218 else
4219 {
68c97600
PA
4220 /* Clear WFI global state. Do this before finding about new
4221 threads and inferiors, and setting the current inferior.
4222 Otherwise we would clear the proceed status of the current
4223 inferior when we want its stop_soon state to be preserved
4224 (see notice_new_inferior). */
4225 init_wait_for_inferior ();
4226
74531fed
PA
4227 /* In non-stop, we will either get an "OK", meaning that there
4228 are no stopped threads at this time; or, a regular stop
4229 reply. In the latter case, there may be more than one thread
4230 stopped --- we pull them all out using the vStopped
4231 mechanism. */
4232 if (strcmp (rs->buf, "OK") != 0)
4233 {
722247f1 4234 struct notif_client *notif = &notif_client_stop;
2d717e4f 4235
722247f1
YQ
4236 /* remote_notif_get_pending_replies acks this one, and gets
4237 the rest out. */
f48ff2a7 4238 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
4239 = remote_notif_parse (notif, rs->buf);
4240 remote_notif_get_pending_events (notif);
74531fed 4241 }
2d717e4f 4242
74531fed
PA
4243 if (thread_count () == 0)
4244 {
04bd08de 4245 if (!extended_p)
74531fed 4246 error (_("The target is not running (try extended-remote?)"));
82f73884 4247
c35b1492
PA
4248 /* We're connected, but not running. Drop out before we
4249 call start_remote. */
e278ad5b 4250 rs->starting_up = 0;
c35b1492
PA
4251 return;
4252 }
74531fed 4253
74531fed
PA
4254 /* In non-stop mode, any cached wait status will be stored in
4255 the stop reply queue. */
4256 gdb_assert (wait_status == NULL);
f0223081 4257
2455069d 4258 /* Report all signals during attach/startup. */
94bedb42 4259 remote_pass_signals (target, 0, NULL);
221e1a37
PA
4260
4261 /* If there are already stopped threads, mark them stopped and
4262 report their stops before giving the prompt to the user. */
6efcd9a8 4263 process_initial_stop_replies (from_tty);
221e1a37
PA
4264
4265 if (target_can_async_p ())
4266 target_async (1);
74531fed 4267 }
c8d104ad 4268
c8d104ad
PA
4269 /* If we connected to a live target, do some additional setup. */
4270 if (target_has_execution)
4271 {
f4ccffad 4272 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4273 remote_check_symbols ();
c8d104ad 4274 }
50c71eaf 4275
d5551862
SS
4276 /* Possibly the target has been engaged in a trace run started
4277 previously; find out where things are at. */
8bd200f1 4278 if (remote_get_trace_status (target, current_trace_status ()) != -1)
d5551862 4279 {
00bf0b85 4280 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4281
00bf0b85
SS
4282 if (current_trace_status ()->running)
4283 printf_filtered (_("Trace is already running on the target.\n"));
4284
ab6617cc 4285 remote_upload_tracepoints (target, &uploaded_tps);
00bf0b85
SS
4286
4287 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4288 }
4289
c0272db5
TW
4290 /* Possibly the target has been engaged in a btrace record started
4291 previously; find out where things are at. */
4292 remote_btrace_maybe_reopen ();
4293
1e51243a
PA
4294 /* The thread and inferior lists are now synchronized with the
4295 target, our symbols have been relocated, and we're merged the
4296 target's tracepoints with ours. We're done with basic start
4297 up. */
4298 rs->starting_up = 0;
4299
a25a5a45
PA
4300 /* Maybe breakpoints are global and need to be inserted now. */
4301 if (breakpoints_should_be_inserted_now ())
50c71eaf 4302 insert_breakpoints ();
c906108c
SS
4303}
4304
4305/* Open a connection to a remote debugger.
4306 NAME is the filename used for communication. */
4307
4308static void
014f9477 4309remote_open (const char *name, int from_tty)
c906108c 4310{
75c99385 4311 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
4312}
4313
c906108c
SS
4314/* Open a connection to a remote debugger using the extended
4315 remote gdb protocol. NAME is the filename used for communication. */
4316
4317static void
014f9477 4318extended_remote_open (const char *name, int from_tty)
c906108c 4319{
75c99385 4320 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
4321}
4322
ca4f7f8b
PA
4323/* Reset all packets back to "unknown support". Called when opening a
4324 new connection to a remote target. */
c906108c 4325
d471ea57 4326static void
ca4f7f8b 4327reset_all_packet_configs_support (void)
d471ea57
AC
4328{
4329 int i;
a744cf53 4330
444abaca 4331 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4332 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4333}
4334
ca4f7f8b
PA
4335/* Initialize all packet configs. */
4336
4337static void
4338init_all_packet_configs (void)
4339{
4340 int i;
4341
4342 for (i = 0; i < PACKET_MAX; i++)
4343 {
4344 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4345 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4346 }
4347}
4348
23860348 4349/* Symbol look-up. */
dc8acb97
MS
4350
4351static void
36d25514 4352remote_check_symbols (void)
dc8acb97
MS
4353{
4354 char *msg, *reply, *tmp;
dc8acb97 4355 int end;
28170b88 4356 long reply_size;
a5c0808e 4357 struct cleanup *old_chain;
dc8acb97 4358
63154eca
PA
4359 /* The remote side has no concept of inferiors that aren't running
4360 yet, it only knows about running processes. If we're connected
4361 but our current inferior is not running, we should not invite the
4362 remote target to request symbol lookups related to its
4363 (unrelated) current process. */
4364 if (!target_has_execution)
4365 return;
4366
4082afcc 4367 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4368 return;
4369
63154eca
PA
4370 /* Make sure the remote is pointing at the right process. Note
4371 there's no way to select "no process". */
3c9c4b83
PA
4372 set_general_process ();
4373
6d820c5c
DJ
4374 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4375 because we need both at the same time. */
224c3ddb 4376 msg = (char *) xmalloc (get_remote_packet_size ());
a5c0808e 4377 old_chain = make_cleanup (xfree, msg);
28170b88
MK
4378 reply = (char *) xmalloc (get_remote_packet_size ());
4379 make_cleanup (free_current_contents, &reply);
4380 reply_size = get_remote_packet_size ();
6d820c5c 4381
23860348 4382 /* Invite target to request symbol lookups. */
dc8acb97
MS
4383
4384 putpkt ("qSymbol::");
28170b88
MK
4385 getpkt (&reply, &reply_size, 0);
4386 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4387
61012eef 4388 while (startswith (reply, "qSymbol:"))
dc8acb97 4389 {
77e371c0
TT
4390 struct bound_minimal_symbol sym;
4391
dc8acb97 4392 tmp = &reply[8];
cfd77fa1 4393 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
4394 msg[end] = '\0';
4395 sym = lookup_minimal_symbol (msg, NULL, NULL);
3b7344d5 4396 if (sym.minsym == NULL)
ea9c271d 4397 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 4398 else
2bbe3cc1 4399 {
f5656ead 4400 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4401 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4402
4403 /* If this is a function address, return the start of code
4404 instead of any data function descriptor. */
f5656ead 4405 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
4406 sym_addr,
4407 &current_target);
4408
4409 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4410 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
4411 }
4412
dc8acb97 4413 putpkt (msg);
28170b88 4414 getpkt (&reply, &reply_size, 0);
dc8acb97 4415 }
a5c0808e
PA
4416
4417 do_cleanups (old_chain);
dc8acb97
MS
4418}
4419
9db8d71f 4420static struct serial *
baa336ce 4421remote_serial_open (const char *name)
9db8d71f
DJ
4422{
4423 static int udp_warning = 0;
4424
4425 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4426 of in ser-tcp.c, because it is the remote protocol assuming that the
4427 serial connection is reliable and not the serial connection promising
4428 to be. */
61012eef 4429 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4430 {
3e43a32a
MS
4431 warning (_("The remote protocol may be unreliable over UDP.\n"
4432 "Some events may be lost, rendering further debugging "
4433 "impossible."));
9db8d71f
DJ
4434 udp_warning = 1;
4435 }
4436
4437 return serial_open (name);
4438}
4439
d914c394
SS
4440/* Inform the target of our permission settings. The permission flags
4441 work without this, but if the target knows the settings, it can do
4442 a couple things. First, it can add its own check, to catch cases
4443 that somehow manage to get by the permissions checks in target
4444 methods. Second, if the target is wired to disallow particular
4445 settings (for instance, a system in the field that is not set up to
4446 be able to stop at a breakpoint), it can object to any unavailable
4447 permissions. */
4448
4449void
c378d69d 4450remote_set_permissions (struct target_ops *self)
d914c394
SS
4451{
4452 struct remote_state *rs = get_remote_state ();
4453
bba74b36
YQ
4454 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4455 "WriteReg:%x;WriteMem:%x;"
4456 "InsertBreak:%x;InsertTrace:%x;"
4457 "InsertFastTrace:%x;Stop:%x",
4458 may_write_registers, may_write_memory,
4459 may_insert_breakpoints, may_insert_tracepoints,
4460 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4461 putpkt (rs->buf);
4462 getpkt (&rs->buf, &rs->buf_size, 0);
4463
4464 /* If the target didn't like the packet, warn the user. Do not try
4465 to undo the user's settings, that would just be maddening. */
4466 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 4467 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
4468}
4469
be2a5f71
DJ
4470/* This type describes each known response to the qSupported
4471 packet. */
4472struct protocol_feature
4473{
4474 /* The name of this protocol feature. */
4475 const char *name;
4476
4477 /* The default for this protocol feature. */
4478 enum packet_support default_support;
4479
4480 /* The function to call when this feature is reported, or after
4481 qSupported processing if the feature is not supported.
4482 The first argument points to this structure. The second
4483 argument indicates whether the packet requested support be
4484 enabled, disabled, or probed (or the default, if this function
4485 is being called at the end of processing and this feature was
4486 not reported). The third argument may be NULL; if not NULL, it
4487 is a NUL-terminated string taken from the packet following
4488 this feature's name and an equals sign. */
4489 void (*func) (const struct protocol_feature *, enum packet_support,
4490 const char *);
4491
4492 /* The corresponding packet for this feature. Only used if
4493 FUNC is remote_supported_packet. */
4494 int packet;
4495};
4496
be2a5f71
DJ
4497static void
4498remote_supported_packet (const struct protocol_feature *feature,
4499 enum packet_support support,
4500 const char *argument)
4501{
4502 if (argument)
4503 {
4504 warning (_("Remote qSupported response supplied an unexpected value for"
4505 " \"%s\"."), feature->name);
4506 return;
4507 }
4508
4082afcc 4509 remote_protocol_packets[feature->packet].support = support;
be2a5f71 4510}
be2a5f71
DJ
4511
4512static void
4513remote_packet_size (const struct protocol_feature *feature,
4514 enum packet_support support, const char *value)
4515{
4516 struct remote_state *rs = get_remote_state ();
4517
4518 int packet_size;
4519 char *value_end;
4520
4521 if (support != PACKET_ENABLE)
4522 return;
4523
4524 if (value == NULL || *value == '\0')
4525 {
4526 warning (_("Remote target reported \"%s\" without a size."),
4527 feature->name);
4528 return;
4529 }
4530
4531 errno = 0;
4532 packet_size = strtol (value, &value_end, 16);
4533 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4534 {
4535 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4536 feature->name, value);
4537 return;
4538 }
4539
be2a5f71
DJ
4540 /* Record the new maximum packet size. */
4541 rs->explicit_packet_size = packet_size;
4542}
4543
dc473cfb 4544static const struct protocol_feature remote_protocol_features[] = {
0876f84a 4545 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 4546 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 4547 PACKET_qXfer_auxv },
c78fa86a
GB
4548 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4549 PACKET_qXfer_exec_file },
23181151
DJ
4550 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4551 PACKET_qXfer_features },
cfa9d6d9
DJ
4552 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4553 PACKET_qXfer_libraries },
2268b414
JK
4554 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4555 PACKET_qXfer_libraries_svr4 },
ced63ec0 4556 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 4557 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 4558 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4559 PACKET_qXfer_memory_map },
4de6483e
UW
4560 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4561 PACKET_qXfer_spu_read },
4562 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4563 PACKET_qXfer_spu_write },
07e059b5
VP
4564 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4565 PACKET_qXfer_osdata },
dc146f7c
VP
4566 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4567 PACKET_qXfer_threads },
b3b9301e
PA
4568 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4569 PACKET_qXfer_traceframe_info },
89be2091
DJ
4570 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4571 PACKET_QPassSignals },
82075af2
JS
4572 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4573 PACKET_QCatchSyscalls },
9b224c5e
PA
4574 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4575 PACKET_QProgramSignals },
bc3b087d
SDJ
4576 { "QSetWorkingDir", PACKET_DISABLE, remote_supported_packet,
4577 PACKET_QSetWorkingDir },
aefd8b33
SDJ
4578 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
4579 PACKET_QStartupWithShell },
0a2dde4a
SDJ
4580 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
4581 PACKET_QEnvironmentHexEncoded },
4582 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
4583 PACKET_QEnvironmentReset },
4584 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
4585 PACKET_QEnvironmentUnset },
a6f3e723
SL
4586 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4587 PACKET_QStartNoAckMode },
4082afcc
PA
4588 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4589 PACKET_multiprocess_feature },
4590 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
4591 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4592 PACKET_qXfer_siginfo_read },
4593 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4594 PACKET_qXfer_siginfo_write },
4082afcc 4595 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 4596 PACKET_ConditionalTracepoints },
4082afcc 4597 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 4598 PACKET_ConditionalBreakpoints },
4082afcc 4599 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 4600 PACKET_BreakpointCommands },
4082afcc 4601 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 4602 PACKET_FastTracepoints },
4082afcc 4603 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 4604 PACKET_StaticTracepoints },
4082afcc 4605 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 4606 PACKET_InstallInTrace},
4082afcc
PA
4607 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4608 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
4609 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4610 PACKET_bc },
4611 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4612 PACKET_bs },
409873ef
SS
4613 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4614 PACKET_TracepointSource },
d914c394
SS
4615 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4616 PACKET_QAllow },
4082afcc
PA
4617 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4618 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
4619 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4620 PACKET_qXfer_fdpic },
169081d0
TG
4621 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4622 PACKET_qXfer_uib },
03583c20
UW
4623 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4624 PACKET_QDisableRandomization },
d1feda86 4625 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4626 { "QTBuffer:size", PACKET_DISABLE,
4627 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 4628 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
4629 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4630 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 4631 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 4632 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
4633 PACKET_qXfer_btrace },
4634 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
4635 PACKET_qXfer_btrace_conf },
4636 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
4637 PACKET_Qbtrace_conf_bts_size },
4638 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 4639 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
4640 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4641 PACKET_fork_event_feature },
4642 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4643 PACKET_vfork_event_feature },
94585166
DB
4644 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4645 PACKET_exec_event_feature },
b20a6524 4646 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 4647 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
4648 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4649 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 4650 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
4651};
4652
c8d5aac9
L
4653static char *remote_support_xml;
4654
4655/* Register string appended to "xmlRegisters=" in qSupported query. */
4656
4657void
6e39997a 4658register_remote_support_xml (const char *xml)
c8d5aac9
L
4659{
4660#if defined(HAVE_LIBEXPAT)
4661 if (remote_support_xml == NULL)
c4f7c687 4662 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4663 else
4664 {
4665 char *copy = xstrdup (remote_support_xml + 13);
4666 char *p = strtok (copy, ",");
4667
4668 do
4669 {
4670 if (strcmp (p, xml) == 0)
4671 {
4672 /* already there */
4673 xfree (copy);
4674 return;
4675 }
4676 }
4677 while ((p = strtok (NULL, ",")) != NULL);
4678 xfree (copy);
4679
94b0dee1
PA
4680 remote_support_xml = reconcat (remote_support_xml,
4681 remote_support_xml, ",", xml,
4682 (char *) NULL);
c8d5aac9
L
4683 }
4684#endif
4685}
4686
4687static char *
4688remote_query_supported_append (char *msg, const char *append)
4689{
4690 if (msg)
94b0dee1 4691 return reconcat (msg, msg, ";", append, (char *) NULL);
c8d5aac9
L
4692 else
4693 return xstrdup (append);
4694}
4695
be2a5f71
DJ
4696static void
4697remote_query_supported (void)
4698{
4699 struct remote_state *rs = get_remote_state ();
4700 char *next;
4701 int i;
4702 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4703
4704 /* The packet support flags are handled differently for this packet
4705 than for most others. We treat an error, a disabled packet, and
4706 an empty response identically: any features which must be reported
4707 to be used will be automatically disabled. An empty buffer
4708 accomplishes this, since that is also the representation for a list
4709 containing no features. */
4710
4711 rs->buf[0] = 0;
4082afcc 4712 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 4713 {
c8d5aac9 4714 char *q = NULL;
94b0dee1 4715 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
c8d5aac9 4716
73b8c1fd
PA
4717 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4718 q = remote_query_supported_append (q, "multiprocess+");
c8d5aac9 4719
f7e6eed5
PA
4720 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4721 q = remote_query_supported_append (q, "swbreak+");
4722 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4723 q = remote_query_supported_append (q, "hwbreak+");
4724
dde08ee1
PA
4725 q = remote_query_supported_append (q, "qRelocInsn+");
4726
8020350c
DB
4727 if (packet_set_cmd_state (PACKET_fork_event_feature)
4728 != AUTO_BOOLEAN_FALSE)
4729 q = remote_query_supported_append (q, "fork-events+");
4730 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4731 != AUTO_BOOLEAN_FALSE)
4732 q = remote_query_supported_append (q, "vfork-events+");
4733 if (packet_set_cmd_state (PACKET_exec_event_feature)
4734 != AUTO_BOOLEAN_FALSE)
4735 q = remote_query_supported_append (q, "exec-events+");
89245bc0 4736
750ce8d1
YQ
4737 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4738 q = remote_query_supported_append (q, "vContSupported+");
4739
65706a29
PA
4740 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4741 q = remote_query_supported_append (q, "QThreadEvents+");
4742
f2faf941
PA
4743 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4744 q = remote_query_supported_append (q, "no-resumed+");
4745
b35d5edb
PA
4746 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4747 the qSupported:xmlRegisters=i386 handling. */
7cc244de
PA
4748 if (remote_support_xml != NULL
4749 && packet_support (PACKET_qXfer_features) != PACKET_DISABLE)
b35d5edb
PA
4750 q = remote_query_supported_append (q, remote_support_xml);
4751
dde08ee1
PA
4752 q = reconcat (q, "qSupported:", q, (char *) NULL);
4753 putpkt (q);
82f73884 4754
94b0dee1
PA
4755 do_cleanups (old_chain);
4756
be2a5f71
DJ
4757 getpkt (&rs->buf, &rs->buf_size, 0);
4758
4759 /* If an error occured, warn, but do not return - just reset the
4760 buffer to empty and go on to disable features. */
4761 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4762 == PACKET_ERROR)
4763 {
4764 warning (_("Remote failure reply: %s"), rs->buf);
4765 rs->buf[0] = 0;
4766 }
4767 }
4768
4769 memset (seen, 0, sizeof (seen));
4770
4771 next = rs->buf;
4772 while (*next)
4773 {
4774 enum packet_support is_supported;
4775 char *p, *end, *name_end, *value;
4776
4777 /* First separate out this item from the rest of the packet. If
4778 there's another item after this, we overwrite the separator
4779 (terminated strings are much easier to work with). */
4780 p = next;
4781 end = strchr (p, ';');
4782 if (end == NULL)
4783 {
4784 end = p + strlen (p);
4785 next = end;
4786 }
4787 else
4788 {
89be2091
DJ
4789 *end = '\0';
4790 next = end + 1;
4791
be2a5f71
DJ
4792 if (end == p)
4793 {
4794 warning (_("empty item in \"qSupported\" response"));
4795 continue;
4796 }
be2a5f71
DJ
4797 }
4798
4799 name_end = strchr (p, '=');
4800 if (name_end)
4801 {
4802 /* This is a name=value entry. */
4803 is_supported = PACKET_ENABLE;
4804 value = name_end + 1;
4805 *name_end = '\0';
4806 }
4807 else
4808 {
4809 value = NULL;
4810 switch (end[-1])
4811 {
4812 case '+':
4813 is_supported = PACKET_ENABLE;
4814 break;
4815
4816 case '-':
4817 is_supported = PACKET_DISABLE;
4818 break;
4819
4820 case '?':
4821 is_supported = PACKET_SUPPORT_UNKNOWN;
4822 break;
4823
4824 default:
3e43a32a
MS
4825 warning (_("unrecognized item \"%s\" "
4826 "in \"qSupported\" response"), p);
be2a5f71
DJ
4827 continue;
4828 }
4829 end[-1] = '\0';
4830 }
4831
4832 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4833 if (strcmp (remote_protocol_features[i].name, p) == 0)
4834 {
4835 const struct protocol_feature *feature;
4836
4837 seen[i] = 1;
4838 feature = &remote_protocol_features[i];
4839 feature->func (feature, is_supported, value);
4840 break;
4841 }
4842 }
4843
4844 /* If we increased the packet size, make sure to increase the global
4845 buffer size also. We delay this until after parsing the entire
4846 qSupported packet, because this is the same buffer we were
4847 parsing. */
4848 if (rs->buf_size < rs->explicit_packet_size)
4849 {
4850 rs->buf_size = rs->explicit_packet_size;
224c3ddb 4851 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
4852 }
4853
4854 /* Handle the defaults for unmentioned features. */
4855 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4856 if (!seen[i])
4857 {
4858 const struct protocol_feature *feature;
4859
4860 feature = &remote_protocol_features[i];
4861 feature->func (feature, feature->default_support, NULL);
4862 }
4863}
4864
048094ac
PA
4865/* Serial QUIT handler for the remote serial descriptor.
4866
4867 Defers handling a Ctrl-C until we're done with the current
4868 command/response packet sequence, unless:
4869
4870 - We're setting up the connection. Don't send a remote interrupt
4871 request, as we're not fully synced yet. Quit immediately
4872 instead.
4873
4874 - The target has been resumed in the foreground
223ffa71 4875 (target_terminal::is_ours is false) with a synchronous resume
048094ac
PA
4876 packet, and we're blocked waiting for the stop reply, thus a
4877 Ctrl-C should be immediately sent to the target.
4878
4879 - We get a second Ctrl-C while still within the same serial read or
4880 write. In that case the serial is seemingly wedged --- offer to
4881 quit/disconnect.
4882
4883 - We see a second Ctrl-C without target response, after having
4884 previously interrupted the target. In that case the target/stub
4885 is probably wedged --- offer to quit/disconnect.
4886*/
4887
4888static void
4889remote_serial_quit_handler (void)
4890{
4891 struct remote_state *rs = get_remote_state ();
4892
4893 if (check_quit_flag ())
4894 {
4895 /* If we're starting up, we're not fully synced yet. Quit
4896 immediately. */
4897 if (rs->starting_up)
4898 quit ();
4899 else if (rs->got_ctrlc_during_io)
4900 {
4901 if (query (_("The target is not responding to GDB commands.\n"
4902 "Stop debugging it? ")))
4903 remote_unpush_and_throw ();
4904 }
4905 /* If ^C has already been sent once, offer to disconnect. */
223ffa71 4906 else if (!target_terminal::is_ours () && rs->ctrlc_pending_p)
048094ac
PA
4907 interrupt_query ();
4908 /* All-stop protocol, and blocked waiting for stop reply. Send
4909 an interrupt request. */
223ffa71 4910 else if (!target_terminal::is_ours () && rs->waiting_for_stop_reply)
048094ac
PA
4911 target_interrupt (inferior_ptid);
4912 else
4913 rs->got_ctrlc_during_io = 1;
4914 }
4915}
4916
78a095c3
JK
4917/* Remove any of the remote.c targets from target stack. Upper targets depend
4918 on it so remove them first. */
4919
4920static void
4921remote_unpush_target (void)
4922{
915ef8b1 4923 pop_all_targets_at_and_above (process_stratum);
78a095c3 4924}
be2a5f71 4925
048094ac
PA
4926static void
4927remote_unpush_and_throw (void)
4928{
4929 remote_unpush_target ();
4930 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
4931}
4932
c906108c 4933static void
014f9477 4934remote_open_1 (const char *name, int from_tty,
3e43a32a 4935 struct target_ops *target, int extended_p)
c906108c 4936{
d01949b6 4937 struct remote_state *rs = get_remote_state ();
a6f3e723 4938
c906108c 4939 if (name == 0)
8a3fe4f8 4940 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 4941 "serial device is attached to the remote system\n"
8a3fe4f8 4942 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 4943
23860348 4944 /* See FIXME above. */
c6ebd6cf 4945 if (!target_async_permitted)
92d1e331 4946 wait_forever_enabled_p = 1;
6426a772 4947
2d717e4f 4948 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
4949 Ask this question first, before target_preopen has a chance to kill
4950 anything. */
5d93a237 4951 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 4952 {
78a095c3
JK
4953 if (from_tty
4954 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
4955 error (_("Still connected."));
4956 }
4957
78a095c3 4958 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
4959 target_preopen (from_tty);
4960
89be2091 4961 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
4962 xfree (rs->last_pass_packet);
4963 rs->last_pass_packet = NULL;
89be2091 4964
9b224c5e
PA
4965 /* Make sure we send the program signals list the next time we
4966 resume. */
5e4a05c4
TT
4967 xfree (rs->last_program_signals_packet);
4968 rs->last_program_signals_packet = NULL;
9b224c5e 4969
ad9a8f3f 4970 remote_fileio_reset ();
1dd41f16
NS
4971 reopen_exec_file ();
4972 reread_symbols ();
4973
5d93a237
TT
4974 rs->remote_desc = remote_serial_open (name);
4975 if (!rs->remote_desc)
c906108c
SS
4976 perror_with_name (name);
4977
4978 if (baud_rate != -1)
4979 {
5d93a237 4980 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 4981 {
9b74d5d3
KB
4982 /* The requested speed could not be set. Error out to
4983 top level after closing remote_desc. Take care to
4984 set remote_desc to NULL to avoid closing remote_desc
4985 more than once. */
5d93a237
TT
4986 serial_close (rs->remote_desc);
4987 rs->remote_desc = NULL;
c906108c
SS
4988 perror_with_name (name);
4989 }
4990 }
4991
236af5e3 4992 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 4993 serial_raw (rs->remote_desc);
c906108c
SS
4994
4995 /* If there is something sitting in the buffer we might take it as a
4996 response to a command, which would be bad. */
5d93a237 4997 serial_flush_input (rs->remote_desc);
c906108c
SS
4998
4999 if (from_tty)
5000 {
5001 puts_filtered ("Remote debugging using ");
5002 puts_filtered (name);
5003 puts_filtered ("\n");
5004 }
23860348 5005 push_target (target); /* Switch to using remote target now. */
c906108c 5006
74531fed
PA
5007 /* Register extra event sources in the event loop. */
5008 remote_async_inferior_event_token
5009 = create_async_event_handler (remote_async_inferior_event_handler,
5010 NULL);
5965e028 5011 rs->notif_state = remote_notif_state_allocate ();
74531fed 5012
be2a5f71
DJ
5013 /* Reset the target state; these things will be queried either by
5014 remote_query_supported or as they are needed. */
ca4f7f8b 5015 reset_all_packet_configs_support ();
74531fed 5016 rs->cached_wait_status = 0;
be2a5f71 5017 rs->explicit_packet_size = 0;
a6f3e723 5018 rs->noack_mode = 0;
82f73884 5019 rs->extended = extended_p;
e24a49d8 5020 rs->waiting_for_stop_reply = 0;
3a29589a 5021 rs->ctrlc_pending_p = 0;
048094ac 5022 rs->got_ctrlc_during_io = 0;
802188a7 5023
47f8a51d
TT
5024 rs->general_thread = not_sent_ptid;
5025 rs->continue_thread = not_sent_ptid;
262e1174 5026 rs->remote_traceframe_number = -1;
c906108c 5027
3a00c802
PA
5028 rs->last_resume_exec_dir = EXEC_FORWARD;
5029
9d1f7ab2 5030 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5031 rs->use_threadinfo_query = 1;
5032 rs->use_threadextra_query = 1;
9d1f7ab2 5033
80152258
PA
5034 readahead_cache_invalidate ();
5035
c6ebd6cf 5036 if (target_async_permitted)
92d1e331 5037 {
92d1e331
DJ
5038 /* FIXME: cagney/1999-09-23: During the initial connection it is
5039 assumed that the target is already ready and able to respond to
0df8b418 5040 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5041 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5042 around this. Eventually a mechanism that allows
92d1e331 5043 wait_for_inferior() to expect/get timeouts will be
23860348 5044 implemented. */
92d1e331
DJ
5045 wait_forever_enabled_p = 0;
5046 }
5047
23860348 5048 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5049 no_shared_libraries (NULL, 0);
f78f6cf1 5050
74531fed
PA
5051 /* Start afresh. */
5052 init_thread_list ();
5053
36918e70 5054 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5055 target (we'd otherwise be in an inconsistent state) and then
5056 propogate the error on up the exception chain. This ensures that
5057 the caller doesn't stumble along blindly assuming that the
5058 function succeeded. The CLI doesn't have this problem but other
5059 UI's, such as MI do.
36918e70
AC
5060
5061 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5062 this function should return an error indication letting the
ce2826aa 5063 caller restore the previous state. Unfortunately the command
36918e70
AC
5064 ``target remote'' is directly wired to this function making that
5065 impossible. On a positive note, the CLI side of this problem has
5066 been fixed - the function set_cmd_context() makes it possible for
5067 all the ``target ....'' commands to share a common callback
5068 function. See cli-dump.c. */
109c3e39 5069 {
2d717e4f 5070
492d29ea 5071 TRY
04bd08de
TT
5072 {
5073 remote_start_remote (from_tty, target, extended_p);
5074 }
492d29ea 5075 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5076 {
c8d104ad
PA
5077 /* Pop the partially set up target - unless something else did
5078 already before throwing the exception. */
5d93a237 5079 if (rs->remote_desc != NULL)
78a095c3 5080 remote_unpush_target ();
c6ebd6cf 5081 if (target_async_permitted)
109c3e39
AC
5082 wait_forever_enabled_p = 1;
5083 throw_exception (ex);
5084 }
492d29ea 5085 END_CATCH
109c3e39 5086 }
c906108c 5087
f4abbc16
MM
5088 remote_btrace_reset ();
5089
c6ebd6cf 5090 if (target_async_permitted)
92d1e331 5091 wait_forever_enabled_p = 1;
43ff13b4
JM
5092}
5093
de0d863e
DB
5094/* Detach the specified process. */
5095
5096static void
5097remote_detach_pid (int pid)
5098{
5099 struct remote_state *rs = get_remote_state ();
5100
5101 if (remote_multi_process_p (rs))
5102 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5103 else
5104 strcpy (rs->buf, "D");
5105
5106 putpkt (rs->buf);
5107 getpkt (&rs->buf, &rs->buf_size, 0);
5108
5109 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5110 ;
5111 else if (rs->buf[0] == '\0')
5112 error (_("Remote doesn't know how to detach"));
5113 else
5114 error (_("Can't detach process."));
5115}
5116
5117/* This detaches a program to which we previously attached, using
5118 inferior_ptid to identify the process. After this is done, GDB
5119 can be used to debug some other program. We better not have left
5120 any breakpoints in the target program or it'll die when it hits
5121 one. */
c906108c
SS
5122
5123static void
de0d863e 5124remote_detach_1 (const char *args, int from_tty)
c906108c 5125{
82f73884 5126 int pid = ptid_get_pid (inferior_ptid);
d01949b6 5127 struct remote_state *rs = get_remote_state ();
de0d863e
DB
5128 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5129 int is_fork_parent;
c906108c
SS
5130
5131 if (args)
8a3fe4f8 5132 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 5133
2d717e4f
DJ
5134 if (!target_has_execution)
5135 error (_("No process to detach from."));
5136
0f48b757 5137 target_announce_detach (from_tty);
7cee1e54 5138
c906108c 5139 /* Tell the remote target to detach. */
de0d863e 5140 remote_detach_pid (pid);
82f73884 5141
8020350c
DB
5142 /* Exit only if this is the only active inferior. */
5143 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5144 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5145
de0d863e
DB
5146 /* Check to see if we are detaching a fork parent. Note that if we
5147 are detaching a fork child, tp == NULL. */
5148 is_fork_parent = (tp != NULL
5149 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5150
5151 /* If doing detach-on-fork, we don't mourn, because that will delete
5152 breakpoints that should be available for the followed inferior. */
5153 if (!is_fork_parent)
bc1e6c81 5154 target_mourn_inferior (inferior_ptid);
de0d863e
DB
5155 else
5156 {
5157 inferior_ptid = null_ptid;
5158 detach_inferior (pid);
5159 }
2d717e4f
DJ
5160}
5161
5162static void
52554a0e 5163remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5164{
de0d863e 5165 remote_detach_1 (args, from_tty);
2d717e4f
DJ
5166}
5167
5168static void
52554a0e 5169extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5170{
de0d863e
DB
5171 remote_detach_1 (args, from_tty);
5172}
5173
5174/* Target follow-fork function for remote targets. On entry, and
5175 at return, the current inferior is the fork parent.
5176
5177 Note that although this is currently only used for extended-remote,
5178 it is named remote_follow_fork in anticipation of using it for the
5179 remote target as well. */
5180
5181static int
5182remote_follow_fork (struct target_ops *ops, int follow_child,
5183 int detach_fork)
5184{
5185 struct remote_state *rs = get_remote_state ();
c269dbdb 5186 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5187
c269dbdb
DB
5188 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5189 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5190 {
5191 /* When following the parent and detaching the child, we detach
5192 the child here. For the case of following the child and
5193 detaching the parent, the detach is done in the target-
5194 independent follow fork code in infrun.c. We can't use
5195 target_detach when detaching an unfollowed child because
5196 the client side doesn't know anything about the child. */
5197 if (detach_fork && !follow_child)
5198 {
5199 /* Detach the fork child. */
5200 ptid_t child_ptid;
5201 pid_t child_pid;
5202
5203 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5204 child_pid = ptid_get_pid (child_ptid);
5205
5206 remote_detach_pid (child_pid);
5207 detach_inferior (child_pid);
5208 }
5209 }
5210 return 0;
c906108c
SS
5211}
5212
94585166
DB
5213/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5214 in the program space of the new inferior. On entry and at return the
5215 current inferior is the exec'ing inferior. INF is the new exec'd
5216 inferior, which may be the same as the exec'ing inferior unless
5217 follow-exec-mode is "new". */
5218
5219static void
5220remote_follow_exec (struct target_ops *ops,
5221 struct inferior *inf, char *execd_pathname)
5222{
5223 /* We know that this is a target file name, so if it has the "target:"
5224 prefix we strip it off before saving it in the program space. */
5225 if (is_target_filename (execd_pathname))
5226 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5227
5228 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5229}
5230
6ad8ae5c
DJ
5231/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5232
43ff13b4 5233static void
fee354ee 5234remote_disconnect (struct target_ops *target, const char *args, int from_tty)
43ff13b4 5235{
43ff13b4 5236 if (args)
2d717e4f 5237 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5238
8020350c
DB
5239 /* Make sure we unpush even the extended remote targets. Calling
5240 target_mourn_inferior won't unpush, and remote_mourn won't
5241 unpush if there is more than one inferior left. */
5242 unpush_target (target);
5243 generic_mourn_inferior ();
2d717e4f 5244
43ff13b4
JM
5245 if (from_tty)
5246 puts_filtered ("Ending remote debugging.\n");
5247}
5248
2d717e4f
DJ
5249/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5250 be chatty about it. */
5251
5252static void
20f796c9
GB
5253extended_remote_attach (struct target_ops *target, const char *args,
5254 int from_tty)
2d717e4f
DJ
5255{
5256 struct remote_state *rs = get_remote_state ();
be86555c 5257 int pid;
96ef3384 5258 char *wait_status = NULL;
2d717e4f 5259
74164c56 5260 pid = parse_pid_to_attach (args);
2d717e4f 5261
74164c56
JK
5262 /* Remote PID can be freely equal to getpid, do not check it here the same
5263 way as in other targets. */
2d717e4f 5264
4082afcc 5265 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5266 error (_("This target does not support attaching to a process"));
5267
7cee1e54
PA
5268 if (from_tty)
5269 {
5270 char *exec_file = get_exec_file (0);
5271
5272 if (exec_file)
5273 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5274 target_pid_to_str (pid_to_ptid (pid)));
5275 else
5276 printf_unfiltered (_("Attaching to %s\n"),
5277 target_pid_to_str (pid_to_ptid (pid)));
5278
5279 gdb_flush (gdb_stdout);
5280 }
5281
bba74b36 5282 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5283 putpkt (rs->buf);
5284 getpkt (&rs->buf, &rs->buf_size, 0);
5285
4082afcc
PA
5286 switch (packet_ok (rs->buf,
5287 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5288 {
4082afcc 5289 case PACKET_OK:
6efcd9a8 5290 if (!target_is_non_stop_p ())
74531fed
PA
5291 {
5292 /* Save the reply for later. */
224c3ddb 5293 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5294 strcpy (wait_status, rs->buf);
5295 }
5296 else if (strcmp (rs->buf, "OK") != 0)
5297 error (_("Attaching to %s failed with: %s"),
5298 target_pid_to_str (pid_to_ptid (pid)),
5299 rs->buf);
4082afcc
PA
5300 break;
5301 case PACKET_UNKNOWN:
5302 error (_("This target does not support attaching to a process"));
5303 default:
5304 error (_("Attaching to %s failed"),
5305 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 5306 }
2d717e4f 5307
1b6e6f5c 5308 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5309
2d717e4f 5310 inferior_ptid = pid_to_ptid (pid);
79d7f229 5311
6efcd9a8 5312 if (target_is_non_stop_p ())
bad34192
PA
5313 {
5314 struct thread_info *thread;
79d7f229 5315
bad34192 5316 /* Get list of threads. */
e8032dde 5317 remote_update_thread_list (target);
82f73884 5318
bad34192
PA
5319 thread = first_thread_of_process (pid);
5320 if (thread)
5321 inferior_ptid = thread->ptid;
5322 else
5323 inferior_ptid = pid_to_ptid (pid);
5324
5325 /* Invalidate our notion of the remote current thread. */
47f8a51d 5326 record_currthread (rs, minus_one_ptid);
bad34192 5327 }
74531fed 5328 else
bad34192
PA
5329 {
5330 /* Now, if we have thread information, update inferior_ptid. */
5331 inferior_ptid = remote_current_thread (inferior_ptid);
5332
5333 /* Add the main thread to the thread list. */
5334 add_thread_silent (inferior_ptid);
5335 }
c0a2216e 5336
96ef3384
UW
5337 /* Next, if the target can specify a description, read it. We do
5338 this before anything involving memory or registers. */
5339 target_find_description ();
5340
6efcd9a8 5341 if (!target_is_non_stop_p ())
74531fed
PA
5342 {
5343 /* Use the previously fetched status. */
5344 gdb_assert (wait_status != NULL);
5345
5346 if (target_can_async_p ())
5347 {
722247f1
YQ
5348 struct notif_event *reply
5349 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 5350
722247f1 5351 push_stop_reply ((struct stop_reply *) reply);
74531fed 5352
6a3753b3 5353 target_async (1);
74531fed
PA
5354 }
5355 else
5356 {
5357 gdb_assert (wait_status != NULL);
5358 strcpy (rs->buf, wait_status);
5359 rs->cached_wait_status = 1;
5360 }
5361 }
5362 else
5363 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5364}
5365
b9c1d481
AS
5366/* Implementation of the to_post_attach method. */
5367
5368static void
5369extended_remote_post_attach (struct target_ops *ops, int pid)
5370{
6efcd9a8
PA
5371 /* Get text, data & bss offsets. */
5372 get_offsets ();
5373
b9c1d481
AS
5374 /* In certain cases GDB might not have had the chance to start
5375 symbol lookup up until now. This could happen if the debugged
5376 binary is not using shared libraries, the vsyscall page is not
5377 present (on Linux) and the binary itself hadn't changed since the
5378 debugging process was started. */
5379 if (symfile_objfile != NULL)
5380 remote_check_symbols();
5381}
5382
c906108c 5383\f
506fb367
DJ
5384/* Check for the availability of vCont. This function should also check
5385 the response. */
c906108c
SS
5386
5387static void
6d820c5c 5388remote_vcont_probe (struct remote_state *rs)
c906108c 5389{
2e9f7625 5390 char *buf;
6d820c5c 5391
2e9f7625
DJ
5392 strcpy (rs->buf, "vCont?");
5393 putpkt (rs->buf);
6d820c5c 5394 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5395 buf = rs->buf;
c906108c 5396
506fb367 5397 /* Make sure that the features we assume are supported. */
61012eef 5398 if (startswith (buf, "vCont"))
506fb367
DJ
5399 {
5400 char *p = &buf[5];
750ce8d1 5401 int support_c, support_C;
506fb367 5402
750ce8d1
YQ
5403 rs->supports_vCont.s = 0;
5404 rs->supports_vCont.S = 0;
506fb367
DJ
5405 support_c = 0;
5406 support_C = 0;
d458bd84 5407 rs->supports_vCont.t = 0;
c1e36e3e 5408 rs->supports_vCont.r = 0;
506fb367
DJ
5409 while (p && *p == ';')
5410 {
5411 p++;
5412 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5413 rs->supports_vCont.s = 1;
506fb367 5414 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5415 rs->supports_vCont.S = 1;
506fb367
DJ
5416 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5417 support_c = 1;
5418 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5419 support_C = 1;
74531fed 5420 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5421 rs->supports_vCont.t = 1;
c1e36e3e
PA
5422 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5423 rs->supports_vCont.r = 1;
506fb367
DJ
5424
5425 p = strchr (p, ';');
5426 }
c906108c 5427
750ce8d1
YQ
5428 /* If c, and C are not all supported, we can't use vCont. Clearing
5429 BUF will make packet_ok disable the packet. */
5430 if (!support_c || !support_C)
506fb367
DJ
5431 buf[0] = 0;
5432 }
c906108c 5433
444abaca 5434 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5435}
c906108c 5436
0d8f58ca
PA
5437/* Helper function for building "vCont" resumptions. Write a
5438 resumption to P. ENDP points to one-passed-the-end of the buffer
5439 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5440 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5441 resumed thread should be single-stepped and/or signalled. If PTID
5442 equals minus_one_ptid, then all threads are resumed; if PTID
5443 represents a process, then all threads of the process are resumed;
5444 the thread to be stepped and/or signalled is given in the global
5445 INFERIOR_PTID. */
5446
5447static char *
5448append_resumption (char *p, char *endp,
2ea28649 5449 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
5450{
5451 struct remote_state *rs = get_remote_state ();
5452
a493e3e2 5453 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5454 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5455 else if (step
5456 /* GDB is willing to range step. */
5457 && use_range_stepping
5458 /* Target supports range stepping. */
5459 && rs->supports_vCont.r
5460 /* We don't currently support range stepping multiple
5461 threads with a wildcard (though the protocol allows it,
5462 so stubs shouldn't make an active effort to forbid
5463 it). */
5464 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5465 {
5466 struct thread_info *tp;
5467
5468 if (ptid_equal (ptid, minus_one_ptid))
5469 {
5470 /* If we don't know about the target thread's tid, then
5471 we're resuming magic_null_ptid (see caller). */
5472 tp = find_thread_ptid (magic_null_ptid);
5473 }
5474 else
5475 tp = find_thread_ptid (ptid);
5476 gdb_assert (tp != NULL);
5477
5478 if (tp->control.may_range_step)
5479 {
5480 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5481
5482 p += xsnprintf (p, endp - p, ";r%s,%s",
5483 phex_nz (tp->control.step_range_start,
5484 addr_size),
5485 phex_nz (tp->control.step_range_end,
5486 addr_size));
5487 }
5488 else
5489 p += xsnprintf (p, endp - p, ";s");
5490 }
0d8f58ca
PA
5491 else if (step)
5492 p += xsnprintf (p, endp - p, ";s");
a493e3e2 5493 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
5494 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5495 else
5496 p += xsnprintf (p, endp - p, ";c");
5497
5498 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5499 {
5500 ptid_t nptid;
5501
5502 /* All (-1) threads of process. */
ba348170 5503 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
0d8f58ca
PA
5504
5505 p += xsnprintf (p, endp - p, ":");
5506 p = write_ptid (p, endp, nptid);
5507 }
5508 else if (!ptid_equal (ptid, minus_one_ptid))
5509 {
5510 p += xsnprintf (p, endp - p, ":");
5511 p = write_ptid (p, endp, ptid);
5512 }
5513
5514 return p;
5515}
5516
799a2abe
PA
5517/* Clear the thread's private info on resume. */
5518
5519static void
5520resume_clear_thread_private_info (struct thread_info *thread)
5521{
5522 if (thread->priv != NULL)
5523 {
7aabaf9d
SM
5524 remote_thread_info *priv = get_remote_thread_info (thread);
5525
5526 priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5527 priv->watch_data_address = 0;
799a2abe
PA
5528 }
5529}
5530
e5ef252a
PA
5531/* Append a vCont continue-with-signal action for threads that have a
5532 non-zero stop signal. */
5533
5534static char *
5535append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5536{
5537 struct thread_info *thread;
5538
034f788c 5539 ALL_NON_EXITED_THREADS (thread)
e5ef252a
PA
5540 if (ptid_match (thread->ptid, ptid)
5541 && !ptid_equal (inferior_ptid, thread->ptid)
70509625 5542 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
5543 {
5544 p = append_resumption (p, endp, thread->ptid,
5545 0, thread->suspend.stop_signal);
5546 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 5547 resume_clear_thread_private_info (thread);
e5ef252a
PA
5548 }
5549
5550 return p;
5551}
5552
7b68ffbb
PA
5553/* Set the target running, using the packets that use Hc
5554 (c/s/C/S). */
5555
5556static void
5557remote_resume_with_hc (struct target_ops *ops,
5558 ptid_t ptid, int step, enum gdb_signal siggnal)
5559{
5560 struct remote_state *rs = get_remote_state ();
5561 struct thread_info *thread;
5562 char *buf;
5563
5564 rs->last_sent_signal = siggnal;
5565 rs->last_sent_step = step;
5566
5567 /* The c/s/C/S resume packets use Hc, so set the continue
5568 thread. */
5569 if (ptid_equal (ptid, minus_one_ptid))
5570 set_continue_thread (any_thread_ptid);
5571 else
5572 set_continue_thread (ptid);
5573
5574 ALL_NON_EXITED_THREADS (thread)
5575 resume_clear_thread_private_info (thread);
5576
5577 buf = rs->buf;
5578 if (execution_direction == EXEC_REVERSE)
5579 {
5580 /* We don't pass signals to the target in reverse exec mode. */
5581 if (info_verbose && siggnal != GDB_SIGNAL_0)
5582 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5583 siggnal);
5584
5585 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5586 error (_("Remote reverse-step not supported."));
5587 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5588 error (_("Remote reverse-continue not supported."));
5589
5590 strcpy (buf, step ? "bs" : "bc");
5591 }
5592 else if (siggnal != GDB_SIGNAL_0)
5593 {
5594 buf[0] = step ? 'S' : 'C';
5595 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5596 buf[2] = tohex (((int) siggnal) & 0xf);
5597 buf[3] = '\0';
5598 }
5599 else
5600 strcpy (buf, step ? "s" : "c");
5601
5602 putpkt (buf);
5603}
5604
506fb367
DJ
5605/* Resume the remote inferior by using a "vCont" packet. The thread
5606 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
5607 resumed thread should be single-stepped and/or signalled. If PTID
5608 equals minus_one_ptid, then all threads are resumed; the thread to
5609 be stepped and/or signalled is given in the global INFERIOR_PTID.
5610 This function returns non-zero iff it resumes the inferior.
44eaed12 5611
7b68ffbb
PA
5612 This function issues a strict subset of all possible vCont commands
5613 at the moment. */
44eaed12 5614
506fb367 5615static int
7b68ffbb 5616remote_resume_with_vcont (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
5617{
5618 struct remote_state *rs = get_remote_state ();
82f73884
PA
5619 char *p;
5620 char *endp;
44eaed12 5621
7b68ffbb
PA
5622 /* No reverse execution actions defined for vCont. */
5623 if (execution_direction == EXEC_REVERSE)
5624 return 0;
5625
4082afcc 5626 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6d820c5c 5627 remote_vcont_probe (rs);
44eaed12 5628
4082afcc 5629 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 5630 return 0;
44eaed12 5631
82f73884
PA
5632 p = rs->buf;
5633 endp = rs->buf + get_remote_packet_size ();
5634
506fb367
DJ
5635 /* If we could generate a wider range of packets, we'd have to worry
5636 about overflowing BUF. Should there be a generic
5637 "multi-part-packet" packet? */
5638
0d8f58ca
PA
5639 p += xsnprintf (p, endp - p, "vCont");
5640
79d7f229 5641 if (ptid_equal (ptid, magic_null_ptid))
c906108c 5642 {
79d7f229
PA
5643 /* MAGIC_NULL_PTID means that we don't have any active threads,
5644 so we don't have any TID numbers the inferior will
5645 understand. Make sure to only send forms that do not specify
5646 a TID. */
a9cbf802 5647 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 5648 }
0d8f58ca 5649 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 5650 {
0d8f58ca
PA
5651 /* Resume all threads (of all processes, or of a single
5652 process), with preference for INFERIOR_PTID. This assumes
5653 inferior_ptid belongs to the set of all threads we are about
5654 to resume. */
a493e3e2 5655 if (step || siggnal != GDB_SIGNAL_0)
82f73884 5656 {
0d8f58ca
PA
5657 /* Step inferior_ptid, with or without signal. */
5658 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 5659 }
0d8f58ca 5660
e5ef252a
PA
5661 /* Also pass down any pending signaled resumption for other
5662 threads not the current. */
5663 p = append_pending_thread_resumptions (p, endp, ptid);
5664
0d8f58ca 5665 /* And continue others without a signal. */
a493e3e2 5666 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
5667 }
5668 else
506fb367
DJ
5669 {
5670 /* Scheduler locking; resume only PTID. */
a9cbf802 5671 append_resumption (p, endp, ptid, step, siggnal);
506fb367 5672 }
c906108c 5673
82f73884
PA
5674 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5675 putpkt (rs->buf);
506fb367 5676
6efcd9a8 5677 if (target_is_non_stop_p ())
74531fed
PA
5678 {
5679 /* In non-stop, the stub replies to vCont with "OK". The stop
5680 reply will be reported asynchronously by means of a `%Stop'
5681 notification. */
5682 getpkt (&rs->buf, &rs->buf_size, 0);
5683 if (strcmp (rs->buf, "OK") != 0)
5684 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5685 }
5686
506fb367 5687 return 1;
c906108c 5688}
43ff13b4 5689
506fb367
DJ
5690/* Tell the remote machine to resume. */
5691
43ff13b4 5692static void
28439f5e 5693remote_resume (struct target_ops *ops,
2ea28649 5694 ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 5695{
d01949b6 5696 struct remote_state *rs = get_remote_state ();
43ff13b4 5697
85ad3aaf
PA
5698 /* When connected in non-stop mode, the core resumes threads
5699 individually. Resuming remote threads directly in target_resume
5700 would thus result in sending one packet per thread. Instead, to
5701 minimize roundtrip latency, here we just store the resume
5702 request; the actual remote resumption will be done in
5703 target_commit_resume / remote_commit_resume, where we'll be able
5704 to do vCont action coalescing. */
5705 if (target_is_non_stop_p () && execution_direction != EXEC_REVERSE)
5706 {
7aabaf9d 5707 remote_thread_info *remote_thr;
85ad3aaf
PA
5708
5709 if (ptid_equal (minus_one_ptid, ptid) || ptid_is_pid (ptid))
7aabaf9d 5710 remote_thr = get_remote_thread_info (inferior_ptid);
85ad3aaf 5711 else
7aabaf9d
SM
5712 remote_thr = get_remote_thread_info (ptid);
5713
85ad3aaf
PA
5714 remote_thr->last_resume_step = step;
5715 remote_thr->last_resume_sig = siggnal;
5716 return;
5717 }
5718
722247f1
YQ
5719 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5720 (explained in remote-notif.c:handle_notification) so
5721 remote_notif_process is not called. We need find a place where
5722 it is safe to start a 'vNotif' sequence. It is good to do it
5723 before resuming inferior, because inferior was stopped and no RSP
5724 traffic at that moment. */
6efcd9a8 5725 if (!target_is_non_stop_p ())
5965e028 5726 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 5727
3a00c802
PA
5728 rs->last_resume_exec_dir = execution_direction;
5729
7b68ffbb
PA
5730 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
5731 if (!remote_resume_with_vcont (ptid, step, siggnal))
5732 remote_resume_with_hc (ops, ptid, step, siggnal);
43ff13b4 5733
2acceee2 5734 /* We are about to start executing the inferior, let's register it
0df8b418
MS
5735 with the event loop. NOTE: this is the one place where all the
5736 execution commands end up. We could alternatively do this in each
23860348 5737 of the execution commands in infcmd.c. */
2acceee2
JM
5738 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5739 into infcmd.c in order to allow inferior function calls to work
23860348 5740 NOT asynchronously. */
362646f5 5741 if (target_can_async_p ())
6a3753b3 5742 target_async (1);
e24a49d8
PA
5743
5744 /* We've just told the target to resume. The remote server will
5745 wait for the inferior to stop, and then send a stop reply. In
5746 the mean time, we can't start another command/query ourselves
74531fed
PA
5747 because the stub wouldn't be ready to process it. This applies
5748 only to the base all-stop protocol, however. In non-stop (which
5749 only supports vCont), the stub replies with an "OK", and is
5750 immediate able to process further serial input. */
6efcd9a8 5751 if (!target_is_non_stop_p ())
74531fed 5752 rs->waiting_for_stop_reply = 1;
43ff13b4 5753}
85ad3aaf
PA
5754
5755static void check_pending_events_prevent_wildcard_vcont
5756 (int *may_global_wildcard_vcont);
5757static int is_pending_fork_parent_thread (struct thread_info *thread);
5758
5759/* Private per-inferior info for target remote processes. */
5760
089354bb 5761struct remote_inferior : public private_inferior
85ad3aaf
PA
5762{
5763 /* Whether we can send a wildcard vCont for this process. */
089354bb 5764 bool may_wildcard_vcont = true;
85ad3aaf
PA
5765};
5766
089354bb
SM
5767/* Get the remote private inferior data associated to INF. */
5768
5769static remote_inferior *
5770get_remote_inferior (inferior *inf)
5771{
5772 if (inf->priv == NULL)
5773 inf->priv.reset (new remote_inferior);
5774
5775 return static_cast<remote_inferior *> (inf->priv.get ());
5776}
5777
85ad3aaf
PA
5778/* Structure used to track the construction of a vCont packet in the
5779 outgoing packet buffer. This is used to send multiple vCont
5780 packets if we have more actions than would fit a single packet. */
5781
5782struct vcont_builder
5783{
5784 /* Pointer to the first action. P points here if no action has been
5785 appended yet. */
5786 char *first_action;
5787
5788 /* Where the next action will be appended. */
5789 char *p;
5790
5791 /* The end of the buffer. Must never write past this. */
5792 char *endp;
5793};
5794
5795/* Prepare the outgoing buffer for a new vCont packet. */
5796
5797static void
5798vcont_builder_restart (struct vcont_builder *builder)
5799{
5800 struct remote_state *rs = get_remote_state ();
5801
5802 builder->p = rs->buf;
5803 builder->endp = rs->buf + get_remote_packet_size ();
5804 builder->p += xsnprintf (builder->p, builder->endp - builder->p, "vCont");
5805 builder->first_action = builder->p;
5806}
5807
5808/* If the vCont packet being built has any action, send it to the
5809 remote end. */
5810
5811static void
5812vcont_builder_flush (struct vcont_builder *builder)
5813{
5814 struct remote_state *rs;
5815
5816 if (builder->p == builder->first_action)
5817 return;
5818
5819 rs = get_remote_state ();
5820 putpkt (rs->buf);
5821 getpkt (&rs->buf, &rs->buf_size, 0);
5822 if (strcmp (rs->buf, "OK") != 0)
5823 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5824}
5825
5826/* The largest action is range-stepping, with its two addresses. This
5827 is more than sufficient. If a new, bigger action is created, it'll
5828 quickly trigger a failed assertion in append_resumption (and we'll
5829 just bump this). */
5830#define MAX_ACTION_SIZE 200
5831
5832/* Append a new vCont action in the outgoing packet being built. If
5833 the action doesn't fit the packet along with previous actions, push
5834 what we've got so far to the remote end and start over a new vCont
5835 packet (with the new action). */
5836
5837static void
5838vcont_builder_push_action (struct vcont_builder *builder,
5839 ptid_t ptid, int step, enum gdb_signal siggnal)
5840{
5841 char buf[MAX_ACTION_SIZE + 1];
5842 char *endp;
5843 size_t rsize;
5844
5845 endp = append_resumption (buf, buf + sizeof (buf),
5846 ptid, step, siggnal);
5847
5848 /* Check whether this new action would fit in the vCont packet along
5849 with previous actions. If not, send what we've got so far and
5850 start a new vCont packet. */
5851 rsize = endp - buf;
5852 if (rsize > builder->endp - builder->p)
5853 {
5854 vcont_builder_flush (builder);
5855 vcont_builder_restart (builder);
5856
5857 /* Should now fit. */
5858 gdb_assert (rsize <= builder->endp - builder->p);
5859 }
5860
5861 memcpy (builder->p, buf, rsize);
5862 builder->p += rsize;
5863 *builder->p = '\0';
5864}
5865
5866/* to_commit_resume implementation. */
5867
5868static void
5869remote_commit_resume (struct target_ops *ops)
5870{
85ad3aaf
PA
5871 struct inferior *inf;
5872 struct thread_info *tp;
5873 int any_process_wildcard;
5874 int may_global_wildcard_vcont;
5875 struct vcont_builder vcont_builder;
5876
5877 /* If connected in all-stop mode, we'd send the remote resume
5878 request directly from remote_resume. Likewise if
5879 reverse-debugging, as there are no defined vCont actions for
5880 reverse execution. */
5881 if (!target_is_non_stop_p () || execution_direction == EXEC_REVERSE)
5882 return;
5883
5884 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
5885 instead of resuming all threads of each process individually.
5886 However, if any thread of a process must remain halted, we can't
5887 send wildcard resumes and must send one action per thread.
5888
5889 Care must be taken to not resume threads/processes the server
5890 side already told us are stopped, but the core doesn't know about
5891 yet, because the events are still in the vStopped notification
5892 queue. For example:
5893
5894 #1 => vCont s:p1.1;c
5895 #2 <= OK
5896 #3 <= %Stopped T05 p1.1
5897 #4 => vStopped
5898 #5 <= T05 p1.2
5899 #6 => vStopped
5900 #7 <= OK
5901 #8 (infrun handles the stop for p1.1 and continues stepping)
5902 #9 => vCont s:p1.1;c
5903
5904 The last vCont above would resume thread p1.2 by mistake, because
5905 the server has no idea that the event for p1.2 had not been
5906 handled yet.
5907
5908 The server side must similarly ignore resume actions for the
5909 thread that has a pending %Stopped notification (and any other
5910 threads with events pending), until GDB acks the notification
5911 with vStopped. Otherwise, e.g., the following case is
5912 mishandled:
5913
5914 #1 => g (or any other packet)
5915 #2 <= [registers]
5916 #3 <= %Stopped T05 p1.2
5917 #4 => vCont s:p1.1;c
5918 #5 <= OK
5919
5920 Above, the server must not resume thread p1.2. GDB can't know
5921 that p1.2 stopped until it acks the %Stopped notification, and
5922 since from GDB's perspective all threads should be running, it
5923 sends a "c" action.
5924
5925 Finally, special care must also be given to handling fork/vfork
5926 events. A (v)fork event actually tells us that two processes
5927 stopped -- the parent and the child. Until we follow the fork,
5928 we must not resume the child. Therefore, if we have a pending
5929 fork follow, we must not send a global wildcard resume action
5930 (vCont;c). We can still send process-wide wildcards though. */
5931
5932 /* Start by assuming a global wildcard (vCont;c) is possible. */
5933 may_global_wildcard_vcont = 1;
5934
5935 /* And assume every process is individually wildcard-able too. */
5936 ALL_NON_EXITED_INFERIORS (inf)
5937 {
089354bb
SM
5938 remote_inferior *priv = get_remote_inferior (inf);
5939
5940 priv->may_wildcard_vcont = true;
85ad3aaf
PA
5941 }
5942
5943 /* Check for any pending events (not reported or processed yet) and
5944 disable process and global wildcard resumes appropriately. */
5945 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
5946
5947 ALL_NON_EXITED_THREADS (tp)
5948 {
5949 /* If a thread of a process is not meant to be resumed, then we
5950 can't wildcard that process. */
5951 if (!tp->executing)
5952 {
089354bb 5953 get_remote_inferior (tp->inf)->may_wildcard_vcont = false;
85ad3aaf
PA
5954
5955 /* And if we can't wildcard a process, we can't wildcard
5956 everything either. */
5957 may_global_wildcard_vcont = 0;
5958 continue;
5959 }
5960
5961 /* If a thread is the parent of an unfollowed fork, then we
5962 can't do a global wildcard, as that would resume the fork
5963 child. */
5964 if (is_pending_fork_parent_thread (tp))
5965 may_global_wildcard_vcont = 0;
5966 }
5967
5968 /* Now let's build the vCont packet(s). Actions must be appended
5969 from narrower to wider scopes (thread -> process -> global). If
5970 we end up with too many actions for a single packet vcont_builder
5971 flushes the current vCont packet to the remote side and starts a
5972 new one. */
5973 vcont_builder_restart (&vcont_builder);
5974
5975 /* Threads first. */
5976 ALL_NON_EXITED_THREADS (tp)
5977 {
7aabaf9d 5978 remote_thread_info *remote_thr = get_remote_thread_info (tp);
85ad3aaf
PA
5979
5980 if (!tp->executing || remote_thr->vcont_resumed)
5981 continue;
5982
5983 gdb_assert (!thread_is_in_step_over_chain (tp));
5984
5985 if (!remote_thr->last_resume_step
5986 && remote_thr->last_resume_sig == GDB_SIGNAL_0
089354bb 5987 && get_remote_inferior (tp->inf)->may_wildcard_vcont)
85ad3aaf
PA
5988 {
5989 /* We'll send a wildcard resume instead. */
5990 remote_thr->vcont_resumed = 1;
5991 continue;
5992 }
5993
5994 vcont_builder_push_action (&vcont_builder, tp->ptid,
5995 remote_thr->last_resume_step,
5996 remote_thr->last_resume_sig);
5997 remote_thr->vcont_resumed = 1;
5998 }
5999
6000 /* Now check whether we can send any process-wide wildcard. This is
6001 to avoid sending a global wildcard in the case nothing is
6002 supposed to be resumed. */
6003 any_process_wildcard = 0;
6004
6005 ALL_NON_EXITED_INFERIORS (inf)
6006 {
089354bb 6007 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6008 {
6009 any_process_wildcard = 1;
6010 break;
6011 }
6012 }
6013
6014 if (any_process_wildcard)
6015 {
6016 /* If all processes are wildcard-able, then send a single "c"
6017 action, otherwise, send an "all (-1) threads of process"
6018 continue action for each running process, if any. */
6019 if (may_global_wildcard_vcont)
6020 {
6021 vcont_builder_push_action (&vcont_builder, minus_one_ptid,
6022 0, GDB_SIGNAL_0);
6023 }
6024 else
6025 {
6026 ALL_NON_EXITED_INFERIORS (inf)
6027 {
089354bb 6028 if (get_remote_inferior (inf)->may_wildcard_vcont)
85ad3aaf
PA
6029 {
6030 vcont_builder_push_action (&vcont_builder,
6031 pid_to_ptid (inf->pid),
6032 0, GDB_SIGNAL_0);
6033 }
6034 }
6035 }
6036 }
6037
6038 vcont_builder_flush (&vcont_builder);
6039}
6040
c906108c 6041\f
43ff13b4 6042
74531fed
PA
6043/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6044 thread, all threads of a remote process, or all threads of all
6045 processes. */
6046
6047static void
6048remote_stop_ns (ptid_t ptid)
6049{
6050 struct remote_state *rs = get_remote_state ();
6051 char *p = rs->buf;
6052 char *endp = rs->buf + get_remote_packet_size ();
74531fed 6053
4082afcc 6054 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
74531fed
PA
6055 remote_vcont_probe (rs);
6056
d458bd84 6057 if (!rs->supports_vCont.t)
74531fed
PA
6058 error (_("Remote server does not support stopping threads"));
6059
f91d3df5
PA
6060 if (ptid_equal (ptid, minus_one_ptid)
6061 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
6062 p += xsnprintf (p, endp - p, "vCont;t");
6063 else
6064 {
6065 ptid_t nptid;
6066
74531fed
PA
6067 p += xsnprintf (p, endp - p, "vCont;t:");
6068
6069 if (ptid_is_pid (ptid))
6070 /* All (-1) threads of process. */
ba348170 6071 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
74531fed
PA
6072 else
6073 {
6074 /* Small optimization: if we already have a stop reply for
6075 this thread, no use in telling the stub we want this
6076 stopped. */
6077 if (peek_stop_reply (ptid))
6078 return;
6079
6080 nptid = ptid;
6081 }
6082
a9cbf802 6083 write_ptid (p, endp, nptid);
74531fed
PA
6084 }
6085
6086 /* In non-stop, we get an immediate OK reply. The stop reply will
6087 come in asynchronously by notification. */
6088 putpkt (rs->buf);
6089 getpkt (&rs->buf, &rs->buf_size, 0);
6090 if (strcmp (rs->buf, "OK") != 0)
6091 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6092}
6093
bfedc46a
PA
6094/* All-stop version of target_interrupt. Sends a break or a ^C to
6095 interrupt the remote target. It is undefined which thread of which
6096 process reports the interrupt. */
74531fed
PA
6097
6098static void
de979965 6099remote_interrupt_as (void)
74531fed
PA
6100{
6101 struct remote_state *rs = get_remote_state ();
6102
3a29589a
DJ
6103 rs->ctrlc_pending_p = 1;
6104
74531fed
PA
6105 /* If the inferior is stopped already, but the core didn't know
6106 about it yet, just ignore the request. The cached wait status
6107 will be collected in remote_wait. */
6108 if (rs->cached_wait_status)
6109 return;
6110
9a7071a8
JB
6111 /* Send interrupt_sequence to remote target. */
6112 send_interrupt_sequence ();
74531fed
PA
6113}
6114
de979965
PA
6115/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6116 the remote target. It is undefined which thread of which process
e42de8c7
PA
6117 reports the interrupt. Throws an error if the packet is not
6118 supported by the server. */
de979965 6119
e42de8c7 6120static void
de979965
PA
6121remote_interrupt_ns (void)
6122{
6123 struct remote_state *rs = get_remote_state ();
6124 char *p = rs->buf;
6125 char *endp = rs->buf + get_remote_packet_size ();
6126
6127 xsnprintf (p, endp - p, "vCtrlC");
6128
6129 /* In non-stop, we get an immediate OK reply. The stop reply will
6130 come in asynchronously by notification. */
6131 putpkt (rs->buf);
6132 getpkt (&rs->buf, &rs->buf_size, 0);
6133
6134 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6135 {
6136 case PACKET_OK:
6137 break;
6138 case PACKET_UNKNOWN:
e42de8c7 6139 error (_("No support for interrupting the remote target."));
de979965
PA
6140 case PACKET_ERROR:
6141 error (_("Interrupting target failed: %s"), rs->buf);
6142 }
de979965
PA
6143}
6144
bfedc46a 6145/* Implement the to_stop function for the remote targets. */
74531fed 6146
c906108c 6147static void
1eab8a48 6148remote_stop (struct target_ops *self, ptid_t ptid)
c906108c 6149{
7a292a7a 6150 if (remote_debug)
0f71a2f6 6151 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6152
6efcd9a8 6153 if (target_is_non_stop_p ())
74531fed 6154 remote_stop_ns (ptid);
c906108c 6155 else
bfedc46a
PA
6156 {
6157 /* We don't currently have a way to transparently pause the
6158 remote target in all-stop mode. Interrupt it instead. */
de979965 6159 remote_interrupt_as ();
bfedc46a
PA
6160 }
6161}
6162
6163/* Implement the to_interrupt function for the remote targets. */
6164
6165static void
6166remote_interrupt (struct target_ops *self, ptid_t ptid)
6167{
6168 if (remote_debug)
6169 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6170
e42de8c7
PA
6171 if (target_is_non_stop_p ())
6172 remote_interrupt_ns ();
bfedc46a 6173 else
e42de8c7 6174 remote_interrupt_as ();
c906108c
SS
6175}
6176
93692b58
PA
6177/* Implement the to_pass_ctrlc function for the remote targets. */
6178
6179static void
6180remote_pass_ctrlc (struct target_ops *self)
6181{
6182 struct remote_state *rs = get_remote_state ();
6183
6184 if (remote_debug)
6185 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6186
6187 /* If we're starting up, we're not fully synced yet. Quit
6188 immediately. */
6189 if (rs->starting_up)
6190 quit ();
6191 /* If ^C has already been sent once, offer to disconnect. */
6192 else if (rs->ctrlc_pending_p)
6193 interrupt_query ();
6194 else
6195 target_interrupt (inferior_ptid);
6196}
6197
c906108c
SS
6198/* Ask the user what to do when an interrupt is received. */
6199
6200static void
fba45db2 6201interrupt_query (void)
c906108c 6202{
abc56d60 6203 struct remote_state *rs = get_remote_state ();
c906108c 6204
abc56d60 6205 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6206 {
abc56d60
PA
6207 if (query (_("The target is not responding to interrupt requests.\n"
6208 "Stop debugging it? ")))
74531fed 6209 {
78a095c3 6210 remote_unpush_target ();
abc56d60 6211 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6212 }
6213 }
abc56d60
PA
6214 else
6215 {
6216 if (query (_("Interrupted while waiting for the program.\n"
6217 "Give up waiting? ")))
6218 quit ();
6219 }
c906108c
SS
6220}
6221
6426a772
JM
6222/* Enable/disable target terminal ownership. Most targets can use
6223 terminal groups to control terminal ownership. Remote targets are
6224 different in that explicit transfer of ownership to/from GDB/target
23860348 6225 is required. */
6426a772
JM
6226
6227static void
d2f640d4 6228remote_terminal_inferior (struct target_ops *self)
6426a772 6229{
6426a772
JM
6230 /* NOTE: At this point we could also register our selves as the
6231 recipient of all input. Any characters typed could then be
23860348 6232 passed on down to the target. */
6426a772
JM
6233}
6234
6235static void
e3594fd1 6236remote_terminal_ours (struct target_ops *self)
6426a772 6237{
6426a772
JM
6238}
6239
176a6961 6240static void
917317f4 6241remote_console_output (char *msg)
c906108c
SS
6242{
6243 char *p;
6244
c5aa993b 6245 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6246 {
6247 char tb[2];
6248 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6249
c906108c
SS
6250 tb[0] = c;
6251 tb[1] = 0;
43ff13b4 6252 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6253 }
00db5b94
PA
6254 gdb_flush (gdb_stdtarg);
6255}
74531fed 6256
74531fed
PA
6257DEF_VEC_O(cached_reg_t);
6258
722247f1 6259typedef struct stop_reply
74531fed 6260{
722247f1 6261 struct notif_event base;
74531fed 6262
722247f1 6263 /* The identifier of the thread about this event */
74531fed
PA
6264 ptid_t ptid;
6265
340e3c99 6266 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6267 connection, represented by a remote_state object, is closed,
6268 all the associated stop_reply events should be released. */
6269 struct remote_state *rs;
6270
74531fed
PA
6271 struct target_waitstatus ws;
6272
5cd63fda
PA
6273 /* The architecture associated with the expedited registers. */
6274 gdbarch *arch;
6275
15148d6a
PA
6276 /* Expedited registers. This makes remote debugging a bit more
6277 efficient for those targets that provide critical registers as
6278 part of their normal status mechanism (as another roundtrip to
6279 fetch them is avoided). */
74531fed
PA
6280 VEC(cached_reg_t) *regcache;
6281
f7e6eed5
PA
6282 enum target_stop_reason stop_reason;
6283
74531fed
PA
6284 CORE_ADDR watch_data_address;
6285
dc146f7c 6286 int core;
722247f1 6287} *stop_reply_p;
a744cf53 6288
722247f1
YQ
6289DECLARE_QUEUE_P (stop_reply_p);
6290DEFINE_QUEUE_P (stop_reply_p);
6291/* The list of already fetched and acknowledged stop events. This
6292 queue is used for notification Stop, and other notifications
6293 don't need queue for their events, because the notification events
6294 of Stop can't be consumed immediately, so that events should be
6295 queued first, and be consumed by remote_wait_{ns,as} one per
6296 time. Other notifications can consume their events immediately,
6297 so queue is not needed for them. */
6298static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
6299
6300static void
6301stop_reply_xfree (struct stop_reply *r)
6302{
f48ff2a7 6303 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6304}
6305
221e1a37
PA
6306/* Return the length of the stop reply queue. */
6307
6308static int
6309stop_reply_queue_length (void)
6310{
6311 return QUEUE_length (stop_reply_p, stop_reply_queue);
6312}
6313
722247f1
YQ
6314static void
6315remote_notif_stop_parse (struct notif_client *self, char *buf,
6316 struct notif_event *event)
6317{
6318 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6319}
6320
6321static void
6322remote_notif_stop_ack (struct notif_client *self, char *buf,
6323 struct notif_event *event)
6324{
6325 struct stop_reply *stop_reply = (struct stop_reply *) event;
6326
6327 /* acknowledge */
f5c4fcd9 6328 putpkt (self->ack_command);
722247f1
YQ
6329
6330 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6331 /* We got an unknown stop reply. */
6332 error (_("Unknown stop reply"));
6333
6334 push_stop_reply (stop_reply);
6335}
6336
6337static int
6338remote_notif_stop_can_get_pending_events (struct notif_client *self)
6339{
6340 /* We can't get pending events in remote_notif_process for
6341 notification stop, and we have to do this in remote_wait_ns
6342 instead. If we fetch all queued events from stub, remote stub
6343 may exit and we have no chance to process them back in
6344 remote_wait_ns. */
6345 mark_async_event_handler (remote_async_inferior_event_token);
6346 return 0;
6347}
6348
6349static void
6350stop_reply_dtr (struct notif_event *event)
6351{
6352 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6353 cached_reg_t *reg;
6354 int ix;
6355
6356 for (ix = 0;
6357 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6358 ix++)
6359 xfree (reg->data);
722247f1
YQ
6360
6361 VEC_free (cached_reg_t, r->regcache);
6362}
6363
6364static struct notif_event *
6365remote_notif_stop_alloc_reply (void)
6366{
8d749320
SM
6367 /* We cast to a pointer to the "base class". */
6368 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6369
6370 r->dtr = stop_reply_dtr;
6371
6372 return r;
6373}
6374
6375/* A client of notification Stop. */
6376
6377struct notif_client notif_client_stop =
6378{
6379 "Stop",
6380 "vStopped",
6381 remote_notif_stop_parse,
6382 remote_notif_stop_ack,
6383 remote_notif_stop_can_get_pending_events,
6384 remote_notif_stop_alloc_reply,
f48ff2a7 6385 REMOTE_NOTIF_STOP,
722247f1
YQ
6386};
6387
6388/* A parameter to pass data in and out. */
6389
6390struct queue_iter_param
6391{
6392 void *input;
6393 struct stop_reply *output;
6394};
6395
85ad3aaf 6396/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6397 the pid of the process that owns the threads we want to check, or
6398 -1 if we want to check all threads. */
6399
6400static int
6401is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6402 ptid_t thread_ptid)
6403{
6404 if (ws->kind == TARGET_WAITKIND_FORKED
6405 || ws->kind == TARGET_WAITKIND_VFORKED)
6406 {
6407 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6408 return 1;
6409 }
6410
6411 return 0;
6412}
6413
85ad3aaf
PA
6414/* Return the thread's pending status used to determine whether the
6415 thread is a fork parent stopped at a fork event. */
6416
6417static struct target_waitstatus *
6418thread_pending_fork_status (struct thread_info *thread)
6419{
6420 if (thread->suspend.waitstatus_pending_p)
6421 return &thread->suspend.waitstatus;
6422 else
6423 return &thread->pending_follow;
6424}
6425
6426/* Determine if THREAD is a pending fork parent thread. */
6427
6428static int
6429is_pending_fork_parent_thread (struct thread_info *thread)
6430{
6431 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6432 int pid = -1;
6433
6434 return is_pending_fork_parent (ws, pid, thread->ptid);
6435}
6436
cbb8991c
DB
6437/* Check whether EVENT is a fork event, and if it is, remove the
6438 fork child from the context list passed in DATA. */
6439
6440static int
6441remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6442 QUEUE_ITER (stop_reply_p) *iter,
6443 stop_reply_p event,
6444 void *data)
6445{
19ba03f4
SM
6446 struct queue_iter_param *param = (struct queue_iter_param *) data;
6447 struct threads_listing_context *context
6448 = (struct threads_listing_context *) param->input;
cbb8991c
DB
6449
6450 if (event->ws.kind == TARGET_WAITKIND_FORKED
65706a29
PA
6451 || event->ws.kind == TARGET_WAITKIND_VFORKED
6452 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
21fe1c75 6453 context->remove_thread (event->ws.value.related_pid);
cbb8991c
DB
6454
6455 return 1;
6456}
6457
6458/* If CONTEXT contains any fork child threads that have not been
6459 reported yet, remove them from the CONTEXT list. If such a
6460 thread exists it is because we are stopped at a fork catchpoint
6461 and have not yet called follow_fork, which will set up the
6462 host-side data structures for the new process. */
6463
6464static void
6465remove_new_fork_children (struct threads_listing_context *context)
6466{
6467 struct thread_info * thread;
6468 int pid = -1;
6469 struct notif_client *notif = &notif_client_stop;
6470 struct queue_iter_param param;
6471
6472 /* For any threads stopped at a fork event, remove the corresponding
6473 fork child threads from the CONTEXT list. */
6474 ALL_NON_EXITED_THREADS (thread)
6475 {
85ad3aaf 6476 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6477
6478 if (is_pending_fork_parent (ws, pid, thread->ptid))
21fe1c75 6479 context->remove_thread (ws->value.related_pid);
cbb8991c
DB
6480 }
6481
6482 /* Check for any pending fork events (not reported or processed yet)
6483 in process PID and remove those fork child threads from the
6484 CONTEXT list as well. */
6485 remote_notif_get_pending_events (notif);
6486 param.input = context;
6487 param.output = NULL;
6488 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6489 remove_child_of_pending_fork, &param);
6490}
6491
85ad3aaf
PA
6492/* Check whether EVENT would prevent a global or process wildcard
6493 vCont action. */
6494
6495static int
6496check_pending_event_prevents_wildcard_vcont_callback
6497 (QUEUE (stop_reply_p) *q,
6498 QUEUE_ITER (stop_reply_p) *iter,
6499 stop_reply_p event,
6500 void *data)
6501{
6502 struct inferior *inf;
6503 int *may_global_wildcard_vcont = (int *) data;
6504
6505 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6506 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6507 return 1;
6508
6509 if (event->ws.kind == TARGET_WAITKIND_FORKED
6510 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6511 *may_global_wildcard_vcont = 0;
6512
6513 inf = find_inferior_ptid (event->ptid);
6514
6515 /* This may be the first time we heard about this process.
6516 Regardless, we must not do a global wildcard resume, otherwise
6517 we'd resume this process too. */
6518 *may_global_wildcard_vcont = 0;
6519 if (inf != NULL)
089354bb 6520 get_remote_inferior (inf)->may_wildcard_vcont = false;
85ad3aaf
PA
6521
6522 return 1;
6523}
6524
6525/* Check whether any event pending in the vStopped queue would prevent
6526 a global or process wildcard vCont action. Clear
6527 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6528 and clear the event inferior's may_wildcard_vcont flag if we can't
6529 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6530
6531static void
6532check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard)
6533{
6534 struct notif_client *notif = &notif_client_stop;
6535
6536 remote_notif_get_pending_events (notif);
6537 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6538 check_pending_event_prevents_wildcard_vcont_callback,
6539 may_global_wildcard);
6540}
6541
f48ff2a7
YQ
6542/* Remove stop replies in the queue if its pid is equal to the given
6543 inferior's pid. */
722247f1
YQ
6544
6545static int
f48ff2a7
YQ
6546remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6547 QUEUE_ITER (stop_reply_p) *iter,
6548 stop_reply_p event,
6549 void *data)
722247f1 6550{
19ba03f4
SM
6551 struct queue_iter_param *param = (struct queue_iter_param *) data;
6552 struct inferior *inf = (struct inferior *) param->input;
722247f1 6553
f48ff2a7 6554 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
6555 {
6556 stop_reply_xfree (event);
6557 QUEUE_remove_elem (stop_reply_p, q, iter);
6558 }
6559
6560 return 1;
6561}
6562
f48ff2a7 6563/* Discard all pending stop replies of inferior INF. */
c906108c 6564
74531fed 6565static void
5f4cf0bb 6566discard_pending_stop_replies (struct inferior *inf)
c906108c 6567{
722247f1 6568 struct queue_iter_param param;
f48ff2a7
YQ
6569 struct stop_reply *reply;
6570 struct remote_state *rs = get_remote_state ();
6571 struct remote_notif_state *rns = rs->notif_state;
6572
6573 /* This function can be notified when an inferior exists. When the
6574 target is not remote, the notification state is NULL. */
6575 if (rs->remote_desc == NULL)
6576 return;
6577
6578 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 6579
74531fed 6580 /* Discard the in-flight notification. */
f48ff2a7 6581 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 6582 {
722247f1 6583 stop_reply_xfree (reply);
f48ff2a7 6584 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 6585 }
c906108c 6586
722247f1
YQ
6587 param.input = inf;
6588 param.output = NULL;
74531fed
PA
6589 /* Discard the stop replies we have already pulled with
6590 vStopped. */
722247f1 6591 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
6592 remove_stop_reply_for_inferior, &param);
6593}
6594
bcc75809
YQ
6595/* If its remote state is equal to the given remote state,
6596 remove EVENT from the stop reply queue. */
6597
6598static int
6599remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6600 QUEUE_ITER (stop_reply_p) *iter,
6601 stop_reply_p event,
6602 void *data)
6603{
19ba03f4
SM
6604 struct queue_iter_param *param = (struct queue_iter_param *) data;
6605 struct remote_state *rs = (struct remote_state *) param->input;
bcc75809
YQ
6606
6607 if (event->rs == rs)
6608 {
6609 stop_reply_xfree (event);
6610 QUEUE_remove_elem (stop_reply_p, q, iter);
6611 }
6612
6613 return 1;
6614}
6615
6616/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
6617
6618static void
bcc75809 6619discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
6620{
6621 struct queue_iter_param param;
6622
bcc75809 6623 param.input = rs;
f48ff2a7
YQ
6624 param.output = NULL;
6625 /* Discard the stop replies we have already pulled with
6626 vStopped. */
6627 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 6628 remove_stop_reply_of_remote_state, &param);
722247f1 6629}
74531fed 6630
722247f1
YQ
6631/* A parameter to pass data in and out. */
6632
6633static int
6634remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6635 QUEUE_ITER (stop_reply_p) *iter,
6636 stop_reply_p event,
6637 void *data)
6638{
19ba03f4
SM
6639 struct queue_iter_param *param = (struct queue_iter_param *) data;
6640 ptid_t *ptid = (ptid_t *) param->input;
722247f1
YQ
6641
6642 if (ptid_match (event->ptid, *ptid))
6643 {
6644 param->output = event;
6645 QUEUE_remove_elem (stop_reply_p, q, iter);
6646 return 0;
c8e38a49 6647 }
722247f1
YQ
6648
6649 return 1;
74531fed 6650}
43ff13b4 6651
722247f1
YQ
6652/* Remove the first reply in 'stop_reply_queue' which matches
6653 PTID. */
2e9f7625 6654
722247f1
YQ
6655static struct stop_reply *
6656remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 6657{
722247f1
YQ
6658 struct queue_iter_param param;
6659
6660 param.input = &ptid;
6661 param.output = NULL;
6662
6663 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6664 remote_notif_remove_once_on_match, &param);
6665 if (notif_debug)
6666 fprintf_unfiltered (gdb_stdlog,
6667 "notif: discard queued event: 'Stop' in %s\n",
6668 target_pid_to_str (ptid));
a744cf53 6669
722247f1 6670 return param.output;
74531fed 6671}
75c99385 6672
74531fed
PA
6673/* Look for a queued stop reply belonging to PTID. If one is found,
6674 remove it from the queue, and return it. Returns NULL if none is
6675 found. If there are still queued events left to process, tell the
6676 event loop to get back to target_wait soon. */
e24a49d8 6677
74531fed
PA
6678static struct stop_reply *
6679queued_stop_reply (ptid_t ptid)
6680{
722247f1 6681 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 6682
722247f1 6683 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
6684 /* There's still at least an event left. */
6685 mark_async_event_handler (remote_async_inferior_event_token);
6686
722247f1 6687 return r;
74531fed
PA
6688}
6689
6690/* Push a fully parsed stop reply in the stop reply queue. Since we
6691 know that we now have at least one queued event left to pass to the
6692 core side, tell the event loop to get back to target_wait soon. */
6693
6694static void
6695push_stop_reply (struct stop_reply *new_event)
6696{
722247f1 6697 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 6698
722247f1
YQ
6699 if (notif_debug)
6700 fprintf_unfiltered (gdb_stdlog,
6701 "notif: push 'Stop' %s to queue %d\n",
6702 target_pid_to_str (new_event->ptid),
6703 QUEUE_length (stop_reply_p,
6704 stop_reply_queue));
74531fed
PA
6705
6706 mark_async_event_handler (remote_async_inferior_event_token);
6707}
6708
722247f1
YQ
6709static int
6710stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6711 QUEUE_ITER (stop_reply_p) *iter,
6712 struct stop_reply *event,
6713 void *data)
6714{
19ba03f4 6715 ptid_t *ptid = (ptid_t *) data;
722247f1
YQ
6716
6717 return !(ptid_equal (*ptid, event->ptid)
6718 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6719}
6720
74531fed
PA
6721/* Returns true if we have a stop reply for PTID. */
6722
6723static int
6724peek_stop_reply (ptid_t ptid)
6725{
722247f1
YQ
6726 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6727 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
6728}
6729
26d56a93
SL
6730/* Helper for remote_parse_stop_reply. Return nonzero if the substring
6731 starting with P and ending with PEND matches PREFIX. */
6732
6733static int
6734strprefix (const char *p, const char *pend, const char *prefix)
6735{
6736 for ( ; p < pend; p++, prefix++)
6737 if (*p != *prefix)
6738 return 0;
6739 return *prefix == '\0';
6740}
6741
74531fed
PA
6742/* Parse the stop reply in BUF. Either the function succeeds, and the
6743 result is stored in EVENT, or throws an error. */
6744
6745static void
6746remote_parse_stop_reply (char *buf, struct stop_reply *event)
6747{
5cd63fda 6748 remote_arch_state *rsa = NULL;
74531fed 6749 ULONGEST addr;
256642e8 6750 const char *p;
94585166 6751 int skipregs = 0;
74531fed
PA
6752
6753 event->ptid = null_ptid;
bcc75809 6754 event->rs = get_remote_state ();
74531fed
PA
6755 event->ws.kind = TARGET_WAITKIND_IGNORE;
6756 event->ws.value.integer = 0;
f7e6eed5 6757 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 6758 event->regcache = NULL;
dc146f7c 6759 event->core = -1;
74531fed
PA
6760
6761 switch (buf[0])
6762 {
6763 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
6764 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6765 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6766 ss = signal number
6767 n... = register number
6768 r... = register contents
6769 */
6770
6771 p = &buf[3]; /* after Txx */
6772 while (*p)
6773 {
256642e8 6774 const char *p1;
cea39f65 6775 int fieldsize;
43ff13b4 6776
1f10ba14
PA
6777 p1 = strchr (p, ':');
6778 if (p1 == NULL)
6779 error (_("Malformed packet(a) (missing colon): %s\n\
6780Packet: '%s'\n"),
6781 p, buf);
6782 if (p == p1)
6783 error (_("Malformed packet(a) (missing register number): %s\n\
6784Packet: '%s'\n"),
6785 p, buf);
3c3bea1c 6786
1f10ba14
PA
6787 /* Some "registers" are actually extended stop information.
6788 Note if you're adding a new entry here: GDB 7.9 and
6789 earlier assume that all register "numbers" that start
6790 with an hex digit are real register numbers. Make sure
6791 the server only sends such a packet if it knows the
6792 client understands it. */
c8e38a49 6793
26d56a93 6794 if (strprefix (p, p1, "thread"))
1f10ba14 6795 event->ptid = read_ptid (++p1, &p);
82075af2
JS
6796 else if (strprefix (p, p1, "syscall_entry"))
6797 {
6798 ULONGEST sysno;
6799
6800 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6801 p = unpack_varlen_hex (++p1, &sysno);
6802 event->ws.value.syscall_number = (int) sysno;
6803 }
6804 else if (strprefix (p, p1, "syscall_return"))
6805 {
6806 ULONGEST sysno;
6807
6808 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6809 p = unpack_varlen_hex (++p1, &sysno);
6810 event->ws.value.syscall_number = (int) sysno;
6811 }
26d56a93
SL
6812 else if (strprefix (p, p1, "watch")
6813 || strprefix (p, p1, "rwatch")
6814 || strprefix (p, p1, "awatch"))
cea39f65 6815 {
f7e6eed5 6816 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
6817 p = unpack_varlen_hex (++p1, &addr);
6818 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 6819 }
26d56a93 6820 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
6821 {
6822 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6823
6824 /* Make sure the stub doesn't forget to indicate support
6825 with qSupported. */
6826 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6827 error (_("Unexpected swbreak stop reason"));
6828
6829 /* The value part is documented as "must be empty",
6830 though we ignore it, in case we ever decide to make
6831 use of it in a backward compatible way. */
8424cc97 6832 p = strchrnul (p1 + 1, ';');
f7e6eed5 6833 }
26d56a93 6834 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
6835 {
6836 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6837
6838 /* Make sure the stub doesn't forget to indicate support
6839 with qSupported. */
6840 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6841 error (_("Unexpected hwbreak stop reason"));
6842
6843 /* See above. */
8424cc97 6844 p = strchrnul (p1 + 1, ';');
f7e6eed5 6845 }
26d56a93 6846 else if (strprefix (p, p1, "library"))
cea39f65 6847 {
1f10ba14 6848 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 6849 p = strchrnul (p1 + 1, ';');
1f10ba14 6850 }
26d56a93 6851 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
6852 {
6853 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6854 /* p1 will indicate "begin" or "end", but it makes
6855 no difference for now, so ignore it. */
8424cc97 6856 p = strchrnul (p1 + 1, ';');
1f10ba14 6857 }
26d56a93 6858 else if (strprefix (p, p1, "core"))
1f10ba14
PA
6859 {
6860 ULONGEST c;
a744cf53 6861
1f10ba14
PA
6862 p = unpack_varlen_hex (++p1, &c);
6863 event->core = c;
cea39f65 6864 }
26d56a93 6865 else if (strprefix (p, p1, "fork"))
de0d863e
DB
6866 {
6867 event->ws.value.related_pid = read_ptid (++p1, &p);
6868 event->ws.kind = TARGET_WAITKIND_FORKED;
6869 }
26d56a93 6870 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
6871 {
6872 event->ws.value.related_pid = read_ptid (++p1, &p);
6873 event->ws.kind = TARGET_WAITKIND_VFORKED;
6874 }
26d56a93 6875 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
6876 {
6877 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 6878 p = strchrnul (p1 + 1, ';');
c269dbdb 6879 }
6ab24463 6880 else if (strprefix (p, p1, "exec"))
94585166
DB
6881 {
6882 ULONGEST ignored;
6883 char pathname[PATH_MAX];
6884 int pathlen;
6885
6886 /* Determine the length of the execd pathname. */
6887 p = unpack_varlen_hex (++p1, &ignored);
6888 pathlen = (p - p1) / 2;
6889
6890 /* Save the pathname for event reporting and for
6891 the next run command. */
6892 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6893 pathname[pathlen] = '\0';
6894
6895 /* This is freed during event handling. */
6896 event->ws.value.execd_pathname = xstrdup (pathname);
6897 event->ws.kind = TARGET_WAITKIND_EXECD;
6898
6899 /* Skip the registers included in this packet, since
6900 they may be for an architecture different from the
6901 one used by the original program. */
6902 skipregs = 1;
6903 }
65706a29
PA
6904 else if (strprefix (p, p1, "create"))
6905 {
6906 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 6907 p = strchrnul (p1 + 1, ';');
65706a29 6908 }
cea39f65
MS
6909 else
6910 {
1f10ba14 6911 ULONGEST pnum;
256642e8 6912 const char *p_temp;
1f10ba14 6913
94585166
DB
6914 if (skipregs)
6915 {
8424cc97 6916 p = strchrnul (p1 + 1, ';');
94585166
DB
6917 p++;
6918 continue;
6919 }
6920
1f10ba14
PA
6921 /* Maybe a real ``P'' register number. */
6922 p_temp = unpack_varlen_hex (p, &pnum);
6923 /* If the first invalid character is the colon, we got a
6924 register number. Otherwise, it's an unknown stop
6925 reason. */
6926 if (p_temp == p1)
6927 {
5cd63fda
PA
6928 /* If we haven't parsed the event's thread yet, find
6929 it now, in order to find the architecture of the
6930 reported expedited registers. */
6931 if (event->ptid == null_ptid)
6932 {
6933 const char *thr = strstr (p1 + 1, ";thread:");
6934 if (thr != NULL)
6935 event->ptid = read_ptid (thr + strlen (";thread:"),
6936 NULL);
6937 else
6938 event->ptid = magic_null_ptid;
6939 }
6940
6941 if (rsa == NULL)
6942 {
6943 inferior *inf = (event->ptid == null_ptid
6944 ? NULL
6945 : find_inferior_ptid (event->ptid));
6946 /* If this is the first time we learn anything
6947 about this process, skip the registers
6948 included in this packet, since we don't yet
6949 know which architecture to use to parse them.
6950 We'll determine the architecture later when
6951 we process the stop reply and retrieve the
6952 target description, via
6953 remote_notice_new_inferior ->
6954 post_create_inferior. */
6955 if (inf == NULL)
6956 {
6957 p = strchrnul (p1 + 1, ';');
6958 p++;
6959 continue;
6960 }
6961
6962 event->arch = inf->gdbarch;
6963 rsa = get_remote_arch_state (event->arch);
6964 }
6965
6966 packet_reg *reg
6967 = packet_reg_from_pnum (event->arch, rsa, pnum);
1f10ba14 6968 cached_reg_t cached_reg;
43ff13b4 6969
1f10ba14
PA
6970 if (reg == NULL)
6971 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 6972Packet: '%s'\n"),
1f10ba14 6973 hex_string (pnum), p, buf);
c8e38a49 6974
1f10ba14 6975 cached_reg.num = reg->regnum;
d1dff226 6976 cached_reg.data = (gdb_byte *)
5cd63fda 6977 xmalloc (register_size (event->arch, reg->regnum));
4100683b 6978
1f10ba14
PA
6979 p = p1 + 1;
6980 fieldsize = hex2bin (p, cached_reg.data,
5cd63fda 6981 register_size (event->arch, reg->regnum));
1f10ba14 6982 p += 2 * fieldsize;
5cd63fda 6983 if (fieldsize < register_size (event->arch, reg->regnum))
1f10ba14 6984 warning (_("Remote reply is too short: %s"), buf);
74531fed 6985
1f10ba14
PA
6986 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
6987 }
6988 else
6989 {
6990 /* Not a number. Silently skip unknown optional
6991 info. */
8424cc97 6992 p = strchrnul (p1 + 1, ';');
1f10ba14 6993 }
cea39f65 6994 }
c8e38a49 6995
cea39f65
MS
6996 if (*p != ';')
6997 error (_("Remote register badly formatted: %s\nhere: %s"),
6998 buf, p);
6999 ++p;
7000 }
5b5596ff
PA
7001
7002 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7003 break;
7004
c8e38a49
PA
7005 /* fall through */
7006 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7007 {
7008 int sig;
7009
7010 event->ws.kind = TARGET_WAITKIND_STOPPED;
7011 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7012 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7013 event->ws.value.sig = (enum gdb_signal) sig;
7014 else
7015 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7016 }
c8e38a49 7017 break;
65706a29
PA
7018 case 'w': /* Thread exited. */
7019 {
256642e8 7020 const char *p;
65706a29
PA
7021 ULONGEST value;
7022
7023 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7024 p = unpack_varlen_hex (&buf[1], &value);
7025 event->ws.value.integer = value;
7026 if (*p != ';')
7027 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7028 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7029 break;
7030 }
c8e38a49
PA
7031 case 'W': /* Target exited. */
7032 case 'X':
7033 {
256642e8 7034 const char *p;
c8e38a49
PA
7035 int pid;
7036 ULONGEST value;
82f73884 7037
c8e38a49
PA
7038 /* GDB used to accept only 2 hex chars here. Stubs should
7039 only send more if they detect GDB supports multi-process
7040 support. */
7041 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7042
c8e38a49
PA
7043 if (buf[0] == 'W')
7044 {
7045 /* The remote process exited. */
74531fed
PA
7046 event->ws.kind = TARGET_WAITKIND_EXITED;
7047 event->ws.value.integer = value;
c8e38a49
PA
7048 }
7049 else
7050 {
7051 /* The remote process exited with a signal. */
74531fed 7052 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7053 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7054 event->ws.value.sig = (enum gdb_signal) value;
7055 else
7056 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7057 }
82f73884 7058
c8e38a49
PA
7059 /* If no process is specified, assume inferior_ptid. */
7060 pid = ptid_get_pid (inferior_ptid);
7061 if (*p == '\0')
7062 ;
7063 else if (*p == ';')
7064 {
7065 p++;
7066
0b24eb2d 7067 if (*p == '\0')
82f73884 7068 ;
61012eef 7069 else if (startswith (p, "process:"))
82f73884 7070 {
c8e38a49 7071 ULONGEST upid;
a744cf53 7072
c8e38a49
PA
7073 p += sizeof ("process:") - 1;
7074 unpack_varlen_hex (p, &upid);
7075 pid = upid;
82f73884
PA
7076 }
7077 else
7078 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7079 }
c8e38a49
PA
7080 else
7081 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
7082 event->ptid = pid_to_ptid (pid);
7083 }
7084 break;
f2faf941
PA
7085 case 'N':
7086 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7087 event->ptid = minus_one_ptid;
7088 break;
74531fed
PA
7089 }
7090
6efcd9a8 7091 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
74531fed
PA
7092 error (_("No process or thread specified in stop reply: %s"), buf);
7093}
7094
722247f1
YQ
7095/* When the stub wants to tell GDB about a new notification reply, it
7096 sends a notification (%Stop, for example). Those can come it at
7097 any time, hence, we have to make sure that any pending
7098 putpkt/getpkt sequence we're making is finished, before querying
7099 the stub for more events with the corresponding ack command
7100 (vStopped, for example). E.g., if we started a vStopped sequence
7101 immediately upon receiving the notification, something like this
7102 could happen:
74531fed
PA
7103
7104 1.1) --> Hg 1
7105 1.2) <-- OK
7106 1.3) --> g
7107 1.4) <-- %Stop
7108 1.5) --> vStopped
7109 1.6) <-- (registers reply to step #1.3)
7110
7111 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7112 query.
7113
796cb314 7114 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7115 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7116 doing whatever we were doing:
7117
7118 2.1) --> Hg 1
7119 2.2) <-- OK
7120 2.3) --> g
7121 2.4) <-- %Stop
7122 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7123 2.5) <-- (registers reply to step #2.3)
7124
7125 Eventualy after step #2.5, we return to the event loop, which
7126 notices there's an event on the
7127 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7128 associated callback --- the function below. At this point, we're
7129 always safe to start a vStopped sequence. :
7130
7131 2.6) --> vStopped
7132 2.7) <-- T05 thread:2
7133 2.8) --> vStopped
7134 2.9) --> OK
7135*/
7136
722247f1
YQ
7137void
7138remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
7139{
7140 struct remote_state *rs = get_remote_state ();
74531fed 7141
f48ff2a7 7142 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7143 {
722247f1
YQ
7144 if (notif_debug)
7145 fprintf_unfiltered (gdb_stdlog,
7146 "notif: process: '%s' ack pending event\n",
7147 nc->name);
74531fed 7148
722247f1 7149 /* acknowledge */
f48ff2a7
YQ
7150 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7151 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7152
7153 while (1)
7154 {
7155 getpkt (&rs->buf, &rs->buf_size, 0);
7156 if (strcmp (rs->buf, "OK") == 0)
7157 break;
7158 else
722247f1 7159 remote_notif_ack (nc, rs->buf);
74531fed
PA
7160 }
7161 }
722247f1
YQ
7162 else
7163 {
7164 if (notif_debug)
7165 fprintf_unfiltered (gdb_stdlog,
7166 "notif: process: '%s' no pending reply\n",
7167 nc->name);
7168 }
74531fed
PA
7169}
7170
74531fed
PA
7171/* Called when it is decided that STOP_REPLY holds the info of the
7172 event that is to be returned to the core. This function always
7173 destroys STOP_REPLY. */
7174
7175static ptid_t
7176process_stop_reply (struct stop_reply *stop_reply,
7177 struct target_waitstatus *status)
7178{
7179 ptid_t ptid;
7180
7181 *status = stop_reply->ws;
7182 ptid = stop_reply->ptid;
7183
7184 /* If no thread/process was reported by the stub, assume the current
7185 inferior. */
7186 if (ptid_equal (ptid, null_ptid))
7187 ptid = inferior_ptid;
7188
5f3563ea 7189 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7190 && status->kind != TARGET_WAITKIND_SIGNALLED
7191 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7192 {
5f3563ea
PA
7193 /* Expedited registers. */
7194 if (stop_reply->regcache)
7195 {
217f1f79 7196 struct regcache *regcache
5cd63fda 7197 = get_thread_arch_regcache (ptid, stop_reply->arch);
5f3563ea
PA
7198 cached_reg_t *reg;
7199 int ix;
7200
7201 for (ix = 0;
d1dff226 7202 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7203 ix++)
d1dff226 7204 {
217f1f79 7205 regcache_raw_supply (regcache, reg->num, reg->data);
d1dff226
AH
7206 xfree (reg->data);
7207 }
7208
5f3563ea
PA
7209 VEC_free (cached_reg_t, stop_reply->regcache);
7210 }
74531fed 7211
1941c569 7212 remote_notice_new_inferior (ptid, 0);
7aabaf9d 7213 remote_thread_info *remote_thr = get_remote_thread_info (ptid);
799a2abe
PA
7214 remote_thr->core = stop_reply->core;
7215 remote_thr->stop_reason = stop_reply->stop_reason;
7216 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7217 remote_thr->vcont_resumed = 0;
74531fed
PA
7218 }
7219
74531fed
PA
7220 stop_reply_xfree (stop_reply);
7221 return ptid;
7222}
7223
7224/* The non-stop mode version of target_wait. */
7225
7226static ptid_t
47608cb1 7227remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7228{
7229 struct remote_state *rs = get_remote_state ();
74531fed
PA
7230 struct stop_reply *stop_reply;
7231 int ret;
fee9eda9 7232 int is_notif = 0;
74531fed
PA
7233
7234 /* If in non-stop mode, get out of getpkt even if a
7235 notification is received. */
7236
7237 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7238 0 /* forever */, &is_notif);
74531fed
PA
7239 while (1)
7240 {
fee9eda9 7241 if (ret != -1 && !is_notif)
74531fed
PA
7242 switch (rs->buf[0])
7243 {
7244 case 'E': /* Error of some sort. */
7245 /* We're out of sync with the target now. Did it continue
7246 or not? We can't tell which thread it was in non-stop,
7247 so just ignore this. */
7248 warning (_("Remote failure reply: %s"), rs->buf);
7249 break;
7250 case 'O': /* Console output. */
7251 remote_console_output (rs->buf + 1);
7252 break;
7253 default:
7254 warning (_("Invalid remote reply: %s"), rs->buf);
7255 break;
7256 }
7257
7258 /* Acknowledge a pending stop reply that may have arrived in the
7259 mean time. */
f48ff2a7 7260 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7261 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7262
7263 /* If indeed we noticed a stop reply, we're done. */
7264 stop_reply = queued_stop_reply (ptid);
7265 if (stop_reply != NULL)
7266 return process_stop_reply (stop_reply, status);
7267
47608cb1 7268 /* Still no event. If we're just polling for an event, then
74531fed 7269 return to the event loop. */
47608cb1 7270 if (options & TARGET_WNOHANG)
74531fed
PA
7271 {
7272 status->kind = TARGET_WAITKIND_IGNORE;
7273 return minus_one_ptid;
7274 }
7275
47608cb1 7276 /* Otherwise do a blocking wait. */
74531fed 7277 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7278 1 /* forever */, &is_notif);
74531fed
PA
7279 }
7280}
7281
7282/* Wait until the remote machine stops, then return, storing status in
7283 STATUS just as `wait' would. */
7284
7285static ptid_t
47608cb1 7286remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7287{
7288 struct remote_state *rs = get_remote_state ();
74531fed 7289 ptid_t event_ptid = null_ptid;
cea39f65 7290 char *buf;
74531fed
PA
7291 struct stop_reply *stop_reply;
7292
47608cb1
PA
7293 again:
7294
74531fed
PA
7295 status->kind = TARGET_WAITKIND_IGNORE;
7296 status->value.integer = 0;
7297
7298 stop_reply = queued_stop_reply (ptid);
7299 if (stop_reply != NULL)
7300 return process_stop_reply (stop_reply, status);
7301
7302 if (rs->cached_wait_status)
7303 /* Use the cached wait status, but only once. */
7304 rs->cached_wait_status = 0;
7305 else
7306 {
7307 int ret;
722247f1 7308 int is_notif;
567420d1
PA
7309 int forever = ((options & TARGET_WNOHANG) == 0
7310 && wait_forever_enabled_p);
7311
7312 if (!rs->waiting_for_stop_reply)
7313 {
7314 status->kind = TARGET_WAITKIND_NO_RESUMED;
7315 return minus_one_ptid;
7316 }
74531fed 7317
74531fed
PA
7318 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7319 _never_ wait for ever -> test on target_is_async_p().
7320 However, before we do that we need to ensure that the caller
7321 knows how to take the target into/out of async mode. */
722247f1 7322 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 7323 forever, &is_notif);
722247f1
YQ
7324
7325 /* GDB gets a notification. Return to core as this event is
7326 not interesting. */
7327 if (ret != -1 && is_notif)
7328 return minus_one_ptid;
567420d1
PA
7329
7330 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7331 return minus_one_ptid;
74531fed
PA
7332 }
7333
7334 buf = rs->buf;
7335
3a29589a
DJ
7336 /* Assume that the target has acknowledged Ctrl-C unless we receive
7337 an 'F' or 'O' packet. */
7338 if (buf[0] != 'F' && buf[0] != 'O')
7339 rs->ctrlc_pending_p = 0;
7340
74531fed
PA
7341 switch (buf[0])
7342 {
7343 case 'E': /* Error of some sort. */
7344 /* We're out of sync with the target now. Did it continue or
7345 not? Not is more likely, so report a stop. */
29090fb6
LM
7346 rs->waiting_for_stop_reply = 0;
7347
74531fed
PA
7348 warning (_("Remote failure reply: %s"), buf);
7349 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7350 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7351 break;
7352 case 'F': /* File-I/O request. */
e42e5352
YQ
7353 /* GDB may access the inferior memory while handling the File-I/O
7354 request, but we don't want GDB accessing memory while waiting
7355 for a stop reply. See the comments in putpkt_binary. Set
7356 waiting_for_stop_reply to 0 temporarily. */
7357 rs->waiting_for_stop_reply = 0;
3a29589a
DJ
7358 remote_fileio_request (buf, rs->ctrlc_pending_p);
7359 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7360 /* GDB handled the File-I/O request, and the target is running
7361 again. Keep waiting for events. */
7362 rs->waiting_for_stop_reply = 1;
74531fed 7363 break;
f2faf941 7364 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7365 {
29090fb6
LM
7366 struct stop_reply *stop_reply;
7367
7368 /* There is a stop reply to handle. */
7369 rs->waiting_for_stop_reply = 0;
7370
7371 stop_reply
722247f1
YQ
7372 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7373 rs->buf);
74531fed 7374
74531fed 7375 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7376 break;
7377 }
7378 case 'O': /* Console output. */
7379 remote_console_output (buf + 1);
c8e38a49
PA
7380 break;
7381 case '\0':
b73be471 7382 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7383 {
7384 /* Zero length reply means that we tried 'S' or 'C' and the
7385 remote system doesn't support it. */
223ffa71 7386 target_terminal::ours_for_output ();
c8e38a49
PA
7387 printf_filtered
7388 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7389 gdb_signal_to_name (rs->last_sent_signal));
7390 rs->last_sent_signal = GDB_SIGNAL_0;
223ffa71 7391 target_terminal::inferior ();
c8e38a49 7392
f5c4fcd9
TT
7393 strcpy (buf, rs->last_sent_step ? "s" : "c");
7394 putpkt (buf);
c8e38a49 7395 break;
43ff13b4 7396 }
c8e38a49
PA
7397 /* else fallthrough */
7398 default:
7399 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7400 break;
43ff13b4 7401 }
c8e38a49 7402
f2faf941
PA
7403 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7404 return minus_one_ptid;
7405 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7406 {
7407 /* Nothing interesting happened. If we're doing a non-blocking
7408 poll, we're done. Otherwise, go back to waiting. */
7409 if (options & TARGET_WNOHANG)
7410 return minus_one_ptid;
7411 else
7412 goto again;
7413 }
74531fed
PA
7414 else if (status->kind != TARGET_WAITKIND_EXITED
7415 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
7416 {
7417 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 7418 record_currthread (rs, event_ptid);
82f73884
PA
7419 else
7420 event_ptid = inferior_ptid;
43ff13b4 7421 }
74531fed
PA
7422 else
7423 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7424 record_currthread (rs, minus_one_ptid);
79d7f229 7425
82f73884 7426 return event_ptid;
43ff13b4
JM
7427}
7428
74531fed
PA
7429/* Wait until the remote machine stops, then return, storing status in
7430 STATUS just as `wait' would. */
7431
c8e38a49 7432static ptid_t
117de6a9 7433remote_wait (struct target_ops *ops,
47608cb1 7434 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7435{
7436 ptid_t event_ptid;
7437
6efcd9a8 7438 if (target_is_non_stop_p ())
47608cb1 7439 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 7440 else
47608cb1 7441 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 7442
d9d41e78 7443 if (target_is_async_p ())
c8e38a49 7444 {
74531fed
PA
7445 /* If there are are events left in the queue tell the event loop
7446 to return here. */
722247f1 7447 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 7448 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 7449 }
c8e38a49
PA
7450
7451 return event_ptid;
7452}
7453
74ca34ce 7454/* Fetch a single register using a 'p' packet. */
c906108c 7455
b96ec7ac 7456static int
56be3814 7457fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac 7458{
ac7936df 7459 struct gdbarch *gdbarch = regcache->arch ();
b96ec7ac 7460 struct remote_state *rs = get_remote_state ();
2e9f7625 7461 char *buf, *p;
9890e433 7462 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7463 int i;
7464
4082afcc 7465 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7466 return 0;
7467
7468 if (reg->pnum == -1)
7469 return 0;
7470
2e9f7625 7471 p = rs->buf;
fcad0fa4 7472 *p++ = 'p';
74ca34ce 7473 p += hexnumstr (p, reg->pnum);
fcad0fa4 7474 *p++ = '\0';
1f4437a4
MS
7475 putpkt (rs->buf);
7476 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7477
2e9f7625
DJ
7478 buf = rs->buf;
7479
74ca34ce
DJ
7480 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7481 {
7482 case PACKET_OK:
7483 break;
7484 case PACKET_UNKNOWN:
7485 return 0;
7486 case PACKET_ERROR:
27a9c0bf 7487 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
ac7936df 7488 gdbarch_register_name (regcache->arch (),
27a9c0bf
MS
7489 reg->regnum),
7490 buf);
74ca34ce 7491 }
3f9a994c
JB
7492
7493 /* If this register is unfetchable, tell the regcache. */
7494 if (buf[0] == 'x')
8480adf2 7495 {
56be3814 7496 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 7497 return 1;
b96ec7ac 7498 }
b96ec7ac 7499
3f9a994c
JB
7500 /* Otherwise, parse and supply the value. */
7501 p = buf;
7502 i = 0;
7503 while (p[0] != 0)
7504 {
7505 if (p[1] == 0)
74ca34ce 7506 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7507
7508 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7509 p += 2;
7510 }
56be3814 7511 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 7512 return 1;
b96ec7ac
AC
7513}
7514
74ca34ce
DJ
7515/* Fetch the registers included in the target's 'g' packet. */
7516
29709017
DJ
7517static int
7518send_g_packet (void)
c906108c 7519{
d01949b6 7520 struct remote_state *rs = get_remote_state ();
cea39f65 7521 int buf_len;
c906108c 7522
bba74b36 7523 xsnprintf (rs->buf, get_remote_packet_size (), "g");
74ca34ce 7524 remote_send (&rs->buf, &rs->buf_size);
c906108c 7525
29709017
DJ
7526 /* We can get out of synch in various cases. If the first character
7527 in the buffer is not a hex character, assume that has happened
7528 and try to fetch another packet to read. */
7529 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7530 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7531 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7532 && rs->buf[0] != 'x') /* New: unavailable register value. */
7533 {
7534 if (remote_debug)
7535 fprintf_unfiltered (gdb_stdlog,
7536 "Bad register packet; fetching a new packet\n");
7537 getpkt (&rs->buf, &rs->buf_size, 0);
7538 }
7539
74ca34ce
DJ
7540 buf_len = strlen (rs->buf);
7541
7542 /* Sanity check the received packet. */
7543 if (buf_len % 2 != 0)
7544 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
7545
7546 return buf_len / 2;
7547}
7548
7549static void
56be3814 7550process_g_packet (struct regcache *regcache)
29709017 7551{
ac7936df 7552 struct gdbarch *gdbarch = regcache->arch ();
29709017 7553 struct remote_state *rs = get_remote_state ();
5cd63fda 7554 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
29709017
DJ
7555 int i, buf_len;
7556 char *p;
7557 char *regs;
7558
7559 buf_len = strlen (rs->buf);
7560
7561 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7562 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827
SM
7563 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7564 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
74ca34ce
DJ
7565
7566 /* Save the size of the packet sent to us by the target. It is used
7567 as a heuristic when determining the max size of packets that the
7568 target can safely receive. */
7569 if (rsa->actual_register_packet_size == 0)
7570 rsa->actual_register_packet_size = buf_len;
7571
7572 /* If this is smaller than we guessed the 'g' packet would be,
7573 update our records. A 'g' reply that doesn't include a register's
7574 value implies either that the register is not available, or that
7575 the 'p' packet must be used. */
7576 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7577 {
9dc193c3 7578 long sizeof_g_packet = buf_len / 2;
74ca34ce 7579
4a22f64d 7580 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7581 {
9dc193c3
LF
7582 long offset = rsa->regs[i].offset;
7583 long reg_size = register_size (gdbarch, i);
7584
74ca34ce
DJ
7585 if (rsa->regs[i].pnum == -1)
7586 continue;
7587
9dc193c3 7588 if (offset >= sizeof_g_packet)
74ca34ce 7589 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
7590 else if (offset + reg_size > sizeof_g_packet)
7591 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 7592 else
74ca34ce 7593 rsa->regs[i].in_g_packet = 1;
b96ec7ac 7594 }
9dc193c3
LF
7595
7596 /* Looks valid enough, we can assume this is the correct length
7597 for a 'g' packet. It's important not to adjust
7598 rsa->sizeof_g_packet if we have truncated registers otherwise
7599 this "if" won't be run the next time the method is called
7600 with a packet of the same size and one of the internal errors
7601 below will trigger instead. */
7602 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 7603 }
b323314b 7604
224c3ddb 7605 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
7606
7607 /* Unimplemented registers read as all bits zero. */
ea9c271d 7608 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 7609
c906108c
SS
7610 /* Reply describes registers byte by byte, each byte encoded as two
7611 hex characters. Suck them all up, then supply them to the
7612 register cacheing/storage mechanism. */
7613
74ca34ce 7614 p = rs->buf;
ea9c271d 7615 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 7616 {
74ca34ce
DJ
7617 if (p[0] == 0 || p[1] == 0)
7618 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7619 internal_error (__FILE__, __LINE__,
9b20d036 7620 _("unexpected end of 'g' packet reply"));
74ca34ce 7621
c906108c 7622 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 7623 regs[i] = 0; /* 'x' */
c906108c
SS
7624 else
7625 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7626 p += 2;
7627 }
7628
a744cf53
MS
7629 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7630 {
7631 struct packet_reg *r = &rsa->regs[i];
9dc193c3 7632 long reg_size = register_size (gdbarch, i);
a744cf53
MS
7633
7634 if (r->in_g_packet)
7635 {
9dc193c3 7636 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
a744cf53
MS
7637 /* This shouldn't happen - we adjusted in_g_packet above. */
7638 internal_error (__FILE__, __LINE__,
9b20d036 7639 _("unexpected end of 'g' packet reply"));
a744cf53
MS
7640 else if (rs->buf[r->offset * 2] == 'x')
7641 {
7642 gdb_assert (r->offset * 2 < strlen (rs->buf));
7643 /* The register isn't available, mark it as such (at
7644 the same time setting the value to zero). */
7645 regcache_raw_supply (regcache, r->regnum, NULL);
7646 }
7647 else
7648 regcache_raw_supply (regcache, r->regnum,
7649 regs + r->offset);
7650 }
7651 }
c906108c
SS
7652}
7653
29709017 7654static void
56be3814 7655fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
7656{
7657 send_g_packet ();
56be3814 7658 process_g_packet (regcache);
29709017
DJ
7659}
7660
e6e4e701
PA
7661/* Make the remote selected traceframe match GDB's selected
7662 traceframe. */
7663
7664static void
7665set_remote_traceframe (void)
7666{
7667 int newnum;
262e1174 7668 struct remote_state *rs = get_remote_state ();
e6e4e701 7669
262e1174 7670 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
7671 return;
7672
7673 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 7674 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
7675
7676 newnum = target_trace_find (tfind_number,
7677 get_traceframe_number (), 0, 0, NULL);
7678
7679 /* Should not happen. If it does, all bets are off. */
7680 if (newnum != get_traceframe_number ())
7681 warning (_("could not set remote traceframe"));
7682}
7683
74ca34ce 7684static void
28439f5e
PA
7685remote_fetch_registers (struct target_ops *ops,
7686 struct regcache *regcache, int regnum)
74ca34ce 7687{
ac7936df 7688 struct gdbarch *gdbarch = regcache->arch ();
5cd63fda 7689 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
74ca34ce
DJ
7690 int i;
7691
e6e4e701 7692 set_remote_traceframe ();
bcc0c096 7693 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7694
7695 if (regnum >= 0)
7696 {
5cd63fda 7697 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 7698
74ca34ce
DJ
7699 gdb_assert (reg != NULL);
7700
7701 /* If this register might be in the 'g' packet, try that first -
7702 we are likely to read more than one register. If this is the
7703 first 'g' packet, we might be overly optimistic about its
7704 contents, so fall back to 'p'. */
7705 if (reg->in_g_packet)
7706 {
56be3814 7707 fetch_registers_using_g (regcache);
74ca34ce
DJ
7708 if (reg->in_g_packet)
7709 return;
7710 }
7711
56be3814 7712 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
7713 return;
7714
7715 /* This register is not available. */
56be3814 7716 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
7717
7718 return;
7719 }
7720
56be3814 7721 fetch_registers_using_g (regcache);
74ca34ce 7722
5cd63fda 7723 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 7724 if (!rsa->regs[i].in_g_packet)
56be3814 7725 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
7726 {
7727 /* This register is not available. */
56be3814 7728 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
7729 }
7730}
7731
c906108c
SS
7732/* Prepare to store registers. Since we may send them all (using a
7733 'G' request), we have to read out the ones we don't want to change
7734 first. */
7735
c5aa993b 7736static void
f32dbf8c 7737remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 7738{
5cd63fda 7739 remote_arch_state *rsa = get_remote_arch_state (regcache->arch ());
cf0e1e0d 7740 int i;
cf0e1e0d 7741
c906108c 7742 /* Make sure the entire registers array is valid. */
4082afcc 7743 switch (packet_support (PACKET_P))
5a2468f5
JM
7744 {
7745 case PACKET_DISABLE:
7746 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 7747 /* Make sure all the necessary registers are cached. */
ac7936df 7748 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
ea9c271d 7749 if (rsa->regs[i].in_g_packet)
8e368124 7750 regcache_raw_update (regcache, rsa->regs[i].regnum);
5a2468f5
JM
7751 break;
7752 case PACKET_ENABLE:
7753 break;
7754 }
7755}
7756
ad10f812 7757/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 7758 packet was not recognized. */
5a2468f5
JM
7759
7760static int
1f4437a4
MS
7761store_register_using_P (const struct regcache *regcache,
7762 struct packet_reg *reg)
5a2468f5 7763{
ac7936df 7764 struct gdbarch *gdbarch = regcache->arch ();
d01949b6 7765 struct remote_state *rs = get_remote_state ();
5a2468f5 7766 /* Try storing a single register. */
6d820c5c 7767 char *buf = rs->buf;
9890e433 7768 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 7769 char *p;
5a2468f5 7770
4082afcc 7771 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
7772 return 0;
7773
7774 if (reg->pnum == -1)
7775 return 0;
7776
ea9c271d 7777 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 7778 p = buf + strlen (buf);
56be3814 7779 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 7780 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
7781 putpkt (rs->buf);
7782 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 7783
74ca34ce
DJ
7784 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7785 {
7786 case PACKET_OK:
7787 return 1;
7788 case PACKET_ERROR:
27a9c0bf
MS
7789 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7790 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
7791 case PACKET_UNKNOWN:
7792 return 0;
7793 default:
7794 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7795 }
c906108c
SS
7796}
7797
23860348
MS
7798/* Store register REGNUM, or all registers if REGNUM == -1, from the
7799 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
7800
7801static void
56be3814 7802store_registers_using_G (const struct regcache *regcache)
c906108c 7803{
d01949b6 7804 struct remote_state *rs = get_remote_state ();
5cd63fda 7805 remote_arch_state *rsa = get_remote_arch_state (regcache->arch ());
cfd77fa1 7806 gdb_byte *regs;
c906108c
SS
7807 char *p;
7808
193cb69f
AC
7809 /* Extract all the registers in the regcache copying them into a
7810 local buffer. */
7811 {
b323314b 7812 int i;
a744cf53 7813
224c3ddb 7814 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 7815 memset (regs, 0, rsa->sizeof_g_packet);
ac7936df 7816 for (i = 0; i < gdbarch_num_regs (regcache->arch ()); i++)
193cb69f 7817 {
ea9c271d 7818 struct packet_reg *r = &rsa->regs[i];
a744cf53 7819
b323314b 7820 if (r->in_g_packet)
56be3814 7821 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
7822 }
7823 }
c906108c
SS
7824
7825 /* Command describes registers byte by byte,
7826 each byte encoded as two hex characters. */
6d820c5c 7827 p = rs->buf;
193cb69f 7828 *p++ = 'G';
74ca34ce 7829 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
7830 putpkt (rs->buf);
7831 getpkt (&rs->buf, &rs->buf_size, 0);
7832 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
7833 error (_("Could not write registers; remote failure reply '%s'"),
7834 rs->buf);
c906108c 7835}
74ca34ce
DJ
7836
7837/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7838 of the register cache buffer. FIXME: ignores errors. */
7839
7840static void
28439f5e
PA
7841remote_store_registers (struct target_ops *ops,
7842 struct regcache *regcache, int regnum)
74ca34ce 7843{
5cd63fda
PA
7844 struct gdbarch *gdbarch = regcache->arch ();
7845 remote_arch_state *rsa = get_remote_arch_state (gdbarch);
74ca34ce
DJ
7846 int i;
7847
e6e4e701 7848 set_remote_traceframe ();
bcc0c096 7849 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7850
7851 if (regnum >= 0)
7852 {
5cd63fda 7853 packet_reg *reg = packet_reg_from_regnum (gdbarch, rsa, regnum);
a744cf53 7854
74ca34ce
DJ
7855 gdb_assert (reg != NULL);
7856
7857 /* Always prefer to store registers using the 'P' packet if
7858 possible; we often change only a small number of registers.
7859 Sometimes we change a larger number; we'd need help from a
7860 higher layer to know to use 'G'. */
56be3814 7861 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
7862 return;
7863
7864 /* For now, don't complain if we have no way to write the
7865 register. GDB loses track of unavailable registers too
7866 easily. Some day, this may be an error. We don't have
0df8b418 7867 any way to read the register, either... */
74ca34ce
DJ
7868 if (!reg->in_g_packet)
7869 return;
7870
56be3814 7871 store_registers_using_G (regcache);
74ca34ce
DJ
7872 return;
7873 }
7874
56be3814 7875 store_registers_using_G (regcache);
74ca34ce 7876
5cd63fda 7877 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
74ca34ce 7878 if (!rsa->regs[i].in_g_packet)
56be3814 7879 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
7880 /* See above for why we do not issue an error here. */
7881 continue;
7882}
c906108c
SS
7883\f
7884
7885/* Return the number of hex digits in num. */
7886
7887static int
fba45db2 7888hexnumlen (ULONGEST num)
c906108c
SS
7889{
7890 int i;
7891
7892 for (i = 0; num != 0; i++)
7893 num >>= 4;
7894
325fac50 7895 return std::max (i, 1);
c906108c
SS
7896}
7897
2df3850c 7898/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
7899
7900static int
fba45db2 7901hexnumstr (char *buf, ULONGEST num)
c906108c 7902{
c906108c 7903 int len = hexnumlen (num);
a744cf53 7904
2df3850c
JM
7905 return hexnumnstr (buf, num, len);
7906}
7907
c906108c 7908
2df3850c 7909/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 7910
2df3850c 7911static int
fba45db2 7912hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
7913{
7914 int i;
7915
7916 buf[width] = '\0';
7917
7918 for (i = width - 1; i >= 0; i--)
c906108c 7919 {
c5aa993b 7920 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
7921 num >>= 4;
7922 }
7923
2df3850c 7924 return width;
c906108c
SS
7925}
7926
23860348 7927/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
7928
7929static CORE_ADDR
fba45db2 7930remote_address_masked (CORE_ADDR addr)
c906108c 7931{
883b9c6c 7932 unsigned int address_size = remote_address_size;
a744cf53 7933
911c95a5
UW
7934 /* If "remoteaddresssize" was not set, default to target address size. */
7935 if (!address_size)
f5656ead 7936 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
7937
7938 if (address_size > 0
7939 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
7940 {
7941 /* Only create a mask when that mask can safely be constructed
23860348 7942 in a ULONGEST variable. */
c906108c 7943 ULONGEST mask = 1;
a744cf53 7944
911c95a5 7945 mask = (mask << address_size) - 1;
c906108c
SS
7946 addr &= mask;
7947 }
7948 return addr;
7949}
7950
7951/* Determine whether the remote target supports binary downloading.
7952 This is accomplished by sending a no-op memory write of zero length
7953 to the target at the specified address. It does not suffice to send
23860348
MS
7954 the whole packet, since many stubs strip the eighth bit and
7955 subsequently compute a wrong checksum, which causes real havoc with
7956 remote_write_bytes.
7a292a7a 7957
96baa820 7958 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 7959 clean. In cases like this, the user should clear "remote
23860348 7960 X-packet". */
96baa820 7961
c906108c 7962static void
fba45db2 7963check_binary_download (CORE_ADDR addr)
c906108c 7964{
d01949b6 7965 struct remote_state *rs = get_remote_state ();
24b06219 7966
4082afcc 7967 switch (packet_support (PACKET_X))
c906108c 7968 {
96baa820
JM
7969 case PACKET_DISABLE:
7970 break;
7971 case PACKET_ENABLE:
7972 break;
7973 case PACKET_SUPPORT_UNKNOWN:
7974 {
96baa820 7975 char *p;
802188a7 7976
2e9f7625 7977 p = rs->buf;
96baa820
JM
7978 *p++ = 'X';
7979 p += hexnumstr (p, (ULONGEST) addr);
7980 *p++ = ',';
7981 p += hexnumstr (p, (ULONGEST) 0);
7982 *p++ = ':';
7983 *p = '\0';
802188a7 7984
2e9f7625 7985 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 7986 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 7987
2e9f7625 7988 if (rs->buf[0] == '\0')
96baa820
JM
7989 {
7990 if (remote_debug)
7991 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
7992 "binary downloading NOT "
7993 "supported by target\n");
444abaca 7994 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
7995 }
7996 else
7997 {
7998 if (remote_debug)
7999 fprintf_unfiltered (gdb_stdlog,
64b9b334 8000 "binary downloading supported by target\n");
444abaca 8001 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8002 }
8003 break;
8004 }
c906108c
SS
8005 }
8006}
8007
124e13d9
SM
8008/* Helper function to resize the payload in order to try to get a good
8009 alignment. We try to write an amount of data such that the next write will
8010 start on an address aligned on REMOTE_ALIGN_WRITES. */
8011
8012static int
8013align_for_efficient_write (int todo, CORE_ADDR memaddr)
8014{
8015 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8016}
8017
c906108c
SS
8018/* Write memory data directly to the remote machine.
8019 This does not inform the data cache; the data cache uses this.
a76d924d 8020 HEADER is the starting part of the packet.
c906108c
SS
8021 MEMADDR is the address in the remote memory space.
8022 MYADDR is the address of the buffer in our space.
124e13d9
SM
8023 LEN_UNITS is the number of addressable units to write.
8024 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8025 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8026 should send data as binary ('X'), or hex-encoded ('M').
8027
8028 The function creates packet of the form
8029 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8030
124e13d9 8031 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8032
8033 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8034 are omitted.
8035
9b409511 8036 Return the transferred status, error or OK (an
124e13d9
SM
8037 'enum target_xfer_status' value). Save the number of addressable units
8038 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8039
8040 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8041 exchange between gdb and the stub could look like (?? in place of the
8042 checksum):
8043
8044 -> $m1000,4#??
8045 <- aaaabbbbccccdddd
8046
8047 -> $M1000,3:eeeeffffeeee#??
8048 <- OK
8049
8050 -> $m1000,4#??
8051 <- eeeeffffeeeedddd */
c906108c 8052
9b409511 8053static enum target_xfer_status
a76d924d 8054remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
124e13d9
SM
8055 const gdb_byte *myaddr, ULONGEST len_units,
8056 int unit_size, ULONGEST *xfered_len_units,
8057 char packet_format, int use_length)
c906108c 8058{
6d820c5c 8059 struct remote_state *rs = get_remote_state ();
cfd77fa1 8060 char *p;
a76d924d
DJ
8061 char *plen = NULL;
8062 int plenlen = 0;
124e13d9
SM
8063 int todo_units;
8064 int units_written;
8065 int payload_capacity_bytes;
8066 int payload_length_bytes;
a76d924d
DJ
8067
8068 if (packet_format != 'X' && packet_format != 'M')
8069 internal_error (__FILE__, __LINE__,
9b20d036 8070 _("remote_write_bytes_aux: bad packet format"));
c906108c 8071
124e13d9 8072 if (len_units == 0)
9b409511 8073 return TARGET_XFER_EOF;
b2182ed2 8074
124e13d9 8075 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8076
6d820c5c
DJ
8077 /* The packet buffer will be large enough for the payload;
8078 get_memory_packet_size ensures this. */
a76d924d 8079 rs->buf[0] = '\0';
c906108c 8080
a257b5bb 8081 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8082 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8083
124e13d9 8084 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8085 if (!use_length)
0df8b418 8086 /* The comma won't be used. */
124e13d9
SM
8087 payload_capacity_bytes += 1;
8088 payload_capacity_bytes -= strlen (header);
8089 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8090
a76d924d 8091 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8092
a76d924d
DJ
8093 strcat (rs->buf, header);
8094 p = rs->buf + strlen (header);
8095
8096 /* Compute a best guess of the number of bytes actually transfered. */
8097 if (packet_format == 'X')
c906108c 8098 {
23860348 8099 /* Best guess at number of bytes that will fit. */
325fac50
PA
8100 todo_units = std::min (len_units,
8101 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8102 if (use_length)
124e13d9 8103 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8104 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8105 }
8106 else
8107 {
124e13d9 8108 /* Number of bytes that will fit. */
325fac50
PA
8109 todo_units
8110 = std::min (len_units,
8111 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8112 if (use_length)
124e13d9 8113 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8114 todo_units = std::min (todo_units,
8115 (payload_capacity_bytes / unit_size) / 2);
917317f4 8116 }
a76d924d 8117
124e13d9 8118 if (todo_units <= 0)
3de11b2e 8119 internal_error (__FILE__, __LINE__,
405f8e94 8120 _("minimum packet size too small to write data"));
802188a7 8121
6765f3e5
DJ
8122 /* If we already need another packet, then try to align the end
8123 of this packet to a useful boundary. */
124e13d9
SM
8124 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8125 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8126
a257b5bb 8127 /* Append "<memaddr>". */
917317f4
JM
8128 memaddr = remote_address_masked (memaddr);
8129 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8130
a76d924d
DJ
8131 if (use_length)
8132 {
8133 /* Append ",". */
8134 *p++ = ',';
802188a7 8135
124e13d9
SM
8136 /* Append the length and retain its location and size. It may need to be
8137 adjusted once the packet body has been created. */
a76d924d 8138 plen = p;
124e13d9 8139 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8140 p += plenlen;
8141 }
a257b5bb
AC
8142
8143 /* Append ":". */
917317f4
JM
8144 *p++ = ':';
8145 *p = '\0';
802188a7 8146
a257b5bb 8147 /* Append the packet body. */
a76d924d 8148 if (packet_format == 'X')
917317f4 8149 {
917317f4
JM
8150 /* Binary mode. Send target system values byte by byte, in
8151 increasing byte addresses. Only escape certain critical
8152 characters. */
124e13d9
SM
8153 payload_length_bytes =
8154 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8155 &units_written, payload_capacity_bytes);
6765f3e5 8156
124e13d9 8157 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8158 a second try to keep the end of the packet aligned. Don't do
8159 this if the packet is tiny. */
124e13d9 8160 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8161 {
124e13d9
SM
8162 int new_todo_units;
8163
8164 new_todo_units = align_for_efficient_write (units_written, memaddr);
8165
8166 if (new_todo_units != units_written)
8167 payload_length_bytes =
8168 remote_escape_output (myaddr, new_todo_units, unit_size,
8169 (gdb_byte *) p, &units_written,
8170 payload_capacity_bytes);
6765f3e5
DJ
8171 }
8172
124e13d9
SM
8173 p += payload_length_bytes;
8174 if (use_length && units_written < todo_units)
c906108c 8175 {
802188a7 8176 /* Escape chars have filled up the buffer prematurely,
124e13d9 8177 and we have actually sent fewer units than planned.
917317f4
JM
8178 Fix-up the length field of the packet. Use the same
8179 number of characters as before. */
124e13d9
SM
8180 plen += hexnumnstr (plen, (ULONGEST) units_written,
8181 plenlen);
917317f4 8182 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8183 }
a76d924d
DJ
8184 }
8185 else
8186 {
917317f4
JM
8187 /* Normal mode: Send target system values byte by byte, in
8188 increasing byte addresses. Each byte is encoded as a two hex
8189 value. */
124e13d9
SM
8190 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8191 units_written = todo_units;
c906108c 8192 }
802188a7 8193
2e9f7625 8194 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8195 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8196
2e9f7625 8197 if (rs->buf[0] == 'E')
00d84524 8198 return TARGET_XFER_E_IO;
802188a7 8199
124e13d9
SM
8200 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8201 send fewer units than we'd planned. */
8202 *xfered_len_units = (ULONGEST) units_written;
92ffd475 8203 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
8204}
8205
a76d924d
DJ
8206/* Write memory data directly to the remote machine.
8207 This does not inform the data cache; the data cache uses this.
8208 MEMADDR is the address in the remote memory space.
8209 MYADDR is the address of the buffer in our space.
8210 LEN is the number of bytes.
8211
9b409511
YQ
8212 Return the transferred status, error or OK (an
8213 'enum target_xfer_status' value). Save the number of bytes
8214 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8215
9b409511
YQ
8216static enum target_xfer_status
8217remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
124e13d9 8218 int unit_size, ULONGEST *xfered_len)
a76d924d 8219{
a121b7c1 8220 const char *packet_format = NULL;
a76d924d
DJ
8221
8222 /* Check whether the target supports binary download. */
8223 check_binary_download (memaddr);
8224
4082afcc 8225 switch (packet_support (PACKET_X))
a76d924d
DJ
8226 {
8227 case PACKET_ENABLE:
8228 packet_format = "X";
8229 break;
8230 case PACKET_DISABLE:
8231 packet_format = "M";
8232 break;
8233 case PACKET_SUPPORT_UNKNOWN:
8234 internal_error (__FILE__, __LINE__,
8235 _("remote_write_bytes: bad internal state"));
8236 default:
8237 internal_error (__FILE__, __LINE__, _("bad switch"));
8238 }
8239
8240 return remote_write_bytes_aux (packet_format,
124e13d9 8241 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8242 packet_format[0], 1);
a76d924d
DJ
8243}
8244
9217e74e
YQ
8245/* Read memory data directly from the remote machine.
8246 This does not use the data cache; the data cache uses this.
8247 MEMADDR is the address in the remote memory space.
8248 MYADDR is the address of the buffer in our space.
124e13d9
SM
8249 LEN_UNITS is the number of addressable memory units to read..
8250 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8251
8252 Return the transferred status, error or OK (an
8253 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8254 transferred in *XFERED_LEN_UNITS.
8255
8256 See the comment of remote_write_bytes_aux for an example of
8257 memory read/write exchange between gdb and the stub. */
9217e74e
YQ
8258
8259static enum target_xfer_status
124e13d9
SM
8260remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
8261 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8262{
8263 struct remote_state *rs = get_remote_state ();
124e13d9 8264 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8265 char *p;
124e13d9
SM
8266 int todo_units;
8267 int decoded_bytes;
9217e74e 8268
124e13d9 8269 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8270 /* The packet buffer will be large enough for the payload;
8271 get_memory_packet_size ensures this. */
8272
124e13d9 8273 /* Number of units that will fit. */
325fac50
PA
8274 todo_units = std::min (len_units,
8275 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8276
8277 /* Construct "m"<memaddr>","<len>". */
8278 memaddr = remote_address_masked (memaddr);
8279 p = rs->buf;
8280 *p++ = 'm';
8281 p += hexnumstr (p, (ULONGEST) memaddr);
8282 *p++ = ',';
124e13d9 8283 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8284 *p = '\0';
8285 putpkt (rs->buf);
8286 getpkt (&rs->buf, &rs->buf_size, 0);
8287 if (rs->buf[0] == 'E'
8288 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8289 && rs->buf[3] == '\0')
8290 return TARGET_XFER_E_IO;
8291 /* Reply describes memory byte by byte, each byte encoded as two hex
8292 characters. */
8293 p = rs->buf;
124e13d9 8294 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8295 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8296 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
92ffd475 8297 return (*xfered_len_units != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
9217e74e
YQ
8298}
8299
b55fbac4
YQ
8300/* Using the set of read-only target sections of remote, read live
8301 read-only memory.
8acf9577
YQ
8302
8303 For interface/parameters/return description see target.h,
8304 to_xfer_partial. */
8305
8306static enum target_xfer_status
b55fbac4
YQ
8307remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
8308 ULONGEST memaddr, ULONGEST len,
124e13d9 8309 int unit_size, ULONGEST *xfered_len)
8acf9577
YQ
8310{
8311 struct target_section *secp;
8312 struct target_section_table *table;
8313
8314 secp = target_section_by_addr (ops, memaddr);
8315 if (secp != NULL
8316 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8317 secp->the_bfd_section)
8318 & SEC_READONLY))
8319 {
8320 struct target_section *p;
8321 ULONGEST memend = memaddr + len;
8322
8323 table = target_get_section_table (ops);
8324
8325 for (p = table->sections; p < table->sections_end; p++)
8326 {
8327 if (memaddr >= p->addr)
8328 {
8329 if (memend <= p->endaddr)
8330 {
8331 /* Entire transfer is within this section. */
124e13d9 8332 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8333 xfered_len);
8acf9577
YQ
8334 }
8335 else if (memaddr >= p->endaddr)
8336 {
8337 /* This section ends before the transfer starts. */
8338 continue;
8339 }
8340 else
8341 {
8342 /* This section overlaps the transfer. Just do half. */
8343 len = p->endaddr - memaddr;
124e13d9 8344 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8345 xfered_len);
8acf9577
YQ
8346 }
8347 }
8348 }
8349 }
8350
8351 return TARGET_XFER_EOF;
8352}
8353
9217e74e
YQ
8354/* Similar to remote_read_bytes_1, but it reads from the remote stub
8355 first if the requested memory is unavailable in traceframe.
8356 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8357
9b409511 8358static enum target_xfer_status
8acf9577 8359remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
124e13d9
SM
8360 gdb_byte *myaddr, ULONGEST len, int unit_size,
8361 ULONGEST *xfered_len)
c906108c 8362{
6b6aa828 8363 if (len == 0)
96c4f946 8364 return TARGET_XFER_EOF;
b2182ed2 8365
8acf9577
YQ
8366 if (get_traceframe_number () != -1)
8367 {
a79b1bc6 8368 std::vector<mem_range> available;
8acf9577
YQ
8369
8370 /* If we fail to get the set of available memory, then the
8371 target does not support querying traceframe info, and so we
8372 attempt reading from the traceframe anyway (assuming the
8373 target implements the old QTro packet then). */
8374 if (traceframe_available_memory (&available, memaddr, len))
8375 {
a79b1bc6 8376 if (available.empty () || available[0].start != memaddr)
8acf9577
YQ
8377 {
8378 enum target_xfer_status res;
8379
8380 /* Don't read into the traceframe's available
8381 memory. */
a79b1bc6 8382 if (!available.empty ())
8acf9577
YQ
8383 {
8384 LONGEST oldlen = len;
8385
a79b1bc6 8386 len = available[0].start - memaddr;
8acf9577
YQ
8387 gdb_assert (len <= oldlen);
8388 }
8389
8acf9577 8390 /* This goes through the topmost target again. */
b55fbac4 8391 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
124e13d9 8392 len, unit_size, xfered_len);
8acf9577
YQ
8393 if (res == TARGET_XFER_OK)
8394 return TARGET_XFER_OK;
8395 else
8396 {
8397 /* No use trying further, we know some memory starting
8398 at MEMADDR isn't available. */
8399 *xfered_len = len;
92ffd475
PC
8400 return (*xfered_len != 0) ?
8401 TARGET_XFER_UNAVAILABLE : TARGET_XFER_EOF;
8acf9577
YQ
8402 }
8403 }
8404
8405 /* Don't try to read more than how much is available, in
8406 case the target implements the deprecated QTro packet to
8407 cater for older GDBs (the target's knowledge of read-only
8408 sections may be outdated by now). */
a79b1bc6 8409 len = available[0].length;
8acf9577
YQ
8410 }
8411 }
8412
124e13d9 8413 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8414}
74531fed 8415
c906108c 8416\f
c906108c 8417
a76d924d
DJ
8418/* Sends a packet with content determined by the printf format string
8419 FORMAT and the remaining arguments, then gets the reply. Returns
8420 whether the packet was a success, a failure, or unknown. */
8421
77b64a49
PA
8422static enum packet_result remote_send_printf (const char *format, ...)
8423 ATTRIBUTE_PRINTF (1, 2);
8424
2c0b251b 8425static enum packet_result
a76d924d
DJ
8426remote_send_printf (const char *format, ...)
8427{
8428 struct remote_state *rs = get_remote_state ();
8429 int max_size = get_remote_packet_size ();
a76d924d 8430 va_list ap;
a744cf53 8431
a76d924d
DJ
8432 va_start (ap, format);
8433
8434 rs->buf[0] = '\0';
8435 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 8436 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8437
8438 if (putpkt (rs->buf) < 0)
8439 error (_("Communication problem with target."));
8440
8441 rs->buf[0] = '\0';
8442 getpkt (&rs->buf, &rs->buf_size, 0);
8443
8444 return packet_check_result (rs->buf);
8445}
8446
a76d924d
DJ
8447/* Flash writing can take quite some time. We'll set
8448 effectively infinite timeout for flash operations.
8449 In future, we'll need to decide on a better approach. */
8450static const int remote_flash_timeout = 1000;
8451
8452static void
8453remote_flash_erase (struct target_ops *ops,
8454 ULONGEST address, LONGEST length)
8455{
f5656ead 8456 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8457 enum packet_result ret;
2ec845e7
TT
8458 scoped_restore restore_timeout
8459 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8460
8461 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8462 phex (address, addr_size),
a76d924d
DJ
8463 phex (length, 4));
8464 switch (ret)
8465 {
8466 case PACKET_UNKNOWN:
8467 error (_("Remote target does not support flash erase"));
8468 case PACKET_ERROR:
8469 error (_("Error erasing flash with vFlashErase packet"));
8470 default:
8471 break;
8472 }
a76d924d
DJ
8473}
8474
9b409511
YQ
8475static enum target_xfer_status
8476remote_flash_write (struct target_ops *ops, ULONGEST address,
8477 ULONGEST length, ULONGEST *xfered_len,
8478 const gdb_byte *data)
a76d924d 8479{
2ec845e7
TT
8480 scoped_restore restore_timeout
8481 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8482 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8483 xfered_len,'X', 0);
a76d924d
DJ
8484}
8485
8486static void
8487remote_flash_done (struct target_ops *ops)
8488{
a76d924d 8489 int ret;
a76d924d 8490
2ec845e7
TT
8491 scoped_restore restore_timeout
8492 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8493
a76d924d 8494 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8495
8496 switch (ret)
8497 {
8498 case PACKET_UNKNOWN:
8499 error (_("Remote target does not support vFlashDone"));
8500 case PACKET_ERROR:
8501 error (_("Error finishing flash operation"));
8502 default:
8503 break;
8504 }
8505}
8506
c906108c 8507static void
fba45db2 8508remote_files_info (struct target_ops *ignore)
c906108c
SS
8509{
8510 puts_filtered ("Debugging a target over a serial line.\n");
8511}
8512\f
8513/* Stuff for dealing with the packets which are part of this protocol.
8514 See comment at top of file for details. */
8515
1927e618
PA
8516/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8517 error to higher layers. Called when a serial error is detected.
8518 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8519 the system error message for errno at function entry and final dot
8520 for output compatibility with throw_perror_with_name. */
1927e618
PA
8521
8522static void
8523unpush_and_perror (const char *string)
8524{
d6cb50a2 8525 int saved_errno = errno;
1927e618
PA
8526
8527 remote_unpush_target ();
d6cb50a2
JK
8528 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8529 safe_strerror (saved_errno));
1927e618
PA
8530}
8531
048094ac
PA
8532/* Read a single character from the remote end. The current quit
8533 handler is overridden to avoid quitting in the middle of packet
8534 sequence, as that would break communication with the remote server.
8535 See remote_serial_quit_handler for more detail. */
c906108c
SS
8536
8537static int
fba45db2 8538readchar (int timeout)
c906108c
SS
8539{
8540 int ch;
5d93a237 8541 struct remote_state *rs = get_remote_state ();
048094ac 8542
2ec845e7
TT
8543 {
8544 scoped_restore restore_quit
8545 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
c906108c 8546
2ec845e7 8547 rs->got_ctrlc_during_io = 0;
c906108c 8548
2ec845e7 8549 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8550
2ec845e7
TT
8551 if (rs->got_ctrlc_during_io)
8552 set_quit_flag ();
8553 }
048094ac 8554
2acceee2 8555 if (ch >= 0)
0876f84a 8556 return ch;
2acceee2
JM
8557
8558 switch ((enum serial_rc) ch)
c906108c
SS
8559 {
8560 case SERIAL_EOF:
78a095c3 8561 remote_unpush_target ();
598d3636 8562 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8563 /* no return */
c906108c 8564 case SERIAL_ERROR:
1927e618
PA
8565 unpush_and_perror (_("Remote communication error. "
8566 "Target disconnected."));
2acceee2 8567 /* no return */
c906108c 8568 case SERIAL_TIMEOUT:
2acceee2 8569 break;
c906108c 8570 }
2acceee2 8571 return ch;
c906108c
SS
8572}
8573
c33e31fd 8574/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8575 writing fails. The current quit handler is overridden to avoid
8576 quitting in the middle of packet sequence, as that would break
8577 communication with the remote server. See
8578 remote_serial_quit_handler for more detail. */
c33e31fd
PA
8579
8580static void
8581remote_serial_write (const char *str, int len)
8582{
5d93a237 8583 struct remote_state *rs = get_remote_state ();
048094ac 8584
2ec845e7
TT
8585 scoped_restore restore_quit
8586 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
048094ac
PA
8587
8588 rs->got_ctrlc_during_io = 0;
5d93a237
TT
8589
8590 if (serial_write (rs->remote_desc, str, len))
c33e31fd 8591 {
1927e618
PA
8592 unpush_and_perror (_("Remote communication error. "
8593 "Target disconnected."));
c33e31fd 8594 }
048094ac
PA
8595
8596 if (rs->got_ctrlc_during_io)
8597 set_quit_flag ();
c33e31fd
PA
8598}
8599
6d820c5c
DJ
8600/* Send the command in *BUF to the remote machine, and read the reply
8601 into *BUF. Report an error if we get an error reply. Resize
8602 *BUF using xrealloc if necessary to hold the result, and update
8603 *SIZEOF_BUF. */
c906108c
SS
8604
8605static void
6d820c5c
DJ
8606remote_send (char **buf,
8607 long *sizeof_buf)
c906108c 8608{
6d820c5c 8609 putpkt (*buf);
c2d11a7d 8610 getpkt (buf, sizeof_buf, 0);
c906108c 8611
6d820c5c
DJ
8612 if ((*buf)[0] == 'E')
8613 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
8614}
8615
b3ced9ba
PA
8616/* Return a string representing an escaped version of BUF, of len N.
8617 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 8618
b3ced9ba 8619static std::string
6e5abd65
PA
8620escape_buffer (const char *buf, int n)
8621{
d7e74731 8622 string_file stb;
6e5abd65 8623
d7e74731
PA
8624 stb.putstrn (buf, n, '\\');
8625 return std::move (stb.string ());
6e5abd65
PA
8626}
8627
c906108c
SS
8628/* Display a null-terminated packet on stdout, for debugging, using C
8629 string notation. */
8630
8631static void
baa336ce 8632print_packet (const char *buf)
c906108c
SS
8633{
8634 puts_filtered ("\"");
43e526b9 8635 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
8636 puts_filtered ("\"");
8637}
8638
8639int
baa336ce 8640putpkt (const char *buf)
c906108c
SS
8641{
8642 return putpkt_binary (buf, strlen (buf));
8643}
8644
8645/* Send a packet to the remote machine, with error checking. The data
23860348 8646 of the packet is in BUF. The string in BUF can be at most
ea9c271d 8647 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
8648 and for a possible /0 if we are debugging (remote_debug) and want
8649 to print the sent packet as a string. */
c906108c
SS
8650
8651static int
baa336ce 8652putpkt_binary (const char *buf, int cnt)
c906108c 8653{
2d717e4f 8654 struct remote_state *rs = get_remote_state ();
c906108c
SS
8655 int i;
8656 unsigned char csum = 0;
b80406ac
TT
8657 gdb::def_vector<char> data (cnt + 6);
8658 char *buf2 = data.data ();
085dd6e6 8659
c906108c
SS
8660 int ch;
8661 int tcount = 0;
8662 char *p;
8663
e24a49d8
PA
8664 /* Catch cases like trying to read memory or listing threads while
8665 we're waiting for a stop reply. The remote server wouldn't be
8666 ready to handle this request, so we'd hang and timeout. We don't
8667 have to worry about this in synchronous mode, because in that
8668 case it's not possible to issue a command while the target is
74531fed
PA
8669 running. This is not a problem in non-stop mode, because in that
8670 case, the stub is always ready to process serial input. */
6efcd9a8
PA
8671 if (!target_is_non_stop_p ()
8672 && target_is_async_p ()
8673 && rs->waiting_for_stop_reply)
9597b22a
DE
8674 {
8675 error (_("Cannot execute this command while the target is running.\n"
8676 "Use the \"interrupt\" command to stop the target\n"
8677 "and then try again."));
8678 }
e24a49d8 8679
2d717e4f
DJ
8680 /* We're sending out a new packet. Make sure we don't look at a
8681 stale cached response. */
8682 rs->cached_wait_status = 0;
8683
c906108c
SS
8684 /* Copy the packet into buffer BUF2, encapsulating it
8685 and giving it a checksum. */
8686
c906108c
SS
8687 p = buf2;
8688 *p++ = '$';
8689
8690 for (i = 0; i < cnt; i++)
8691 {
8692 csum += buf[i];
8693 *p++ = buf[i];
8694 }
8695 *p++ = '#';
8696 *p++ = tohex ((csum >> 4) & 0xf);
8697 *p++ = tohex (csum & 0xf);
8698
8699 /* Send it over and over until we get a positive ack. */
8700
8701 while (1)
8702 {
8703 int started_error_output = 0;
8704
8705 if (remote_debug)
8706 {
8707 *p = '\0';
b3ced9ba 8708
6f8976bf
YQ
8709 int len = (int) (p - buf2);
8710
8711 std::string str
8712 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
8713
8714 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
8715
8716 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
8717 {
8718 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
8719 str.length () - REMOTE_DEBUG_MAX_CHAR);
8720 }
8721
8722 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 8723
0f71a2f6 8724 gdb_flush (gdb_stdlog);
c906108c 8725 }
c33e31fd 8726 remote_serial_write (buf2, p - buf2);
c906108c 8727
a6f3e723
SL
8728 /* If this is a no acks version of the remote protocol, send the
8729 packet and move on. */
8730 if (rs->noack_mode)
8731 break;
8732
74531fed
PA
8733 /* Read until either a timeout occurs (-2) or '+' is read.
8734 Handle any notification that arrives in the mean time. */
c906108c
SS
8735 while (1)
8736 {
8737 ch = readchar (remote_timeout);
8738
c5aa993b 8739 if (remote_debug)
c906108c
SS
8740 {
8741 switch (ch)
8742 {
8743 case '+':
1216fa2c 8744 case '-':
c906108c
SS
8745 case SERIAL_TIMEOUT:
8746 case '$':
74531fed 8747 case '%':
c906108c
SS
8748 if (started_error_output)
8749 {
8750 putchar_unfiltered ('\n');
8751 started_error_output = 0;
8752 }
8753 }
8754 }
8755
8756 switch (ch)
8757 {
8758 case '+':
8759 if (remote_debug)
0f71a2f6 8760 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 8761 return 1;
1216fa2c
AC
8762 case '-':
8763 if (remote_debug)
8764 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 8765 /* FALLTHROUGH */
c906108c 8766 case SERIAL_TIMEOUT:
c5aa993b 8767 tcount++;
c906108c 8768 if (tcount > 3)
b80406ac 8769 return 0;
23860348 8770 break; /* Retransmit buffer. */
c906108c
SS
8771 case '$':
8772 {
40e3f985 8773 if (remote_debug)
2bc416ba 8774 fprintf_unfiltered (gdb_stdlog,
23860348 8775 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
8776 /* It's probably an old response sent because an ACK
8777 was lost. Gobble up the packet and ack it so it
8778 doesn't get retransmitted when we resend this
8779 packet. */
6d820c5c 8780 skip_frame ();
c33e31fd 8781 remote_serial_write ("+", 1);
23860348 8782 continue; /* Now, go look for +. */
c906108c 8783 }
74531fed
PA
8784
8785 case '%':
8786 {
8787 int val;
8788
8789 /* If we got a notification, handle it, and go back to looking
8790 for an ack. */
8791 /* We've found the start of a notification. Now
8792 collect the data. */
8793 val = read_frame (&rs->buf, &rs->buf_size);
8794 if (val >= 0)
8795 {
8796 if (remote_debug)
8797 {
b3ced9ba 8798 std::string str = escape_buffer (rs->buf, val);
6e5abd65 8799
6e5abd65
PA
8800 fprintf_unfiltered (gdb_stdlog,
8801 " Notification received: %s\n",
b3ced9ba 8802 str.c_str ());
74531fed 8803 }
5965e028 8804 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
8805 /* We're in sync now, rewait for the ack. */
8806 tcount = 0;
8807 }
8808 else
8809 {
8810 if (remote_debug)
8811 {
8812 if (!started_error_output)
8813 {
8814 started_error_output = 1;
8815 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8816 }
8817 fputc_unfiltered (ch & 0177, gdb_stdlog);
8818 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8819 }
8820 }
8821 continue;
8822 }
8823 /* fall-through */
c906108c
SS
8824 default:
8825 if (remote_debug)
8826 {
8827 if (!started_error_output)
8828 {
8829 started_error_output = 1;
0f71a2f6 8830 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 8831 }
0f71a2f6 8832 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
8833 }
8834 continue;
8835 }
23860348 8836 break; /* Here to retransmit. */
c906108c
SS
8837 }
8838
8839#if 0
8840 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
8841 able to get out next time we call QUIT, without anything as
8842 violent as interrupt_query. If we want to provide a way out of
8843 here without getting to the next QUIT, it should be based on
8844 hitting ^C twice as in remote_wait. */
c906108c
SS
8845 if (quit_flag)
8846 {
8847 quit_flag = 0;
8848 interrupt_query ();
8849 }
8850#endif
8851 }
a5c0808e 8852
a6f3e723 8853 return 0;
c906108c
SS
8854}
8855
6d820c5c
DJ
8856/* Come here after finding the start of a frame when we expected an
8857 ack. Do our best to discard the rest of this packet. */
8858
8859static void
8860skip_frame (void)
8861{
8862 int c;
8863
8864 while (1)
8865 {
8866 c = readchar (remote_timeout);
8867 switch (c)
8868 {
8869 case SERIAL_TIMEOUT:
8870 /* Nothing we can do. */
8871 return;
8872 case '#':
8873 /* Discard the two bytes of checksum and stop. */
8874 c = readchar (remote_timeout);
8875 if (c >= 0)
8876 c = readchar (remote_timeout);
8877
8878 return;
8879 case '*': /* Run length encoding. */
8880 /* Discard the repeat count. */
8881 c = readchar (remote_timeout);
8882 if (c < 0)
8883 return;
8884 break;
8885 default:
8886 /* A regular character. */
8887 break;
8888 }
8889 }
8890}
8891
c906108c 8892/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
8893 into *BUF, verifying the checksum, length, and handling run-length
8894 compression. NUL terminate the buffer. If there is not enough room,
8895 expand *BUF using xrealloc.
c906108c 8896
c2d11a7d
JM
8897 Returns -1 on error, number of characters in buffer (ignoring the
8898 trailing NULL) on success. (could be extended to return one of the
23860348 8899 SERIAL status indications). */
c2d11a7d
JM
8900
8901static long
6d820c5c
DJ
8902read_frame (char **buf_p,
8903 long *sizeof_buf)
c906108c
SS
8904{
8905 unsigned char csum;
c2d11a7d 8906 long bc;
c906108c 8907 int c;
6d820c5c 8908 char *buf = *buf_p;
a6f3e723 8909 struct remote_state *rs = get_remote_state ();
c906108c
SS
8910
8911 csum = 0;
c2d11a7d 8912 bc = 0;
c906108c
SS
8913
8914 while (1)
8915 {
8916 c = readchar (remote_timeout);
c906108c
SS
8917 switch (c)
8918 {
8919 case SERIAL_TIMEOUT:
8920 if (remote_debug)
0f71a2f6 8921 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 8922 return -1;
c906108c
SS
8923 case '$':
8924 if (remote_debug)
0f71a2f6
JM
8925 fputs_filtered ("Saw new packet start in middle of old one\n",
8926 gdb_stdlog);
23860348 8927 return -1; /* Start a new packet, count retries. */
c906108c
SS
8928 case '#':
8929 {
8930 unsigned char pktcsum;
e1b09194
AC
8931 int check_0 = 0;
8932 int check_1 = 0;
c906108c 8933
c2d11a7d 8934 buf[bc] = '\0';
c906108c 8935
e1b09194
AC
8936 check_0 = readchar (remote_timeout);
8937 if (check_0 >= 0)
8938 check_1 = readchar (remote_timeout);
802188a7 8939
e1b09194
AC
8940 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8941 {
8942 if (remote_debug)
2bc416ba 8943 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 8944 gdb_stdlog);
e1b09194
AC
8945 return -1;
8946 }
8947 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
8948 {
8949 if (remote_debug)
2bc416ba 8950 fputs_filtered ("Communication error in checksum\n",
23860348 8951 gdb_stdlog);
40e3f985
FN
8952 return -1;
8953 }
c906108c 8954
a6f3e723
SL
8955 /* Don't recompute the checksum; with no ack packets we
8956 don't have any way to indicate a packet retransmission
8957 is necessary. */
8958 if (rs->noack_mode)
8959 return bc;
8960
e1b09194 8961 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 8962 if (csum == pktcsum)
c2d11a7d 8963 return bc;
c906108c 8964
c5aa993b 8965 if (remote_debug)
c906108c 8966 {
b3ced9ba 8967 std::string str = escape_buffer (buf, bc);
6e5abd65 8968
6e5abd65 8969 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8970 "Bad checksum, sentsum=0x%x, "
8971 "csum=0x%x, buf=%s\n",
b3ced9ba 8972 pktcsum, csum, str.c_str ());
c906108c 8973 }
c2d11a7d 8974 /* Number of characters in buffer ignoring trailing
23860348 8975 NULL. */
c2d11a7d 8976 return -1;
c906108c 8977 }
23860348 8978 case '*': /* Run length encoding. */
c2c6d25f
JM
8979 {
8980 int repeat;
c906108c 8981
a744cf53 8982 csum += c;
b4501125
AC
8983 c = readchar (remote_timeout);
8984 csum += c;
23860348 8985 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 8986
23860348 8987 /* The character before ``*'' is repeated. */
c2d11a7d 8988
6d820c5c 8989 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 8990 {
6d820c5c
DJ
8991 if (bc + repeat - 1 >= *sizeof_buf - 1)
8992 {
8993 /* Make some more room in the buffer. */
8994 *sizeof_buf += repeat;
224c3ddb 8995 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
8996 buf = *buf_p;
8997 }
8998
c2d11a7d
JM
8999 memset (&buf[bc], buf[bc - 1], repeat);
9000 bc += repeat;
c2c6d25f
JM
9001 continue;
9002 }
9003
c2d11a7d 9004 buf[bc] = '\0';
6d820c5c 9005 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9006 return -1;
c2c6d25f 9007 }
c906108c 9008 default:
6d820c5c 9009 if (bc >= *sizeof_buf - 1)
c906108c 9010 {
6d820c5c
DJ
9011 /* Make some more room in the buffer. */
9012 *sizeof_buf *= 2;
224c3ddb 9013 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 9014 buf = *buf_p;
c906108c
SS
9015 }
9016
6d820c5c
DJ
9017 buf[bc++] = c;
9018 csum += c;
9019 continue;
c906108c
SS
9020 }
9021 }
9022}
9023
9024/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9025 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9026 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9027 rather than timing out; this is used (in synchronous mode) to wait
9028 for a target that is is executing user code to stop. */
d9fcf2fb
JM
9029/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9030 don't have to change all the calls to getpkt to deal with the
9031 return value, because at the moment I don't know what the right
23860348 9032 thing to do it for those. */
c906108c 9033void
6d820c5c
DJ
9034getpkt (char **buf,
9035 long *sizeof_buf,
c2d11a7d 9036 int forever)
d9fcf2fb 9037{
54887903 9038 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
9039}
9040
9041
9042/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9043 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9044 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9045 rather than timing out; this is used (in synchronous mode) to wait
9046 for a target that is is executing user code to stop. If FOREVER ==
9047 0, this function is allowed to time out gracefully and return an
74531fed
PA
9048 indication of this to the caller. Otherwise return the number of
9049 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
9050 enough reason to return to the caller. *IS_NOTIF is an output
9051 boolean that indicates whether *BUF holds a notification or not
9052 (a regular packet). */
74531fed 9053
3172dc30 9054static int
74531fed 9055getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 9056 int expecting_notif, int *is_notif)
c906108c 9057{
2d717e4f 9058 struct remote_state *rs = get_remote_state ();
c906108c
SS
9059 int c;
9060 int tries;
9061 int timeout;
df4b58fe 9062 int val = -1;
c906108c 9063
2d717e4f
DJ
9064 /* We're reading a new response. Make sure we don't look at a
9065 previously cached response. */
9066 rs->cached_wait_status = 0;
9067
6d820c5c 9068 strcpy (*buf, "timeout");
c906108c
SS
9069
9070 if (forever)
74531fed
PA
9071 timeout = watchdog > 0 ? watchdog : -1;
9072 else if (expecting_notif)
9073 timeout = 0; /* There should already be a char in the buffer. If
9074 not, bail out. */
c906108c
SS
9075 else
9076 timeout = remote_timeout;
9077
9078#define MAX_TRIES 3
9079
74531fed
PA
9080 /* Process any number of notifications, and then return when
9081 we get a packet. */
9082 for (;;)
c906108c 9083 {
d9c43928 9084 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9085 times. */
9086 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9087 {
74531fed
PA
9088 /* This can loop forever if the remote side sends us
9089 characters continuously, but if it pauses, we'll get
9090 SERIAL_TIMEOUT from readchar because of timeout. Then
9091 we'll count that as a retry.
9092
9093 Note that even when forever is set, we will only wait
9094 forever prior to the start of a packet. After that, we
9095 expect characters to arrive at a brisk pace. They should
9096 show up within remote_timeout intervals. */
9097 do
9098 c = readchar (timeout);
9099 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9100
9101 if (c == SERIAL_TIMEOUT)
9102 {
74531fed
PA
9103 if (expecting_notif)
9104 return -1; /* Don't complain, it's normal to not get
9105 anything in this case. */
9106
23860348 9107 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9108 {
78a095c3 9109 remote_unpush_target ();
598d3636
JK
9110 throw_error (TARGET_CLOSE_ERROR,
9111 _("Watchdog timeout has expired. "
9112 "Target detached."));
c906108c 9113 }
c906108c 9114 if (remote_debug)
0f71a2f6 9115 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9116 }
74531fed
PA
9117 else
9118 {
9119 /* We've found the start of a packet or notification.
9120 Now collect the data. */
9121 val = read_frame (buf, sizeof_buf);
9122 if (val >= 0)
9123 break;
9124 }
9125
c33e31fd 9126 remote_serial_write ("-", 1);
c906108c 9127 }
c906108c 9128
74531fed
PA
9129 if (tries > MAX_TRIES)
9130 {
9131 /* We have tried hard enough, and just can't receive the
9132 packet/notification. Give up. */
9133 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9134
74531fed
PA
9135 /* Skip the ack char if we're in no-ack mode. */
9136 if (!rs->noack_mode)
c33e31fd 9137 remote_serial_write ("+", 1);
74531fed
PA
9138 return -1;
9139 }
c906108c 9140
74531fed
PA
9141 /* If we got an ordinary packet, return that to our caller. */
9142 if (c == '$')
c906108c
SS
9143 {
9144 if (remote_debug)
43e526b9 9145 {
6f8976bf
YQ
9146 std::string str
9147 = escape_buffer (*buf,
9148 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9149
9150 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9151 str.c_str ());
9152
9153 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
9154 {
9155 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
9156 str.length () - REMOTE_DEBUG_MAX_CHAR);
9157 }
6e5abd65 9158
6f8976bf 9159 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9160 }
a6f3e723
SL
9161
9162 /* Skip the ack char if we're in no-ack mode. */
9163 if (!rs->noack_mode)
c33e31fd 9164 remote_serial_write ("+", 1);
fee9eda9
YQ
9165 if (is_notif != NULL)
9166 *is_notif = 0;
0876f84a 9167 return val;
c906108c
SS
9168 }
9169
74531fed
PA
9170 /* If we got a notification, handle it, and go back to looking
9171 for a packet. */
9172 else
9173 {
9174 gdb_assert (c == '%');
9175
9176 if (remote_debug)
9177 {
b3ced9ba 9178 std::string str = escape_buffer (*buf, val);
6e5abd65 9179
6e5abd65
PA
9180 fprintf_unfiltered (gdb_stdlog,
9181 " Notification received: %s\n",
b3ced9ba 9182 str.c_str ());
74531fed 9183 }
fee9eda9
YQ
9184 if (is_notif != NULL)
9185 *is_notif = 1;
c906108c 9186
5965e028 9187 handle_notification (rs->notif_state, *buf);
c906108c 9188
74531fed 9189 /* Notifications require no acknowledgement. */
a6f3e723 9190
74531fed 9191 if (expecting_notif)
fee9eda9 9192 return val;
74531fed
PA
9193 }
9194 }
9195}
9196
9197static int
9198getpkt_sane (char **buf, long *sizeof_buf, int forever)
9199{
fee9eda9 9200 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
9201}
9202
9203static int
fee9eda9
YQ
9204getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9205 int *is_notif)
74531fed 9206{
fee9eda9
YQ
9207 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9208 is_notif);
c906108c 9209}
74531fed 9210
cbb8991c
DB
9211/* Check whether EVENT is a fork event for the process specified
9212 by the pid passed in DATA, and if it is, kill the fork child. */
9213
9214static int
9215kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
9216 QUEUE_ITER (stop_reply_p) *iter,
9217 stop_reply_p event,
9218 void *data)
9219{
19ba03f4 9220 struct queue_iter_param *param = (struct queue_iter_param *) data;
cbb8991c
DB
9221 int parent_pid = *(int *) param->input;
9222
9223 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
9224 {
9225 struct remote_state *rs = get_remote_state ();
9226 int child_pid = ptid_get_pid (event->ws.value.related_pid);
9227 int res;
9228
9229 res = remote_vkill (child_pid, rs);
9230 if (res != 0)
9231 error (_("Can't kill fork child process %d"), child_pid);
9232 }
9233
9234 return 1;
9235}
9236
9237/* Kill any new fork children of process PID that haven't been
9238 processed by follow_fork. */
9239
9240static void
9241kill_new_fork_children (int pid, struct remote_state *rs)
9242{
9243 struct thread_info *thread;
9244 struct notif_client *notif = &notif_client_stop;
9245 struct queue_iter_param param;
9246
9247 /* Kill the fork child threads of any threads in process PID
9248 that are stopped at a fork event. */
9249 ALL_NON_EXITED_THREADS (thread)
9250 {
9251 struct target_waitstatus *ws = &thread->pending_follow;
9252
9253 if (is_pending_fork_parent (ws, pid, thread->ptid))
9254 {
9255 struct remote_state *rs = get_remote_state ();
9256 int child_pid = ptid_get_pid (ws->value.related_pid);
9257 int res;
9258
9259 res = remote_vkill (child_pid, rs);
9260 if (res != 0)
9261 error (_("Can't kill fork child process %d"), child_pid);
9262 }
9263 }
9264
9265 /* Check for any pending fork events (not reported or processed yet)
9266 in process PID and kill those fork child threads as well. */
9267 remote_notif_get_pending_events (notif);
9268 param.input = &pid;
9269 param.output = NULL;
9270 QUEUE_iterate (stop_reply_p, stop_reply_queue,
9271 kill_child_of_pending_fork, &param);
9272}
9273
c906108c 9274\f
8020350c
DB
9275/* Target hook to kill the current inferior. */
9276
c906108c 9277static void
7d85a9c0 9278remote_kill (struct target_ops *ops)
43ff13b4 9279{
8020350c
DB
9280 int res = -1;
9281 int pid = ptid_get_pid (inferior_ptid);
9282 struct remote_state *rs = get_remote_state ();
0fdf84ca 9283
8020350c 9284 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9285 {
8020350c
DB
9286 /* If we're stopped while forking and we haven't followed yet,
9287 kill the child task. We need to do this before killing the
9288 parent task because if this is a vfork then the parent will
9289 be sleeping. */
9290 kill_new_fork_children (pid, rs);
9291
9292 res = remote_vkill (pid, rs);
9293 if (res == 0)
0fdf84ca 9294 {
bc1e6c81 9295 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9296 return;
9297 }
8020350c 9298 }
0fdf84ca 9299
8020350c
DB
9300 /* If we are in 'target remote' mode and we are killing the only
9301 inferior, then we will tell gdbserver to exit and unpush the
9302 target. */
9303 if (res == -1 && !remote_multi_process_p (rs)
9304 && number_of_live_inferiors () == 1)
9305 {
9306 remote_kill_k ();
9307
9308 /* We've killed the remote end, we get to mourn it. If we are
9309 not in extended mode, mourning the inferior also unpushes
9310 remote_ops from the target stack, which closes the remote
9311 connection. */
bc1e6c81 9312 target_mourn_inferior (inferior_ptid);
8020350c
DB
9313
9314 return;
0fdf84ca 9315 }
43ff13b4 9316
8020350c 9317 error (_("Can't kill process"));
43ff13b4
JM
9318}
9319
8020350c
DB
9320/* Send a kill request to the target using the 'vKill' packet. */
9321
82f73884
PA
9322static int
9323remote_vkill (int pid, struct remote_state *rs)
9324{
4082afcc 9325 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9326 return -1;
9327
9328 /* Tell the remote target to detach. */
bba74b36 9329 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
9330 putpkt (rs->buf);
9331 getpkt (&rs->buf, &rs->buf_size, 0);
9332
4082afcc
PA
9333 switch (packet_ok (rs->buf,
9334 &remote_protocol_packets[PACKET_vKill]))
9335 {
9336 case PACKET_OK:
9337 return 0;
9338 case PACKET_ERROR:
9339 return 1;
9340 case PACKET_UNKNOWN:
9341 return -1;
9342 default:
9343 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9344 }
82f73884
PA
9345}
9346
8020350c
DB
9347/* Send a kill request to the target using the 'k' packet. */
9348
82f73884 9349static void
8020350c 9350remote_kill_k (void)
82f73884 9351{
8020350c
DB
9352 /* Catch errors so the user can quit from gdb even when we
9353 aren't on speaking terms with the remote system. */
9354 TRY
82f73884 9355 {
82f73884 9356 putpkt ("k");
82f73884 9357 }
8020350c
DB
9358 CATCH (ex, RETURN_MASK_ERROR)
9359 {
9360 if (ex.error == TARGET_CLOSE_ERROR)
9361 {
9362 /* If we got an (EOF) error that caused the target
9363 to go away, then we're done, that's what we wanted.
9364 "k" is susceptible to cause a premature EOF, given
9365 that the remote server isn't actually required to
9366 reply to "k", and it can happen that it doesn't
9367 even get to reply ACK to the "k". */
9368 return;
9369 }
82f73884 9370
8020350c
DB
9371 /* Otherwise, something went wrong. We didn't actually kill
9372 the target. Just propagate the exception, and let the
9373 user or higher layers decide what to do. */
9374 throw_exception (ex);
9375 }
9376 END_CATCH
82f73884
PA
9377}
9378
c906108c 9379static void
20f796c9 9380remote_mourn (struct target_ops *target)
c906108c 9381{
8020350c 9382 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9383
8020350c
DB
9384 /* In 'target remote' mode with one inferior, we close the connection. */
9385 if (!rs->extended && number_of_live_inferiors () <= 1)
9386 {
9387 unpush_target (target);
c906108c 9388
8020350c
DB
9389 /* remote_close takes care of doing most of the clean up. */
9390 generic_mourn_inferior ();
9391 return;
9392 }
c906108c 9393
e24a49d8
PA
9394 /* In case we got here due to an error, but we're going to stay
9395 connected. */
9396 rs->waiting_for_stop_reply = 0;
9397
dc1981d7
PA
9398 /* If the current general thread belonged to the process we just
9399 detached from or has exited, the remote side current general
9400 thread becomes undefined. Considering a case like this:
9401
9402 - We just got here due to a detach.
9403 - The process that we're detaching from happens to immediately
9404 report a global breakpoint being hit in non-stop mode, in the
9405 same thread we had selected before.
9406 - GDB attaches to this process again.
9407 - This event happens to be the next event we handle.
9408
9409 GDB would consider that the current general thread didn't need to
9410 be set on the stub side (with Hg), since for all it knew,
9411 GENERAL_THREAD hadn't changed.
9412
9413 Notice that although in all-stop mode, the remote server always
9414 sets the current thread to the thread reporting the stop event,
9415 that doesn't happen in non-stop mode; in non-stop, the stub *must
9416 not* change the current thread when reporting a breakpoint hit,
9417 due to the decoupling of event reporting and event handling.
9418
9419 To keep things simple, we always invalidate our notion of the
9420 current thread. */
47f8a51d 9421 record_currthread (rs, minus_one_ptid);
dc1981d7 9422
8020350c 9423 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9424 generic_mourn_inferior ();
9425
d729566a 9426 if (!have_inferiors ())
2d717e4f 9427 {
82f73884
PA
9428 if (!remote_multi_process_p (rs))
9429 {
9430 /* Check whether the target is running now - some remote stubs
9431 automatically restart after kill. */
9432 putpkt ("?");
9433 getpkt (&rs->buf, &rs->buf_size, 0);
9434
9435 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9436 {
3e43a32a
MS
9437 /* Assume that the target has been restarted. Set
9438 inferior_ptid so that bits of core GDB realizes
9439 there's something here, e.g., so that the user can
9440 say "kill" again. */
82f73884
PA
9441 inferior_ptid = magic_null_ptid;
9442 }
82f73884 9443 }
2d717e4f
DJ
9444 }
9445}
c906108c 9446
03583c20 9447static int
2bfc0540 9448extended_remote_supports_disable_randomization (struct target_ops *self)
03583c20 9449{
4082afcc 9450 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9451}
9452
9453static void
9454extended_remote_disable_randomization (int val)
9455{
9456 struct remote_state *rs = get_remote_state ();
9457 char *reply;
9458
bba74b36
YQ
9459 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9460 val);
03583c20 9461 putpkt (rs->buf);
b6bb3468 9462 reply = remote_get_noisy_reply ();
03583c20
UW
9463 if (*reply == '\0')
9464 error (_("Target does not support QDisableRandomization."));
9465 if (strcmp (reply, "OK") != 0)
9466 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9467}
9468
2d717e4f 9469static int
7c5ded6a 9470extended_remote_run (const std::string &args)
2d717e4f
DJ
9471{
9472 struct remote_state *rs = get_remote_state ();
2d717e4f 9473 int len;
94585166 9474 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9475
2d717e4f
DJ
9476 /* If the user has disabled vRun support, or we have detected that
9477 support is not available, do not try it. */
4082afcc 9478 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9479 return -1;
424163ea 9480
2d717e4f
DJ
9481 strcpy (rs->buf, "vRun;");
9482 len = strlen (rs->buf);
c906108c 9483
2d717e4f
DJ
9484 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9485 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9486 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9487 strlen (remote_exec_file));
2d717e4f 9488
7c5ded6a 9489 if (!args.empty ())
2d717e4f 9490 {
2d717e4f 9491 int i;
2d717e4f 9492
773a1edc 9493 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9494 for (i = 0; argv[i] != NULL; i++)
9495 {
9496 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9497 error (_("Argument list too long for run packet"));
9498 rs->buf[len++] = ';';
9f1b45b0
TT
9499 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9500 strlen (argv[i]));
2d717e4f 9501 }
2d717e4f
DJ
9502 }
9503
9504 rs->buf[len++] = '\0';
9505
9506 putpkt (rs->buf);
9507 getpkt (&rs->buf, &rs->buf_size, 0);
9508
4082afcc 9509 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9510 {
4082afcc 9511 case PACKET_OK:
3405876a 9512 /* We have a wait response. All is well. */
2d717e4f 9513 return 0;
4082afcc
PA
9514 case PACKET_UNKNOWN:
9515 return -1;
9516 case PACKET_ERROR:
2d717e4f
DJ
9517 if (remote_exec_file[0] == '\0')
9518 error (_("Running the default executable on the remote target failed; "
9519 "try \"set remote exec-file\"?"));
9520 else
9521 error (_("Running \"%s\" on the remote target failed"),
9522 remote_exec_file);
4082afcc
PA
9523 default:
9524 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9525 }
c906108c
SS
9526}
9527
0a2dde4a
SDJ
9528/* Helper function to send set/unset environment packets. ACTION is
9529 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9530 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9531 sent. */
9532
9533static void
9534send_environment_packet (struct remote_state *rs,
9535 const char *action,
9536 const char *packet,
9537 const char *value)
9538{
9539 /* Convert the environment variable to an hex string, which
9540 is the best format to be transmitted over the wire. */
9541 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9542 strlen (value));
9543
9544 xsnprintf (rs->buf, get_remote_packet_size (),
9545 "%s:%s", packet, encoded_value.c_str ());
9546
9547 putpkt (rs->buf);
9548 getpkt (&rs->buf, &rs->buf_size, 0);
9549 if (strcmp (rs->buf, "OK") != 0)
9550 warning (_("Unable to %s environment variable '%s' on remote."),
9551 action, value);
9552}
9553
9554/* Helper function to handle the QEnvironment* packets. */
9555
9556static void
9557extended_remote_environment_support (struct remote_state *rs)
9558{
9559 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9560 {
9561 putpkt ("QEnvironmentReset");
9562 getpkt (&rs->buf, &rs->buf_size, 0);
9563 if (strcmp (rs->buf, "OK") != 0)
9564 warning (_("Unable to reset environment on remote."));
9565 }
9566
9567 gdb_environ *e = &current_inferior ()->environment;
9568
9569 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9570 for (const std::string &el : e->user_set_env ())
9571 send_environment_packet (rs, "set", "QEnvironmentHexEncoded",
9572 el.c_str ());
9573
9574 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9575 for (const std::string &el : e->user_unset_env ())
9576 send_environment_packet (rs, "unset", "QEnvironmentUnset", el.c_str ());
9577}
9578
bc3b087d
SDJ
9579/* Helper function to set the current working directory for the
9580 inferior in the remote target. */
9581
9582static void
9583extended_remote_set_inferior_cwd (struct remote_state *rs)
9584{
9585 if (packet_support (PACKET_QSetWorkingDir) != PACKET_DISABLE)
9586 {
9587 const char *inferior_cwd = get_inferior_cwd ();
9588
9589 if (inferior_cwd != NULL)
9590 {
9591 std::string hexpath = bin2hex ((const gdb_byte *) inferior_cwd,
9592 strlen (inferior_cwd));
9593
9594 xsnprintf (rs->buf, get_remote_packet_size (),
9595 "QSetWorkingDir:%s", hexpath.c_str ());
9596 }
9597 else
9598 {
9599 /* An empty inferior_cwd means that the user wants us to
9600 reset the remote server's inferior's cwd. */
9601 xsnprintf (rs->buf, get_remote_packet_size (),
9602 "QSetWorkingDir:");
9603 }
9604
9605 putpkt (rs->buf);
9606 getpkt (&rs->buf, &rs->buf_size, 0);
9607 if (packet_ok (rs->buf,
9608 &remote_protocol_packets[PACKET_QSetWorkingDir])
9609 != PACKET_OK)
9610 error (_("\
9611Remote replied unexpectedly while setting the inferior's working\n\
9612directory: %s"),
9613 rs->buf);
9614
9615 }
9616}
9617
2d717e4f
DJ
9618/* In the extended protocol we want to be able to do things like
9619 "run" and have them basically work as expected. So we need
9620 a special create_inferior function. We support changing the
9621 executable file and the command line arguments, but not the
9622 environment. */
9623
43ff13b4 9624static void
77a19445 9625extended_remote_create_inferior (struct target_ops *ops,
7c5ded6a
SDJ
9626 const char *exec_file,
9627 const std::string &args,
77a19445 9628 char **env, int from_tty)
43ff13b4 9629{
3405876a
PA
9630 int run_worked;
9631 char *stop_reply;
9632 struct remote_state *rs = get_remote_state ();
94585166 9633 const char *remote_exec_file = get_remote_exec_file ();
3405876a 9634
43ff13b4 9635 /* If running asynchronously, register the target file descriptor
23860348 9636 with the event loop. */
75c99385 9637 if (target_can_async_p ())
6a3753b3 9638 target_async (1);
43ff13b4 9639
03583c20 9640 /* Disable address space randomization if requested (and supported). */
2bfc0540 9641 if (extended_remote_supports_disable_randomization (ops))
03583c20
UW
9642 extended_remote_disable_randomization (disable_randomization);
9643
aefd8b33
SDJ
9644 /* If startup-with-shell is on, we inform gdbserver to start the
9645 remote inferior using a shell. */
9646 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
9647 {
9648 xsnprintf (rs->buf, get_remote_packet_size (),
9649 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
9650 putpkt (rs->buf);
9651 getpkt (&rs->buf, &rs->buf_size, 0);
9652 if (strcmp (rs->buf, "OK") != 0)
9653 error (_("\
9654Remote replied unexpectedly while setting startup-with-shell: %s"),
9655 rs->buf);
9656 }
9657
0a2dde4a
SDJ
9658 extended_remote_environment_support (rs);
9659
bc3b087d
SDJ
9660 extended_remote_set_inferior_cwd (rs);
9661
43ff13b4 9662 /* Now restart the remote server. */
3405876a
PA
9663 run_worked = extended_remote_run (args) != -1;
9664 if (!run_worked)
2d717e4f
DJ
9665 {
9666 /* vRun was not supported. Fail if we need it to do what the
9667 user requested. */
9668 if (remote_exec_file[0])
9669 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 9670 if (!args.empty ())
2d717e4f 9671 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 9672
2d717e4f
DJ
9673 /* Fall back to "R". */
9674 extended_remote_restart ();
9675 }
424163ea 9676
6c95b8df
PA
9677 if (!have_inferiors ())
9678 {
9679 /* Clean up from the last time we ran, before we mark the target
9680 running again. This will mark breakpoints uninserted, and
9681 get_offsets may insert breakpoints. */
9682 init_thread_list ();
9683 init_wait_for_inferior ();
9684 }
45280a52 9685
3405876a
PA
9686 /* vRun's success return is a stop reply. */
9687 stop_reply = run_worked ? rs->buf : NULL;
9688 add_current_inferior_and_thread (stop_reply);
c0a2216e 9689
2d717e4f
DJ
9690 /* Get updated offsets, if the stub uses qOffsets. */
9691 get_offsets ();
2d717e4f 9692}
c906108c 9693\f
c5aa993b 9694
b775012e
LM
9695/* Given a location's target info BP_TGT and the packet buffer BUF, output
9696 the list of conditions (in agent expression bytecode format), if any, the
9697 target needs to evaluate. The output is placed into the packet buffer
bba74b36 9698 started from BUF and ended at BUF_END. */
b775012e
LM
9699
9700static int
9701remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
9702 struct bp_target_info *bp_tgt, char *buf,
9703 char *buf_end)
b775012e 9704{
3cde5c42 9705 if (bp_tgt->conditions.empty ())
b775012e
LM
9706 return 0;
9707
9708 buf += strlen (buf);
bba74b36 9709 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
9710 buf++;
9711
83621223 9712 /* Send conditions to the target. */
d538e36d 9713 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 9714 {
bba74b36 9715 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 9716 buf += strlen (buf);
3cde5c42 9717 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
9718 buf = pack_hex_byte (buf, aexpr->buf[i]);
9719 *buf = '\0';
9720 }
b775012e
LM
9721 return 0;
9722}
9723
d3ce09f5
SS
9724static void
9725remote_add_target_side_commands (struct gdbarch *gdbarch,
9726 struct bp_target_info *bp_tgt, char *buf)
9727{
3cde5c42 9728 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
9729 return;
9730
9731 buf += strlen (buf);
9732
9733 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9734 buf += strlen (buf);
9735
9736 /* Concatenate all the agent expressions that are commands into the
9737 cmds parameter. */
df97be55 9738 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
9739 {
9740 sprintf (buf, "X%x,", aexpr->len);
9741 buf += strlen (buf);
3cde5c42 9742 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
9743 buf = pack_hex_byte (buf, aexpr->buf[i]);
9744 *buf = '\0';
9745 }
d3ce09f5
SS
9746}
9747
8181d85f
DJ
9748/* Insert a breakpoint. On targets that have software breakpoint
9749 support, we ask the remote target to do the work; on targets
9750 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
9751
9752static int
3db08215
MM
9753remote_insert_breakpoint (struct target_ops *ops,
9754 struct gdbarch *gdbarch,
a6d9a66e 9755 struct bp_target_info *bp_tgt)
c906108c 9756{
d471ea57
AC
9757 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9758 If it succeeds, then set the support to PACKET_ENABLE. If it
9759 fails, and the user has explicitly requested the Z support then
23860348 9760 report an error, otherwise, mark it disabled and go on. */
802188a7 9761
4082afcc 9762 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9763 {
0d5ed153 9764 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 9765 struct remote_state *rs;
bba74b36 9766 char *p, *endbuf;
4fff2411 9767
28439a30
PA
9768 /* Make sure the remote is pointing at the right process, if
9769 necessary. */
9770 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9771 set_general_process ();
9772
4fff2411
JZ
9773 rs = get_remote_state ();
9774 p = rs->buf;
bba74b36 9775 endbuf = rs->buf + get_remote_packet_size ();
802188a7 9776
96baa820
JM
9777 *(p++) = 'Z';
9778 *(p++) = '0';
9779 *(p++) = ',';
7c0f6dcc 9780 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 9781 p += hexnumstr (p, addr);
579c6ad9 9782 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 9783
efcc2da7 9784 if (remote_supports_cond_breakpoints (ops))
bba74b36 9785 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 9786
78eff0ec 9787 if (remote_can_run_breakpoint_commands (ops))
d3ce09f5
SS
9788 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9789
6d820c5c
DJ
9790 putpkt (rs->buf);
9791 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9792
6d820c5c 9793 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 9794 {
d471ea57
AC
9795 case PACKET_ERROR:
9796 return -1;
9797 case PACKET_OK:
9798 return 0;
9799 case PACKET_UNKNOWN:
9800 break;
96baa820
JM
9801 }
9802 }
c906108c 9803
0000e5cc
PA
9804 /* If this breakpoint has target-side commands but this stub doesn't
9805 support Z0 packets, throw error. */
3cde5c42 9806 if (!bp_tgt->tcommands.empty ())
0000e5cc
PA
9807 throw_error (NOT_SUPPORTED_ERROR, _("\
9808Target doesn't support breakpoints that have target side commands."));
9809
3db08215 9810 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
c906108c
SS
9811}
9812
9813static int
3db08215
MM
9814remote_remove_breakpoint (struct target_ops *ops,
9815 struct gdbarch *gdbarch,
73971819
PA
9816 struct bp_target_info *bp_tgt,
9817 enum remove_bp_reason reason)
c906108c 9818{
8181d85f 9819 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 9820 struct remote_state *rs = get_remote_state ();
96baa820 9821
4082afcc 9822 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9823 {
6d820c5c 9824 char *p = rs->buf;
bba74b36 9825 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 9826
28439a30
PA
9827 /* Make sure the remote is pointing at the right process, if
9828 necessary. */
9829 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9830 set_general_process ();
9831
96baa820
JM
9832 *(p++) = 'z';
9833 *(p++) = '0';
9834 *(p++) = ',';
9835
8181d85f
DJ
9836 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9837 p += hexnumstr (p, addr);
579c6ad9 9838 xsnprintf (p, endbuf - p, ",%d", bp_tgt->kind);
802188a7 9839
6d820c5c
DJ
9840 putpkt (rs->buf);
9841 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9842
6d820c5c 9843 return (rs->buf[0] == 'E');
96baa820
JM
9844 }
9845
73971819 9846 return memory_remove_breakpoint (ops, gdbarch, bp_tgt, reason);
c906108c
SS
9847}
9848
f486487f 9849static enum Z_packet_type
d471ea57
AC
9850watchpoint_to_Z_packet (int type)
9851{
9852 switch (type)
9853 {
9854 case hw_write:
bb858e6a 9855 return Z_PACKET_WRITE_WP;
d471ea57
AC
9856 break;
9857 case hw_read:
bb858e6a 9858 return Z_PACKET_READ_WP;
d471ea57
AC
9859 break;
9860 case hw_access:
bb858e6a 9861 return Z_PACKET_ACCESS_WP;
d471ea57
AC
9862 break;
9863 default:
8e65ff28 9864 internal_error (__FILE__, __LINE__,
e2e0b3e5 9865 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
9866 }
9867}
9868
3c3bea1c 9869static int
f486487f
SM
9870remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9871 enum target_hw_bp_type type, struct expression *cond)
96baa820 9872{
d01949b6 9873 struct remote_state *rs = get_remote_state ();
bba74b36 9874 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9875 char *p;
d471ea57 9876 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 9877
4082afcc 9878 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 9879 return 1;
802188a7 9880
28439a30
PA
9881 /* Make sure the remote is pointing at the right process, if
9882 necessary. */
9883 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9884 set_general_process ();
9885
bba74b36 9886 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 9887 p = strchr (rs->buf, '\0');
96baa820
JM
9888 addr = remote_address_masked (addr);
9889 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9890 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 9891
6d820c5c
DJ
9892 putpkt (rs->buf);
9893 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9894
6d820c5c 9895 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9896 {
9897 case PACKET_ERROR:
d471ea57 9898 return -1;
85d721b8
PA
9899 case PACKET_UNKNOWN:
9900 return 1;
d471ea57
AC
9901 case PACKET_OK:
9902 return 0;
9903 }
8e65ff28 9904 internal_error (__FILE__, __LINE__,
e2e0b3e5 9905 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
9906}
9907
283002cf
MR
9908static int
9909remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9910 CORE_ADDR start, int length)
9911{
9912 CORE_ADDR diff = remote_address_masked (addr - start);
9913
9914 return diff < length;
9915}
9916
d471ea57 9917
3c3bea1c 9918static int
f486487f
SM
9919remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9920 enum target_hw_bp_type type, struct expression *cond)
96baa820 9921{
d01949b6 9922 struct remote_state *rs = get_remote_state ();
bba74b36 9923 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9924 char *p;
d471ea57
AC
9925 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9926
4082afcc 9927 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 9928 return -1;
802188a7 9929
28439a30
PA
9930 /* Make sure the remote is pointing at the right process, if
9931 necessary. */
9932 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9933 set_general_process ();
9934
bba74b36 9935 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 9936 p = strchr (rs->buf, '\0');
96baa820
JM
9937 addr = remote_address_masked (addr);
9938 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9939 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
9940 putpkt (rs->buf);
9941 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9942
6d820c5c 9943 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9944 {
9945 case PACKET_ERROR:
9946 case PACKET_UNKNOWN:
9947 return -1;
9948 case PACKET_OK:
9949 return 0;
9950 }
8e65ff28 9951 internal_error (__FILE__, __LINE__,
e2e0b3e5 9952 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
9953}
9954
3c3bea1c 9955
501eef12 9956int remote_hw_watchpoint_limit = -1;
480a3f21 9957int remote_hw_watchpoint_length_limit = -1;
501eef12 9958int remote_hw_breakpoint_limit = -1;
d471ea57 9959
480a3f21 9960static int
31568a15
TT
9961remote_region_ok_for_hw_watchpoint (struct target_ops *self,
9962 CORE_ADDR addr, int len)
480a3f21
PW
9963{
9964 if (remote_hw_watchpoint_length_limit == 0)
9965 return 0;
9966 else if (remote_hw_watchpoint_length_limit < 0)
9967 return 1;
9968 else if (len <= remote_hw_watchpoint_length_limit)
9969 return 1;
9970 else
9971 return 0;
9972}
9973
b9362cc7 9974static int
5461485a 9975remote_check_watch_resources (struct target_ops *self,
f486487f 9976 enum bptype type, int cnt, int ot)
96baa820 9977{
3c3bea1c
GS
9978 if (type == bp_hardware_breakpoint)
9979 {
9980 if (remote_hw_breakpoint_limit == 0)
9981 return 0;
501eef12
AC
9982 else if (remote_hw_breakpoint_limit < 0)
9983 return 1;
3c3bea1c
GS
9984 else if (cnt <= remote_hw_breakpoint_limit)
9985 return 1;
9986 }
9987 else
9988 {
9989 if (remote_hw_watchpoint_limit == 0)
9990 return 0;
501eef12
AC
9991 else if (remote_hw_watchpoint_limit < 0)
9992 return 1;
3c3bea1c
GS
9993 else if (ot)
9994 return -1;
9995 else if (cnt <= remote_hw_watchpoint_limit)
9996 return 1;
9997 }
9998 return -1;
9999}
10000
f7e6eed5
PA
10001/* The to_stopped_by_sw_breakpoint method of target remote. */
10002
10003static int
10004remote_stopped_by_sw_breakpoint (struct target_ops *ops)
10005{
799a2abe 10006 struct thread_info *thread = inferior_thread ();
f7e6eed5 10007
799a2abe 10008 return (thread->priv != NULL
7aabaf9d
SM
10009 && (get_remote_thread_info (thread)->stop_reason
10010 == TARGET_STOPPED_BY_SW_BREAKPOINT));
f7e6eed5
PA
10011}
10012
10013/* The to_supports_stopped_by_sw_breakpoint method of target
10014 remote. */
10015
10016static int
10017remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
10018{
f7e6eed5
PA
10019 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10020}
10021
10022/* The to_stopped_by_hw_breakpoint method of target remote. */
10023
10024static int
10025remote_stopped_by_hw_breakpoint (struct target_ops *ops)
10026{
799a2abe 10027 struct thread_info *thread = inferior_thread ();
f7e6eed5 10028
799a2abe 10029 return (thread->priv != NULL
7aabaf9d
SM
10030 && (get_remote_thread_info (thread)->stop_reason
10031 == TARGET_STOPPED_BY_HW_BREAKPOINT));
f7e6eed5
PA
10032}
10033
10034/* The to_supports_stopped_by_hw_breakpoint method of target
10035 remote. */
10036
10037static int
10038remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
10039{
f7e6eed5
PA
10040 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10041}
10042
b9362cc7 10043static int
6a109b6b 10044remote_stopped_by_watchpoint (struct target_ops *ops)
3c3bea1c 10045{
799a2abe 10046 struct thread_info *thread = inferior_thread ();
ee154bee 10047
799a2abe 10048 return (thread->priv != NULL
7aabaf9d
SM
10049 && (get_remote_thread_info (thread)->stop_reason
10050 == TARGET_STOPPED_BY_WATCHPOINT));
3c3bea1c
GS
10051}
10052
4aa7a7f5
JJ
10053static int
10054remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 10055{
799a2abe 10056 struct thread_info *thread = inferior_thread ();
a744cf53 10057
799a2abe 10058 if (thread->priv != NULL
7aabaf9d
SM
10059 && (get_remote_thread_info (thread)->stop_reason
10060 == TARGET_STOPPED_BY_WATCHPOINT))
4aa7a7f5 10061 {
7aabaf9d 10062 *addr_p = get_remote_thread_info (thread)->watch_data_address;
799a2abe 10063 return 1;
4aa7a7f5
JJ
10064 }
10065
799a2abe 10066 return 0;
3c3bea1c
GS
10067}
10068
10069
10070static int
23a26771 10071remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10072 struct bp_target_info *bp_tgt)
3c3bea1c 10073{
0d5ed153 10074 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10075 struct remote_state *rs;
bba74b36 10076 char *p, *endbuf;
dd61ec5c 10077 char *message;
3c3bea1c 10078
4082afcc 10079 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10080 return -1;
2bc416ba 10081
28439a30
PA
10082 /* Make sure the remote is pointing at the right process, if
10083 necessary. */
10084 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10085 set_general_process ();
10086
4fff2411
JZ
10087 rs = get_remote_state ();
10088 p = rs->buf;
bba74b36 10089 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 10090
96baa820
JM
10091 *(p++) = 'Z';
10092 *(p++) = '1';
10093 *(p++) = ',';
802188a7 10094
0d5ed153 10095 addr = remote_address_masked (addr);
96baa820 10096 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10097 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10098
efcc2da7 10099 if (remote_supports_cond_breakpoints (self))
bba74b36 10100 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10101
78eff0ec 10102 if (remote_can_run_breakpoint_commands (self))
d3ce09f5
SS
10103 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10104
6d820c5c
DJ
10105 putpkt (rs->buf);
10106 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10107
6d820c5c 10108 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10109 {
10110 case PACKET_ERROR:
dd61ec5c
MW
10111 if (rs->buf[1] == '.')
10112 {
10113 message = strchr (rs->buf + 2, '.');
10114 if (message)
0316657e 10115 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10116 }
10117 return -1;
d471ea57
AC
10118 case PACKET_UNKNOWN:
10119 return -1;
10120 case PACKET_OK:
10121 return 0;
10122 }
8e65ff28 10123 internal_error (__FILE__, __LINE__,
e2e0b3e5 10124 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10125}
10126
d471ea57 10127
802188a7 10128static int
a64dc96c 10129remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10130 struct bp_target_info *bp_tgt)
96baa820 10131{
8181d85f 10132 CORE_ADDR addr;
d01949b6 10133 struct remote_state *rs = get_remote_state ();
6d820c5c 10134 char *p = rs->buf;
bba74b36 10135 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 10136
4082afcc 10137 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10138 return -1;
802188a7 10139
28439a30
PA
10140 /* Make sure the remote is pointing at the right process, if
10141 necessary. */
10142 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10143 set_general_process ();
10144
96baa820
JM
10145 *(p++) = 'z';
10146 *(p++) = '1';
10147 *(p++) = ',';
802188a7 10148
8181d85f 10149 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10150 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10151 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10152
6d820c5c
DJ
10153 putpkt (rs->buf);
10154 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 10155
6d820c5c 10156 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10157 {
10158 case PACKET_ERROR:
10159 case PACKET_UNKNOWN:
10160 return -1;
10161 case PACKET_OK:
10162 return 0;
10163 }
8e65ff28 10164 internal_error (__FILE__, __LINE__,
e2e0b3e5 10165 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10166}
96baa820 10167
4a5e7a5b
PA
10168/* Verify memory using the "qCRC:" request. */
10169
10170static int
10171remote_verify_memory (struct target_ops *ops,
10172 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10173{
10174 struct remote_state *rs = get_remote_state ();
10175 unsigned long host_crc, target_crc;
10176 char *tmp;
10177
936d2992
PA
10178 /* It doesn't make sense to use qCRC if the remote target is
10179 connected but not running. */
10180 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10181 {
10182 enum packet_result result;
28439a30 10183
936d2992
PA
10184 /* Make sure the remote is pointing at the right process. */
10185 set_general_process ();
4a5e7a5b 10186
936d2992
PA
10187 /* FIXME: assumes lma can fit into long. */
10188 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10189 (long) lma, (long) size);
10190 putpkt (rs->buf);
4a5e7a5b 10191
936d2992
PA
10192 /* Be clever; compute the host_crc before waiting for target
10193 reply. */
10194 host_crc = xcrc32 (data, size, 0xffffffff);
10195
10196 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 10197
936d2992
PA
10198 result = packet_ok (rs->buf,
10199 &remote_protocol_packets[PACKET_qCRC]);
10200 if (result == PACKET_ERROR)
10201 return -1;
10202 else if (result == PACKET_OK)
10203 {
10204 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10205 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10206
936d2992
PA
10207 return (host_crc == target_crc);
10208 }
10209 }
4a5e7a5b 10210
936d2992 10211 return simple_verify_memory (ops, data, lma, size);
4a5e7a5b
PA
10212}
10213
c906108c
SS
10214/* compare-sections command
10215
10216 With no arguments, compares each loadable section in the exec bfd
10217 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10218 Useful for verifying the image on the target against the exec file. */
e514a9d6 10219
c906108c 10220static void
ac88e2de 10221compare_sections_command (const char *args, int from_tty)
c906108c
SS
10222{
10223 asection *s;
ce359b09 10224 const char *sectname;
c906108c
SS
10225 bfd_size_type size;
10226 bfd_vma lma;
10227 int matched = 0;
10228 int mismatched = 0;
4a5e7a5b 10229 int res;
95cf3b38 10230 int read_only = 0;
c906108c
SS
10231
10232 if (!exec_bfd)
8a3fe4f8 10233 error (_("command cannot be used without an exec file"));
c906108c 10234
28439a30
PA
10235 /* Make sure the remote is pointing at the right process. */
10236 set_general_process ();
10237
95cf3b38
DT
10238 if (args != NULL && strcmp (args, "-r") == 0)
10239 {
10240 read_only = 1;
10241 args = NULL;
10242 }
10243
c5aa993b 10244 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10245 {
10246 if (!(s->flags & SEC_LOAD))
0df8b418 10247 continue; /* Skip non-loadable section. */
c906108c 10248
95cf3b38
DT
10249 if (read_only && (s->flags & SEC_READONLY) == 0)
10250 continue; /* Skip writeable sections */
10251
2c500098 10252 size = bfd_get_section_size (s);
c906108c 10253 if (size == 0)
0df8b418 10254 continue; /* Skip zero-length section. */
c906108c 10255
ce359b09 10256 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10257 if (args && strcmp (args, sectname) != 0)
0df8b418 10258 continue; /* Not the section selected by user. */
c906108c 10259
0df8b418 10260 matched = 1; /* Do this section. */
c906108c 10261 lma = s->lma;
c906108c 10262
b80406ac
TT
10263 gdb::byte_vector sectdata (size);
10264 bfd_get_section_contents (exec_bfd, s, sectdata.data (), 0, size);
c906108c 10265
b80406ac 10266 res = target_verify_memory (sectdata.data (), lma, size);
4a5e7a5b
PA
10267
10268 if (res == -1)
5af949e3 10269 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10270 paddress (target_gdbarch (), lma),
10271 paddress (target_gdbarch (), lma + size));
c906108c 10272
5af949e3 10273 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10274 paddress (target_gdbarch (), lma),
10275 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10276 if (res)
c906108c
SS
10277 printf_filtered ("matched.\n");
10278 else
c5aa993b
JM
10279 {
10280 printf_filtered ("MIS-MATCHED!\n");
10281 mismatched++;
10282 }
c906108c
SS
10283 }
10284 if (mismatched > 0)
936d2992 10285 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10286the loaded file\n"));
c906108c 10287 if (args && !matched)
a3f17187 10288 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10289}
10290
0e7f50da
UW
10291/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10292 into remote target. The number of bytes written to the remote
10293 target is returned, or -1 for error. */
10294
9b409511 10295static enum target_xfer_status
0e7f50da
UW
10296remote_write_qxfer (struct target_ops *ops, const char *object_name,
10297 const char *annex, const gdb_byte *writebuf,
9b409511 10298 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
0e7f50da
UW
10299 struct packet_config *packet)
10300{
10301 int i, buf_len;
10302 ULONGEST n;
0e7f50da
UW
10303 struct remote_state *rs = get_remote_state ();
10304 int max_size = get_memory_write_packet_size ();
10305
7cc244de 10306 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10307 return TARGET_XFER_E_IO;
0e7f50da
UW
10308
10309 /* Insert header. */
10310 i = snprintf (rs->buf, max_size,
10311 "qXfer:%s:write:%s:%s:",
10312 object_name, annex ? annex : "",
10313 phex_nz (offset, sizeof offset));
10314 max_size -= (i + 1);
10315
10316 /* Escape as much data as fits into rs->buf. */
10317 buf_len = remote_escape_output
124e13d9 10318 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
10319
10320 if (putpkt_binary (rs->buf, i + buf_len) < 0
10321 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10322 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10323 return TARGET_XFER_E_IO;
0e7f50da
UW
10324
10325 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
10326
10327 *xfered_len = n;
92ffd475 10328 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
0e7f50da
UW
10329}
10330
0876f84a
DJ
10331/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10332 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10333 number of bytes read is returned, or 0 for EOF, or -1 for error.
10334 The number of bytes read may be less than LEN without indicating an
10335 EOF. PACKET is checked and updated to indicate whether the remote
10336 target supports this object. */
10337
9b409511 10338static enum target_xfer_status
0876f84a
DJ
10339remote_read_qxfer (struct target_ops *ops, const char *object_name,
10340 const char *annex,
10341 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9b409511 10342 ULONGEST *xfered_len,
0876f84a
DJ
10343 struct packet_config *packet)
10344{
0876f84a 10345 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10346 LONGEST i, n, packet_len;
10347
7cc244de 10348 if (packet_config_support (packet) == PACKET_DISABLE)
2ed4b548 10349 return TARGET_XFER_E_IO;
0876f84a
DJ
10350
10351 /* Check whether we've cached an end-of-object packet that matches
10352 this request. */
8e88304f 10353 if (rs->finished_object)
0876f84a 10354 {
8e88304f
TT
10355 if (strcmp (object_name, rs->finished_object) == 0
10356 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10357 && offset == rs->finished_offset)
9b409511
YQ
10358 return TARGET_XFER_EOF;
10359
0876f84a
DJ
10360
10361 /* Otherwise, we're now reading something different. Discard
10362 the cache. */
8e88304f
TT
10363 xfree (rs->finished_object);
10364 xfree (rs->finished_annex);
10365 rs->finished_object = NULL;
10366 rs->finished_annex = NULL;
0876f84a
DJ
10367 }
10368
10369 /* Request only enough to fit in a single packet. The actual data
10370 may not, since we don't know how much of it will need to be escaped;
10371 the target is free to respond with slightly less data. We subtract
10372 five to account for the response type and the protocol frame. */
768adc05 10373 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
0876f84a
DJ
10374 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10375 object_name, annex ? annex : "",
10376 phex_nz (offset, sizeof offset),
10377 phex_nz (n, sizeof n));
10378 i = putpkt (rs->buf);
10379 if (i < 0)
2ed4b548 10380 return TARGET_XFER_E_IO;
0876f84a
DJ
10381
10382 rs->buf[0] = '\0';
10383 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10384 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10385 return TARGET_XFER_E_IO;
0876f84a
DJ
10386
10387 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10388 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10389
10390 /* 'm' means there is (or at least might be) more data after this
10391 batch. That does not make sense unless there's at least one byte
10392 of data in this reply. */
10393 if (rs->buf[0] == 'm' && packet_len == 1)
10394 error (_("Remote qXfer reply contained no data."));
10395
10396 /* Got some data. */
bc20a4af
PA
10397 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10398 packet_len - 1, readbuf, n);
0876f84a
DJ
10399
10400 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10401 or possibly empty. If we have the final block of a non-empty
10402 object, record this fact to bypass a subsequent partial read. */
10403 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10404 {
8e88304f
TT
10405 rs->finished_object = xstrdup (object_name);
10406 rs->finished_annex = xstrdup (annex ? annex : "");
10407 rs->finished_offset = offset + i;
0876f84a
DJ
10408 }
10409
9b409511
YQ
10410 if (i == 0)
10411 return TARGET_XFER_EOF;
10412 else
10413 {
10414 *xfered_len = i;
10415 return TARGET_XFER_OK;
10416 }
0876f84a
DJ
10417}
10418
9b409511 10419static enum target_xfer_status
4b8a223f 10420remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5 10421 const char *annex, gdb_byte *readbuf,
9b409511
YQ
10422 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10423 ULONGEST *xfered_len)
c906108c 10424{
82f73884 10425 struct remote_state *rs;
c906108c 10426 int i;
6d820c5c 10427 char *p2;
1e3ff5ad 10428 char query_type;
124e13d9 10429 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10430
e6e4e701 10431 set_remote_traceframe ();
82f73884
PA
10432 set_general_thread (inferior_ptid);
10433
10434 rs = get_remote_state ();
10435
b2182ed2 10436 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10437 if (object == TARGET_OBJECT_MEMORY)
10438 {
2d717e4f
DJ
10439 /* If the remote target is connected but not running, we should
10440 pass this request down to a lower stratum (e.g. the executable
10441 file). */
10442 if (!target_has_execution)
9b409511 10443 return TARGET_XFER_EOF;
2d717e4f 10444
21e3b9b9 10445 if (writebuf != NULL)
124e13d9
SM
10446 return remote_write_bytes (offset, writebuf, len, unit_size,
10447 xfered_len);
21e3b9b9 10448 else
124e13d9
SM
10449 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
10450 xfered_len);
21e3b9b9
DJ
10451 }
10452
0df8b418 10453 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10454 if (object == TARGET_OBJECT_SPU)
10455 {
10456 if (readbuf)
10457 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9b409511
YQ
10458 xfered_len, &remote_protocol_packets
10459 [PACKET_qXfer_spu_read]);
0e7f50da
UW
10460 else
10461 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9b409511
YQ
10462 xfered_len, &remote_protocol_packets
10463 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10464 }
10465
4aa995e1
PA
10466 /* Handle extra signal info using qxfer packets. */
10467 if (object == TARGET_OBJECT_SIGNAL_INFO)
10468 {
10469 if (readbuf)
10470 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9b409511 10471 xfered_len, &remote_protocol_packets
4aa995e1
PA
10472 [PACKET_qXfer_siginfo_read]);
10473 else
3e43a32a 10474 return remote_write_qxfer (ops, "siginfo", annex,
9b409511 10475 writebuf, offset, len, xfered_len,
4aa995e1
PA
10476 &remote_protocol_packets
10477 [PACKET_qXfer_siginfo_write]);
10478 }
10479
0fb4aa4b
PA
10480 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10481 {
10482 if (readbuf)
3e43a32a 10483 return remote_read_qxfer (ops, "statictrace", annex,
9b409511 10484 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10485 &remote_protocol_packets
10486 [PACKET_qXfer_statictrace_read]);
10487 else
2ed4b548 10488 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10489 }
10490
a76d924d
DJ
10491 /* Only handle flash writes. */
10492 if (writebuf != NULL)
10493 {
a76d924d
DJ
10494 switch (object)
10495 {
10496 case TARGET_OBJECT_FLASH:
9b409511
YQ
10497 return remote_flash_write (ops, offset, len, xfered_len,
10498 writebuf);
a76d924d
DJ
10499
10500 default:
2ed4b548 10501 return TARGET_XFER_E_IO;
a76d924d
DJ
10502 }
10503 }
4b8a223f 10504
1e3ff5ad
AC
10505 /* Map pre-existing objects onto letters. DO NOT do this for new
10506 objects!!! Instead specify new query packets. */
10507 switch (object)
c906108c 10508 {
1e3ff5ad
AC
10509 case TARGET_OBJECT_AVR:
10510 query_type = 'R';
10511 break;
802188a7
RM
10512
10513 case TARGET_OBJECT_AUXV:
0876f84a
DJ
10514 gdb_assert (annex == NULL);
10515 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
9b409511 10516 xfered_len,
0876f84a 10517 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10518
23181151
DJ
10519 case TARGET_OBJECT_AVAILABLE_FEATURES:
10520 return remote_read_qxfer
9b409511 10521 (ops, "features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10522 &remote_protocol_packets[PACKET_qXfer_features]);
10523
cfa9d6d9
DJ
10524 case TARGET_OBJECT_LIBRARIES:
10525 return remote_read_qxfer
9b409511 10526 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10527 &remote_protocol_packets[PACKET_qXfer_libraries]);
10528
2268b414
JK
10529 case TARGET_OBJECT_LIBRARIES_SVR4:
10530 return remote_read_qxfer
9b409511 10531 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10532 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10533
fd79ecee
DJ
10534 case TARGET_OBJECT_MEMORY_MAP:
10535 gdb_assert (annex == NULL);
10536 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
9b409511 10537 xfered_len,
fd79ecee
DJ
10538 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10539
07e059b5
VP
10540 case TARGET_OBJECT_OSDATA:
10541 /* Should only get here if we're connected. */
5d93a237 10542 gdb_assert (rs->remote_desc);
07e059b5 10543 return remote_read_qxfer
9b409511 10544 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10545 &remote_protocol_packets[PACKET_qXfer_osdata]);
10546
dc146f7c
VP
10547 case TARGET_OBJECT_THREADS:
10548 gdb_assert (annex == NULL);
10549 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
9b409511 10550 xfered_len,
dc146f7c
VP
10551 &remote_protocol_packets[PACKET_qXfer_threads]);
10552
b3b9301e
PA
10553 case TARGET_OBJECT_TRACEFRAME_INFO:
10554 gdb_assert (annex == NULL);
10555 return remote_read_qxfer
9b409511 10556 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10557 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10558
10559 case TARGET_OBJECT_FDPIC:
10560 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
9b409511 10561 xfered_len,
78d85199 10562 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10563
10564 case TARGET_OBJECT_OPENVMS_UIB:
10565 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
9b409511 10566 xfered_len,
169081d0
TG
10567 &remote_protocol_packets[PACKET_qXfer_uib]);
10568
9accd112
MM
10569 case TARGET_OBJECT_BTRACE:
10570 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
9b409511 10571 xfered_len,
9accd112
MM
10572 &remote_protocol_packets[PACKET_qXfer_btrace]);
10573
f4abbc16
MM
10574 case TARGET_OBJECT_BTRACE_CONF:
10575 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10576 len, xfered_len,
10577 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10578
c78fa86a
GB
10579 case TARGET_OBJECT_EXEC_FILE:
10580 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10581 len, xfered_len,
10582 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10583
1e3ff5ad 10584 default:
2ed4b548 10585 return TARGET_XFER_E_IO;
c906108c
SS
10586 }
10587
0df8b418 10588 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10589 large enough let the caller deal with it. */
ea9c271d 10590 if (len < get_remote_packet_size ())
2ed4b548 10591 return TARGET_XFER_E_IO;
ea9c271d 10592 len = get_remote_packet_size ();
1e3ff5ad 10593
23860348 10594 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10595 if (!rs->remote_desc)
8a3fe4f8 10596 error (_("remote query is only available after target open"));
c906108c 10597
1e3ff5ad 10598 gdb_assert (annex != NULL);
4b8a223f 10599 gdb_assert (readbuf != NULL);
c906108c 10600
6d820c5c 10601 p2 = rs->buf;
c906108c
SS
10602 *p2++ = 'q';
10603 *p2++ = query_type;
10604
23860348
MS
10605 /* We used one buffer char for the remote protocol q command and
10606 another for the query type. As the remote protocol encapsulation
10607 uses 4 chars plus one extra in case we are debugging
10608 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10609 string. */
c906108c 10610 i = 0;
ea9c271d 10611 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10612 {
1e3ff5ad
AC
10613 /* Bad caller may have sent forbidden characters. */
10614 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10615 *p2++ = annex[i];
c906108c
SS
10616 i++;
10617 }
1e3ff5ad
AC
10618 *p2 = '\0';
10619 gdb_assert (annex[i] == '\0');
c906108c 10620
6d820c5c 10621 i = putpkt (rs->buf);
c5aa993b 10622 if (i < 0)
2ed4b548 10623 return TARGET_XFER_E_IO;
c906108c 10624
6d820c5c
DJ
10625 getpkt (&rs->buf, &rs->buf_size, 0);
10626 strcpy ((char *) readbuf, rs->buf);
c906108c 10627
9b409511 10628 *xfered_len = strlen ((char *) readbuf);
92ffd475 10629 return (*xfered_len != 0) ? TARGET_XFER_OK : TARGET_XFER_EOF;
c906108c
SS
10630}
10631
09c98b44
DB
10632/* Implementation of to_get_memory_xfer_limit. */
10633
10634static ULONGEST
10635remote_get_memory_xfer_limit (struct target_ops *ops)
10636{
10637 return get_memory_write_packet_size ();
10638}
10639
08388c79
DE
10640static int
10641remote_search_memory (struct target_ops* ops,
10642 CORE_ADDR start_addr, ULONGEST search_space_len,
10643 const gdb_byte *pattern, ULONGEST pattern_len,
10644 CORE_ADDR *found_addrp)
10645{
f5656ead 10646 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
10647 struct remote_state *rs = get_remote_state ();
10648 int max_size = get_memory_write_packet_size ();
10649 struct packet_config *packet =
10650 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
10651 /* Number of packet bytes used to encode the pattern;
10652 this could be more than PATTERN_LEN due to escape characters. */
08388c79 10653 int escaped_pattern_len;
0df8b418 10654 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
10655 int used_pattern_len;
10656 int i;
10657 int found;
10658 ULONGEST found_addr;
10659
7cc244de
PA
10660 /* Don't go to the target if we don't have to. This is done before
10661 checking packet_config_support to avoid the possibility that a
10662 success for this edge case means the facility works in
10663 general. */
08388c79
DE
10664 if (pattern_len > search_space_len)
10665 return 0;
10666 if (pattern_len == 0)
10667 {
10668 *found_addrp = start_addr;
10669 return 1;
10670 }
10671
10672 /* If we already know the packet isn't supported, fall back to the simple
10673 way of searching memory. */
10674
4082afcc 10675 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10676 {
10677 /* Target doesn't provided special support, fall back and use the
10678 standard support (copy memory and do the search here). */
10679 return simple_search_memory (ops, start_addr, search_space_len,
10680 pattern, pattern_len, found_addrp);
10681 }
10682
28439a30
PA
10683 /* Make sure the remote is pointing at the right process. */
10684 set_general_process ();
10685
08388c79
DE
10686 /* Insert header. */
10687 i = snprintf (rs->buf, max_size,
10688 "qSearch:memory:%s;%s;",
5af949e3 10689 phex_nz (start_addr, addr_size),
08388c79
DE
10690 phex_nz (search_space_len, sizeof (search_space_len)));
10691 max_size -= (i + 1);
10692
10693 /* Escape as much data as fits into rs->buf. */
10694 escaped_pattern_len =
124e13d9 10695 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
08388c79
DE
10696 &used_pattern_len, max_size);
10697
10698 /* Bail if the pattern is too large. */
10699 if (used_pattern_len != pattern_len)
9b20d036 10700 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
10701
10702 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10703 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10704 || packet_ok (rs->buf, packet) != PACKET_OK)
10705 {
10706 /* The request may not have worked because the command is not
10707 supported. If so, fall back to the simple way. */
7cc244de 10708 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10709 {
10710 return simple_search_memory (ops, start_addr, search_space_len,
10711 pattern, pattern_len, found_addrp);
10712 }
10713 return -1;
10714 }
10715
10716 if (rs->buf[0] == '0')
10717 found = 0;
10718 else if (rs->buf[0] == '1')
10719 {
10720 found = 1;
10721 if (rs->buf[1] != ',')
10e0fa18 10722 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10723 unpack_varlen_hex (rs->buf + 2, &found_addr);
10724 *found_addrp = found_addr;
10725 }
10726 else
10e0fa18 10727 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10728
10729 return found;
10730}
10731
96baa820 10732static void
a30bf1f1 10733remote_rcmd (struct target_ops *self, const char *command,
d9fcf2fb 10734 struct ui_file *outbuf)
96baa820 10735{
d01949b6 10736 struct remote_state *rs = get_remote_state ();
2e9f7625 10737 char *p = rs->buf;
96baa820 10738
5d93a237 10739 if (!rs->remote_desc)
8a3fe4f8 10740 error (_("remote rcmd is only available after target open"));
96baa820 10741
23860348 10742 /* Send a NULL command across as an empty command. */
7be570e7
JM
10743 if (command == NULL)
10744 command = "";
10745
23860348 10746 /* The query prefix. */
2e9f7625
DJ
10747 strcpy (rs->buf, "qRcmd,");
10748 p = strchr (rs->buf, '\0');
96baa820 10749
3e43a32a
MS
10750 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10751 > get_remote_packet_size ())
8a3fe4f8 10752 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 10753
23860348 10754 /* Encode the actual command. */
a30bf1f1 10755 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 10756
6d820c5c 10757 if (putpkt (rs->buf) < 0)
8a3fe4f8 10758 error (_("Communication problem with target."));
96baa820
JM
10759
10760 /* get/display the response */
10761 while (1)
10762 {
2e9f7625
DJ
10763 char *buf;
10764
00bf0b85 10765 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 10766 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 10767 rs->buf[0] = '\0';
5b37825d
PW
10768 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10769 {
10770 /* Timeout. Continue to (try to) read responses.
10771 This is better than stopping with an error, assuming the stub
10772 is still executing the (long) monitor command.
10773 If needed, the user can interrupt gdb using C-c, obtaining
10774 an effect similar to stop on timeout. */
10775 continue;
10776 }
2e9f7625 10777 buf = rs->buf;
96baa820 10778 if (buf[0] == '\0')
8a3fe4f8 10779 error (_("Target does not support this command."));
96baa820
JM
10780 if (buf[0] == 'O' && buf[1] != 'K')
10781 {
23860348 10782 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
10783 continue;
10784 }
10785 if (strcmp (buf, "OK") == 0)
10786 break;
7be570e7
JM
10787 if (strlen (buf) == 3 && buf[0] == 'E'
10788 && isdigit (buf[1]) && isdigit (buf[2]))
10789 {
8a3fe4f8 10790 error (_("Protocol error with Rcmd"));
7be570e7 10791 }
96baa820
JM
10792 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10793 {
10794 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 10795
96baa820
JM
10796 fputc_unfiltered (c, outbuf);
10797 }
10798 break;
10799 }
10800}
10801
a664f67e 10802static std::vector<mem_region>
fd79ecee
DJ
10803remote_memory_map (struct target_ops *ops)
10804{
a664f67e 10805 std::vector<mem_region> result;
b7b030ad
TT
10806 gdb::unique_xmalloc_ptr<char> text
10807 = target_read_stralloc (&current_target, TARGET_OBJECT_MEMORY_MAP, NULL);
fd79ecee
DJ
10808
10809 if (text)
b7b030ad 10810 result = parse_memory_map (text.get ());
fd79ecee
DJ
10811
10812 return result;
10813}
10814
c906108c 10815static void
ac88e2de 10816packet_command (const char *args, int from_tty)
c906108c 10817{
d01949b6 10818 struct remote_state *rs = get_remote_state ();
c906108c 10819
5d93a237 10820 if (!rs->remote_desc)
8a3fe4f8 10821 error (_("command can only be used with remote target"));
c906108c 10822
c5aa993b 10823 if (!args)
8a3fe4f8 10824 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
10825
10826 puts_filtered ("sending: ");
10827 print_packet (args);
10828 puts_filtered ("\n");
10829 putpkt (args);
10830
6d820c5c 10831 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 10832 puts_filtered ("received: ");
6d820c5c 10833 print_packet (rs->buf);
c906108c
SS
10834 puts_filtered ("\n");
10835}
10836
10837#if 0
23860348 10838/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 10839
a14ed312 10840static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 10841
a14ed312 10842static void threadset_test_cmd (char *cmd, int tty);
c906108c 10843
a14ed312 10844static void threadalive_test (char *cmd, int tty);
c906108c 10845
a14ed312 10846static void threadlist_test_cmd (char *cmd, int tty);
c906108c 10847
23860348 10848int get_and_display_threadinfo (threadref *ref);
c906108c 10849
a14ed312 10850static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 10851
23860348 10852static int thread_display_step (threadref *ref, void *context);
c906108c 10853
a14ed312 10854static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 10855
a14ed312 10856static void init_remote_threadtests (void);
c906108c 10857
23860348 10858#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
10859
10860static void
0b39b52e 10861threadset_test_cmd (const char *cmd, int tty)
c906108c
SS
10862{
10863 int sample_thread = SAMPLE_THREAD;
10864
a3f17187 10865 printf_filtered (_("Remote threadset test\n"));
79d7f229 10866 set_general_thread (sample_thread);
c906108c
SS
10867}
10868
10869
10870static void
0b39b52e 10871threadalive_test (const char *cmd, int tty)
c906108c
SS
10872{
10873 int sample_thread = SAMPLE_THREAD;
79d7f229 10874 int pid = ptid_get_pid (inferior_ptid);
ba348170 10875 ptid_t ptid = ptid_build (pid, sample_thread, 0);
c906108c 10876
79d7f229 10877 if (remote_thread_alive (ptid))
c906108c
SS
10878 printf_filtered ("PASS: Thread alive test\n");
10879 else
10880 printf_filtered ("FAIL: Thread alive test\n");
10881}
10882
23860348 10883void output_threadid (char *title, threadref *ref);
c906108c
SS
10884
10885void
fba45db2 10886output_threadid (char *title, threadref *ref)
c906108c
SS
10887{
10888 char hexid[20];
10889
23860348 10890 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
10891 hexid[16] = 0;
10892 printf_filtered ("%s %s\n", title, (&hexid[0]));
10893}
10894
10895static void
0b39b52e 10896threadlist_test_cmd (const char *cmd, int tty)
c906108c
SS
10897{
10898 int startflag = 1;
10899 threadref nextthread;
10900 int done, result_count;
10901 threadref threadlist[3];
10902
10903 printf_filtered ("Remote Threadlist test\n");
10904 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10905 &result_count, &threadlist[0]))
10906 printf_filtered ("FAIL: threadlist test\n");
10907 else
10908 {
10909 threadref *scan = threadlist;
10910 threadref *limit = scan + result_count;
10911
10912 while (scan < limit)
10913 output_threadid (" thread ", scan++);
10914 }
10915}
10916
10917void
fba45db2 10918display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
10919{
10920 output_threadid ("Threadid: ", &info->threadid);
10921 printf_filtered ("Name: %s\n ", info->shortname);
10922 printf_filtered ("State: %s\n", info->display);
10923 printf_filtered ("other: %s\n\n", info->more_display);
10924}
10925
10926int
fba45db2 10927get_and_display_threadinfo (threadref *ref)
c906108c
SS
10928{
10929 int result;
10930 int set;
10931 struct gdb_ext_thread_info threadinfo;
10932
10933 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10934 | TAG_MOREDISPLAY | TAG_DISPLAY;
10935 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10936 display_thread_info (&threadinfo);
10937 return result;
10938}
10939
10940static void
0b39b52e 10941threadinfo_test_cmd (const char *cmd, int tty)
c906108c
SS
10942{
10943 int athread = SAMPLE_THREAD;
10944 threadref thread;
10945 int set;
10946
10947 int_to_threadref (&thread, athread);
10948 printf_filtered ("Remote Threadinfo test\n");
10949 if (!get_and_display_threadinfo (&thread))
10950 printf_filtered ("FAIL cannot get thread info\n");
10951}
10952
10953static int
fba45db2 10954thread_display_step (threadref *ref, void *context)
c906108c
SS
10955{
10956 /* output_threadid(" threadstep ",ref); *//* simple test */
10957 return get_and_display_threadinfo (ref);
10958}
10959
10960static void
0b39b52e 10961threadlist_update_test_cmd (const char *cmd, int tty)
c906108c
SS
10962{
10963 printf_filtered ("Remote Threadlist update test\n");
10964 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10965}
10966
10967static void
10968init_remote_threadtests (void)
10969{
3e43a32a
MS
10970 add_com ("tlist", class_obscure, threadlist_test_cmd,
10971 _("Fetch and print the remote list of "
10972 "thread identifiers, one pkt only"));
c906108c 10973 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 10974 _("Fetch and display info about one thread"));
c906108c 10975 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 10976 _("Test setting to a different thread"));
c906108c 10977 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 10978 _("Iterate through updating all remote thread info"));
c906108c 10979 add_com ("talive", class_obscure, threadalive_test,
1bedd215 10980 _(" Remote thread alive test "));
c906108c
SS
10981}
10982
10983#endif /* 0 */
10984
f3fb8c85
MS
10985/* Convert a thread ID to a string. Returns the string in a static
10986 buffer. */
10987
7a114964 10988static const char *
117de6a9 10989remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 10990{
79d7f229 10991 static char buf[64];
82f73884 10992 struct remote_state *rs = get_remote_state ();
f3fb8c85 10993
7cee1e54
PA
10994 if (ptid_equal (ptid, null_ptid))
10995 return normal_pid_to_str (ptid);
10996 else if (ptid_is_pid (ptid))
ecd0ada5
PA
10997 {
10998 /* Printing an inferior target id. */
10999
11000 /* When multi-process extensions are off, there's no way in the
11001 remote protocol to know the remote process id, if there's any
11002 at all. There's one exception --- when we're connected with
11003 target extended-remote, and we manually attached to a process
11004 with "attach PID". We don't record anywhere a flag that
11005 allows us to distinguish that case from the case of
11006 connecting with extended-remote and the stub already being
11007 attached to a process, and reporting yes to qAttached, hence
11008 no smart special casing here. */
11009 if (!remote_multi_process_p (rs))
11010 {
11011 xsnprintf (buf, sizeof buf, "Remote target");
11012 return buf;
11013 }
11014
11015 return normal_pid_to_str (ptid);
82f73884 11016 }
ecd0ada5 11017 else
79d7f229 11018 {
ecd0ada5
PA
11019 if (ptid_equal (magic_null_ptid, ptid))
11020 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11021 else if (remote_multi_process_p (rs))
de0d863e
DB
11022 if (ptid_get_lwp (ptid) == 0)
11023 return normal_pid_to_str (ptid);
11024 else
11025 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11026 ptid_get_pid (ptid), ptid_get_lwp (ptid));
ecd0ada5
PA
11027 else
11028 xsnprintf (buf, sizeof buf, "Thread %ld",
ba348170 11029 ptid_get_lwp (ptid));
79d7f229
PA
11030 return buf;
11031 }
f3fb8c85
MS
11032}
11033
38691318
KB
11034/* Get the address of the thread local variable in OBJFILE which is
11035 stored at OFFSET within the thread local storage for thread PTID. */
11036
11037static CORE_ADDR
117de6a9
PA
11038remote_get_thread_local_address (struct target_ops *ops,
11039 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 11040{
4082afcc 11041 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11042 {
11043 struct remote_state *rs = get_remote_state ();
6d820c5c 11044 char *p = rs->buf;
82f73884 11045 char *endp = rs->buf + get_remote_packet_size ();
571dd617 11046 enum packet_result result;
38691318
KB
11047
11048 strcpy (p, "qGetTLSAddr:");
11049 p += strlen (p);
82f73884 11050 p = write_ptid (p, endp, ptid);
38691318
KB
11051 *p++ = ',';
11052 p += hexnumstr (p, offset);
11053 *p++ = ',';
11054 p += hexnumstr (p, lm);
11055 *p++ = '\0';
11056
6d820c5c
DJ
11057 putpkt (rs->buf);
11058 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
11059 result = packet_ok (rs->buf,
11060 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11061 if (result == PACKET_OK)
38691318
KB
11062 {
11063 ULONGEST result;
11064
6d820c5c 11065 unpack_varlen_hex (rs->buf, &result);
38691318
KB
11066 return result;
11067 }
571dd617 11068 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11069 throw_error (TLS_GENERIC_ERROR,
11070 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11071 else
109c3e39
AC
11072 throw_error (TLS_GENERIC_ERROR,
11073 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11074 }
11075 else
109c3e39
AC
11076 throw_error (TLS_GENERIC_ERROR,
11077 _("TLS not supported or disabled on this target"));
38691318
KB
11078 /* Not reached. */
11079 return 0;
11080}
11081
711e434b
PM
11082/* Provide thread local base, i.e. Thread Information Block address.
11083 Returns 1 if ptid is found and thread_local_base is non zero. */
11084
70221824 11085static int
bd7ae0f5 11086remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
711e434b 11087{
4082afcc 11088 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11089 {
11090 struct remote_state *rs = get_remote_state ();
11091 char *p = rs->buf;
11092 char *endp = rs->buf + get_remote_packet_size ();
11093 enum packet_result result;
11094
11095 strcpy (p, "qGetTIBAddr:");
11096 p += strlen (p);
11097 p = write_ptid (p, endp, ptid);
11098 *p++ = '\0';
11099
11100 putpkt (rs->buf);
11101 getpkt (&rs->buf, &rs->buf_size, 0);
11102 result = packet_ok (rs->buf,
11103 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11104 if (result == PACKET_OK)
11105 {
11106 ULONGEST result;
11107
11108 unpack_varlen_hex (rs->buf, &result);
11109 if (addr)
11110 *addr = (CORE_ADDR) result;
11111 return 1;
11112 }
11113 else if (result == PACKET_UNKNOWN)
11114 error (_("Remote target doesn't support qGetTIBAddr packet"));
11115 else
11116 error (_("Remote target failed to process qGetTIBAddr request"));
11117 }
11118 else
11119 error (_("qGetTIBAddr not supported or disabled on this target"));
11120 /* Not reached. */
11121 return 0;
11122}
11123
29709017
DJ
11124/* Support for inferring a target description based on the current
11125 architecture and the size of a 'g' packet. While the 'g' packet
11126 can have any size (since optional registers can be left off the
11127 end), some sizes are easily recognizable given knowledge of the
11128 approximate architecture. */
11129
11130struct remote_g_packet_guess
11131{
11132 int bytes;
11133 const struct target_desc *tdesc;
11134};
11135typedef struct remote_g_packet_guess remote_g_packet_guess_s;
11136DEF_VEC_O(remote_g_packet_guess_s);
11137
11138struct remote_g_packet_data
11139{
11140 VEC(remote_g_packet_guess_s) *guesses;
11141};
11142
11143static struct gdbarch_data *remote_g_packet_data_handle;
11144
11145static void *
11146remote_g_packet_data_init (struct obstack *obstack)
11147{
11148 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
11149}
11150
11151void
11152register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11153 const struct target_desc *tdesc)
11154{
11155 struct remote_g_packet_data *data
19ba03f4
SM
11156 = ((struct remote_g_packet_data *)
11157 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11158 struct remote_g_packet_guess new_guess, *guess;
11159 int ix;
11160
11161 gdb_assert (tdesc != NULL);
11162
11163 for (ix = 0;
11164 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11165 ix++)
11166 if (guess->bytes == bytes)
11167 internal_error (__FILE__, __LINE__,
9b20d036 11168 _("Duplicate g packet description added for size %d"),
29709017
DJ
11169 bytes);
11170
11171 new_guess.bytes = bytes;
11172 new_guess.tdesc = tdesc;
11173 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
11174}
11175
d962ef82
DJ
11176/* Return 1 if remote_read_description would do anything on this target
11177 and architecture, 0 otherwise. */
11178
11179static int
11180remote_read_description_p (struct target_ops *target)
11181{
11182 struct remote_g_packet_data *data
19ba03f4
SM
11183 = ((struct remote_g_packet_data *)
11184 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82
DJ
11185
11186 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11187 return 1;
11188
11189 return 0;
11190}
11191
29709017
DJ
11192static const struct target_desc *
11193remote_read_description (struct target_ops *target)
11194{
11195 struct remote_g_packet_data *data
19ba03f4
SM
11196 = ((struct remote_g_packet_data *)
11197 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11198
d962ef82
DJ
11199 /* Do not try this during initial connection, when we do not know
11200 whether there is a running but stopped thread. */
11201 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
2117c711 11202 return target->beneath->to_read_description (target->beneath);
d962ef82 11203
29709017
DJ
11204 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11205 {
11206 struct remote_g_packet_guess *guess;
11207 int ix;
11208 int bytes = send_g_packet ();
11209
11210 for (ix = 0;
11211 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11212 ix++)
11213 if (guess->bytes == bytes)
11214 return guess->tdesc;
11215
11216 /* We discard the g packet. A minor optimization would be to
11217 hold on to it, and fill the register cache once we have selected
11218 an architecture, but it's too tricky to do safely. */
11219 }
11220
2117c711 11221 return target->beneath->to_read_description (target->beneath);
29709017
DJ
11222}
11223
a6b151f1
DJ
11224/* Remote file transfer support. This is host-initiated I/O, not
11225 target-initiated; for target-initiated, see remote-fileio.c. */
11226
11227/* If *LEFT is at least the length of STRING, copy STRING to
11228 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11229 decrease *LEFT. Otherwise raise an error. */
11230
11231static void
a121b7c1 11232remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11233{
11234 int len = strlen (string);
11235
11236 if (len > *left)
11237 error (_("Packet too long for target."));
11238
11239 memcpy (*buffer, string, len);
11240 *buffer += len;
11241 *left -= len;
11242
11243 /* NUL-terminate the buffer as a convenience, if there is
11244 room. */
11245 if (*left)
11246 **buffer = '\0';
11247}
11248
11249/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11250 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11251 decrease *LEFT. Otherwise raise an error. */
11252
11253static void
11254remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11255 int len)
11256{
11257 if (2 * len > *left)
11258 error (_("Packet too long for target."));
11259
11260 bin2hex (bytes, *buffer, len);
11261 *buffer += 2 * len;
11262 *left -= 2 * len;
11263
11264 /* NUL-terminate the buffer as a convenience, if there is
11265 room. */
11266 if (*left)
11267 **buffer = '\0';
11268}
11269
11270/* If *LEFT is large enough, convert VALUE to hex and add it to
11271 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11272 decrease *LEFT. Otherwise raise an error. */
11273
11274static void
11275remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11276{
11277 int len = hexnumlen (value);
11278
11279 if (len > *left)
11280 error (_("Packet too long for target."));
11281
11282 hexnumstr (*buffer, value);
11283 *buffer += len;
11284 *left -= len;
11285
11286 /* NUL-terminate the buffer as a convenience, if there is
11287 room. */
11288 if (*left)
11289 **buffer = '\0';
11290}
11291
11292/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11293 value, *REMOTE_ERRNO to the remote error number or zero if none
11294 was included, and *ATTACHMENT to point to the start of the annex
11295 if any. The length of the packet isn't needed here; there may
11296 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11297
11298 Return 0 if the packet could be parsed, -1 if it could not. If
11299 -1 is returned, the other variables may not be initialized. */
11300
11301static int
11302remote_hostio_parse_result (char *buffer, int *retcode,
11303 int *remote_errno, char **attachment)
11304{
11305 char *p, *p2;
11306
11307 *remote_errno = 0;
11308 *attachment = NULL;
11309
11310 if (buffer[0] != 'F')
11311 return -1;
11312
11313 errno = 0;
11314 *retcode = strtol (&buffer[1], &p, 16);
11315 if (errno != 0 || p == &buffer[1])
11316 return -1;
11317
11318 /* Check for ",errno". */
11319 if (*p == ',')
11320 {
11321 errno = 0;
11322 *remote_errno = strtol (p + 1, &p2, 16);
11323 if (errno != 0 || p + 1 == p2)
11324 return -1;
11325 p = p2;
11326 }
11327
11328 /* Check for ";attachment". If there is no attachment, the
11329 packet should end here. */
11330 if (*p == ';')
11331 {
11332 *attachment = p + 1;
11333 return 0;
11334 }
11335 else if (*p == '\0')
11336 return 0;
11337 else
11338 return -1;
11339}
11340
11341/* Send a prepared I/O packet to the target and read its response.
11342 The prepared packet is in the global RS->BUF before this function
11343 is called, and the answer is there when we return.
11344
11345 COMMAND_BYTES is the length of the request to send, which may include
11346 binary data. WHICH_PACKET is the packet configuration to check
11347 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11348 is set to the error number and -1 is returned. Otherwise the value
11349 returned by the function is returned.
11350
11351 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11352 attachment is expected; an error will be reported if there's a
11353 mismatch. If one is found, *ATTACHMENT will be set to point into
11354 the packet buffer and *ATTACHMENT_LEN will be set to the
11355 attachment's length. */
11356
11357static int
11358remote_hostio_send_command (int command_bytes, int which_packet,
11359 int *remote_errno, char **attachment,
11360 int *attachment_len)
11361{
11362 struct remote_state *rs = get_remote_state ();
11363 int ret, bytes_read;
11364 char *attachment_tmp;
11365
5d93a237 11366 if (!rs->remote_desc
4082afcc 11367 || packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11368 {
11369 *remote_errno = FILEIO_ENOSYS;
11370 return -1;
11371 }
11372
11373 putpkt_binary (rs->buf, command_bytes);
11374 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11375
11376 /* If it timed out, something is wrong. Don't try to parse the
11377 buffer. */
11378 if (bytes_read < 0)
11379 {
11380 *remote_errno = FILEIO_EINVAL;
11381 return -1;
11382 }
11383
11384 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11385 {
11386 case PACKET_ERROR:
11387 *remote_errno = FILEIO_EINVAL;
11388 return -1;
11389 case PACKET_UNKNOWN:
11390 *remote_errno = FILEIO_ENOSYS;
11391 return -1;
11392 case PACKET_OK:
11393 break;
11394 }
11395
11396 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11397 &attachment_tmp))
11398 {
11399 *remote_errno = FILEIO_EINVAL;
11400 return -1;
11401 }
11402
11403 /* Make sure we saw an attachment if and only if we expected one. */
11404 if ((attachment_tmp == NULL && attachment != NULL)
11405 || (attachment_tmp != NULL && attachment == NULL))
11406 {
11407 *remote_errno = FILEIO_EINVAL;
11408 return -1;
11409 }
11410
11411 /* If an attachment was found, it must point into the packet buffer;
11412 work out how many bytes there were. */
11413 if (attachment_tmp != NULL)
11414 {
11415 *attachment = attachment_tmp;
11416 *attachment_len = bytes_read - (*attachment - rs->buf);
11417 }
11418
11419 return ret;
11420}
11421
80152258
PA
11422/* Invalidate the readahead cache. */
11423
11424static void
11425readahead_cache_invalidate (void)
11426{
11427 struct remote_state *rs = get_remote_state ();
11428
11429 rs->readahead_cache.fd = -1;
11430}
11431
11432/* Invalidate the readahead cache if it is holding data for FD. */
11433
11434static void
11435readahead_cache_invalidate_fd (int fd)
11436{
11437 struct remote_state *rs = get_remote_state ();
11438
11439 if (rs->readahead_cache.fd == fd)
11440 rs->readahead_cache.fd = -1;
11441}
11442
15a201c8
GB
11443/* Set the filesystem remote_hostio functions that take FILENAME
11444 arguments will use. Return 0 on success, or -1 if an error
11445 occurs (and set *REMOTE_ERRNO). */
11446
11447static int
11448remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11449{
11450 struct remote_state *rs = get_remote_state ();
11451 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11452 char *p = rs->buf;
11453 int left = get_remote_packet_size () - 1;
11454 char arg[9];
11455 int ret;
11456
11457 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11458 return 0;
11459
11460 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11461 return 0;
11462
11463 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11464
11465 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11466 remote_buffer_add_string (&p, &left, arg);
11467
11468 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11469 remote_errno, NULL, NULL);
11470
11471 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11472 return 0;
11473
11474 if (ret == 0)
11475 rs->fs_pid = required_pid;
11476
11477 return ret;
11478}
11479
12e2a5fd 11480/* Implementation of to_fileio_open. */
a6b151f1
DJ
11481
11482static int
cd897586 11483remote_hostio_open (struct target_ops *self,
07c138c8 11484 struct inferior *inf, const char *filename,
4313b8c0
GB
11485 int flags, int mode, int warn_if_slow,
11486 int *remote_errno)
a6b151f1
DJ
11487{
11488 struct remote_state *rs = get_remote_state ();
11489 char *p = rs->buf;
11490 int left = get_remote_packet_size () - 1;
11491
4313b8c0
GB
11492 if (warn_if_slow)
11493 {
11494 static int warning_issued = 0;
11495
11496 printf_unfiltered (_("Reading %s from remote target...\n"),
11497 filename);
11498
11499 if (!warning_issued)
11500 {
11501 warning (_("File transfers from remote targets can be slow."
11502 " Use \"set sysroot\" to access files locally"
11503 " instead."));
11504 warning_issued = 1;
11505 }
11506 }
11507
15a201c8
GB
11508 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11509 return -1;
11510
a6b151f1
DJ
11511 remote_buffer_add_string (&p, &left, "vFile:open:");
11512
11513 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11514 strlen (filename));
11515 remote_buffer_add_string (&p, &left, ",");
11516
11517 remote_buffer_add_int (&p, &left, flags);
11518 remote_buffer_add_string (&p, &left, ",");
11519
11520 remote_buffer_add_int (&p, &left, mode);
11521
11522 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11523 remote_errno, NULL, NULL);
11524}
11525
12e2a5fd 11526/* Implementation of to_fileio_pwrite. */
a6b151f1
DJ
11527
11528static int
0d866f62
TT
11529remote_hostio_pwrite (struct target_ops *self,
11530 int fd, const gdb_byte *write_buf, int len,
a6b151f1
DJ
11531 ULONGEST offset, int *remote_errno)
11532{
11533 struct remote_state *rs = get_remote_state ();
11534 char *p = rs->buf;
11535 int left = get_remote_packet_size ();
11536 int out_len;
11537
80152258
PA
11538 readahead_cache_invalidate_fd (fd);
11539
a6b151f1
DJ
11540 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11541
11542 remote_buffer_add_int (&p, &left, fd);
11543 remote_buffer_add_string (&p, &left, ",");
11544
11545 remote_buffer_add_int (&p, &left, offset);
11546 remote_buffer_add_string (&p, &left, ",");
11547
124e13d9 11548 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11549 get_remote_packet_size () - (p - rs->buf));
11550
11551 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11552 remote_errno, NULL, NULL);
11553}
11554
80152258
PA
11555/* Helper for the implementation of to_fileio_pread. Read the file
11556 from the remote side with vFile:pread. */
a6b151f1
DJ
11557
11558static int
80152258
PA
11559remote_hostio_pread_vFile (struct target_ops *self,
11560 int fd, gdb_byte *read_buf, int len,
11561 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11562{
11563 struct remote_state *rs = get_remote_state ();
11564 char *p = rs->buf;
11565 char *attachment;
11566 int left = get_remote_packet_size ();
11567 int ret, attachment_len;
11568 int read_len;
11569
11570 remote_buffer_add_string (&p, &left, "vFile:pread:");
11571
11572 remote_buffer_add_int (&p, &left, fd);
11573 remote_buffer_add_string (&p, &left, ",");
11574
11575 remote_buffer_add_int (&p, &left, len);
11576 remote_buffer_add_string (&p, &left, ",");
11577
11578 remote_buffer_add_int (&p, &left, offset);
11579
11580 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11581 remote_errno, &attachment,
11582 &attachment_len);
11583
11584 if (ret < 0)
11585 return ret;
11586
bc20a4af 11587 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11588 read_buf, len);
11589 if (read_len != ret)
11590 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11591
11592 return ret;
11593}
11594
80152258
PA
11595/* Serve pread from the readahead cache. Returns number of bytes
11596 read, or 0 if the request can't be served from the cache. */
11597
11598static int
11599remote_hostio_pread_from_cache (struct remote_state *rs,
11600 int fd, gdb_byte *read_buf, size_t len,
11601 ULONGEST offset)
11602{
11603 struct readahead_cache *cache = &rs->readahead_cache;
11604
11605 if (cache->fd == fd
11606 && cache->offset <= offset
11607 && offset < cache->offset + cache->bufsize)
11608 {
11609 ULONGEST max = cache->offset + cache->bufsize;
11610
11611 if (offset + len > max)
11612 len = max - offset;
11613
11614 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11615 return len;
11616 }
11617
11618 return 0;
11619}
11620
11621/* Implementation of to_fileio_pread. */
11622
11623static int
11624remote_hostio_pread (struct target_ops *self,
11625 int fd, gdb_byte *read_buf, int len,
11626 ULONGEST offset, int *remote_errno)
11627{
11628 int ret;
11629 struct remote_state *rs = get_remote_state ();
11630 struct readahead_cache *cache = &rs->readahead_cache;
11631
11632 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11633 if (ret > 0)
11634 {
11635 cache->hit_count++;
11636
11637 if (remote_debug)
11638 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11639 pulongest (cache->hit_count));
11640 return ret;
11641 }
11642
11643 cache->miss_count++;
11644 if (remote_debug)
11645 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11646 pulongest (cache->miss_count));
11647
11648 cache->fd = fd;
11649 cache->offset = offset;
11650 cache->bufsize = get_remote_packet_size ();
224c3ddb 11651 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258
PA
11652
11653 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11654 cache->offset, remote_errno);
11655 if (ret <= 0)
11656 {
11657 readahead_cache_invalidate_fd (fd);
11658 return ret;
11659 }
11660
11661 cache->bufsize = ret;
11662 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11663}
11664
12e2a5fd 11665/* Implementation of to_fileio_close. */
a6b151f1
DJ
11666
11667static int
df39ea25 11668remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
a6b151f1
DJ
11669{
11670 struct remote_state *rs = get_remote_state ();
11671 char *p = rs->buf;
11672 int left = get_remote_packet_size () - 1;
11673
80152258
PA
11674 readahead_cache_invalidate_fd (fd);
11675
a6b151f1
DJ
11676 remote_buffer_add_string (&p, &left, "vFile:close:");
11677
11678 remote_buffer_add_int (&p, &left, fd);
11679
11680 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11681 remote_errno, NULL, NULL);
11682}
11683
12e2a5fd 11684/* Implementation of to_fileio_unlink. */
a6b151f1
DJ
11685
11686static int
dbbca37d 11687remote_hostio_unlink (struct target_ops *self,
07c138c8
GB
11688 struct inferior *inf, const char *filename,
11689 int *remote_errno)
a6b151f1
DJ
11690{
11691 struct remote_state *rs = get_remote_state ();
11692 char *p = rs->buf;
11693 int left = get_remote_packet_size () - 1;
11694
15a201c8
GB
11695 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11696 return -1;
11697
a6b151f1
DJ
11698 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11699
11700 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11701 strlen (filename));
11702
11703 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11704 remote_errno, NULL, NULL);
11705}
11706
12e2a5fd 11707/* Implementation of to_fileio_readlink. */
b9e7b9c3
UW
11708
11709static char *
fab5aa7c 11710remote_hostio_readlink (struct target_ops *self,
07c138c8
GB
11711 struct inferior *inf, const char *filename,
11712 int *remote_errno)
b9e7b9c3
UW
11713{
11714 struct remote_state *rs = get_remote_state ();
11715 char *p = rs->buf;
11716 char *attachment;
11717 int left = get_remote_packet_size ();
11718 int len, attachment_len;
11719 int read_len;
11720 char *ret;
11721
15a201c8
GB
11722 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11723 return NULL;
11724
b9e7b9c3
UW
11725 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11726
11727 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11728 strlen (filename));
11729
11730 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11731 remote_errno, &attachment,
11732 &attachment_len);
11733
11734 if (len < 0)
11735 return NULL;
11736
224c3ddb 11737 ret = (char *) xmalloc (len + 1);
b9e7b9c3 11738
bc20a4af
PA
11739 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11740 (gdb_byte *) ret, len);
b9e7b9c3
UW
11741 if (read_len != len)
11742 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11743
11744 ret[len] = '\0';
11745 return ret;
11746}
11747
12e2a5fd 11748/* Implementation of to_fileio_fstat. */
0a93529c
GB
11749
11750static int
11751remote_hostio_fstat (struct target_ops *self,
11752 int fd, struct stat *st,
11753 int *remote_errno)
11754{
11755 struct remote_state *rs = get_remote_state ();
11756 char *p = rs->buf;
11757 int left = get_remote_packet_size ();
11758 int attachment_len, ret;
11759 char *attachment;
11760 struct fio_stat fst;
11761 int read_len;
11762
464b0089
GB
11763 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11764
11765 remote_buffer_add_int (&p, &left, fd);
11766
11767 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11768 remote_errno, &attachment,
11769 &attachment_len);
11770 if (ret < 0)
0a93529c 11771 {
464b0089
GB
11772 if (*remote_errno != FILEIO_ENOSYS)
11773 return ret;
11774
0a93529c
GB
11775 /* Strictly we should return -1, ENOSYS here, but when
11776 "set sysroot remote:" was implemented in August 2008
11777 BFD's need for a stat function was sidestepped with
11778 this hack. This was not remedied until March 2015
11779 so we retain the previous behavior to avoid breaking
11780 compatibility.
11781
11782 Note that the memset is a March 2015 addition; older
11783 GDBs set st_size *and nothing else* so the structure
11784 would have garbage in all other fields. This might
11785 break something but retaining the previous behavior
11786 here would be just too wrong. */
11787
11788 memset (st, 0, sizeof (struct stat));
11789 st->st_size = INT_MAX;
11790 return 0;
11791 }
11792
0a93529c
GB
11793 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11794 (gdb_byte *) &fst, sizeof (fst));
11795
11796 if (read_len != ret)
11797 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11798
11799 if (read_len != sizeof (fst))
11800 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11801 read_len, (int) sizeof (fst));
11802
11803 remote_fileio_to_host_stat (&fst, st);
11804
11805 return 0;
11806}
11807
12e2a5fd 11808/* Implementation of to_filesystem_is_local. */
e3dd7556
GB
11809
11810static int
11811remote_filesystem_is_local (struct target_ops *self)
11812{
11813 /* Valgrind GDB presents itself as a remote target but works
11814 on the local filesystem: it does not implement remote get
11815 and users are not expected to set a sysroot. To handle
11816 this case we treat the remote filesystem as local if the
11817 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11818 does not support vFile:open. */
a3be80c3 11819 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
11820 {
11821 enum packet_support ps = packet_support (PACKET_vFile_open);
11822
11823 if (ps == PACKET_SUPPORT_UNKNOWN)
11824 {
11825 int fd, remote_errno;
11826
11827 /* Try opening a file to probe support. The supplied
11828 filename is irrelevant, we only care about whether
11829 the stub recognizes the packet or not. */
07c138c8 11830 fd = remote_hostio_open (self, NULL, "just probing",
4313b8c0 11831 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
11832 &remote_errno);
11833
11834 if (fd >= 0)
11835 remote_hostio_close (self, fd, &remote_errno);
11836
11837 ps = packet_support (PACKET_vFile_open);
11838 }
11839
11840 if (ps == PACKET_DISABLE)
11841 {
11842 static int warning_issued = 0;
11843
11844 if (!warning_issued)
11845 {
11846 warning (_("remote target does not support file"
11847 " transfer, attempting to access files"
11848 " from local filesystem."));
11849 warning_issued = 1;
11850 }
11851
11852 return 1;
11853 }
11854 }
11855
11856 return 0;
11857}
11858
a6b151f1
DJ
11859static int
11860remote_fileio_errno_to_host (int errnum)
11861{
11862 switch (errnum)
11863 {
11864 case FILEIO_EPERM:
11865 return EPERM;
11866 case FILEIO_ENOENT:
11867 return ENOENT;
11868 case FILEIO_EINTR:
11869 return EINTR;
11870 case FILEIO_EIO:
11871 return EIO;
11872 case FILEIO_EBADF:
11873 return EBADF;
11874 case FILEIO_EACCES:
11875 return EACCES;
11876 case FILEIO_EFAULT:
11877 return EFAULT;
11878 case FILEIO_EBUSY:
11879 return EBUSY;
11880 case FILEIO_EEXIST:
11881 return EEXIST;
11882 case FILEIO_ENODEV:
11883 return ENODEV;
11884 case FILEIO_ENOTDIR:
11885 return ENOTDIR;
11886 case FILEIO_EISDIR:
11887 return EISDIR;
11888 case FILEIO_EINVAL:
11889 return EINVAL;
11890 case FILEIO_ENFILE:
11891 return ENFILE;
11892 case FILEIO_EMFILE:
11893 return EMFILE;
11894 case FILEIO_EFBIG:
11895 return EFBIG;
11896 case FILEIO_ENOSPC:
11897 return ENOSPC;
11898 case FILEIO_ESPIPE:
11899 return ESPIPE;
11900 case FILEIO_EROFS:
11901 return EROFS;
11902 case FILEIO_ENOSYS:
11903 return ENOSYS;
11904 case FILEIO_ENAMETOOLONG:
11905 return ENAMETOOLONG;
11906 }
11907 return -1;
11908}
11909
11910static char *
11911remote_hostio_error (int errnum)
11912{
11913 int host_error = remote_fileio_errno_to_host (errnum);
11914
11915 if (host_error == -1)
11916 error (_("Unknown remote I/O error %d"), errnum);
11917 else
11918 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11919}
11920
a6b151f1
DJ
11921static void
11922remote_hostio_close_cleanup (void *opaque)
11923{
11924 int fd = *(int *) opaque;
11925 int remote_errno;
11926
df39ea25 11927 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
a6b151f1
DJ
11928}
11929
11930void
11931remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11932{
11933 struct cleanup *back_to, *close_cleanup;
11934 int retcode, fd, remote_errno, bytes, io_size;
a6b151f1
DJ
11935 gdb_byte *buffer;
11936 int bytes_in_buffer;
11937 int saw_eof;
11938 ULONGEST offset;
5d93a237 11939 struct remote_state *rs = get_remote_state ();
a6b151f1 11940
5d93a237 11941 if (!rs->remote_desc)
a6b151f1
DJ
11942 error (_("command can only be used with remote target"));
11943
d419f42d 11944 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
11945 if (file == NULL)
11946 perror_with_name (local_file);
a6b151f1 11947
07c138c8 11948 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
cd897586 11949 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
a6b151f1 11950 | FILEIO_O_TRUNC),
4313b8c0 11951 0700, 0, &remote_errno);
a6b151f1
DJ
11952 if (fd == -1)
11953 remote_hostio_error (remote_errno);
11954
11955 /* Send up to this many bytes at once. They won't all fit in the
11956 remote packet limit, so we'll transfer slightly fewer. */
11957 io_size = get_remote_packet_size ();
224c3ddb 11958 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 11959 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
11960
11961 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11962
11963 bytes_in_buffer = 0;
11964 saw_eof = 0;
11965 offset = 0;
11966 while (bytes_in_buffer || !saw_eof)
11967 {
11968 if (!saw_eof)
11969 {
3e43a32a
MS
11970 bytes = fread (buffer + bytes_in_buffer, 1,
11971 io_size - bytes_in_buffer,
d419f42d 11972 file.get ());
a6b151f1
DJ
11973 if (bytes == 0)
11974 {
d419f42d 11975 if (ferror (file.get ()))
a6b151f1
DJ
11976 error (_("Error reading %s."), local_file);
11977 else
11978 {
11979 /* EOF. Unless there is something still in the
11980 buffer from the last iteration, we are done. */
11981 saw_eof = 1;
11982 if (bytes_in_buffer == 0)
11983 break;
11984 }
11985 }
11986 }
11987 else
11988 bytes = 0;
11989
11990 bytes += bytes_in_buffer;
11991 bytes_in_buffer = 0;
11992
0d866f62
TT
11993 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11994 fd, buffer, bytes,
3e43a32a 11995 offset, &remote_errno);
a6b151f1
DJ
11996
11997 if (retcode < 0)
11998 remote_hostio_error (remote_errno);
11999 else if (retcode == 0)
12000 error (_("Remote write of %d bytes returned 0!"), bytes);
12001 else if (retcode < bytes)
12002 {
12003 /* Short write. Save the rest of the read data for the next
12004 write. */
12005 bytes_in_buffer = bytes - retcode;
12006 memmove (buffer, buffer + retcode, bytes_in_buffer);
12007 }
12008
12009 offset += retcode;
12010 }
12011
12012 discard_cleanups (close_cleanup);
df39ea25 12013 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12014 remote_hostio_error (remote_errno);
12015
12016 if (from_tty)
12017 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12018 do_cleanups (back_to);
12019}
12020
12021void
12022remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12023{
12024 struct cleanup *back_to, *close_cleanup;
cea39f65 12025 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
12026 gdb_byte *buffer;
12027 ULONGEST offset;
5d93a237 12028 struct remote_state *rs = get_remote_state ();
a6b151f1 12029
5d93a237 12030 if (!rs->remote_desc)
a6b151f1
DJ
12031 error (_("command can only be used with remote target"));
12032
07c138c8 12033 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
4313b8c0
GB
12034 remote_file, FILEIO_O_RDONLY, 0, 0,
12035 &remote_errno);
a6b151f1
DJ
12036 if (fd == -1)
12037 remote_hostio_error (remote_errno);
12038
d419f42d 12039 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12040 if (file == NULL)
12041 perror_with_name (local_file);
a6b151f1
DJ
12042
12043 /* Send up to this many bytes at once. They won't all fit in the
12044 remote packet limit, so we'll transfer slightly fewer. */
12045 io_size = get_remote_packet_size ();
224c3ddb 12046 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12047 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
12048
12049 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
12050
12051 offset = 0;
12052 while (1)
12053 {
a3be983c
TT
12054 bytes = remote_hostio_pread (find_target_at (process_stratum),
12055 fd, buffer, io_size, offset, &remote_errno);
a6b151f1
DJ
12056 if (bytes == 0)
12057 /* Success, but no bytes, means end-of-file. */
12058 break;
12059 if (bytes == -1)
12060 remote_hostio_error (remote_errno);
12061
12062 offset += bytes;
12063
d419f42d 12064 bytes = fwrite (buffer, 1, bytes, file.get ());
a6b151f1
DJ
12065 if (bytes == 0)
12066 perror_with_name (local_file);
12067 }
12068
12069 discard_cleanups (close_cleanup);
df39ea25 12070 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12071 remote_hostio_error (remote_errno);
12072
12073 if (from_tty)
12074 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12075 do_cleanups (back_to);
12076}
12077
12078void
12079remote_file_delete (const char *remote_file, int from_tty)
12080{
12081 int retcode, remote_errno;
5d93a237 12082 struct remote_state *rs = get_remote_state ();
a6b151f1 12083
5d93a237 12084 if (!rs->remote_desc)
a6b151f1
DJ
12085 error (_("command can only be used with remote target"));
12086
dbbca37d 12087 retcode = remote_hostio_unlink (find_target_at (process_stratum),
07c138c8 12088 NULL, remote_file, &remote_errno);
a6b151f1
DJ
12089 if (retcode == -1)
12090 remote_hostio_error (remote_errno);
12091
12092 if (from_tty)
12093 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12094}
12095
12096static void
ac88e2de 12097remote_put_command (const char *args, int from_tty)
a6b151f1 12098{
d1a41061
PP
12099 if (args == NULL)
12100 error_no_arg (_("file to put"));
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 put"));
12105
12106 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12107}
12108
12109static void
ac88e2de 12110remote_get_command (const char *args, int from_tty)
a6b151f1 12111{
d1a41061
PP
12112 if (args == NULL)
12113 error_no_arg (_("file to get"));
12114
773a1edc 12115 gdb_argv argv (args);
a6b151f1
DJ
12116 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12117 error (_("Invalid parameters to remote get"));
12118
12119 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12120}
12121
12122static void
ac88e2de 12123remote_delete_command (const char *args, int from_tty)
a6b151f1 12124{
d1a41061
PP
12125 if (args == NULL)
12126 error_no_arg (_("file to delete"));
12127
773a1edc 12128 gdb_argv argv (args);
a6b151f1
DJ
12129 if (argv[0] == NULL || argv[1] != NULL)
12130 error (_("Invalid parameters to remote delete"));
12131
12132 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12133}
12134
12135static void
981a3fb3 12136remote_command (const char *args, int from_tty)
a6b151f1 12137{
635c7e8a 12138 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12139}
12140
b2175913 12141static int
19db3e69 12142remote_can_execute_reverse (struct target_ops *self)
b2175913 12143{
4082afcc
PA
12144 if (packet_support (PACKET_bs) == PACKET_ENABLE
12145 || packet_support (PACKET_bc) == PACKET_ENABLE)
40ab02ce
MS
12146 return 1;
12147 else
12148 return 0;
b2175913
MS
12149}
12150
74531fed 12151static int
2a9a2795 12152remote_supports_non_stop (struct target_ops *self)
74531fed
PA
12153{
12154 return 1;
12155}
12156
03583c20 12157static int
2bfc0540 12158remote_supports_disable_randomization (struct target_ops *self)
03583c20
UW
12159{
12160 /* Only supported in extended mode. */
12161 return 0;
12162}
12163
8a305172 12164static int
86ce2668 12165remote_supports_multi_process (struct target_ops *self)
8a305172
PA
12166{
12167 struct remote_state *rs = get_remote_state ();
a744cf53 12168
8020350c 12169 return remote_multi_process_p (rs);
8a305172
PA
12170}
12171
70221824 12172static int
782b2b07
SS
12173remote_supports_cond_tracepoints (void)
12174{
4082afcc 12175 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12176}
12177
3788aec7 12178static int
efcc2da7 12179remote_supports_cond_breakpoints (struct target_ops *self)
3788aec7 12180{
4082afcc 12181 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12182}
12183
70221824 12184static int
7a697b8d
SS
12185remote_supports_fast_tracepoints (void)
12186{
4082afcc 12187 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12188}
12189
0fb4aa4b
PA
12190static int
12191remote_supports_static_tracepoints (void)
12192{
4082afcc 12193 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12194}
12195
1e4d1764
YQ
12196static int
12197remote_supports_install_in_trace (void)
12198{
4082afcc 12199 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12200}
12201
d248b706 12202static int
7d178d6a 12203remote_supports_enable_disable_tracepoint (struct target_ops *self)
d248b706 12204{
4082afcc
PA
12205 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12206 == PACKET_ENABLE);
d248b706
KY
12207}
12208
3065dfb6 12209static int
6de37a3a 12210remote_supports_string_tracing (struct target_ops *self)
3065dfb6 12211{
4082afcc 12212 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12213}
12214
d3ce09f5 12215static int
78eff0ec 12216remote_can_run_breakpoint_commands (struct target_ops *self)
d3ce09f5 12217{
4082afcc 12218 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12219}
12220
35b1e5cc 12221static void
ecae04e1 12222remote_trace_init (struct target_ops *self)
35b1e5cc 12223{
b6bb3468
PA
12224 struct remote_state *rs = get_remote_state ();
12225
35b1e5cc 12226 putpkt ("QTinit");
b6bb3468
PA
12227 remote_get_noisy_reply ();
12228 if (strcmp (rs->buf, "OK") != 0)
35b1e5cc
SS
12229 error (_("Target does not support this command."));
12230}
12231
409873ef
SS
12232/* Recursive routine to walk through command list including loops, and
12233 download packets for each command. */
12234
12235static void
12236remote_download_command_source (int num, ULONGEST addr,
12237 struct command_line *cmds)
12238{
12239 struct remote_state *rs = get_remote_state ();
12240 struct command_line *cmd;
12241
12242 for (cmd = cmds; cmd; cmd = cmd->next)
12243 {
0df8b418 12244 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12245 strcpy (rs->buf, "QTDPsrc:");
12246 encode_source_string (num, addr, "cmd", cmd->line,
12247 rs->buf + strlen (rs->buf),
12248 rs->buf_size - strlen (rs->buf));
12249 putpkt (rs->buf);
b6bb3468
PA
12250 remote_get_noisy_reply ();
12251 if (strcmp (rs->buf, "OK"))
409873ef
SS
12252 warning (_("Target does not support source download."));
12253
12254 if (cmd->control_type == while_control
12255 || cmd->control_type == while_stepping_control)
12256 {
12257 remote_download_command_source (num, addr, *cmd->body_list);
12258
0df8b418 12259 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12260 strcpy (rs->buf, "QTDPsrc:");
12261 encode_source_string (num, addr, "cmd", "end",
12262 rs->buf + strlen (rs->buf),
12263 rs->buf_size - strlen (rs->buf));
12264 putpkt (rs->buf);
b6bb3468
PA
12265 remote_get_noisy_reply ();
12266 if (strcmp (rs->buf, "OK"))
409873ef
SS
12267 warning (_("Target does not support source download."));
12268 }
12269 }
12270}
12271
35b1e5cc 12272static void
548f7808 12273remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
35b1e5cc 12274{
bba74b36 12275#define BUF_SIZE 2048
e8ba3115 12276
35b1e5cc 12277 CORE_ADDR tpaddr;
409873ef 12278 char addrbuf[40];
bba74b36 12279 char buf[BUF_SIZE];
b44ec619
SM
12280 std::vector<std::string> tdp_actions;
12281 std::vector<std::string> stepping_actions;
35b1e5cc 12282 char *pkt;
e8ba3115 12283 struct breakpoint *b = loc->owner;
d9b3f62e 12284 struct tracepoint *t = (struct tracepoint *) b;
b6bb3468 12285 struct remote_state *rs = get_remote_state ();
35b1e5cc 12286
dc673c81 12287 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12288
12289 tpaddr = loc->address;
12290 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
12291 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
12292 addrbuf, /* address */
12293 (b->enable_state == bp_enabled ? 'E' : 'D'),
12294 t->step_count, t->pass_count);
e8ba3115
YQ
12295 /* Fast tracepoints are mostly handled by the target, but we can
12296 tell the target how big of an instruction block should be moved
12297 around. */
12298 if (b->type == bp_fast_tracepoint)
12299 {
12300 /* Only test for support at download time; we may not know
12301 target capabilities at definition time. */
12302 if (remote_supports_fast_tracepoints ())
35b1e5cc 12303 {
6b940e6a
PL
12304 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12305 NULL))
bba74b36 12306 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
6b940e6a 12307 gdb_insn_length (loc->gdbarch, tpaddr));
35b1e5cc 12308 else
e8ba3115
YQ
12309 /* If it passed validation at definition but fails now,
12310 something is very wrong. */
12311 internal_error (__FILE__, __LINE__,
12312 _("Fast tracepoint not "
12313 "valid during download"));
35b1e5cc 12314 }
e8ba3115
YQ
12315 else
12316 /* Fast tracepoints are functionally identical to regular
12317 tracepoints, so don't take lack of support as a reason to
12318 give up on the trace run. */
12319 warning (_("Target does not support fast tracepoints, "
12320 "downloading %d as regular tracepoint"), b->number);
12321 }
12322 else if (b->type == bp_static_tracepoint)
12323 {
12324 /* Only test for support at download time; we may not know
12325 target capabilities at definition time. */
12326 if (remote_supports_static_tracepoints ())
0fb4aa4b 12327 {
e8ba3115 12328 struct static_tracepoint_marker marker;
0fb4aa4b 12329
e8ba3115
YQ
12330 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12331 strcat (buf, ":S");
0fb4aa4b 12332 else
e8ba3115 12333 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12334 }
e8ba3115
YQ
12335 else
12336 /* Fast tracepoints are functionally identical to regular
12337 tracepoints, so don't take lack of support as a reason
12338 to give up on the trace run. */
12339 error (_("Target does not support static tracepoints"));
12340 }
12341 /* If the tracepoint has a conditional, make it into an agent
12342 expression and append to the definition. */
12343 if (loc->cond)
12344 {
12345 /* Only test support at download time, we may not know target
12346 capabilities at definition time. */
12347 if (remote_supports_cond_tracepoints ())
35b1e5cc 12348 {
833177a4 12349 agent_expr_up aexpr = gen_eval_for_expr (tpaddr, loc->cond.get ());
bba74b36
YQ
12350 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
12351 aexpr->len);
e8ba3115 12352 pkt = buf + strlen (buf);
b44ec619 12353 for (int ndx = 0; ndx < aexpr->len; ++ndx)
e8ba3115
YQ
12354 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12355 *pkt = '\0';
35b1e5cc 12356 }
e8ba3115
YQ
12357 else
12358 warning (_("Target does not support conditional tracepoints, "
12359 "ignoring tp %d cond"), b->number);
12360 }
35b1e5cc 12361
d9b3f62e 12362 if (b->commands || *default_collect)
e8ba3115
YQ
12363 strcat (buf, "-");
12364 putpkt (buf);
b6bb3468
PA
12365 remote_get_noisy_reply ();
12366 if (strcmp (rs->buf, "OK"))
e8ba3115 12367 error (_("Target does not support tracepoints."));
35b1e5cc 12368
e8ba3115 12369 /* do_single_steps (t); */
b44ec619
SM
12370 for (auto action_it = tdp_actions.begin ();
12371 action_it != tdp_actions.end (); action_it++)
e8ba3115 12372 {
b44ec619
SM
12373 QUIT; /* Allow user to bail out with ^C. */
12374
12375 bool has_more = (action_it != tdp_actions.end ()
12376 || !stepping_actions.empty ());
12377
12378 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
12379 b->number, addrbuf, /* address */
12380 action_it->c_str (),
12381 has_more ? '-' : 0);
12382 putpkt (buf);
12383 remote_get_noisy_reply ();
12384 if (strcmp (rs->buf, "OK"))
12385 error (_("Error on target while setting tracepoints."));
e8ba3115 12386 }
409873ef 12387
b44ec619
SM
12388 for (auto action_it = stepping_actions.begin ();
12389 action_it != stepping_actions.end (); action_it++)
12390 {
12391 QUIT; /* Allow user to bail out with ^C. */
12392
12393 bool is_first = action_it == stepping_actions.begin ();
12394 bool has_more = action_it != stepping_actions.end ();
12395
12396 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12397 b->number, addrbuf, /* address */
12398 is_first ? "S" : "",
12399 action_it->c_str (),
12400 has_more ? "-" : "");
12401 putpkt (buf);
12402 remote_get_noisy_reply ();
12403 if (strcmp (rs->buf, "OK"))
12404 error (_("Error on target while setting tracepoints."));
12405 }
12406
4082afcc 12407 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12408 {
f00aae0f 12409 if (b->location != NULL)
409873ef 12410 {
e8ba3115 12411 strcpy (buf, "QTDPsrc:");
f00aae0f 12412 encode_source_string (b->number, loc->address, "at",
d28cd78a 12413 event_location_to_string (b->location.get ()),
f00aae0f 12414 buf + strlen (buf), 2048 - strlen (buf));
e8ba3115 12415 putpkt (buf);
b6bb3468
PA
12416 remote_get_noisy_reply ();
12417 if (strcmp (rs->buf, "OK"))
e8ba3115 12418 warning (_("Target does not support source download."));
409873ef 12419 }
e8ba3115
YQ
12420 if (b->cond_string)
12421 {
12422 strcpy (buf, "QTDPsrc:");
12423 encode_source_string (b->number, loc->address,
12424 "cond", b->cond_string, buf + strlen (buf),
12425 2048 - strlen (buf));
12426 putpkt (buf);
b6bb3468
PA
12427 remote_get_noisy_reply ();
12428 if (strcmp (rs->buf, "OK"))
e8ba3115
YQ
12429 warning (_("Target does not support source download."));
12430 }
12431 remote_download_command_source (b->number, loc->address,
12432 breakpoint_commands (b));
35b1e5cc 12433 }
35b1e5cc
SS
12434}
12435
1e4d1764 12436static int
a52a8357 12437remote_can_download_tracepoint (struct target_ops *self)
1e4d1764 12438{
1e51243a
PA
12439 struct remote_state *rs = get_remote_state ();
12440 struct trace_status *ts;
12441 int status;
12442
12443 /* Don't try to install tracepoints until we've relocated our
12444 symbols, and fetched and merged the target's tracepoint list with
12445 ours. */
12446 if (rs->starting_up)
12447 return 0;
12448
12449 ts = current_trace_status ();
8bd200f1 12450 status = remote_get_trace_status (self, ts);
1e4d1764
YQ
12451
12452 if (status == -1 || !ts->running_known || !ts->running)
12453 return 0;
12454
12455 /* If we are in a tracing experiment, but remote stub doesn't support
12456 installing tracepoint in trace, we have to return. */
12457 if (!remote_supports_install_in_trace ())
12458 return 0;
12459
12460 return 1;
12461}
12462
12463
35b1e5cc 12464static void
559d2b81
TT
12465remote_download_trace_state_variable (struct target_ops *self,
12466 struct trace_state_variable *tsv)
35b1e5cc
SS
12467{
12468 struct remote_state *rs = get_remote_state ();
00bf0b85 12469 char *p;
35b1e5cc 12470
bba74b36
YQ
12471 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12472 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12473 tsv->builtin);
00bf0b85
SS
12474 p = rs->buf + strlen (rs->buf);
12475 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12476 error (_("Trace state variable name too long for tsv definition packet"));
9f1b45b0 12477 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
00bf0b85 12478 *p++ = '\0';
35b1e5cc 12479 putpkt (rs->buf);
b6bb3468
PA
12480 remote_get_noisy_reply ();
12481 if (*rs->buf == '\0')
ad91cd99 12482 error (_("Target does not support this command."));
b6bb3468 12483 if (strcmp (rs->buf, "OK") != 0)
ad91cd99 12484 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12485}
12486
d248b706 12487static void
46670d57
TT
12488remote_enable_tracepoint (struct target_ops *self,
12489 struct bp_location *location)
d248b706
KY
12490{
12491 struct remote_state *rs = get_remote_state ();
12492 char addr_buf[40];
12493
12494 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12495 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12496 location->owner->number, addr_buf);
d248b706 12497 putpkt (rs->buf);
b6bb3468 12498 remote_get_noisy_reply ();
d248b706
KY
12499 if (*rs->buf == '\0')
12500 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12501 if (strcmp (rs->buf, "OK") != 0)
12502 error (_("Error on target while enabling tracepoint."));
12503}
12504
12505static void
780b049c
TT
12506remote_disable_tracepoint (struct target_ops *self,
12507 struct bp_location *location)
d248b706
KY
12508{
12509 struct remote_state *rs = get_remote_state ();
12510 char addr_buf[40];
12511
12512 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12513 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12514 location->owner->number, addr_buf);
d248b706 12515 putpkt (rs->buf);
b6bb3468 12516 remote_get_noisy_reply ();
d248b706
KY
12517 if (*rs->buf == '\0')
12518 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12519 if (strcmp (rs->buf, "OK") != 0)
12520 error (_("Error on target while disabling tracepoint."));
12521}
12522
35b1e5cc 12523static void
583f9a86 12524remote_trace_set_readonly_regions (struct target_ops *self)
35b1e5cc
SS
12525{
12526 asection *s;
81b9b86e 12527 bfd *abfd = NULL;
35b1e5cc 12528 bfd_size_type size;
608bcef2 12529 bfd_vma vma;
35b1e5cc 12530 int anysecs = 0;
c2fa21f1 12531 int offset = 0;
35b1e5cc
SS
12532
12533 if (!exec_bfd)
12534 return; /* No information to give. */
12535
b6bb3468
PA
12536 struct remote_state *rs = get_remote_state ();
12537
12538 strcpy (rs->buf, "QTro");
12539 offset = strlen (rs->buf);
35b1e5cc
SS
12540 for (s = exec_bfd->sections; s; s = s->next)
12541 {
12542 char tmp1[40], tmp2[40];
c2fa21f1 12543 int sec_length;
35b1e5cc
SS
12544
12545 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 12546 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
12547 (s->flags & SEC_READONLY) == 0)
12548 continue;
12549
12550 anysecs = 1;
81b9b86e 12551 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 12552 size = bfd_get_section_size (s);
608bcef2
HZ
12553 sprintf_vma (tmp1, vma);
12554 sprintf_vma (tmp2, vma + size);
c2fa21f1 12555 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
b6bb3468 12556 if (offset + sec_length + 1 > rs->buf_size)
c2fa21f1 12557 {
4082afcc 12558 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 12559 warning (_("\
c2fa21f1
HZ
12560Too many sections for read-only sections definition packet."));
12561 break;
12562 }
b6bb3468 12563 xsnprintf (rs->buf + offset, rs->buf_size - offset, ":%s,%s",
bba74b36 12564 tmp1, tmp2);
c2fa21f1 12565 offset += sec_length;
35b1e5cc
SS
12566 }
12567 if (anysecs)
12568 {
b6bb3468
PA
12569 putpkt (rs->buf);
12570 getpkt (&rs->buf, &rs->buf_size, 0);
35b1e5cc
SS
12571 }
12572}
12573
12574static void
e2d1aae3 12575remote_trace_start (struct target_ops *self)
35b1e5cc 12576{
b6bb3468
PA
12577 struct remote_state *rs = get_remote_state ();
12578
35b1e5cc 12579 putpkt ("QTStart");
b6bb3468
PA
12580 remote_get_noisy_reply ();
12581 if (*rs->buf == '\0')
ad91cd99 12582 error (_("Target does not support this command."));
b6bb3468
PA
12583 if (strcmp (rs->buf, "OK") != 0)
12584 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12585}
12586
12587static int
8bd200f1 12588remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
35b1e5cc 12589{
953b98d1 12590 /* Initialize it just to avoid a GCC false warning. */
f652de6f 12591 char *p = NULL;
0df8b418 12592 /* FIXME we need to get register block size some other way. */
00bf0b85 12593 extern int trace_regblock_size;
bd3eecc3 12594 enum packet_result result;
b6bb3468 12595 struct remote_state *rs = get_remote_state ();
bd3eecc3 12596
4082afcc 12597 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 12598 return -1;
a744cf53 12599
5cd63fda
PA
12600 trace_regblock_size
12601 = get_remote_arch_state (target_gdbarch ())->sizeof_g_packet;
00bf0b85 12602
049dc89b
JK
12603 putpkt ("qTStatus");
12604
492d29ea 12605 TRY
67f41397 12606 {
b6bb3468 12607 p = remote_get_noisy_reply ();
67f41397 12608 }
492d29ea 12609 CATCH (ex, RETURN_MASK_ERROR)
67f41397 12610 {
598d3636
JK
12611 if (ex.error != TARGET_CLOSE_ERROR)
12612 {
12613 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12614 return -1;
12615 }
12616 throw_exception (ex);
67f41397 12617 }
492d29ea 12618 END_CATCH
00bf0b85 12619
bd3eecc3
PA
12620 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12621
00bf0b85 12622 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 12623 if (result == PACKET_UNKNOWN)
00bf0b85 12624 return -1;
35b1e5cc 12625
00bf0b85 12626 /* We're working with a live target. */
f5911ea1 12627 ts->filename = NULL;
00bf0b85 12628
00bf0b85 12629 if (*p++ != 'T')
b6bb3468 12630 error (_("Bogus trace status reply from target: %s"), rs->buf);
35b1e5cc 12631
84cebc4a
YQ
12632 /* Function 'parse_trace_status' sets default value of each field of
12633 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
12634 parse_trace_status (p, ts);
12635
12636 return ts->running;
35b1e5cc
SS
12637}
12638
70221824 12639static void
db90e85c 12640remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
f196051f
SS
12641 struct uploaded_tp *utp)
12642{
12643 struct remote_state *rs = get_remote_state ();
f196051f
SS
12644 char *reply;
12645 struct bp_location *loc;
12646 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 12647 size_t size = get_remote_packet_size ();
f196051f
SS
12648
12649 if (tp)
12650 {
c1fc2657 12651 tp->hit_count = 0;
f196051f 12652 tp->traceframe_usage = 0;
c1fc2657 12653 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
12654 {
12655 /* If the tracepoint was never downloaded, don't go asking for
12656 any status. */
12657 if (tp->number_on_target == 0)
12658 continue;
bba74b36
YQ
12659 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12660 phex_nz (loc->address, 0));
f196051f 12661 putpkt (rs->buf);
b6bb3468 12662 reply = remote_get_noisy_reply ();
f196051f
SS
12663 if (reply && *reply)
12664 {
12665 if (*reply == 'V')
12666 parse_tracepoint_status (reply + 1, bp, utp);
12667 }
12668 }
12669 }
12670 else if (utp)
12671 {
12672 utp->hit_count = 0;
12673 utp->traceframe_usage = 0;
bba74b36
YQ
12674 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12675 phex_nz (utp->addr, 0));
f196051f 12676 putpkt (rs->buf);
b6bb3468 12677 reply = remote_get_noisy_reply ();
f196051f
SS
12678 if (reply && *reply)
12679 {
12680 if (*reply == 'V')
12681 parse_tracepoint_status (reply + 1, bp, utp);
12682 }
12683 }
12684}
12685
35b1e5cc 12686static void
74499f1b 12687remote_trace_stop (struct target_ops *self)
35b1e5cc 12688{
b6bb3468
PA
12689 struct remote_state *rs = get_remote_state ();
12690
35b1e5cc 12691 putpkt ("QTStop");
b6bb3468
PA
12692 remote_get_noisy_reply ();
12693 if (*rs->buf == '\0')
ad91cd99 12694 error (_("Target does not support this command."));
b6bb3468
PA
12695 if (strcmp (rs->buf, "OK") != 0)
12696 error (_("Bogus reply from target: %s"), rs->buf);
35b1e5cc
SS
12697}
12698
12699static int
bd4c6793
TT
12700remote_trace_find (struct target_ops *self,
12701 enum trace_find_type type, int num,
cc5925ad 12702 CORE_ADDR addr1, CORE_ADDR addr2,
35b1e5cc
SS
12703 int *tpp)
12704{
12705 struct remote_state *rs = get_remote_state ();
bba74b36 12706 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
12707 char *p, *reply;
12708 int target_frameno = -1, target_tracept = -1;
12709
e6e4e701
PA
12710 /* Lookups other than by absolute frame number depend on the current
12711 trace selected, so make sure it is correct on the remote end
12712 first. */
12713 if (type != tfind_number)
12714 set_remote_traceframe ();
12715
35b1e5cc
SS
12716 p = rs->buf;
12717 strcpy (p, "QTFrame:");
12718 p = strchr (p, '\0');
12719 switch (type)
12720 {
12721 case tfind_number:
bba74b36 12722 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
12723 break;
12724 case tfind_pc:
bba74b36 12725 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
12726 break;
12727 case tfind_tp:
bba74b36 12728 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
12729 break;
12730 case tfind_range:
bba74b36
YQ
12731 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12732 phex_nz (addr2, 0));
35b1e5cc
SS
12733 break;
12734 case tfind_outside:
bba74b36
YQ
12735 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12736 phex_nz (addr2, 0));
35b1e5cc
SS
12737 break;
12738 default:
9b20d036 12739 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
12740 }
12741
12742 putpkt (rs->buf);
b6bb3468 12743 reply = remote_get_noisy_reply ();
ad91cd99
PA
12744 if (*reply == '\0')
12745 error (_("Target does not support this command."));
35b1e5cc
SS
12746
12747 while (reply && *reply)
12748 switch (*reply)
12749 {
12750 case 'F':
f197e0f1
VP
12751 p = ++reply;
12752 target_frameno = (int) strtol (p, &reply, 16);
12753 if (reply == p)
12754 error (_("Unable to parse trace frame number"));
e6e4e701
PA
12755 /* Don't update our remote traceframe number cache on failure
12756 to select a remote traceframe. */
f197e0f1
VP
12757 if (target_frameno == -1)
12758 return -1;
35b1e5cc
SS
12759 break;
12760 case 'T':
f197e0f1
VP
12761 p = ++reply;
12762 target_tracept = (int) strtol (p, &reply, 16);
12763 if (reply == p)
12764 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
12765 break;
12766 case 'O': /* "OK"? */
12767 if (reply[1] == 'K' && reply[2] == '\0')
12768 reply += 2;
12769 else
12770 error (_("Bogus reply from target: %s"), reply);
12771 break;
12772 default:
12773 error (_("Bogus reply from target: %s"), reply);
12774 }
12775 if (tpp)
12776 *tpp = target_tracept;
e6e4e701 12777
262e1174 12778 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
12779 return target_frameno;
12780}
12781
12782static int
4011015b
TT
12783remote_get_trace_state_variable_value (struct target_ops *self,
12784 int tsvnum, LONGEST *val)
35b1e5cc
SS
12785{
12786 struct remote_state *rs = get_remote_state ();
12787 char *reply;
12788 ULONGEST uval;
12789
e6e4e701
PA
12790 set_remote_traceframe ();
12791
bba74b36 12792 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc 12793 putpkt (rs->buf);
b6bb3468 12794 reply = remote_get_noisy_reply ();
35b1e5cc
SS
12795 if (reply && *reply)
12796 {
12797 if (*reply == 'V')
12798 {
12799 unpack_varlen_hex (reply + 1, &uval);
12800 *val = (LONGEST) uval;
12801 return 1;
12802 }
12803 }
12804 return 0;
12805}
12806
00bf0b85 12807static int
dc3decaf 12808remote_save_trace_data (struct target_ops *self, const char *filename)
00bf0b85
SS
12809{
12810 struct remote_state *rs = get_remote_state ();
12811 char *p, *reply;
12812
12813 p = rs->buf;
12814 strcpy (p, "QTSave:");
12815 p += strlen (p);
12816 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12817 error (_("Remote file name too long for trace save packet"));
9f1b45b0 12818 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
12819 *p++ = '\0';
12820 putpkt (rs->buf);
b6bb3468 12821 reply = remote_get_noisy_reply ();
d6c5869f 12822 if (*reply == '\0')
ad91cd99
PA
12823 error (_("Target does not support this command."));
12824 if (strcmp (reply, "OK") != 0)
12825 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
12826 return 0;
12827}
12828
12829/* This is basically a memory transfer, but needs to be its own packet
12830 because we don't know how the target actually organizes its trace
12831 memory, plus we want to be able to ask for as much as possible, but
12832 not be unhappy if we don't get as much as we ask for. */
12833
12834static LONGEST
88ee6f45
TT
12835remote_get_raw_trace_data (struct target_ops *self,
12836 gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
12837{
12838 struct remote_state *rs = get_remote_state ();
12839 char *reply;
12840 char *p;
12841 int rslt;
12842
12843 p = rs->buf;
12844 strcpy (p, "qTBuffer:");
12845 p += strlen (p);
12846 p += hexnumstr (p, offset);
12847 *p++ = ',';
12848 p += hexnumstr (p, len);
12849 *p++ = '\0';
12850
12851 putpkt (rs->buf);
b6bb3468 12852 reply = remote_get_noisy_reply ();
00bf0b85
SS
12853 if (reply && *reply)
12854 {
12855 /* 'l' by itself means we're at the end of the buffer and
12856 there is nothing more to get. */
12857 if (*reply == 'l')
12858 return 0;
12859
12860 /* Convert the reply into binary. Limit the number of bytes to
12861 convert according to our passed-in buffer size, rather than
12862 what was returned in the packet; if the target is
12863 unexpectedly generous and gives us a bigger reply than we
12864 asked for, we don't want to crash. */
b6bb3468 12865 rslt = hex2bin (reply, buf, len);
00bf0b85
SS
12866 return rslt;
12867 }
12868
12869 /* Something went wrong, flag as an error. */
12870 return -1;
12871}
12872
35b1e5cc 12873static void
37b25738 12874remote_set_disconnected_tracing (struct target_ops *self, int val)
35b1e5cc
SS
12875{
12876 struct remote_state *rs = get_remote_state ();
12877
4082afcc 12878 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 12879 {
ad91cd99
PA
12880 char *reply;
12881
bba74b36 12882 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 12883 putpkt (rs->buf);
b6bb3468 12884 reply = remote_get_noisy_reply ();
ad91cd99 12885 if (*reply == '\0')
33da3f1c 12886 error (_("Target does not support this command."));
ad91cd99
PA
12887 if (strcmp (reply, "OK") != 0)
12888 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
12889 }
12890 else if (val)
12891 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
12892}
12893
dc146f7c
VP
12894static int
12895remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12896{
12897 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 12898
7aabaf9d
SM
12899 if (info != NULL && info->priv != NULL)
12900 return get_remote_thread_info (info)->core;
12901
dc146f7c
VP
12902 return -1;
12903}
12904
4daf5ac0 12905static void
736d5b1f 12906remote_set_circular_trace_buffer (struct target_ops *self, int val)
4daf5ac0
SS
12907{
12908 struct remote_state *rs = get_remote_state ();
ad91cd99 12909 char *reply;
4daf5ac0 12910
bba74b36 12911 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 12912 putpkt (rs->buf);
b6bb3468 12913 reply = remote_get_noisy_reply ();
ad91cd99 12914 if (*reply == '\0')
4daf5ac0 12915 error (_("Target does not support this command."));
ad91cd99
PA
12916 if (strcmp (reply, "OK") != 0)
12917 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
12918}
12919
2098b393 12920static traceframe_info_up
a893e81f 12921remote_traceframe_info (struct target_ops *self)
b3b9301e 12922{
b7b030ad
TT
12923 gdb::unique_xmalloc_ptr<char> text
12924 = target_read_stralloc (&current_target, TARGET_OBJECT_TRACEFRAME_INFO,
12925 NULL);
b3b9301e 12926 if (text != NULL)
b7b030ad 12927 return parse_traceframe_info (text.get ());
b3b9301e
PA
12928
12929 return NULL;
12930}
12931
405f8e94
SS
12932/* Handle the qTMinFTPILen packet. Returns the minimum length of
12933 instruction on which a fast tracepoint may be placed. Returns -1
12934 if the packet is not supported, and 0 if the minimum instruction
12935 length is unknown. */
12936
12937static int
0e67620a 12938remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
405f8e94
SS
12939{
12940 struct remote_state *rs = get_remote_state ();
12941 char *reply;
12942
e886a173
PA
12943 /* If we're not debugging a process yet, the IPA can't be
12944 loaded. */
12945 if (!target_has_execution)
12946 return 0;
12947
12948 /* Make sure the remote is pointing at the right process. */
12949 set_general_process ();
12950
bba74b36 12951 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94 12952 putpkt (rs->buf);
b6bb3468 12953 reply = remote_get_noisy_reply ();
405f8e94
SS
12954 if (*reply == '\0')
12955 return -1;
12956 else
12957 {
12958 ULONGEST min_insn_len;
12959
12960 unpack_varlen_hex (reply, &min_insn_len);
12961
12962 return (int) min_insn_len;
12963 }
12964}
12965
f6f899bf 12966static void
4da384be 12967remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
f6f899bf 12968{
4082afcc 12969 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
12970 {
12971 struct remote_state *rs = get_remote_state ();
12972 char *buf = rs->buf;
12973 char *endbuf = rs->buf + get_remote_packet_size ();
12974 enum packet_result result;
12975
12976 gdb_assert (val >= 0 || val == -1);
12977 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
12978 /* Send -1 as literal "-1" to avoid host size dependency. */
12979 if (val < 0)
12980 {
12981 *buf++ = '-';
12982 buf += hexnumstr (buf, (ULONGEST) -val);
12983 }
12984 else
12985 buf += hexnumstr (buf, (ULONGEST) val);
12986
12987 putpkt (rs->buf);
b6bb3468 12988 remote_get_noisy_reply ();
f6f899bf
HAQ
12989 result = packet_ok (rs->buf,
12990 &remote_protocol_packets[PACKET_QTBuffer_size]);
12991
12992 if (result != PACKET_OK)
12993 warning (_("Bogus reply from target: %s"), rs->buf);
12994 }
12995}
12996
f196051f 12997static int
d9e68a2c
TT
12998remote_set_trace_notes (struct target_ops *self,
12999 const char *user, const char *notes,
ca623f82 13000 const char *stop_notes)
f196051f
SS
13001{
13002 struct remote_state *rs = get_remote_state ();
13003 char *reply;
13004 char *buf = rs->buf;
13005 char *endbuf = rs->buf + get_remote_packet_size ();
13006 int nbytes;
13007
13008 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13009 if (user)
13010 {
13011 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13012 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13013 buf += 2 * nbytes;
13014 *buf++ = ';';
13015 }
13016 if (notes)
13017 {
13018 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13019 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13020 buf += 2 * nbytes;
13021 *buf++ = ';';
13022 }
13023 if (stop_notes)
13024 {
13025 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13026 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13027 buf += 2 * nbytes;
13028 *buf++ = ';';
13029 }
13030 /* Ensure the buffer is terminated. */
13031 *buf = '\0';
13032
13033 putpkt (rs->buf);
b6bb3468 13034 reply = remote_get_noisy_reply ();
f196051f
SS
13035 if (*reply == '\0')
13036 return 0;
13037
13038 if (strcmp (reply, "OK") != 0)
13039 error (_("Bogus reply from target: %s"), reply);
13040
13041 return 1;
13042}
13043
d1feda86 13044static int
2c152180 13045remote_use_agent (struct target_ops *self, int use)
d1feda86 13046{
4082afcc 13047 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13048 {
13049 struct remote_state *rs = get_remote_state ();
13050
13051 /* If the stub supports QAgent. */
bba74b36 13052 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
13053 putpkt (rs->buf);
13054 getpkt (&rs->buf, &rs->buf_size, 0);
13055
13056 if (strcmp (rs->buf, "OK") == 0)
13057 {
13058 use_agent = use;
13059 return 1;
13060 }
13061 }
13062
13063 return 0;
13064}
13065
13066static int
fe38f897 13067remote_can_use_agent (struct target_ops *self)
d1feda86 13068{
4082afcc 13069 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13070}
13071
9accd112
MM
13072struct btrace_target_info
13073{
13074 /* The ptid of the traced thread. */
13075 ptid_t ptid;
f4abbc16
MM
13076
13077 /* The obtained branch trace configuration. */
13078 struct btrace_config conf;
9accd112
MM
13079};
13080
f4abbc16
MM
13081/* Reset our idea of our target's btrace configuration. */
13082
13083static void
13084remote_btrace_reset (void)
13085{
13086 struct remote_state *rs = get_remote_state ();
13087
13088 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13089}
13090
9accd112
MM
13091/* Check whether the target supports branch tracing. */
13092
13093static int
043c3577 13094remote_supports_btrace (struct target_ops *self, enum btrace_format format)
9accd112 13095{
4082afcc 13096 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
9accd112 13097 return 0;
4082afcc 13098 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
9accd112
MM
13099 return 0;
13100
043c3577
MM
13101 switch (format)
13102 {
13103 case BTRACE_FORMAT_NONE:
13104 return 0;
13105
13106 case BTRACE_FORMAT_BTS:
13107 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
b20a6524
MM
13108
13109 case BTRACE_FORMAT_PT:
13110 /* The trace is decoded on the host. Even if our target supports it,
13111 we still need to have libipt to decode the trace. */
13112#if defined (HAVE_LIBIPT)
13113 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
13114#else /* !defined (HAVE_LIBIPT) */
13115 return 0;
13116#endif /* !defined (HAVE_LIBIPT) */
043c3577
MM
13117 }
13118
13119 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
9accd112
MM
13120}
13121
f4abbc16
MM
13122/* Synchronize the configuration with the target. */
13123
13124static void
13125btrace_sync_conf (const struct btrace_config *conf)
13126{
d33501a5
MM
13127 struct packet_config *packet;
13128 struct remote_state *rs;
13129 char *buf, *pos, *endbuf;
13130
13131 rs = get_remote_state ();
13132 buf = rs->buf;
13133 endbuf = buf + get_remote_packet_size ();
13134
13135 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13136 if (packet_config_support (packet) == PACKET_ENABLE
13137 && conf->bts.size != rs->btrace_config.bts.size)
13138 {
13139 pos = buf;
13140 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13141 conf->bts.size);
13142
13143 putpkt (buf);
13144 getpkt (&buf, &rs->buf_size, 0);
13145
13146 if (packet_ok (buf, packet) == PACKET_ERROR)
13147 {
13148 if (buf[0] == 'E' && buf[1] == '.')
13149 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13150 else
13151 error (_("Failed to configure the BTS buffer size."));
13152 }
13153
13154 rs->btrace_config.bts.size = conf->bts.size;
13155 }
b20a6524
MM
13156
13157 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13158 if (packet_config_support (packet) == PACKET_ENABLE
13159 && conf->pt.size != rs->btrace_config.pt.size)
13160 {
13161 pos = buf;
13162 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13163 conf->pt.size);
13164
13165 putpkt (buf);
13166 getpkt (&buf, &rs->buf_size, 0);
13167
13168 if (packet_ok (buf, packet) == PACKET_ERROR)
13169 {
13170 if (buf[0] == 'E' && buf[1] == '.')
13171 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13172 else
13173 error (_("Failed to configure the trace buffer size."));
13174 }
13175
13176 rs->btrace_config.pt.size = conf->pt.size;
13177 }
f4abbc16
MM
13178}
13179
13180/* Read the current thread's btrace configuration from the target and
13181 store it into CONF. */
13182
13183static void
13184btrace_read_config (struct btrace_config *conf)
13185{
b7b030ad
TT
13186 gdb::unique_xmalloc_ptr<char> xml
13187 = target_read_stralloc (&current_target, TARGET_OBJECT_BTRACE_CONF, "");
f4abbc16 13188 if (xml != NULL)
b7b030ad 13189 parse_xml_btrace_conf (conf, xml.get ());
f4abbc16
MM
13190}
13191
c0272db5
TW
13192/* Maybe reopen target btrace. */
13193
13194static void
13195remote_btrace_maybe_reopen (void)
13196{
13197 struct remote_state *rs = get_remote_state ();
c0272db5
TW
13198 struct thread_info *tp;
13199 int btrace_target_pushed = 0;
13200 int warned = 0;
13201
5ed8105e
PA
13202 scoped_restore_current_thread restore_thread;
13203
c0272db5
TW
13204 ALL_NON_EXITED_THREADS (tp)
13205 {
13206 set_general_thread (tp->ptid);
13207
13208 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13209 btrace_read_config (&rs->btrace_config);
13210
13211 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13212 continue;
13213
13214#if !defined (HAVE_LIBIPT)
13215 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13216 {
13217 if (!warned)
13218 {
13219 warned = 1;
13220 warning (_("GDB does not support Intel Processor Trace. "
13221 "\"record\" will not work in this session."));
13222 }
13223
13224 continue;
13225 }
13226#endif /* !defined (HAVE_LIBIPT) */
13227
13228 /* Push target, once, but before anything else happens. This way our
13229 changes to the threads will be cleaned up by unpushing the target
13230 in case btrace_read_config () throws. */
13231 if (!btrace_target_pushed)
13232 {
13233 btrace_target_pushed = 1;
13234 record_btrace_push_target ();
13235 printf_filtered (_("Target is recording using %s.\n"),
13236 btrace_format_string (rs->btrace_config.format));
13237 }
13238
13239 tp->btrace.target = XCNEW (struct btrace_target_info);
13240 tp->btrace.target->ptid = tp->ptid;
13241 tp->btrace.target->conf = rs->btrace_config;
13242 }
c0272db5
TW
13243}
13244
9accd112
MM
13245/* Enable branch tracing. */
13246
13247static struct btrace_target_info *
f4abbc16
MM
13248remote_enable_btrace (struct target_ops *self, ptid_t ptid,
13249 const struct btrace_config *conf)
9accd112
MM
13250{
13251 struct btrace_target_info *tinfo = NULL;
b20a6524 13252 struct packet_config *packet = NULL;
9accd112
MM
13253 struct remote_state *rs = get_remote_state ();
13254 char *buf = rs->buf;
13255 char *endbuf = rs->buf + get_remote_packet_size ();
13256
b20a6524
MM
13257 switch (conf->format)
13258 {
13259 case BTRACE_FORMAT_BTS:
13260 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13261 break;
13262
13263 case BTRACE_FORMAT_PT:
13264 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13265 break;
13266 }
13267
13268 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13269 error (_("Target does not support branch tracing."));
13270
f4abbc16
MM
13271 btrace_sync_conf (conf);
13272
9accd112
MM
13273 set_general_thread (ptid);
13274
13275 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13276 putpkt (rs->buf);
13277 getpkt (&rs->buf, &rs->buf_size, 0);
13278
13279 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13280 {
13281 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13282 error (_("Could not enable branch tracing for %s: %s"),
13283 target_pid_to_str (ptid), rs->buf + 2);
13284 else
13285 error (_("Could not enable branch tracing for %s."),
13286 target_pid_to_str (ptid));
13287 }
13288
8d749320 13289 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13290 tinfo->ptid = ptid;
13291
f4abbc16
MM
13292 /* If we fail to read the configuration, we lose some information, but the
13293 tracing itself is not impacted. */
492d29ea
PA
13294 TRY
13295 {
13296 btrace_read_config (&tinfo->conf);
13297 }
13298 CATCH (err, RETURN_MASK_ERROR)
13299 {
13300 if (err.message != NULL)
13301 warning ("%s", err.message);
13302 }
13303 END_CATCH
f4abbc16 13304
9accd112
MM
13305 return tinfo;
13306}
13307
13308/* Disable branch tracing. */
13309
13310static void
25e95349
TT
13311remote_disable_btrace (struct target_ops *self,
13312 struct btrace_target_info *tinfo)
9accd112
MM
13313{
13314 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13315 struct remote_state *rs = get_remote_state ();
13316 char *buf = rs->buf;
13317 char *endbuf = rs->buf + get_remote_packet_size ();
13318
4082afcc 13319 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13320 error (_("Target does not support branch tracing."));
13321
13322 set_general_thread (tinfo->ptid);
13323
13324 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13325 putpkt (rs->buf);
13326 getpkt (&rs->buf, &rs->buf_size, 0);
13327
13328 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13329 {
13330 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13331 error (_("Could not disable branch tracing for %s: %s"),
13332 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13333 else
13334 error (_("Could not disable branch tracing for %s."),
13335 target_pid_to_str (tinfo->ptid));
13336 }
13337
13338 xfree (tinfo);
13339}
13340
13341/* Teardown branch tracing. */
13342
13343static void
1777056d
TT
13344remote_teardown_btrace (struct target_ops *self,
13345 struct btrace_target_info *tinfo)
9accd112
MM
13346{
13347 /* We must not talk to the target during teardown. */
13348 xfree (tinfo);
13349}
13350
13351/* Read the branch trace. */
13352
969c39fb 13353static enum btrace_error
39c49f83 13354remote_read_btrace (struct target_ops *self,
734b0e4b 13355 struct btrace_data *btrace,
969c39fb 13356 struct btrace_target_info *tinfo,
9accd112
MM
13357 enum btrace_read_type type)
13358{
13359 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
9accd112 13360 const char *annex;
9accd112 13361
4082afcc 13362 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13363 error (_("Target does not support branch tracing."));
13364
13365#if !defined(HAVE_LIBEXPAT)
13366 error (_("Cannot process branch tracing result. XML parsing not supported."));
13367#endif
13368
13369 switch (type)
13370 {
864089d2 13371 case BTRACE_READ_ALL:
9accd112
MM
13372 annex = "all";
13373 break;
864089d2 13374 case BTRACE_READ_NEW:
9accd112
MM
13375 annex = "new";
13376 break;
969c39fb
MM
13377 case BTRACE_READ_DELTA:
13378 annex = "delta";
13379 break;
9accd112
MM
13380 default:
13381 internal_error (__FILE__, __LINE__,
13382 _("Bad branch tracing read type: %u."),
13383 (unsigned int) type);
13384 }
13385
b7b030ad
TT
13386 gdb::unique_xmalloc_ptr<char> xml
13387 = target_read_stralloc (&current_target, TARGET_OBJECT_BTRACE, annex);
969c39fb
MM
13388 if (xml == NULL)
13389 return BTRACE_ERR_UNKNOWN;
9accd112 13390
b7b030ad 13391 parse_xml_btrace (btrace, xml.get ());
9accd112 13392
969c39fb 13393 return BTRACE_ERR_NONE;
9accd112
MM
13394}
13395
f4abbc16
MM
13396static const struct btrace_config *
13397remote_btrace_conf (struct target_ops *self,
13398 const struct btrace_target_info *tinfo)
13399{
13400 return &tinfo->conf;
13401}
13402
ced63ec0 13403static int
5436ff03 13404remote_augmented_libraries_svr4_read (struct target_ops *self)
ced63ec0 13405{
4082afcc
PA
13406 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13407 == PACKET_ENABLE);
ced63ec0
GB
13408}
13409
9dd130a0
TT
13410/* Implementation of to_load. */
13411
13412static void
9cbe5fff 13413remote_load (struct target_ops *self, const char *name, int from_tty)
9dd130a0
TT
13414{
13415 generic_load (name, from_tty);
13416}
13417
c78fa86a
GB
13418/* Accepts an integer PID; returns a string representing a file that
13419 can be opened on the remote side to get the symbols for the child
13420 process. Returns NULL if the operation is not supported. */
13421
13422static char *
13423remote_pid_to_exec_file (struct target_ops *self, int pid)
13424{
b7b030ad 13425 static gdb::unique_xmalloc_ptr<char> filename;
835205d0
GB
13426 struct inferior *inf;
13427 char *annex = NULL;
c78fa86a
GB
13428
13429 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13430 return NULL;
13431
835205d0
GB
13432 inf = find_inferior_pid (pid);
13433 if (inf == NULL)
13434 internal_error (__FILE__, __LINE__,
13435 _("not currently attached to process %d"), pid);
13436
13437 if (!inf->fake_pid_p)
13438 {
13439 const int annex_size = 9;
13440
224c3ddb 13441 annex = (char *) alloca (annex_size);
835205d0
GB
13442 xsnprintf (annex, annex_size, "%x", pid);
13443 }
13444
c78fa86a
GB
13445 filename = target_read_stralloc (&current_target,
13446 TARGET_OBJECT_EXEC_FILE, annex);
13447
b7b030ad 13448 return filename.get ();
c78fa86a
GB
13449}
13450
750ce8d1
YQ
13451/* Implement the to_can_do_single_step target_ops method. */
13452
13453static int
13454remote_can_do_single_step (struct target_ops *ops)
13455{
13456 /* We can only tell whether target supports single step or not by
13457 supported s and S vCont actions if the stub supports vContSupported
13458 feature. If the stub doesn't support vContSupported feature,
13459 we have conservatively to think target doesn't supports single
13460 step. */
13461 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13462 {
13463 struct remote_state *rs = get_remote_state ();
13464
13465 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13466 remote_vcont_probe (rs);
13467
13468 return rs->supports_vCont.s && rs->supports_vCont.S;
13469 }
13470 else
13471 return 0;
13472}
13473
3a00c802
PA
13474/* Implementation of the to_execution_direction method for the remote
13475 target. */
13476
13477static enum exec_direction_kind
13478remote_execution_direction (struct target_ops *self)
13479{
13480 struct remote_state *rs = get_remote_state ();
13481
13482 return rs->last_resume_exec_dir;
13483}
13484
f6327dcb
KB
13485/* Return pointer to the thread_info struct which corresponds to
13486 THREAD_HANDLE (having length HANDLE_LEN). */
13487
13488static struct thread_info *
13489remote_thread_handle_to_thread_info (struct target_ops *ops,
13490 const gdb_byte *thread_handle,
13491 int handle_len,
13492 struct inferior *inf)
13493{
13494 struct thread_info *tp;
13495
13496 ALL_NON_EXITED_THREADS (tp)
13497 {
7aabaf9d 13498 remote_thread_info *priv = get_remote_thread_info (tp);
f6327dcb
KB
13499
13500 if (tp->inf == inf && priv != NULL)
13501 {
7aabaf9d 13502 if (handle_len != priv->thread_handle.size ())
f6327dcb 13503 error (_("Thread handle size mismatch: %d vs %zu (from remote)"),
7aabaf9d
SM
13504 handle_len, priv->thread_handle.size ());
13505 if (memcmp (thread_handle, priv->thread_handle.data (),
f6327dcb
KB
13506 handle_len) == 0)
13507 return tp;
13508 }
13509 }
13510
13511 return NULL;
13512}
13513
c906108c 13514static void
fba45db2 13515init_remote_ops (void)
c906108c 13516{
c5aa993b 13517 remote_ops.to_shortname = "remote";
c906108c 13518 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 13519 remote_ops.to_doc =
c906108c 13520 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
13521Specify the serial device it is connected to\n\
13522(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
13523 remote_ops.to_open = remote_open;
13524 remote_ops.to_close = remote_close;
c906108c 13525 remote_ops.to_detach = remote_detach;
6ad8ae5c 13526 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 13527 remote_ops.to_resume = remote_resume;
85ad3aaf 13528 remote_ops.to_commit_resume = remote_commit_resume;
c906108c
SS
13529 remote_ops.to_wait = remote_wait;
13530 remote_ops.to_fetch_registers = remote_fetch_registers;
13531 remote_ops.to_store_registers = remote_store_registers;
13532 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b 13533 remote_ops.to_files_info = remote_files_info;
c906108c
SS
13534 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13535 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
f7e6eed5
PA
13536 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13537 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13538 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13539 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
3c3bea1c
GS
13540 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13541 remote_ops.to_stopped_data_address = remote_stopped_data_address;
283002cf
MR
13542 remote_ops.to_watchpoint_addr_within_range =
13543 remote_watchpoint_addr_within_range;
3c3bea1c
GS
13544 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13545 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13546 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
480a3f21
PW
13547 remote_ops.to_region_ok_for_hw_watchpoint
13548 = remote_region_ok_for_hw_watchpoint;
3c3bea1c
GS
13549 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13550 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b 13551 remote_ops.to_kill = remote_kill;
9dd130a0 13552 remote_ops.to_load = remote_load;
c906108c 13553 remote_ops.to_mourn_inferior = remote_mourn;
2455069d 13554 remote_ops.to_pass_signals = remote_pass_signals;
82075af2 13555 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
9b224c5e 13556 remote_ops.to_program_signals = remote_program_signals;
c906108c 13557 remote_ops.to_thread_alive = remote_thread_alive;
79efa585 13558 remote_ops.to_thread_name = remote_thread_name;
e8032dde 13559 remote_ops.to_update_thread_list = remote_update_thread_list;
0caabb7e 13560 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 13561 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10760264 13562 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
c906108c 13563 remote_ops.to_stop = remote_stop;
bfedc46a 13564 remote_ops.to_interrupt = remote_interrupt;
93692b58 13565 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
4b8a223f 13566 remote_ops.to_xfer_partial = remote_xfer_partial;
09c98b44 13567 remote_ops.to_get_memory_xfer_limit = remote_get_memory_xfer_limit;
96baa820 13568 remote_ops.to_rcmd = remote_rcmd;
c78fa86a 13569 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
49d03eab 13570 remote_ops.to_log_command = serial_log_command;
38691318 13571 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 13572 remote_ops.to_stratum = process_stratum;
c35b1492
PA
13573 remote_ops.to_has_all_memory = default_child_has_all_memory;
13574 remote_ops.to_has_memory = default_child_has_memory;
13575 remote_ops.to_has_stack = default_child_has_stack;
13576 remote_ops.to_has_registers = default_child_has_registers;
13577 remote_ops.to_has_execution = default_child_has_execution;
3e43a32a 13578 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 13579 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 13580 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 13581 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
13582 remote_ops.to_flash_erase = remote_flash_erase;
13583 remote_ops.to_flash_done = remote_flash_done;
29709017 13584 remote_ops.to_read_description = remote_read_description;
08388c79 13585 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
13586 remote_ops.to_can_async_p = remote_can_async_p;
13587 remote_ops.to_is_async_p = remote_is_async_p;
13588 remote_ops.to_async = remote_async;
65706a29 13589 remote_ops.to_thread_events = remote_thread_events;
750ce8d1 13590 remote_ops.to_can_do_single_step = remote_can_do_single_step;
75c99385
PA
13591 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13592 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 13593 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 13594 remote_ops.to_supports_multi_process = remote_supports_multi_process;
03583c20
UW
13595 remote_ops.to_supports_disable_randomization
13596 = remote_supports_disable_randomization;
4bd7dc42 13597 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
7313baad
UW
13598 remote_ops.to_fileio_open = remote_hostio_open;
13599 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13600 remote_ops.to_fileio_pread = remote_hostio_pread;
9b15c1f0 13601 remote_ops.to_fileio_fstat = remote_hostio_fstat;
7313baad
UW
13602 remote_ops.to_fileio_close = remote_hostio_close;
13603 remote_ops.to_fileio_unlink = remote_hostio_unlink;
b9e7b9c3 13604 remote_ops.to_fileio_readlink = remote_hostio_readlink;
d248b706 13605 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
3065dfb6 13606 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
b775012e 13607 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
d3ce09f5 13608 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
35b1e5cc
SS
13609 remote_ops.to_trace_init = remote_trace_init;
13610 remote_ops.to_download_tracepoint = remote_download_tracepoint;
1e4d1764 13611 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
3e43a32a
MS
13612 remote_ops.to_download_trace_state_variable
13613 = remote_download_trace_state_variable;
d248b706
KY
13614 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13615 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
35b1e5cc
SS
13616 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13617 remote_ops.to_trace_start = remote_trace_start;
13618 remote_ops.to_get_trace_status = remote_get_trace_status;
f196051f 13619 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
35b1e5cc
SS
13620 remote_ops.to_trace_stop = remote_trace_stop;
13621 remote_ops.to_trace_find = remote_trace_find;
3e43a32a
MS
13622 remote_ops.to_get_trace_state_variable_value
13623 = remote_get_trace_state_variable_value;
00bf0b85
SS
13624 remote_ops.to_save_trace_data = remote_save_trace_data;
13625 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
3e43a32a
MS
13626 remote_ops.to_upload_trace_state_variables
13627 = remote_upload_trace_state_variables;
00bf0b85 13628 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
405f8e94 13629 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
35b1e5cc 13630 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
4daf5ac0 13631 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
f6f899bf 13632 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
f196051f 13633 remote_ops.to_set_trace_notes = remote_set_trace_notes;
dc146f7c 13634 remote_ops.to_core_of_thread = remote_core_of_thread;
4a5e7a5b 13635 remote_ops.to_verify_memory = remote_verify_memory;
711e434b 13636 remote_ops.to_get_tib_address = remote_get_tib_address;
d914c394 13637 remote_ops.to_set_permissions = remote_set_permissions;
0fb4aa4b
PA
13638 remote_ops.to_static_tracepoint_marker_at
13639 = remote_static_tracepoint_marker_at;
13640 remote_ops.to_static_tracepoint_markers_by_strid
13641 = remote_static_tracepoint_markers_by_strid;
b3b9301e 13642 remote_ops.to_traceframe_info = remote_traceframe_info;
d1feda86
YQ
13643 remote_ops.to_use_agent = remote_use_agent;
13644 remote_ops.to_can_use_agent = remote_can_use_agent;
9accd112
MM
13645 remote_ops.to_supports_btrace = remote_supports_btrace;
13646 remote_ops.to_enable_btrace = remote_enable_btrace;
13647 remote_ops.to_disable_btrace = remote_disable_btrace;
13648 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13649 remote_ops.to_read_btrace = remote_read_btrace;
f4abbc16 13650 remote_ops.to_btrace_conf = remote_btrace_conf;
ced63ec0
GB
13651 remote_ops.to_augmented_libraries_svr4_read =
13652 remote_augmented_libraries_svr4_read;
8020350c
DB
13653 remote_ops.to_follow_fork = remote_follow_fork;
13654 remote_ops.to_follow_exec = remote_follow_exec;
13655 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13656 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13657 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13658 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13659 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13660 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
3a00c802 13661 remote_ops.to_execution_direction = remote_execution_direction;
f6327dcb
KB
13662 remote_ops.to_thread_handle_to_thread_info =
13663 remote_thread_handle_to_thread_info;
c906108c
SS
13664}
13665
13666/* Set up the extended remote vector by making a copy of the standard
13667 remote vector and adding to it. */
13668
13669static void
fba45db2 13670init_extended_remote_ops (void)
c906108c
SS
13671{
13672 extended_remote_ops = remote_ops;
13673
0f71a2f6 13674 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 13675 extended_remote_ops.to_longname =
c906108c 13676 "Extended remote serial target in gdb-specific protocol";
c5aa993b 13677 extended_remote_ops.to_doc =
c906108c 13678 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
13679Specify the serial device it is connected to (e.g. /dev/ttya).";
13680 extended_remote_ops.to_open = extended_remote_open;
c906108c 13681 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
2d717e4f
DJ
13682 extended_remote_ops.to_detach = extended_remote_detach;
13683 extended_remote_ops.to_attach = extended_remote_attach;
b9c1d481 13684 extended_remote_ops.to_post_attach = extended_remote_post_attach;
03583c20
UW
13685 extended_remote_ops.to_supports_disable_randomization
13686 = extended_remote_supports_disable_randomization;
0f71a2f6
JM
13687}
13688
6426a772 13689static int
6a109b6b 13690remote_can_async_p (struct target_ops *ops)
6426a772 13691{
5d93a237
TT
13692 struct remote_state *rs = get_remote_state ();
13693
3015c064
SM
13694 /* We don't go async if the user has explicitly prevented it with the
13695 "maint set target-async" command. */
c6ebd6cf 13696 if (!target_async_permitted)
75c99385
PA
13697 return 0;
13698
23860348 13699 /* We're async whenever the serial device is. */
5d93a237 13700 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13701}
13702
13703static int
6a109b6b 13704remote_is_async_p (struct target_ops *ops)
6426a772 13705{
5d93a237
TT
13706 struct remote_state *rs = get_remote_state ();
13707
c6ebd6cf 13708 if (!target_async_permitted)
75c99385
PA
13709 /* We only enable async when the user specifically asks for it. */
13710 return 0;
13711
23860348 13712 /* We're async whenever the serial device is. */
5d93a237 13713 return serial_is_async_p (rs->remote_desc);
6426a772
JM
13714}
13715
2acceee2
JM
13716/* Pass the SERIAL event on and up to the client. One day this code
13717 will be able to delay notifying the client of an event until the
23860348 13718 point where an entire packet has been received. */
2acceee2 13719
2acceee2
JM
13720static serial_event_ftype remote_async_serial_handler;
13721
6426a772 13722static void
819cc324 13723remote_async_serial_handler (struct serial *scb, void *context)
6426a772 13724{
2acceee2
JM
13725 /* Don't propogate error information up to the client. Instead let
13726 the client find out about the error by querying the target. */
6a3753b3 13727 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
13728}
13729
74531fed
PA
13730static void
13731remote_async_inferior_event_handler (gdb_client_data data)
13732{
13733 inferior_event_handler (INF_REG_EVENT, NULL);
13734}
13735
2acceee2 13736static void
6a3753b3 13737remote_async (struct target_ops *ops, int enable)
2acceee2 13738{
5d93a237
TT
13739 struct remote_state *rs = get_remote_state ();
13740
6a3753b3 13741 if (enable)
2acceee2 13742 {
88b496c3 13743 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
13744
13745 /* If there are pending events in the stop reply queue tell the
13746 event loop to process them. */
13747 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13748 mark_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13749 /* For simplicity, below we clear the pending events token
13750 without remembering whether it is marked, so here we always
13751 mark it. If there's actually no pending notification to
13752 process, this ends up being a no-op (other than a spurious
13753 event-loop wakeup). */
13754 if (target_is_non_stop_p ())
13755 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
13756 }
13757 else
b7d2e916
PA
13758 {
13759 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
13760 /* If the core is disabling async, it doesn't want to be
13761 disturbed with target events. Clear all async event sources
13762 too. */
b7d2e916 13763 clear_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13764 if (target_is_non_stop_p ())
13765 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 13766 }
6426a772
JM
13767}
13768
65706a29
PA
13769/* Implementation of the to_thread_events method. */
13770
13771static void
13772remote_thread_events (struct target_ops *ops, int enable)
13773{
13774 struct remote_state *rs = get_remote_state ();
13775 size_t size = get_remote_packet_size ();
65706a29
PA
13776
13777 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13778 return;
13779
13780 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13781 putpkt (rs->buf);
13782 getpkt (&rs->buf, &rs->buf_size, 0);
13783
13784 switch (packet_ok (rs->buf,
13785 &remote_protocol_packets[PACKET_QThreadEvents]))
13786 {
13787 case PACKET_OK:
13788 if (strcmp (rs->buf, "OK") != 0)
13789 error (_("Remote refused setting thread events: %s"), rs->buf);
13790 break;
13791 case PACKET_ERROR:
13792 warning (_("Remote failure reply: %s"), rs->buf);
13793 break;
13794 case PACKET_UNKNOWN:
13795 break;
13796 }
13797}
13798
5a2468f5 13799static void
981a3fb3 13800set_remote_cmd (const char *args, int from_tty)
5a2468f5 13801{
635c7e8a 13802 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
13803}
13804
d471ea57 13805static void
981a3fb3 13806show_remote_cmd (const char *args, int from_tty)
d471ea57 13807{
37a105a1 13808 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 13809 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 13810 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 13811 struct ui_out *uiout = current_uiout;
37a105a1 13812
2e783024 13813 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
13814 for (; list != NULL; list = list->next)
13815 if (strcmp (list->name, "Z-packet") == 0)
13816 continue;
427c3a89
DJ
13817 else if (list->type == not_set_cmd)
13818 /* Alias commands are exactly like the original, except they
13819 don't have the normal type. */
13820 continue;
13821 else
37a105a1 13822 {
2e783024 13823 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 13824
112e8700
SM
13825 uiout->field_string ("name", list->name);
13826 uiout->text (": ");
427c3a89 13827 if (list->type == show_cmd)
f5c4fcd9 13828 do_show_command (NULL, from_tty, list);
427c3a89
DJ
13829 else
13830 cmd_func (list, NULL, from_tty);
37a105a1 13831 }
d471ea57 13832}
5a2468f5 13833
0f71a2f6 13834
23860348 13835/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
13836static void
13837remote_new_objfile (struct objfile *objfile)
13838{
5d93a237
TT
13839 struct remote_state *rs = get_remote_state ();
13840
13841 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 13842 remote_check_symbols ();
dc8acb97
MS
13843}
13844
00bf0b85
SS
13845/* Pull all the tracepoints defined on the target and create local
13846 data structures representing them. We don't want to create real
13847 tracepoints yet, we don't want to mess up the user's existing
13848 collection. */
13849
13850static int
ab6617cc 13851remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
d5551862 13852{
00bf0b85
SS
13853 struct remote_state *rs = get_remote_state ();
13854 char *p;
d5551862 13855
00bf0b85
SS
13856 /* Ask for a first packet of tracepoint definition. */
13857 putpkt ("qTfP");
13858 getpkt (&rs->buf, &rs->buf_size, 0);
13859 p = rs->buf;
13860 while (*p && *p != 'l')
d5551862 13861 {
00bf0b85
SS
13862 parse_tracepoint_definition (p, utpp);
13863 /* Ask for another packet of tracepoint definition. */
13864 putpkt ("qTsP");
13865 getpkt (&rs->buf, &rs->buf_size, 0);
13866 p = rs->buf;
d5551862 13867 }
00bf0b85 13868 return 0;
d5551862
SS
13869}
13870
00bf0b85 13871static int
181e3713
TT
13872remote_upload_trace_state_variables (struct target_ops *self,
13873 struct uploaded_tsv **utsvp)
d5551862 13874{
00bf0b85 13875 struct remote_state *rs = get_remote_state ();
d5551862 13876 char *p;
d5551862 13877
00bf0b85
SS
13878 /* Ask for a first packet of variable definition. */
13879 putpkt ("qTfV");
d5551862
SS
13880 getpkt (&rs->buf, &rs->buf_size, 0);
13881 p = rs->buf;
00bf0b85 13882 while (*p && *p != 'l')
d5551862 13883 {
00bf0b85
SS
13884 parse_tsv_definition (p, utsvp);
13885 /* Ask for another packet of variable definition. */
13886 putpkt ("qTsV");
d5551862
SS
13887 getpkt (&rs->buf, &rs->buf_size, 0);
13888 p = rs->buf;
13889 }
00bf0b85 13890 return 0;
d5551862
SS
13891}
13892
c1e36e3e
PA
13893/* The "set/show range-stepping" show hook. */
13894
13895static void
13896show_range_stepping (struct ui_file *file, int from_tty,
13897 struct cmd_list_element *c,
13898 const char *value)
13899{
13900 fprintf_filtered (file,
13901 _("Debugger's willingness to use range stepping "
13902 "is %s.\n"), value);
13903}
13904
13905/* The "set/show range-stepping" set hook. */
13906
13907static void
eb4c3f4a 13908set_range_stepping (const char *ignore_args, int from_tty,
c1e36e3e
PA
13909 struct cmd_list_element *c)
13910{
5d93a237
TT
13911 struct remote_state *rs = get_remote_state ();
13912
c1e36e3e
PA
13913 /* Whene enabling, check whether range stepping is actually
13914 supported by the target, and warn if not. */
13915 if (use_range_stepping)
13916 {
5d93a237 13917 if (rs->remote_desc != NULL)
c1e36e3e 13918 {
4082afcc 13919 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
c1e36e3e
PA
13920 remote_vcont_probe (rs);
13921
4082afcc 13922 if (packet_support (PACKET_vCont) == PACKET_ENABLE
c1e36e3e
PA
13923 && rs->supports_vCont.r)
13924 return;
13925 }
13926
13927 warning (_("Range stepping is not supported by the current target"));
13928 }
13929}
13930
c906108c 13931void
fba45db2 13932_initialize_remote (void)
c906108c 13933{
9a7071a8 13934 struct cmd_list_element *cmd;
6f937416 13935 const char *cmd_name;
ea9c271d 13936
0f71a2f6 13937 /* architecture specific data */
2bc416ba 13938 remote_gdbarch_data_handle =
23860348 13939 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
13940 remote_g_packet_data_handle =
13941 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 13942
94585166
DB
13943 remote_pspace_data
13944 = register_program_space_data_with_cleanup (NULL,
13945 remote_pspace_data_cleanup);
13946
ea9c271d
DJ
13947 /* Initialize the per-target state. At the moment there is only one
13948 of these, not one per target. Only one target is active at a
cf792862
TT
13949 time. */
13950 remote_state = new_remote_state ();
ea9c271d 13951
c906108c
SS
13952 init_remote_ops ();
13953 add_target (&remote_ops);
13954
13955 init_extended_remote_ops ();
13956 add_target (&extended_remote_ops);
cce74817 13957
dc8acb97 13958 /* Hook into new objfile notification. */
06d3b283 13959 observer_attach_new_objfile (remote_new_objfile);
5f4cf0bb
YQ
13960 /* We're no longer interested in notification events of an inferior
13961 when it exits. */
13962 observer_attach_inferior_exit (discard_pending_stop_replies);
dc8acb97 13963
c906108c
SS
13964#if 0
13965 init_remote_threadtests ();
13966#endif
13967
722247f1 13968 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 13969 /* set/show remote ... */
d471ea57 13970
1bedd215 13971 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
13972Remote protocol specific variables\n\
13973Configure various remote-protocol specific variables such as\n\
1bedd215 13974the packets being used"),
cff3e48b 13975 &remote_set_cmdlist, "set remote ",
23860348 13976 0 /* allow-unknown */, &setlist);
1bedd215 13977 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
13978Remote protocol specific variables\n\
13979Configure various remote-protocol specific variables such as\n\
1bedd215 13980the packets being used"),
cff3e48b 13981 &remote_show_cmdlist, "show remote ",
23860348 13982 0 /* allow-unknown */, &showlist);
5a2468f5 13983
1a966eab
AC
13984 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13985Compare section data on target to the exec file.\n\
95cf3b38
DT
13986Argument is a single section name (default: all loaded sections).\n\
13987To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
13988 &cmdlist);
13989
1a966eab
AC
13990 add_cmd ("packet", class_maintenance, packet_command, _("\
13991Send an arbitrary packet to a remote target.\n\
c906108c
SS
13992 maintenance packet TEXT\n\
13993If GDB is talking to an inferior via the GDB serial protocol, then\n\
13994this command sends the string TEXT to the inferior, and displays the\n\
13995response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 13996terminating `#' character and checksum."),
c906108c
SS
13997 &maintenancelist);
13998
7915a72c
AC
13999 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14000Set whether to send break if interrupted."), _("\
14001Show whether to send break if interrupted."), _("\
14002If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14003 set_remotebreak, show_remotebreak,
e707bbc2 14004 &setlist, &showlist);
9a7071a8
JB
14005 cmd_name = "remotebreak";
14006 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14007 deprecate_cmd (cmd, "set remote interrupt-sequence");
14008 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14009 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14010 deprecate_cmd (cmd, "show remote interrupt-sequence");
14011
14012 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14013 interrupt_sequence_modes, &interrupt_sequence_mode,
14014 _("\
9a7071a8
JB
14015Set interrupt sequence to remote target."), _("\
14016Show interrupt sequence to remote target."), _("\
14017Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14018 NULL, show_interrupt_sequence,
14019 &remote_set_cmdlist,
14020 &remote_show_cmdlist);
14021
14022 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14023 &interrupt_on_connect, _("\
14024Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14025Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14026If set, interrupt sequence is sent to remote target."),
14027 NULL, NULL,
14028 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14029
23860348 14030 /* Install commands for configuring memory read/write packets. */
11cf8741 14031
1a966eab
AC
14032 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14033Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14034 &setlist);
1a966eab
AC
14035 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14036Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14037 &showlist);
14038 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14039 set_memory_write_packet_size, _("\
14040Set the maximum number of bytes per memory-write packet.\n\
14041Specify the number of bytes in a packet or 0 (zero) for the\n\
14042default packet size. The actual limit is further reduced\n\
14043dependent on the target. Specify ``fixed'' to disable the\n\
14044further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14045 &remote_set_cmdlist);
14046 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14047 set_memory_read_packet_size, _("\
14048Set the maximum number of bytes per memory-read packet.\n\
14049Specify the number of bytes in a packet or 0 (zero) for the\n\
14050default packet size. The actual limit is further reduced\n\
14051dependent on the target. Specify ``fixed'' to disable the\n\
14052further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14053 &remote_set_cmdlist);
14054 add_cmd ("memory-write-packet-size", no_class,
14055 show_memory_write_packet_size,
1a966eab 14056 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14057 &remote_show_cmdlist);
14058 add_cmd ("memory-read-packet-size", no_class,
14059 show_memory_read_packet_size,
1a966eab 14060 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14061 &remote_show_cmdlist);
c906108c 14062
b3f42336 14063 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14064 &remote_hw_watchpoint_limit, _("\
14065Set the maximum number of target hardware watchpoints."), _("\
14066Show the maximum number of target hardware watchpoints."), _("\
14067Specify a negative limit for unlimited."),
3e43a32a
MS
14068 NULL, NULL, /* FIXME: i18n: The maximum
14069 number of target hardware
14070 watchpoints is %s. */
b3f42336 14071 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
14072 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
14073 &remote_hw_watchpoint_length_limit, _("\
14074Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14075Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14076Specify a negative limit for unlimited."),
14077 NULL, NULL, /* FIXME: i18n: The maximum
14078 length (in bytes) of a target
14079 hardware watchpoint is %s. */
14080 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 14081 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14082 &remote_hw_breakpoint_limit, _("\
14083Set the maximum number of target hardware breakpoints."), _("\
14084Show the maximum number of target hardware breakpoints."), _("\
14085Specify a negative limit for unlimited."),
3e43a32a
MS
14086 NULL, NULL, /* FIXME: i18n: The maximum
14087 number of target hardware
14088 breakpoints is %s. */
b3f42336 14089 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14090
1b493192
PA
14091 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14092 &remote_address_size, _("\
4d28ad1e
AC
14093Set the maximum size of the address (in bits) in a memory packet."), _("\
14094Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14095 NULL,
14096 NULL, /* FIXME: i18n: */
14097 &setlist, &showlist);
c906108c 14098
ca4f7f8b
PA
14099 init_all_packet_configs ();
14100
444abaca 14101 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14102 "X", "binary-download", 1);
0f71a2f6 14103
444abaca 14104 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14105 "vCont", "verbose-resume", 0);
506fb367 14106
89be2091
DJ
14107 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14108 "QPassSignals", "pass-signals", 0);
14109
82075af2
JS
14110 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14111 "QCatchSyscalls", "catch-syscalls", 0);
14112
9b224c5e
PA
14113 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14114 "QProgramSignals", "program-signals", 0);
14115
bc3b087d
SDJ
14116 add_packet_config_cmd (&remote_protocol_packets[PACKET_QSetWorkingDir],
14117 "QSetWorkingDir", "set-working-dir", 0);
14118
aefd8b33
SDJ
14119 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14120 "QStartupWithShell", "startup-with-shell", 0);
14121
0a2dde4a
SDJ
14122 add_packet_config_cmd (&remote_protocol_packets
14123 [PACKET_QEnvironmentHexEncoded],
14124 "QEnvironmentHexEncoded", "environment-hex-encoded",
14125 0);
14126
14127 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14128 "QEnvironmentReset", "environment-reset",
14129 0);
14130
14131 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14132 "QEnvironmentUnset", "environment-unset",
14133 0);
14134
444abaca 14135 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14136 "qSymbol", "symbol-lookup", 0);
dc8acb97 14137
444abaca 14138 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14139 "P", "set-register", 1);
d471ea57 14140
444abaca 14141 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14142 "p", "fetch-register", 1);
b96ec7ac 14143
444abaca 14144 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14145 "Z0", "software-breakpoint", 0);
d471ea57 14146
444abaca 14147 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14148 "Z1", "hardware-breakpoint", 0);
d471ea57 14149
444abaca 14150 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14151 "Z2", "write-watchpoint", 0);
d471ea57 14152
444abaca 14153 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14154 "Z3", "read-watchpoint", 0);
d471ea57 14155
444abaca 14156 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14157 "Z4", "access-watchpoint", 0);
d471ea57 14158
0876f84a
DJ
14159 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14160 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14161
c78fa86a
GB
14162 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14163 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14164
23181151
DJ
14165 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14166 "qXfer:features:read", "target-features", 0);
14167
cfa9d6d9
DJ
14168 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14169 "qXfer:libraries:read", "library-info", 0);
14170
2268b414
JK
14171 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14172 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14173
fd79ecee
DJ
14174 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14175 "qXfer:memory-map:read", "memory-map", 0);
14176
0e7f50da
UW
14177 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14178 "qXfer:spu:read", "read-spu-object", 0);
14179
14180 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14181 "qXfer:spu:write", "write-spu-object", 0);
14182
07e059b5
VP
14183 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14184 "qXfer:osdata:read", "osdata", 0);
14185
dc146f7c
VP
14186 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14187 "qXfer:threads:read", "threads", 0);
14188
4aa995e1
PA
14189 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14190 "qXfer:siginfo:read", "read-siginfo-object", 0);
14191
14192 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14193 "qXfer:siginfo:write", "write-siginfo-object", 0);
14194
b3b9301e
PA
14195 add_packet_config_cmd
14196 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14197 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14198
169081d0
TG
14199 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14200 "qXfer:uib:read", "unwind-info-block", 0);
14201
444abaca 14202 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14203 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14204 0);
14205
711e434b
PM
14206 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14207 "qGetTIBAddr", "get-thread-information-block-address",
14208 0);
14209
40ab02ce
MS
14210 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14211 "bc", "reverse-continue", 0);
14212
14213 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14214 "bs", "reverse-step", 0);
14215
be2a5f71
DJ
14216 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14217 "qSupported", "supported-packets", 0);
14218
08388c79
DE
14219 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14220 "qSearch:memory", "search-memory", 0);
14221
bd3eecc3
PA
14222 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14223 "qTStatus", "trace-status", 0);
14224
15a201c8
GB
14225 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14226 "vFile:setfs", "hostio-setfs", 0);
14227
a6b151f1
DJ
14228 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14229 "vFile:open", "hostio-open", 0);
14230
14231 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14232 "vFile:pread", "hostio-pread", 0);
14233
14234 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14235 "vFile:pwrite", "hostio-pwrite", 0);
14236
14237 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14238 "vFile:close", "hostio-close", 0);
14239
14240 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14241 "vFile:unlink", "hostio-unlink", 0);
14242
b9e7b9c3
UW
14243 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14244 "vFile:readlink", "hostio-readlink", 0);
14245
0a93529c
GB
14246 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14247 "vFile:fstat", "hostio-fstat", 0);
14248
2d717e4f
DJ
14249 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14250 "vAttach", "attach", 0);
14251
14252 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14253 "vRun", "run", 0);
14254
a6f3e723
SL
14255 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14256 "QStartNoAckMode", "noack", 0);
14257
82f73884
PA
14258 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14259 "vKill", "kill", 0);
14260
0b16c5cf
PA
14261 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14262 "qAttached", "query-attached", 0);
14263
782b2b07 14264 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14265 "ConditionalTracepoints",
14266 "conditional-tracepoints", 0);
3788aec7
LM
14267
14268 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14269 "ConditionalBreakpoints",
14270 "conditional-breakpoints", 0);
14271
d3ce09f5
SS
14272 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14273 "BreakpointCommands",
14274 "breakpoint-commands", 0);
14275
7a697b8d
SS
14276 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14277 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14278
409873ef
SS
14279 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14280 "TracepointSource", "TracepointSource", 0);
14281
d914c394
SS
14282 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14283 "QAllow", "allow", 0);
14284
0fb4aa4b
PA
14285 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14286 "StaticTracepoints", "static-tracepoints", 0);
14287
1e4d1764
YQ
14288 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14289 "InstallInTrace", "install-in-trace", 0);
14290
0fb4aa4b
PA
14291 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14292 "qXfer:statictrace:read", "read-sdata-object", 0);
14293
78d85199
YQ
14294 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14295 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14296
03583c20
UW
14297 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14298 "QDisableRandomization", "disable-randomization", 0);
14299
d1feda86
YQ
14300 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14301 "QAgent", "agent", 0);
14302
f6f899bf
HAQ
14303 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14304 "QTBuffer:size", "trace-buffer-size", 0);
14305
9accd112
MM
14306 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14307 "Qbtrace:off", "disable-btrace", 0);
14308
14309 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14310 "Qbtrace:bts", "enable-btrace-bts", 0);
14311
14312 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14313 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14314
14315 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14316 "qXfer:btrace", "read-btrace", 0);
14317
f4abbc16
MM
14318 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14319 "qXfer:btrace-conf", "read-btrace-conf", 0);
14320
d33501a5
MM
14321 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14322 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14323
73b8c1fd
PA
14324 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14325 "multiprocess-feature", "multiprocess-feature", 0);
14326
f7e6eed5
PA
14327 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14328 "swbreak-feature", "swbreak-feature", 0);
14329
14330 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14331 "hwbreak-feature", "hwbreak-feature", 0);
14332
89245bc0
DB
14333 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14334 "fork-event-feature", "fork-event-feature", 0);
14335
14336 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14337 "vfork-event-feature", "vfork-event-feature", 0);
14338
b20a6524
MM
14339 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14340 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14341
750ce8d1
YQ
14342 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14343 "vContSupported", "verbose-resume-supported", 0);
14344
94585166
DB
14345 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14346 "exec-event-feature", "exec-event-feature", 0);
14347
de979965
PA
14348 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14349 "vCtrlC", "ctrl-c", 0);
14350
65706a29
PA
14351 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14352 "QThreadEvents", "thread-events", 0);
14353
f2faf941
PA
14354 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14355 "N stop reply", "no-resumed-stop-reply", 0);
14356
0b736949
DB
14357 /* Assert that we've registered "set remote foo-packet" commands
14358 for all packet configs. */
ca4f7f8b
PA
14359 {
14360 int i;
14361
14362 for (i = 0; i < PACKET_MAX; i++)
14363 {
14364 /* Ideally all configs would have a command associated. Some
14365 still don't though. */
14366 int excepted;
14367
14368 switch (i)
14369 {
14370 case PACKET_QNonStop:
ca4f7f8b
PA
14371 case PACKET_EnableDisableTracepoints_feature:
14372 case PACKET_tracenz_feature:
14373 case PACKET_DisconnectedTracing_feature:
14374 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14375 case PACKET_qCRC:
14376 /* Additions to this list need to be well justified:
14377 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14378 excepted = 1;
14379 break;
14380 default:
14381 excepted = 0;
14382 break;
14383 }
14384
14385 /* This catches both forgetting to add a config command, and
14386 forgetting to remove a packet from the exception list. */
14387 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14388 }
14389 }
14390
37a105a1
DJ
14391 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14392 Z sub-packet has its own set and show commands, but users may
14393 have sets to this variable in their .gdbinit files (or in their
14394 documentation). */
e9e68a56 14395 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14396 &remote_Z_packet_detect, _("\
14397Set use of remote protocol `Z' packets"), _("\
14398Show use of remote protocol `Z' packets "), _("\
3b64bf98 14399When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14400packets."),
e9e68a56 14401 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14402 show_remote_protocol_Z_packet_cmd,
14403 /* FIXME: i18n: Use of remote protocol
14404 `Z' packets is %s. */
e9e68a56 14405 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14406
a6b151f1
DJ
14407 add_prefix_cmd ("remote", class_files, remote_command, _("\
14408Manipulate files on the remote system\n\
14409Transfer files to and from the remote target system."),
14410 &remote_cmdlist, "remote ",
14411 0 /* allow-unknown */, &cmdlist);
14412
14413 add_cmd ("put", class_files, remote_put_command,
14414 _("Copy a local file to the remote system."),
14415 &remote_cmdlist);
14416
14417 add_cmd ("get", class_files, remote_get_command,
14418 _("Copy a remote file to the local system."),
14419 &remote_cmdlist);
14420
14421 add_cmd ("delete", class_files, remote_delete_command,
14422 _("Delete a remote file."),
14423 &remote_cmdlist);
14424
2d717e4f 14425 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14426 &remote_exec_file_var, _("\
2d717e4f 14427Set the remote pathname for \"run\""), _("\
94585166
DB
14428Show the remote pathname for \"run\""), NULL,
14429 set_remote_exec_file,
14430 show_remote_exec_file,
14431 &remote_set_cmdlist,
14432 &remote_show_cmdlist);
2d717e4f 14433
c1e36e3e
PA
14434 add_setshow_boolean_cmd ("range-stepping", class_run,
14435 &use_range_stepping, _("\
14436Enable or disable range stepping."), _("\
14437Show whether target-assisted range stepping is enabled."), _("\
14438If on, and the target supports it, when stepping a source line, GDB\n\
14439tells the target to step the corresponding range of addresses itself instead\n\
14440of issuing multiple single-steps. This speeds up source level\n\
14441stepping. If off, GDB always issues single-steps, even if range\n\
14442stepping is supported by the target. The default is on."),
14443 set_range_stepping,
14444 show_range_stepping,
14445 &setlist,
14446 &showlist);
14447
449092f6
CV
14448 /* Eventually initialize fileio. See fileio.c */
14449 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14450
ba348170 14451 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14452 special ptids with it set to != 0. */
ba348170
PA
14453 magic_null_ptid = ptid_build (42000, -1, 1);
14454 not_sent_ptid = ptid_build (42000, -2, 1);
14455 any_thread_ptid = ptid_build (42000, 0, 1);
c906108c 14456}
This page took 5.338309 seconds and 4 git commands to generate.