Overload catch_command_errors
[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"
35b1e5cc 77
0df8b418 78/* Temp hacks for tracepoint encoding migration. */
35b1e5cc
SS
79static char *target_buf;
80static long target_buf_size;
35b1e5cc 81
94585166
DB
82/* Per-program-space data key. */
83static const struct program_space_data *remote_pspace_data;
84
85/* The variable registered as the control variable used by the
86 remote exec-file commands. While the remote exec-file setting is
87 per-program-space, the set/show machinery uses this as the
88 location of the remote exec-file value. */
89static char *remote_exec_file_var;
90
6765f3e5
DJ
91/* The size to align memory write packets, when practical. The protocol
92 does not guarantee any alignment, and gdb will generate short
93 writes and unaligned writes, but even as a best-effort attempt this
94 can improve bulk transfers. For instance, if a write is misaligned
95 relative to the target's data bus, the stub may need to make an extra
96 round trip fetching data from the target. This doesn't make a
97 huge difference, but it's easy to do, so we try to be helpful.
98
99 The alignment chosen is arbitrary; usually data bus width is
100 important here, not the possibly larger cache line size. */
101enum { REMOTE_ALIGN_WRITES = 16 };
102
23860348 103/* Prototypes for local functions. */
6d820c5c 104static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed 105static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
fee9eda9 106 int forever, int *is_notif);
6426a772 107
a14ed312 108static void remote_files_info (struct target_ops *ignore);
c906108c 109
f32dbf8c
MM
110static void remote_prepare_to_store (struct target_ops *self,
111 struct regcache *regcache);
c906108c 112
014f9477
TT
113static void remote_open_1 (const char *, int, struct target_ops *,
114 int extended_p);
c906108c 115
de90e03d 116static void remote_close (struct target_ops *self);
c906108c 117
cbb8991c
DB
118struct remote_state;
119
120static int remote_vkill (int pid, struct remote_state *rs);
121
8020350c
DB
122static void remote_kill_k (void);
123
136d6dae 124static void remote_mourn (struct target_ops *ops);
c906108c 125
a14ed312 126static void extended_remote_restart (void);
c906108c 127
6d820c5c 128static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 129
a14ed312 130static int readchar (int timeout);
c906108c 131
c33e31fd
PA
132static void remote_serial_write (const char *str, int len);
133
7d85a9c0 134static void remote_kill (struct target_ops *ops);
c906108c 135
6a109b6b 136static int remote_can_async_p (struct target_ops *);
75c99385 137
6a109b6b 138static int remote_is_async_p (struct target_ops *);
75c99385 139
6a3753b3 140static void remote_async (struct target_ops *ops, int enable);
75c99385 141
65706a29
PA
142static void remote_thread_events (struct target_ops *ops, int enable);
143
a14ed312 144static void interrupt_query (void);
c906108c 145
d62a8ae2
SM
146static void set_general_thread (ptid_t ptid);
147static void set_continue_thread (ptid_t ptid);
c906108c 148
a14ed312 149static void get_offsets (void);
c906108c 150
6d820c5c
DJ
151static void skip_frame (void);
152
153static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 154
a14ed312 155static int hexnumlen (ULONGEST num);
c906108c 156
a14ed312 157static void init_remote_ops (void);
c906108c 158
a14ed312 159static void init_extended_remote_ops (void);
c906108c 160
1eab8a48 161static void remote_stop (struct target_ops *self, ptid_t);
c906108c 162
a14ed312 163static int stubhex (int ch);
c906108c 164
a14ed312 165static int hexnumstr (char *, ULONGEST);
c906108c 166
a14ed312 167static int hexnumnstr (char *, ULONGEST, int);
2df3850c 168
a14ed312 169static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 170
baa336ce 171static void print_packet (const char *);
c906108c 172
a14ed312 173static void compare_sections_command (char *, int);
c906108c 174
a14ed312 175static void packet_command (char *, int);
c906108c 176
a14ed312 177static int stub_unpack_int (char *buff, int fieldlength);
c906108c 178
39f77062 179static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 180
baa336ce 181static int putpkt_binary (const char *buf, int cnt);
c906108c 182
a14ed312 183static void check_binary_download (CORE_ADDR addr);
c906108c 184
5a2468f5 185struct packet_config;
5a2468f5 186
a14ed312 187static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 188
bb572ddd
DJ
189static void show_remote_protocol_packet_cmd (struct ui_file *file,
190 int from_tty,
191 struct cmd_list_element *c,
192 const char *value);
193
82f73884
PA
194static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
195static ptid_t read_ptid (char *buf, char **obuf);
196
c378d69d 197static void remote_set_permissions (struct target_ops *self);
d914c394 198
8bd200f1
TT
199static int remote_get_trace_status (struct target_ops *self,
200 struct trace_status *ts);
d5551862 201
ab6617cc
TT
202static int remote_upload_tracepoints (struct target_ops *self,
203 struct uploaded_tp **utpp);
00bf0b85 204
181e3713
TT
205static int remote_upload_trace_state_variables (struct target_ops *self,
206 struct uploaded_tsv **utsvp);
00bf0b85 207
c8d104ad
PA
208static void remote_query_supported (void);
209
36d25514 210static void remote_check_symbols (void);
c8d104ad 211
74531fed 212struct stop_reply;
74531fed 213static void stop_reply_xfree (struct stop_reply *);
722247f1 214static void remote_parse_stop_reply (char *, struct stop_reply *);
74531fed 215static void push_stop_reply (struct stop_reply *);
bcc75809 216static void discard_pending_stop_replies_in_queue (struct remote_state *);
74531fed
PA
217static int peek_stop_reply (ptid_t ptid);
218
cbb8991c
DB
219struct threads_listing_context;
220static void remove_new_fork_children (struct threads_listing_context *);
221
74531fed 222static void remote_async_inferior_event_handler (gdb_client_data);
74531fed 223
e3594fd1 224static void remote_terminal_ours (struct target_ops *self);
d3fd5342 225
d962ef82
DJ
226static int remote_read_description_p (struct target_ops *target);
227
176a6961 228static void remote_console_output (char *msg);
dde08ee1 229
efcc2da7 230static int remote_supports_cond_breakpoints (struct target_ops *self);
b775012e 231
78eff0ec 232static int remote_can_run_breakpoint_commands (struct target_ops *self);
d3ce09f5 233
f4abbc16
MM
234static void remote_btrace_reset (void);
235
c0272db5
TW
236static void remote_btrace_maybe_reopen (void);
237
221e1a37
PA
238static int stop_reply_queue_length (void);
239
80152258
PA
240static void readahead_cache_invalidate (void);
241
048094ac
PA
242static void remote_unpush_and_throw (void);
243
a6b151f1
DJ
244/* For "remote". */
245
246static struct cmd_list_element *remote_cmdlist;
247
bb572ddd
DJ
248/* For "set remote" and "show remote". */
249
250static struct cmd_list_element *remote_set_cmdlist;
251static struct cmd_list_element *remote_show_cmdlist;
252
d458bd84
PA
253/* Stub vCont actions support.
254
255 Each field is a boolean flag indicating whether the stub reports
256 support for the corresponding action. */
257
258struct vCont_action_support
259{
260 /* vCont;t */
261 int t;
c1e36e3e
PA
262
263 /* vCont;r */
264 int r;
750ce8d1
YQ
265
266 /* vCont;s */
267 int s;
268
269 /* vCont;S */
270 int S;
d458bd84
PA
271};
272
c1e36e3e
PA
273/* Controls whether GDB is willing to use range stepping. */
274
275static int use_range_stepping = 1;
276
0d031856
TT
277#define OPAQUETHREADBYTES 8
278
279/* a 64 bit opaque identifier */
280typedef unsigned char threadref[OPAQUETHREADBYTES];
281
282/* About this many threadisds fit in a packet. */
283
284#define MAXTHREADLISTRESULTS 32
285
6f8976bf
YQ
286/* The max number of chars in debug output. The rest of chars are
287 omitted. */
288
289#define REMOTE_DEBUG_MAX_CHAR 512
290
80152258
PA
291/* Data for the vFile:pread readahead cache. */
292
293struct readahead_cache
294{
295 /* The file descriptor for the file that is being cached. -1 if the
296 cache is invalid. */
297 int fd;
298
299 /* The offset into the file that the cache buffer corresponds
300 to. */
301 ULONGEST offset;
302
303 /* The buffer holding the cache contents. */
304 gdb_byte *buf;
305 /* The buffer's size. We try to read as much as fits into a packet
306 at a time. */
307 size_t bufsize;
308
309 /* Cache hit and miss counters. */
310 ULONGEST hit_count;
311 ULONGEST miss_count;
312};
313
ea9c271d
DJ
314/* Description of the remote protocol state for the currently
315 connected target. This is per-target state, and independent of the
316 selected architecture. */
317
318struct remote_state
319{
320 /* A buffer to use for incoming packets, and its current size. The
321 buffer is grown dynamically for larger incoming packets.
322 Outgoing packets may also be constructed in this buffer.
323 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
324 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
325 packets. */
326 char *buf;
327 long buf_size;
be2a5f71 328
1e51243a
PA
329 /* True if we're going through initial connection setup (finding out
330 about the remote side's threads, relocating symbols, etc.). */
331 int starting_up;
332
be2a5f71
DJ
333 /* If we negotiated packet size explicitly (and thus can bypass
334 heuristics for the largest packet size that will not overflow
335 a buffer in the stub), this will be set to that packet size.
336 Otherwise zero, meaning to use the guessed size. */
337 long explicit_packet_size;
2d717e4f
DJ
338
339 /* remote_wait is normally called when the target is running and
340 waits for a stop reply packet. But sometimes we need to call it
341 when the target is already stopped. We can send a "?" packet
342 and have remote_wait read the response. Or, if we already have
343 the response, we can stash it in BUF and tell remote_wait to
344 skip calling getpkt. This flag is set when BUF contains a
345 stop reply packet and the target is not waiting. */
346 int cached_wait_status;
a6f3e723
SL
347
348 /* True, if in no ack mode. That is, neither GDB nor the stub will
349 expect acks from each other. The connection is assumed to be
350 reliable. */
351 int noack_mode;
82f73884
PA
352
353 /* True if we're connected in extended remote mode. */
354 int extended;
355
e24a49d8
PA
356 /* True if we resumed the target and we're waiting for the target to
357 stop. In the mean time, we can't start another command/query.
358 The remote server wouldn't be ready to process it, so we'd
359 timeout waiting for a reply that would never come and eventually
360 we'd close the connection. This can happen in asynchronous mode
361 because we allow GDB commands while the target is running. */
362 int waiting_for_stop_reply;
74531fed 363
d458bd84
PA
364 /* The status of the stub support for the various vCont actions. */
365 struct vCont_action_support supports_vCont;
782b2b07 366
3a29589a
DJ
367 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
368 responded to that. */
369 int ctrlc_pending_p;
5d93a237 370
048094ac
PA
371 /* True if we saw a Ctrl-C while reading or writing from/to the
372 remote descriptor. At that point it is not safe to send a remote
373 interrupt packet, so we instead remember we saw the Ctrl-C and
374 process it once we're done with sending/receiving the current
375 packet, which should be shortly. If however that takes too long,
376 and the user presses Ctrl-C again, we offer to disconnect. */
377 int got_ctrlc_during_io;
378
5d93a237
TT
379 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
380 remote_open knows that we don't have a file open when the program
381 starts. */
382 struct serial *remote_desc;
47f8a51d
TT
383
384 /* These are the threads which we last sent to the remote system. The
385 TID member will be -1 for all or -2 for not sent yet. */
386 ptid_t general_thread;
387 ptid_t continue_thread;
262e1174
TT
388
389 /* This is the traceframe which we last selected on the remote system.
390 It will be -1 if no traceframe is selected. */
391 int remote_traceframe_number;
747dc59d
TT
392
393 char *last_pass_packet;
5e4a05c4
TT
394
395 /* The last QProgramSignals packet sent to the target. We bypass
396 sending a new program signals list down to the target if the new
397 packet is exactly the same as the last we sent. IOW, we only let
398 the target know about program signals list changes. */
399 char *last_program_signals_packet;
b73be471
TT
400
401 enum gdb_signal last_sent_signal;
280ceea3
TT
402
403 int last_sent_step;
8e88304f 404
3a00c802
PA
405 /* The execution direction of the last resume we got. */
406 enum exec_direction_kind last_resume_exec_dir;
407
8e88304f
TT
408 char *finished_object;
409 char *finished_annex;
410 ULONGEST finished_offset;
b80fafe3
TT
411
412 /* Should we try the 'ThreadInfo' query packet?
413
414 This variable (NOT available to the user: auto-detect only!)
415 determines whether GDB will use the new, simpler "ThreadInfo"
416 query or the older, more complex syntax for thread queries.
417 This is an auto-detect variable (set to true at each connect,
418 and set to false when the target fails to recognize it). */
419 int use_threadinfo_query;
420 int use_threadextra_query;
88b496c3 421
0d031856
TT
422 threadref echo_nextthread;
423 threadref nextthread;
424 threadref resultthreadlist[MAXTHREADLISTRESULTS];
5965e028
YQ
425
426 /* The state of remote notification. */
427 struct remote_notif_state *notif_state;
f4abbc16
MM
428
429 /* The branch trace configuration. */
430 struct btrace_config btrace_config;
15a201c8
GB
431
432 /* The argument to the last "vFile:setfs:" packet we sent, used
433 to avoid sending repeated unnecessary "vFile:setfs:" packets.
434 Initialized to -1 to indicate that no "vFile:setfs:" packet
435 has yet been sent. */
436 int fs_pid;
80152258
PA
437
438 /* A readahead cache for vFile:pread. Often, reading a binary
439 involves a sequence of small reads. E.g., when parsing an ELF
440 file. A readahead cache helps mostly the case of remote
441 debugging on a connection with higher latency, due to the
442 request/reply nature of the RSP. We only cache data for a single
443 file descriptor at a time. */
444 struct readahead_cache readahead_cache;
ea9c271d
DJ
445};
446
dc146f7c
VP
447/* Private data that we'll store in (struct thread_info)->private. */
448struct private_thread_info
449{
450 char *extra;
79efa585 451 char *name;
dc146f7c 452 int core;
799a2abe
PA
453
454 /* Whether the target stopped for a breakpoint/watchpoint. */
455 enum target_stop_reason stop_reason;
456
457 /* This is set to the data address of the access causing the target
458 to stop for a watchpoint. */
459 CORE_ADDR watch_data_address;
85ad3aaf
PA
460
461 /* Fields used by the vCont action coalescing implemented in
462 remote_resume / remote_commit_resume. remote_resume stores each
463 thread's last resume request in these fields, so that a later
464 remote_commit_resume knows which is the proper action for this
465 thread to include in the vCont packet. */
466
467 /* True if the last target_resume call for this thread was a step
468 request, false if a continue request. */
469 int last_resume_step;
470
471 /* The signal specified in the last target_resume call for this
472 thread. */
473 enum gdb_signal last_resume_sig;
474
475 /* Whether this thread was already vCont-resumed on the remote
476 side. */
477 int vcont_resumed;
dc146f7c
VP
478};
479
480static void
481free_private_thread_info (struct private_thread_info *info)
482{
483 xfree (info->extra);
79efa585 484 xfree (info->name);
dc146f7c
VP
485 xfree (info);
486}
487
ea9c271d
DJ
488/* This data could be associated with a target, but we do not always
489 have access to the current target when we need it, so for now it is
490 static. This will be fine for as long as only one target is in use
491 at a time. */
cf792862 492static struct remote_state *remote_state;
ea9c271d
DJ
493
494static struct remote_state *
0b83947e 495get_remote_state_raw (void)
ea9c271d 496{
cf792862
TT
497 return remote_state;
498}
499
500/* Allocate a new struct remote_state with xmalloc, initialize it, and
501 return it. */
502
503static struct remote_state *
504new_remote_state (void)
505{
506 struct remote_state *result = XCNEW (struct remote_state);
507
508 /* The default buffer size is unimportant; it will be expanded
509 whenever a larger buffer is needed. */
510 result->buf_size = 400;
224c3ddb 511 result->buf = (char *) xmalloc (result->buf_size);
262e1174 512 result->remote_traceframe_number = -1;
b73be471 513 result->last_sent_signal = GDB_SIGNAL_0;
3a00c802 514 result->last_resume_exec_dir = EXEC_FORWARD;
15a201c8 515 result->fs_pid = -1;
cf792862
TT
516
517 return result;
ea9c271d
DJ
518}
519
520/* Description of the remote protocol for a given architecture. */
d01949b6 521
ad10f812
AC
522struct packet_reg
523{
524 long offset; /* Offset into G packet. */
525 long regnum; /* GDB's internal register number. */
526 LONGEST pnum; /* Remote protocol register number. */
b323314b 527 int in_g_packet; /* Always part of G packet. */
f5656ead 528 /* long size in bytes; == register_size (target_gdbarch (), regnum);
23860348 529 at present. */
f5656ead 530 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
c9f4d572 531 at present. */
ad10f812
AC
532};
533
ea9c271d 534struct remote_arch_state
d01949b6 535{
ad10f812
AC
536 /* Description of the remote protocol registers. */
537 long sizeof_g_packet;
b323314b
AC
538
539 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 540 (making an array gdbarch_num_regs in size). */
b323314b 541 struct packet_reg *regs;
ad10f812 542
d01949b6
AC
543 /* This is the size (in chars) of the first response to the ``g''
544 packet. It is used as a heuristic when determining the maximum
545 size of memory-read and memory-write packets. A target will
546 typically only reserve a buffer large enough to hold the ``g''
547 packet. The size does not include packet overhead (headers and
23860348 548 trailers). */
d01949b6
AC
549 long actual_register_packet_size;
550
551 /* This is the maximum size (in chars) of a non read/write packet.
23860348 552 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
553 long remote_packet_size;
554};
555
35b1e5cc
SS
556/* Utility: generate error from an incoming stub packet. */
557static void
558trace_error (char *buf)
559{
560 if (*buf++ != 'E')
561 return; /* not an error msg */
562 switch (*buf)
563 {
564 case '1': /* malformed packet error */
565 if (*++buf == '0') /* general case: */
566 error (_("remote.c: error in outgoing packet."));
567 else
568 error (_("remote.c: error in outgoing packet at field #%ld."),
569 strtol (buf, NULL, 16));
35b1e5cc
SS
570 default:
571 error (_("Target returns error code '%s'."), buf);
572 }
573}
574
575/* Utility: wait for reply from stub, while accepting "O" packets. */
576static char *
577remote_get_noisy_reply (char **buf_p,
578 long *sizeof_buf)
579{
580 do /* Loop on reply from remote stub. */
581 {
582 char *buf;
a744cf53 583
0df8b418 584 QUIT; /* Allow user to bail out with ^C. */
35b1e5cc
SS
585 getpkt (buf_p, sizeof_buf, 0);
586 buf = *buf_p;
ad91cd99 587 if (buf[0] == 'E')
35b1e5cc 588 trace_error (buf);
61012eef 589 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
590 {
591 ULONGEST ul;
592 CORE_ADDR from, to, org_to;
593 char *p, *pp;
594 int adjusted_size = 0;
7556d4a4 595 int relocated = 0;
dde08ee1
PA
596
597 p = buf + strlen ("qRelocInsn:");
598 pp = unpack_varlen_hex (p, &ul);
599 if (*pp != ';')
cb91c06a 600 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
601 from = ul;
602
603 p = pp + 1;
a9cbf802 604 unpack_varlen_hex (p, &ul);
dde08ee1
PA
605 to = ul;
606
607 org_to = to;
608
492d29ea 609 TRY
dde08ee1 610 {
f5656ead 611 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 612 relocated = 1;
dde08ee1 613 }
492d29ea 614 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
615 {
616 if (ex.error == MEMORY_ERROR)
617 {
618 /* Propagate memory errors silently back to the
619 target. The stub may have limited the range of
620 addresses we can write to, for example. */
621 }
622 else
623 {
624 /* Something unexpectedly bad happened. Be verbose
625 so we can tell what, and propagate the error back
626 to the stub, so it doesn't get stuck waiting for
627 a response. */
628 exception_fprintf (gdb_stderr, ex,
629 _("warning: relocating instruction: "));
630 }
631 putpkt ("E01");
632 }
492d29ea 633 END_CATCH
7556d4a4
PA
634
635 if (relocated)
dde08ee1
PA
636 {
637 adjusted_size = to - org_to;
638
bba74b36 639 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
640 putpkt (buf);
641 }
dde08ee1 642 }
ad91cd99 643 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
644 remote_console_output (buf + 1); /* 'O' message from stub */
645 else
0df8b418 646 return buf; /* Here's the actual reply. */
35b1e5cc
SS
647 }
648 while (1);
649}
3c3bea1c 650
d01949b6
AC
651/* Handle for retreving the remote protocol data from gdbarch. */
652static struct gdbarch_data *remote_gdbarch_data_handle;
653
ea9c271d
DJ
654static struct remote_arch_state *
655get_remote_arch_state (void)
d01949b6 656{
17d8546e 657 gdb_assert (target_gdbarch () != NULL);
19ba03f4
SM
658 return ((struct remote_arch_state *)
659 gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle));
d01949b6
AC
660}
661
0b83947e
DJ
662/* Fetch the global remote target state. */
663
664static struct remote_state *
665get_remote_state (void)
666{
667 /* Make sure that the remote architecture state has been
668 initialized, because doing so might reallocate rs->buf. Any
669 function which calls getpkt also needs to be mindful of changes
670 to rs->buf, but this call limits the number of places which run
671 into trouble. */
672 get_remote_arch_state ();
673
674 return get_remote_state_raw ();
675}
676
94585166
DB
677/* Cleanup routine for the remote module's pspace data. */
678
679static void
680remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
681{
19ba03f4 682 char *remote_exec_file = (char *) arg;
94585166
DB
683
684 xfree (remote_exec_file);
685}
686
687/* Fetch the remote exec-file from the current program space. */
688
689static const char *
690get_remote_exec_file (void)
691{
692 char *remote_exec_file;
693
19ba03f4
SM
694 remote_exec_file
695 = (char *) program_space_data (current_program_space,
696 remote_pspace_data);
94585166
DB
697 if (remote_exec_file == NULL)
698 return "";
699
700 return remote_exec_file;
701}
702
703/* Set the remote exec file for PSPACE. */
704
705static void
706set_pspace_remote_exec_file (struct program_space *pspace,
707 char *remote_exec_file)
708{
19ba03f4 709 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
710
711 xfree (old_file);
712 set_program_space_data (pspace, remote_pspace_data,
713 xstrdup (remote_exec_file));
714}
715
716/* The "set/show remote exec-file" set command hook. */
717
718static void
719set_remote_exec_file (char *ignored, int from_tty,
720 struct cmd_list_element *c)
721{
722 gdb_assert (remote_exec_file_var != NULL);
723 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
724}
725
726/* The "set/show remote exec-file" show command hook. */
727
728static void
729show_remote_exec_file (struct ui_file *file, int from_tty,
730 struct cmd_list_element *cmd, const char *value)
731{
732 fprintf_filtered (file, "%s\n", remote_exec_file_var);
733}
734
74ca34ce
DJ
735static int
736compare_pnums (const void *lhs_, const void *rhs_)
737{
19ba03f4
SM
738 const struct packet_reg * const *lhs
739 = (const struct packet_reg * const *) lhs_;
740 const struct packet_reg * const *rhs
741 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
742
743 if ((*lhs)->pnum < (*rhs)->pnum)
744 return -1;
745 else if ((*lhs)->pnum == (*rhs)->pnum)
746 return 0;
747 else
748 return 1;
749}
750
c21236dc
PA
751static int
752map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 753{
74ca34ce 754 int regnum, num_remote_regs, offset;
74ca34ce 755 struct packet_reg **remote_regs;
ea9c271d 756
4a22f64d 757 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 758 {
c21236dc 759 struct packet_reg *r = &regs[regnum];
baef701f 760
4a22f64d 761 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
762 /* Do not try to fetch zero-sized (placeholder) registers. */
763 r->pnum = -1;
764 else
765 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
766
b323314b 767 r->regnum = regnum;
74ca34ce
DJ
768 }
769
770 /* Define the g/G packet format as the contents of each register
771 with a remote protocol number, in order of ascending protocol
772 number. */
773
224c3ddb 774 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 775 for (num_remote_regs = 0, regnum = 0;
4a22f64d 776 regnum < gdbarch_num_regs (gdbarch);
f57d151a 777 regnum++)
c21236dc
PA
778 if (regs[regnum].pnum != -1)
779 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 780
74ca34ce
DJ
781 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
782 compare_pnums);
783
784 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
785 {
786 remote_regs[regnum]->in_g_packet = 1;
787 remote_regs[regnum]->offset = offset;
4a22f64d 788 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
789 }
790
c21236dc
PA
791 return offset;
792}
793
794/* Given the architecture described by GDBARCH, return the remote
795 protocol register's number and the register's offset in the g/G
796 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
797 If the target does not have a mapping for REGNUM, return false,
798 otherwise, return true. */
799
800int
801remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
802 int *pnum, int *poffset)
803{
c21236dc
PA
804 struct packet_reg *regs;
805 struct cleanup *old_chain;
806
807 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
808
224c3ddb 809 regs = XCNEWVEC (struct packet_reg, gdbarch_num_regs (gdbarch));
c21236dc
PA
810 old_chain = make_cleanup (xfree, regs);
811
54887903 812 map_regcache_remote_table (gdbarch, regs);
c21236dc
PA
813
814 *pnum = regs[regnum].pnum;
815 *poffset = regs[regnum].offset;
816
817 do_cleanups (old_chain);
818
819 return *pnum != -1;
820}
821
822static void *
823init_remote_state (struct gdbarch *gdbarch)
824{
825 struct remote_state *rs = get_remote_state_raw ();
826 struct remote_arch_state *rsa;
827
828 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
829
830 /* Use the architecture to build a regnum<->pnum table, which will be
831 1:1 unless a feature set specifies otherwise. */
832 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
833 gdbarch_num_regs (gdbarch),
834 struct packet_reg);
835
74ca34ce
DJ
836 /* Record the maximum possible size of the g packet - it may turn out
837 to be smaller. */
c21236dc 838 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
74ca34ce 839
0df8b418 840 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
841 remote stubs have a hardwired buffer size of 400 bytes
842 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
843 as the maximum packet-size to ensure that the packet and an extra
844 NUL character can always fit in the buffer. This stops GDB
845 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
846 already a full buffer (As of 1999-12-04 that was most stubs). */
847 rsa->remote_packet_size = 400 - 1;
d01949b6 848
ea9c271d
DJ
849 /* This one is filled in when a ``g'' packet is received. */
850 rsa->actual_register_packet_size = 0;
851
852 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
853 default, adjust the size accordingly. Remember that each byte is
854 encoded as two characters. 32 is the overhead for the packet
855 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 856 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 857 little. */
ea9c271d
DJ
858 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
859 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 860
ea9c271d
DJ
861 /* Make sure that the packet buffer is plenty big enough for
862 this architecture. */
863 if (rs->buf_size < rsa->remote_packet_size)
864 {
865 rs->buf_size = 2 * rsa->remote_packet_size;
224c3ddb 866 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
ea9c271d 867 }
6d820c5c 868
ea9c271d
DJ
869 return rsa;
870}
871
872/* Return the current allowed size of a remote packet. This is
873 inferred from the current architecture, and should be used to
874 limit the length of outgoing packets. */
875static long
876get_remote_packet_size (void)
877{
be2a5f71 878 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
879 struct remote_arch_state *rsa = get_remote_arch_state ();
880
be2a5f71
DJ
881 if (rs->explicit_packet_size)
882 return rs->explicit_packet_size;
883
ea9c271d 884 return rsa->remote_packet_size;
d01949b6
AC
885}
886
ad10f812 887static struct packet_reg *
ea9c271d 888packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
ad10f812 889{
f5656ead 890 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
b323314b
AC
891 return NULL;
892 else
ad10f812 893 {
ea9c271d 894 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 895
b323314b
AC
896 gdb_assert (r->regnum == regnum);
897 return r;
ad10f812 898 }
ad10f812
AC
899}
900
901static struct packet_reg *
ea9c271d 902packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
ad10f812 903{
b323314b 904 int i;
a744cf53 905
f5656ead 906 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
ad10f812 907 {
ea9c271d 908 struct packet_reg *r = &rsa->regs[i];
a744cf53 909
b323314b
AC
910 if (r->pnum == pnum)
911 return r;
ad10f812
AC
912 }
913 return NULL;
d01949b6
AC
914}
915
c906108c
SS
916static struct target_ops remote_ops;
917
918static struct target_ops extended_remote_ops;
919
6426a772
JM
920/* FIXME: cagney/1999-09-23: Even though getpkt was called with
921 ``forever'' still use the normal timeout mechanism. This is
922 currently used by the ASYNC code to guarentee that target reads
923 during the initial connect always time-out. Once getpkt has been
924 modified to return a timeout indication and, in turn
925 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 926 this can go away. */
6426a772
JM
927static int wait_forever_enabled_p = 1;
928
9a7071a8
JB
929/* Allow the user to specify what sequence to send to the remote
930 when he requests a program interruption: Although ^C is usually
931 what remote systems expect (this is the default, here), it is
932 sometimes preferable to send a break. On other systems such
933 as the Linux kernel, a break followed by g, which is Magic SysRq g
934 is required in order to interrupt the execution. */
935const char interrupt_sequence_control_c[] = "Ctrl-C";
936const char interrupt_sequence_break[] = "BREAK";
937const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 938static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
939 {
940 interrupt_sequence_control_c,
941 interrupt_sequence_break,
942 interrupt_sequence_break_g,
943 NULL
944 };
945static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
946
947static void
948show_interrupt_sequence (struct ui_file *file, int from_tty,
949 struct cmd_list_element *c,
950 const char *value)
951{
952 if (interrupt_sequence_mode == interrupt_sequence_control_c)
953 fprintf_filtered (file,
954 _("Send the ASCII ETX character (Ctrl-c) "
955 "to the remote target to interrupt the "
956 "execution of the program.\n"));
957 else if (interrupt_sequence_mode == interrupt_sequence_break)
958 fprintf_filtered (file,
959 _("send a break signal to the remote target "
960 "to interrupt the execution of the program.\n"));
961 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
962 fprintf_filtered (file,
963 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
964 "the remote target to interrupt the execution "
965 "of Linux kernel.\n"));
966 else
967 internal_error (__FILE__, __LINE__,
968 _("Invalid value for interrupt_sequence_mode: %s."),
969 interrupt_sequence_mode);
970}
6426a772 971
9a7071a8
JB
972/* This boolean variable specifies whether interrupt_sequence is sent
973 to the remote target when gdb connects to it.
974 This is mostly needed when you debug the Linux kernel: The Linux kernel
975 expects BREAK g which is Magic SysRq g for connecting gdb. */
976static int interrupt_on_connect = 0;
c906108c 977
9a7071a8
JB
978/* This variable is used to implement the "set/show remotebreak" commands.
979 Since these commands are now deprecated in favor of "set/show remote
980 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
981static int remote_break;
982
9a7071a8
JB
983static void
984set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
985{
986 if (remote_break)
987 interrupt_sequence_mode = interrupt_sequence_break;
988 else
989 interrupt_sequence_mode = interrupt_sequence_control_c;
990}
991
992static void
993show_remotebreak (struct ui_file *file, int from_tty,
994 struct cmd_list_element *c,
995 const char *value)
996{
997}
998
c906108c
SS
999/* This variable sets the number of bits in an address that are to be
1000 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 1001 leading zeros, the entire address would be sent. This variable
c906108c
SS
1002 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
1003 initial implementation of remote.c restricted the address sent in
1004 memory packets to ``host::sizeof long'' bytes - (typically 32
1005 bits). Consequently, for 64 bit targets, the upper 32 bits of an
1006 address was never sent. Since fixing this bug may cause a break in
1007 some remote targets this variable is principly provided to
23860348 1008 facilitate backward compatibility. */
c906108c 1009
883b9c6c 1010static unsigned int remote_address_size;
c906108c 1011
75c99385
PA
1012/* Temporary to track who currently owns the terminal. See
1013 remote_terminal_* for more details. */
6426a772
JM
1014
1015static int remote_async_terminal_ours_p;
1016
11cf8741 1017\f
11cf8741 1018/* User configurable variables for the number of characters in a
ea9c271d
DJ
1019 memory read/write packet. MIN (rsa->remote_packet_size,
1020 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 1021 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
1022 (speed up transfers). The variables ``preferred_*'' (the user
1023 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 1024 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
1025
1026struct memory_packet_config
1027{
a121b7c1 1028 const char *name;
11cf8741
JM
1029 long size;
1030 int fixed_p;
1031};
1032
a5c0808e
PA
1033/* The default max memory-write-packet-size. The 16k is historical.
1034 (It came from older GDB's using alloca for buffers and the
1035 knowledge (folklore?) that some hosts don't cope very well with
1036 large alloca calls.) */
1037#define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1038
1039/* The minimum remote packet size for memory transfers. Ensures we
1040 can write at least one byte. */
1041#define MIN_MEMORY_PACKET_SIZE 20
1042
11cf8741
JM
1043/* Compute the current size of a read/write packet. Since this makes
1044 use of ``actual_register_packet_size'' the computation is dynamic. */
1045
1046static long
1047get_memory_packet_size (struct memory_packet_config *config)
1048{
d01949b6 1049 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
1050 struct remote_arch_state *rsa = get_remote_arch_state ();
1051
11cf8741
JM
1052 long what_they_get;
1053 if (config->fixed_p)
1054 {
1055 if (config->size <= 0)
a5c0808e 1056 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
11cf8741
JM
1057 else
1058 what_they_get = config->size;
1059 }
1060 else
1061 {
ea9c271d 1062 what_they_get = get_remote_packet_size ();
23860348 1063 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1064 if (config->size > 0
1065 && what_they_get > config->size)
1066 what_they_get = config->size;
be2a5f71
DJ
1067
1068 /* Limit it to the size of the targets ``g'' response unless we have
1069 permission from the stub to use a larger packet size. */
1070 if (rs->explicit_packet_size == 0
1071 && rsa->actual_register_packet_size > 0
1072 && what_they_get > rsa->actual_register_packet_size)
1073 what_they_get = rsa->actual_register_packet_size;
11cf8741 1074 }
a5c0808e
PA
1075 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1076 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1077
1078 /* Make sure there is room in the global buffer for this packet
1079 (including its trailing NUL byte). */
1080 if (rs->buf_size < what_they_get + 1)
1081 {
1082 rs->buf_size = 2 * what_they_get;
224c3ddb 1083 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
6d820c5c
DJ
1084 }
1085
11cf8741
JM
1086 return what_they_get;
1087}
1088
0df8b418 1089/* Update the size of a read/write packet. If they user wants
23860348 1090 something really big then do a sanity check. */
11cf8741
JM
1091
1092static void
1093set_memory_packet_size (char *args, struct memory_packet_config *config)
1094{
1095 int fixed_p = config->fixed_p;
1096 long size = config->size;
a744cf53 1097
11cf8741 1098 if (args == NULL)
8a3fe4f8 1099 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1100 else if (strcmp (args, "hard") == 0
1101 || strcmp (args, "fixed") == 0)
1102 fixed_p = 1;
1103 else if (strcmp (args, "soft") == 0
1104 || strcmp (args, "limit") == 0)
1105 fixed_p = 0;
1106 else
1107 {
1108 char *end;
a744cf53 1109
11cf8741
JM
1110 size = strtoul (args, &end, 0);
1111 if (args == end)
8a3fe4f8 1112 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1113
1114 /* Instead of explicitly capping the size of a packet to or
1115 disallowing it, the user is allowed to set the size to
1116 something arbitrarily large. */
11cf8741 1117 }
a5c0808e
PA
1118
1119 /* So that the query shows the correct value. */
1120 if (size <= 0)
1121 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1122
23860348 1123 /* Extra checks? */
11cf8741
JM
1124 if (fixed_p && !config->fixed_p)
1125 {
e2e0b3e5
AC
1126 if (! query (_("The target may not be able to correctly handle a %s\n"
1127 "of %ld bytes. Change the packet size? "),
11cf8741 1128 config->name, size))
8a3fe4f8 1129 error (_("Packet size not changed."));
11cf8741 1130 }
23860348 1131 /* Update the config. */
11cf8741
JM
1132 config->fixed_p = fixed_p;
1133 config->size = size;
1134}
1135
1136static void
1137show_memory_packet_size (struct memory_packet_config *config)
1138{
a3f17187 1139 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1140 if (config->fixed_p)
a3f17187 1141 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
1142 get_memory_packet_size (config));
1143 else
a3f17187 1144 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
1145 get_memory_packet_size (config));
1146}
1147
1148static struct memory_packet_config memory_write_packet_config =
1149{
1150 "memory-write-packet-size",
1151};
1152
1153static void
1154set_memory_write_packet_size (char *args, int from_tty)
1155{
1156 set_memory_packet_size (args, &memory_write_packet_config);
1157}
1158
1159static void
1160show_memory_write_packet_size (char *args, int from_tty)
1161{
1162 show_memory_packet_size (&memory_write_packet_config);
1163}
1164
1165static long
1166get_memory_write_packet_size (void)
1167{
1168 return get_memory_packet_size (&memory_write_packet_config);
1169}
1170
1171static struct memory_packet_config memory_read_packet_config =
1172{
1173 "memory-read-packet-size",
1174};
1175
1176static void
1177set_memory_read_packet_size (char *args, int from_tty)
1178{
1179 set_memory_packet_size (args, &memory_read_packet_config);
1180}
1181
1182static void
1183show_memory_read_packet_size (char *args, int from_tty)
1184{
1185 show_memory_packet_size (&memory_read_packet_config);
1186}
1187
1188static long
1189get_memory_read_packet_size (void)
1190{
1191 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1192
11cf8741
JM
1193 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1194 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1195 increased beyond this. */
1196 if (size > get_remote_packet_size ())
1197 size = get_remote_packet_size ();
11cf8741
JM
1198 return size;
1199}
1200
11cf8741 1201\f
5a2468f5 1202/* Generic configuration support for packets the stub optionally
0df8b418 1203 supports. Allows the user to specify the use of the packet as well
23860348 1204 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
1205
1206enum packet_support
1207 {
1208 PACKET_SUPPORT_UNKNOWN = 0,
1209 PACKET_ENABLE,
1210 PACKET_DISABLE
1211 };
1212
5a2468f5
JM
1213struct packet_config
1214 {
bb572ddd
DJ
1215 const char *name;
1216 const char *title;
4082afcc
PA
1217
1218 /* If auto, GDB auto-detects support for this packet or feature,
1219 either through qSupported, or by trying the packet and looking
1220 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1221 packet. If false, the packet is disabled. Configs that don't
1222 have an associated command always have this set to auto. */
7f19b9a2 1223 enum auto_boolean detect;
4082afcc
PA
1224
1225 /* Does the target support this packet? */
5a2468f5
JM
1226 enum packet_support support;
1227 };
1228
d471ea57 1229/* Analyze a packet's return value and update the packet config
23860348 1230 accordingly. */
d471ea57
AC
1231
1232enum packet_result
1233{
1234 PACKET_ERROR,
1235 PACKET_OK,
1236 PACKET_UNKNOWN
1237};
1238
4082afcc
PA
1239static enum packet_support packet_config_support (struct packet_config *config);
1240static enum packet_support packet_support (int packet);
5a2468f5
JM
1241
1242static void
fba45db2 1243show_packet_config_cmd (struct packet_config *config)
5a2468f5 1244{
a121b7c1 1245 const char *support = "internal-error";
a744cf53 1246
4082afcc 1247 switch (packet_config_support (config))
5a2468f5
JM
1248 {
1249 case PACKET_ENABLE:
1250 support = "enabled";
1251 break;
1252 case PACKET_DISABLE:
1253 support = "disabled";
1254 break;
1255 case PACKET_SUPPORT_UNKNOWN:
1256 support = "unknown";
1257 break;
1258 }
1259 switch (config->detect)
1260 {
7f19b9a2 1261 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1262 printf_filtered (_("Support for the `%s' packet "
1263 "is auto-detected, currently %s.\n"),
37a105a1 1264 config->name, support);
5a2468f5 1265 break;
7f19b9a2
AC
1266 case AUTO_BOOLEAN_TRUE:
1267 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1268 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1269 config->name, support);
8e248173 1270 break;
5a2468f5
JM
1271 }
1272}
1273
1274static void
bb572ddd
DJ
1275add_packet_config_cmd (struct packet_config *config, const char *name,
1276 const char *title, int legacy)
d471ea57 1277{
5a2468f5
JM
1278 char *set_doc;
1279 char *show_doc;
d471ea57 1280 char *cmd_name;
3ed07be4 1281
5a2468f5
JM
1282 config->name = name;
1283 config->title = title;
b435e160
AC
1284 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1285 name, title);
3e43a32a
MS
1286 show_doc = xstrprintf ("Show current use of remote "
1287 "protocol `%s' (%s) packet",
b435e160 1288 name, title);
d471ea57 1289 /* set/show TITLE-packet {auto,on,off} */
b435e160 1290 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1291 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1292 &config->detect, set_doc,
1293 show_doc, NULL, /* help_doc */
4082afcc 1294 NULL,
bb572ddd
DJ
1295 show_remote_protocol_packet_cmd,
1296 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1297 /* The command code copies the documentation strings. */
1298 xfree (set_doc);
1299 xfree (show_doc);
23860348 1300 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1301 if (legacy)
1302 {
1303 char *legacy_name;
a744cf53 1304
b435e160 1305 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1306 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1307 &remote_set_cmdlist);
d471ea57 1308 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1309 &remote_show_cmdlist);
d471ea57 1310 }
5a2468f5
JM
1311}
1312
d471ea57 1313static enum packet_result
a76d924d 1314packet_check_result (const char *buf)
5a2468f5 1315{
d471ea57 1316 if (buf[0] != '\0')
5a2468f5 1317 {
d471ea57 1318 /* The stub recognized the packet request. Check that the
23860348 1319 operation succeeded. */
a76d924d
DJ
1320 if (buf[0] == 'E'
1321 && isxdigit (buf[1]) && isxdigit (buf[2])
1322 && buf[3] == '\0')
1323 /* "Enn" - definitly an error. */
1324 return PACKET_ERROR;
1325
1326 /* Always treat "E." as an error. This will be used for
1327 more verbose error messages, such as E.memtypes. */
1328 if (buf[0] == 'E' && buf[1] == '.')
1329 return PACKET_ERROR;
1330
1331 /* The packet may or may not be OK. Just assume it is. */
1332 return PACKET_OK;
1333 }
1334 else
1335 /* The stub does not support the packet. */
1336 return PACKET_UNKNOWN;
1337}
1338
1339static enum packet_result
1340packet_ok (const char *buf, struct packet_config *config)
1341{
1342 enum packet_result result;
1343
4082afcc
PA
1344 if (config->detect != AUTO_BOOLEAN_TRUE
1345 && config->support == PACKET_DISABLE)
1346 internal_error (__FILE__, __LINE__,
1347 _("packet_ok: attempt to use a disabled packet"));
1348
a76d924d
DJ
1349 result = packet_check_result (buf);
1350 switch (result)
1351 {
1352 case PACKET_OK:
1353 case PACKET_ERROR:
1354 /* The stub recognized the packet request. */
4082afcc 1355 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1356 {
d471ea57
AC
1357 if (remote_debug)
1358 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1359 "Packet %s (%s) is supported\n",
1360 config->name, config->title);
d471ea57 1361 config->support = PACKET_ENABLE;
d471ea57 1362 }
a76d924d
DJ
1363 break;
1364 case PACKET_UNKNOWN:
23860348 1365 /* The stub does not support the packet. */
4082afcc
PA
1366 if (config->detect == AUTO_BOOLEAN_AUTO
1367 && config->support == PACKET_ENABLE)
d471ea57 1368 {
4082afcc
PA
1369 /* If the stub previously indicated that the packet was
1370 supported then there is a protocol error. */
1371 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1372 config->name, config->title);
1373 }
1374 else if (config->detect == AUTO_BOOLEAN_TRUE)
1375 {
1376 /* The user set it wrong. */
1377 error (_("Enabled packet %s (%s) not recognized by stub"),
1378 config->name, config->title);
d471ea57 1379 }
4082afcc
PA
1380
1381 if (remote_debug)
1382 fprintf_unfiltered (gdb_stdlog,
1383 "Packet %s (%s) is NOT supported\n",
1384 config->name, config->title);
1385 config->support = PACKET_DISABLE;
a76d924d 1386 break;
5a2468f5 1387 }
a76d924d
DJ
1388
1389 return result;
5a2468f5
JM
1390}
1391
444abaca
DJ
1392enum {
1393 PACKET_vCont = 0,
1394 PACKET_X,
1395 PACKET_qSymbol,
1396 PACKET_P,
1397 PACKET_p,
1398 PACKET_Z0,
1399 PACKET_Z1,
1400 PACKET_Z2,
1401 PACKET_Z3,
1402 PACKET_Z4,
15a201c8 1403 PACKET_vFile_setfs,
a6b151f1
DJ
1404 PACKET_vFile_open,
1405 PACKET_vFile_pread,
1406 PACKET_vFile_pwrite,
1407 PACKET_vFile_close,
1408 PACKET_vFile_unlink,
b9e7b9c3 1409 PACKET_vFile_readlink,
0a93529c 1410 PACKET_vFile_fstat,
0876f84a 1411 PACKET_qXfer_auxv,
23181151 1412 PACKET_qXfer_features,
c78fa86a 1413 PACKET_qXfer_exec_file,
cfa9d6d9 1414 PACKET_qXfer_libraries,
2268b414 1415 PACKET_qXfer_libraries_svr4,
fd79ecee 1416 PACKET_qXfer_memory_map,
0e7f50da
UW
1417 PACKET_qXfer_spu_read,
1418 PACKET_qXfer_spu_write,
07e059b5 1419 PACKET_qXfer_osdata,
dc146f7c 1420 PACKET_qXfer_threads,
0fb4aa4b 1421 PACKET_qXfer_statictrace_read,
b3b9301e 1422 PACKET_qXfer_traceframe_info,
169081d0 1423 PACKET_qXfer_uib,
711e434b 1424 PACKET_qGetTIBAddr,
444abaca 1425 PACKET_qGetTLSAddr,
be2a5f71 1426 PACKET_qSupported,
bd3eecc3 1427 PACKET_qTStatus,
89be2091 1428 PACKET_QPassSignals,
82075af2 1429 PACKET_QCatchSyscalls,
9b224c5e 1430 PACKET_QProgramSignals,
aefd8b33 1431 PACKET_QStartupWithShell,
0a2dde4a
SDJ
1432 PACKET_QEnvironmentHexEncoded,
1433 PACKET_QEnvironmentReset,
1434 PACKET_QEnvironmentUnset,
936d2992 1435 PACKET_qCRC,
08388c79 1436 PACKET_qSearch_memory,
2d717e4f
DJ
1437 PACKET_vAttach,
1438 PACKET_vRun,
a6f3e723 1439 PACKET_QStartNoAckMode,
82f73884 1440 PACKET_vKill,
4aa995e1
PA
1441 PACKET_qXfer_siginfo_read,
1442 PACKET_qXfer_siginfo_write,
0b16c5cf 1443 PACKET_qAttached,
4082afcc
PA
1444
1445 /* Support for conditional tracepoints. */
782b2b07 1446 PACKET_ConditionalTracepoints,
4082afcc
PA
1447
1448 /* Support for target-side breakpoint conditions. */
3788aec7 1449 PACKET_ConditionalBreakpoints,
4082afcc
PA
1450
1451 /* Support for target-side breakpoint commands. */
d3ce09f5 1452 PACKET_BreakpointCommands,
4082afcc
PA
1453
1454 /* Support for fast tracepoints. */
7a697b8d 1455 PACKET_FastTracepoints,
4082afcc
PA
1456
1457 /* Support for static tracepoints. */
0fb4aa4b 1458 PACKET_StaticTracepoints,
4082afcc
PA
1459
1460 /* Support for installing tracepoints while a trace experiment is
1461 running. */
1e4d1764 1462 PACKET_InstallInTrace,
4082afcc 1463
40ab02ce
MS
1464 PACKET_bc,
1465 PACKET_bs,
409873ef 1466 PACKET_TracepointSource,
d914c394 1467 PACKET_QAllow,
78d85199 1468 PACKET_qXfer_fdpic,
03583c20 1469 PACKET_QDisableRandomization,
d1feda86 1470 PACKET_QAgent,
f6f899bf 1471 PACKET_QTBuffer_size,
9accd112
MM
1472 PACKET_Qbtrace_off,
1473 PACKET_Qbtrace_bts,
b20a6524 1474 PACKET_Qbtrace_pt,
9accd112 1475 PACKET_qXfer_btrace,
4082afcc
PA
1476
1477 /* Support for the QNonStop packet. */
1478 PACKET_QNonStop,
1479
65706a29
PA
1480 /* Support for the QThreadEvents packet. */
1481 PACKET_QThreadEvents,
1482
4082afcc
PA
1483 /* Support for multi-process extensions. */
1484 PACKET_multiprocess_feature,
1485
1486 /* Support for enabling and disabling tracepoints while a trace
1487 experiment is running. */
1488 PACKET_EnableDisableTracepoints_feature,
1489
1490 /* Support for collecting strings using the tracenz bytecode. */
1491 PACKET_tracenz_feature,
1492
1493 /* Support for continuing to run a trace experiment while GDB is
1494 disconnected. */
1495 PACKET_DisconnectedTracing_feature,
1496
1497 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1498 PACKET_augmented_libraries_svr4_read_feature,
1499
f4abbc16
MM
1500 /* Support for the qXfer:btrace-conf:read packet. */
1501 PACKET_qXfer_btrace_conf,
1502
d33501a5
MM
1503 /* Support for the Qbtrace-conf:bts:size packet. */
1504 PACKET_Qbtrace_conf_bts_size,
1505
f7e6eed5
PA
1506 /* Support for swbreak+ feature. */
1507 PACKET_swbreak_feature,
1508
1509 /* Support for hwbreak+ feature. */
1510 PACKET_hwbreak_feature,
1511
89245bc0
DB
1512 /* Support for fork events. */
1513 PACKET_fork_event_feature,
1514
1515 /* Support for vfork events. */
1516 PACKET_vfork_event_feature,
1517
b20a6524
MM
1518 /* Support for the Qbtrace-conf:pt:size packet. */
1519 PACKET_Qbtrace_conf_pt_size,
1520
94585166
DB
1521 /* Support for exec events. */
1522 PACKET_exec_event_feature,
1523
750ce8d1
YQ
1524 /* Support for query supported vCont actions. */
1525 PACKET_vContSupported,
1526
de979965
PA
1527 /* Support remote CTRL-C. */
1528 PACKET_vCtrlC,
1529
f2faf941
PA
1530 /* Support TARGET_WAITKIND_NO_RESUMED. */
1531 PACKET_no_resumed,
1532
444abaca
DJ
1533 PACKET_MAX
1534};
506fb367 1535
444abaca 1536static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 1537
f7e6eed5
PA
1538/* Returns the packet's corresponding "set remote foo-packet" command
1539 state. See struct packet_config for more details. */
1540
1541static enum auto_boolean
1542packet_set_cmd_state (int packet)
1543{
1544 return remote_protocol_packets[packet].detect;
1545}
1546
4082afcc
PA
1547/* Returns whether a given packet or feature is supported. This takes
1548 into account the state of the corresponding "set remote foo-packet"
1549 command, which may be used to bypass auto-detection. */
dc8acb97 1550
4082afcc
PA
1551static enum packet_support
1552packet_config_support (struct packet_config *config)
1553{
1554 switch (config->detect)
444abaca 1555 {
4082afcc
PA
1556 case AUTO_BOOLEAN_TRUE:
1557 return PACKET_ENABLE;
1558 case AUTO_BOOLEAN_FALSE:
1559 return PACKET_DISABLE;
1560 case AUTO_BOOLEAN_AUTO:
1561 return config->support;
1562 default:
1563 gdb_assert_not_reached (_("bad switch"));
444abaca 1564 }
4082afcc
PA
1565}
1566
1567/* Same as packet_config_support, but takes the packet's enum value as
1568 argument. */
1569
1570static enum packet_support
1571packet_support (int packet)
1572{
1573 struct packet_config *config = &remote_protocol_packets[packet];
1574
1575 return packet_config_support (config);
dc8acb97
MS
1576}
1577
5a2468f5 1578static void
444abaca
DJ
1579show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1580 struct cmd_list_element *c,
1581 const char *value)
5a2468f5 1582{
444abaca 1583 struct packet_config *packet;
5a2468f5 1584
444abaca
DJ
1585 for (packet = remote_protocol_packets;
1586 packet < &remote_protocol_packets[PACKET_MAX];
1587 packet++)
1588 {
1589 if (&packet->detect == c->var)
1590 {
1591 show_packet_config_cmd (packet);
1592 return;
1593 }
1594 }
9b20d036 1595 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1596 c->name);
5a2468f5
JM
1597}
1598
d471ea57
AC
1599/* Should we try one of the 'Z' requests? */
1600
1601enum Z_packet_type
1602{
1603 Z_PACKET_SOFTWARE_BP,
1604 Z_PACKET_HARDWARE_BP,
1605 Z_PACKET_WRITE_WP,
1606 Z_PACKET_READ_WP,
1607 Z_PACKET_ACCESS_WP,
1608 NR_Z_PACKET_TYPES
1609};
96baa820 1610
d471ea57 1611/* For compatibility with older distributions. Provide a ``set remote
23860348 1612 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1613
7f19b9a2 1614static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1615
1616static void
fba45db2
KB
1617set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1618 struct cmd_list_element *c)
96baa820 1619{
d471ea57 1620 int i;
a744cf53 1621
d471ea57 1622 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 1623 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
1624}
1625
1626static void
08546159
AC
1627show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1628 struct cmd_list_element *c,
1629 const char *value)
96baa820 1630{
d471ea57 1631 int i;
a744cf53 1632
d471ea57
AC
1633 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1634 {
444abaca 1635 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1636 }
96baa820
JM
1637}
1638
4082afcc
PA
1639/* Returns true if the multi-process extensions are in effect. */
1640
1641static int
1642remote_multi_process_p (struct remote_state *rs)
1643{
1644 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1645}
1646
de0d863e
DB
1647/* Returns true if fork events are supported. */
1648
1649static int
1650remote_fork_event_p (struct remote_state *rs)
1651{
1652 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1653}
1654
c269dbdb
DB
1655/* Returns true if vfork events are supported. */
1656
1657static int
1658remote_vfork_event_p (struct remote_state *rs)
1659{
1660 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1661}
1662
d46addbb
DB
1663/* Returns true if exec events are supported. */
1664
1665static int
1666remote_exec_event_p (struct remote_state *rs)
1667{
1668 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1669}
1670
cbb8991c
DB
1671/* Insert fork catchpoint target routine. If fork events are enabled
1672 then return success, nothing more to do. */
1673
1674static int
1675remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1676{
1677 struct remote_state *rs = get_remote_state ();
1678
1679 return !remote_fork_event_p (rs);
1680}
1681
1682/* Remove fork catchpoint target routine. Nothing to do, just
1683 return success. */
1684
1685static int
1686remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1687{
1688 return 0;
1689}
1690
1691/* Insert vfork catchpoint target routine. If vfork events are enabled
1692 then return success, nothing more to do. */
1693
1694static int
1695remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1696{
1697 struct remote_state *rs = get_remote_state ();
1698
1699 return !remote_vfork_event_p (rs);
1700}
1701
1702/* Remove vfork catchpoint target routine. Nothing to do, just
1703 return success. */
1704
1705static int
1706remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1707{
1708 return 0;
1709}
1710
d46addbb
DB
1711/* Insert exec catchpoint target routine. If exec events are
1712 enabled, just return success. */
1713
1714static int
1715remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1716{
1717 struct remote_state *rs = get_remote_state ();
1718
1719 return !remote_exec_event_p (rs);
1720}
1721
1722/* Remove exec catchpoint target routine. Nothing to do, just
1723 return success. */
1724
1725static int
1726remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1727{
1728 return 0;
1729}
1730
74531fed
PA
1731\f
1732/* Asynchronous signal handle registered as event loop source for
1733 when we have pending events ready to be passed to the core. */
1734
1735static struct async_event_handler *remote_async_inferior_event_token;
1736
c906108c
SS
1737\f
1738
79d7f229
PA
1739static ptid_t magic_null_ptid;
1740static ptid_t not_sent_ptid;
1741static ptid_t any_thread_ptid;
1742
0b16c5cf
PA
1743/* Find out if the stub attached to PID (and hence GDB should offer to
1744 detach instead of killing it when bailing out). */
1745
1746static int
1747remote_query_attached (int pid)
1748{
1749 struct remote_state *rs = get_remote_state ();
bba74b36 1750 size_t size = get_remote_packet_size ();
0b16c5cf 1751
4082afcc 1752 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
1753 return 0;
1754
1755 if (remote_multi_process_p (rs))
bba74b36 1756 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 1757 else
bba74b36 1758 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
1759
1760 putpkt (rs->buf);
1761 getpkt (&rs->buf, &rs->buf_size, 0);
1762
1763 switch (packet_ok (rs->buf,
1554e9be 1764 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1765 {
1766 case PACKET_OK:
1767 if (strcmp (rs->buf, "1") == 0)
1768 return 1;
1769 break;
1770 case PACKET_ERROR:
1771 warning (_("Remote failure reply: %s"), rs->buf);
1772 break;
1773 case PACKET_UNKNOWN:
1774 break;
1775 }
1776
1777 return 0;
1778}
1779
49c62f2e
PA
1780/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1781 has been invented by GDB, instead of reported by the target. Since
1782 we can be connected to a remote system before before knowing about
1783 any inferior, mark the target with execution when we find the first
1784 inferior. If ATTACHED is 1, then we had just attached to this
1785 inferior. If it is 0, then we just created this inferior. If it
1786 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
1787 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1788 attempt to open this inferior's executable as the main executable
1789 if no main executable is open already. */
1941c569
PA
1790
1791static struct inferior *
1b6e6f5c
GB
1792remote_add_inferior (int fake_pid_p, int pid, int attached,
1793 int try_open_exec)
1941c569 1794{
1941c569
PA
1795 struct inferior *inf;
1796
0b16c5cf
PA
1797 /* Check whether this process we're learning about is to be
1798 considered attached, or if is to be considered to have been
1799 spawned by the stub. */
1800 if (attached == -1)
1801 attached = remote_query_attached (pid);
1802
f5656ead 1803 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
1804 {
1805 /* If the target shares code across all inferiors, then every
1806 attach adds a new inferior. */
1807 inf = add_inferior (pid);
1808
1809 /* ... and every inferior is bound to the same program space.
1810 However, each inferior may still have its own address
1811 space. */
1812 inf->aspace = maybe_new_address_space ();
1813 inf->pspace = current_program_space;
1814 }
1815 else
1816 {
1817 /* In the traditional debugging scenario, there's a 1-1 match
1818 between program/address spaces. We simply bind the inferior
1819 to the program space's address space. */
1820 inf = current_inferior ();
1821 inferior_appeared (inf, pid);
1822 }
1941c569 1823
0b16c5cf 1824 inf->attach_flag = attached;
49c62f2e 1825 inf->fake_pid_p = fake_pid_p;
0b16c5cf 1826
1b6e6f5c
GB
1827 /* If no main executable is currently open then attempt to
1828 open the file that was executed to create this inferior. */
835205d0 1829 if (try_open_exec && get_exec_file (0) == NULL)
bb805577 1830 exec_file_locate_attach (pid, 0, 1);
1b6e6f5c 1831
1941c569
PA
1832 return inf;
1833}
1834
85ad3aaf
PA
1835static struct private_thread_info *
1836 get_private_info_thread (struct thread_info *info);
1837
1941c569
PA
1838/* Add thread PTID to GDB's thread list. Tag it as executing/running
1839 according to RUNNING. */
1840
c906108c 1841static void
0d5b594f 1842remote_add_thread (ptid_t ptid, int running, int executing)
c906108c 1843{
b7ea362b 1844 struct remote_state *rs = get_remote_state ();
85ad3aaf 1845 struct thread_info *thread;
b7ea362b
PA
1846
1847 /* GDB historically didn't pull threads in the initial connection
1848 setup. If the remote target doesn't even have a concept of
1849 threads (e.g., a bare-metal target), even if internally we
1850 consider that a single-threaded target, mentioning a new thread
1851 might be confusing to the user. Be silent then, preserving the
1852 age old behavior. */
1853 if (rs->starting_up)
85ad3aaf 1854 thread = add_thread_silent (ptid);
b7ea362b 1855 else
85ad3aaf 1856 thread = add_thread (ptid);
1941c569 1857
85ad3aaf 1858 get_private_info_thread (thread)->vcont_resumed = executing;
0d5b594f 1859 set_executing (ptid, executing);
1941c569
PA
1860 set_running (ptid, running);
1861}
1862
1863/* Come here when we learn about a thread id from the remote target.
1864 It may be the first time we hear about such thread, so take the
1865 opportunity to add it to GDB's thread list. In case this is the
1866 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
1867 GDB's inferior list as well. EXECUTING indicates whether the
1868 thread is (internally) executing or stopped. */
1941c569
PA
1869
1870static void
0d5b594f 1871remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 1872{
0d5b594f
PA
1873 /* In non-stop mode, we assume new found threads are (externally)
1874 running until proven otherwise with a stop reply. In all-stop,
1875 we can only get here if all threads are stopped. */
1876 int running = target_is_non_stop_p () ? 1 : 0;
1877
c906108c
SS
1878 /* If this is a new thread, add it to GDB's thread list.
1879 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1880
1881 if (in_thread_list (currthread) && is_exited (currthread))
1882 {
1883 /* We're seeing an event on a thread id we knew had exited.
1884 This has to be a new thread reusing the old id. Add it. */
0d5b594f 1885 remote_add_thread (currthread, running, executing);
82f73884
PA
1886 return;
1887 }
1888
79d7f229 1889 if (!in_thread_list (currthread))
c0a2216e 1890 {
1941c569 1891 struct inferior *inf = NULL;
bad34192 1892 int pid = ptid_get_pid (currthread);
1941c569 1893
bad34192
PA
1894 if (ptid_is_pid (inferior_ptid)
1895 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1896 {
1897 /* inferior_ptid has no thread member yet. This can happen
1898 with the vAttach -> remote_wait,"TAAthread:" path if the
1899 stub doesn't support qC. This is the first stop reported
1900 after an attach, so this is the main thread. Update the
1901 ptid in the thread list. */
bad34192
PA
1902 if (in_thread_list (pid_to_ptid (pid)))
1903 thread_change_ptid (inferior_ptid, currthread);
1904 else
1905 {
0d5b594f 1906 remote_add_thread (currthread, running, executing);
bad34192
PA
1907 inferior_ptid = currthread;
1908 }
dc146f7c 1909 return;
c0a2216e 1910 }
82f73884
PA
1911
1912 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1913 {
1914 /* inferior_ptid is not set yet. This can happen with the
1915 vRun -> remote_wait,"TAAthread:" path if the stub
1916 doesn't support qC. This is the first stop reported
1917 after an attach, so this is the main thread. Update the
1918 ptid in the thread list. */
dc146f7c 1919 thread_change_ptid (inferior_ptid, currthread);
82f73884 1920 return;
c0a2216e 1921 }
82f73884 1922
29c87f7f
PA
1923 /* When connecting to a target remote, or to a target
1924 extended-remote which already was debugging an inferior, we
1925 may not know about it yet. Add it before adding its child
1926 thread, so notifications are emitted in a sensible order. */
1927 if (!in_inferior_list (ptid_get_pid (currthread)))
49c62f2e
PA
1928 {
1929 struct remote_state *rs = get_remote_state ();
1930 int fake_pid_p = !remote_multi_process_p (rs);
1931
1932 inf = remote_add_inferior (fake_pid_p,
1b6e6f5c 1933 ptid_get_pid (currthread), -1, 1);
49c62f2e 1934 }
29c87f7f 1935
82f73884 1936 /* This is really a new thread. Add it. */
0d5b594f 1937 remote_add_thread (currthread, running, executing);
1941c569
PA
1938
1939 /* If we found a new inferior, let the common code do whatever
1940 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
1941 breakpoints), unless we're just setting up an all-stop
1942 connection. */
1941c569 1943 if (inf != NULL)
b7ea362b
PA
1944 {
1945 struct remote_state *rs = get_remote_state ();
1946
6efcd9a8 1947 if (!rs->starting_up)
0d5b594f 1948 notice_new_inferior (currthread, executing, 0);
b7ea362b 1949 }
c0a2216e 1950 }
c906108c
SS
1951}
1952
85ad3aaf 1953/* Return THREAD's private thread data, creating it if necessary. */
dc146f7c 1954
70221824 1955static struct private_thread_info *
85ad3aaf 1956get_private_info_thread (struct thread_info *thread)
dc146f7c 1957{
85ad3aaf 1958 gdb_assert (thread != NULL);
dc146f7c 1959
85ad3aaf 1960 if (thread->priv == NULL)
dc146f7c 1961 {
85ad3aaf
PA
1962 struct private_thread_info *priv = XNEW (struct private_thread_info);
1963
1964 thread->private_dtor = free_private_thread_info;
1965 thread->priv = priv;
1966
1967 priv->core = -1;
1968 priv->extra = NULL;
1969 priv->name = NULL;
1970 priv->name = NULL;
1971 priv->last_resume_step = 0;
1972 priv->last_resume_sig = GDB_SIGNAL_0;
1973 priv->vcont_resumed = 0;
dc146f7c
VP
1974 }
1975
85ad3aaf
PA
1976 return thread->priv;
1977}
1978
1979/* Return PTID's private thread data, creating it if necessary. */
1980
1981static struct private_thread_info *
1982get_private_info_ptid (ptid_t ptid)
1983{
1984 struct thread_info *info = find_thread_ptid (ptid);
1985
1986 return get_private_info_thread (info);
dc146f7c
VP
1987}
1988
74531fed
PA
1989/* Call this function as a result of
1990 1) A halt indication (T packet) containing a thread id
1991 2) A direct query of currthread
0df8b418 1992 3) Successful execution of set thread */
74531fed
PA
1993
1994static void
47f8a51d 1995record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 1996{
47f8a51d 1997 rs->general_thread = currthread;
74531fed
PA
1998}
1999
89be2091
DJ
2000/* If 'QPassSignals' is supported, tell the remote stub what signals
2001 it can simply pass through to the inferior without reporting. */
2002
2003static void
94bedb42
TT
2004remote_pass_signals (struct target_ops *self,
2005 int numsigs, unsigned char *pass_signals)
89be2091 2006{
4082afcc 2007 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
2008 {
2009 char *pass_packet, *p;
89be2091 2010 int count = 0, i;
747dc59d 2011 struct remote_state *rs = get_remote_state ();
89be2091
DJ
2012
2013 gdb_assert (numsigs < 256);
2014 for (i = 0; i < numsigs; i++)
2015 {
2455069d 2016 if (pass_signals[i])
89be2091
DJ
2017 count++;
2018 }
224c3ddb 2019 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
2020 strcpy (pass_packet, "QPassSignals:");
2021 p = pass_packet + strlen (pass_packet);
2022 for (i = 0; i < numsigs; i++)
2023 {
2455069d 2024 if (pass_signals[i])
89be2091
DJ
2025 {
2026 if (i >= 16)
2027 *p++ = tohex (i >> 4);
2028 *p++ = tohex (i & 15);
2029 if (count)
2030 *p++ = ';';
2031 else
2032 break;
2033 count--;
2034 }
2035 }
2036 *p = 0;
747dc59d 2037 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 2038 {
89be2091
DJ
2039 putpkt (pass_packet);
2040 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2041 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
2042 if (rs->last_pass_packet)
2043 xfree (rs->last_pass_packet);
2044 rs->last_pass_packet = pass_packet;
89be2091
DJ
2045 }
2046 else
2047 xfree (pass_packet);
2048 }
2049}
2050
82075af2
JS
2051/* If 'QCatchSyscalls' is supported, tell the remote stub
2052 to report syscalls to GDB. */
2053
2054static int
2055remote_set_syscall_catchpoint (struct target_ops *self,
2056 int pid, int needed, int any_count,
2057 int table_size, int *table)
2058{
2059 char *catch_packet;
2060 enum packet_result result;
2061 int n_sysno = 0;
2062
2063 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2064 {
2065 /* Not supported. */
2066 return 1;
2067 }
2068
2069 if (needed && !any_count)
2070 {
2071 int i;
2072
2073 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2074 for (i = 0; i < table_size; i++)
2075 {
2076 if (table[i] != 0)
2077 n_sysno++;
2078 }
2079 }
2080
2081 if (remote_debug)
2082 {
2083 fprintf_unfiltered (gdb_stdlog,
2084 "remote_set_syscall_catchpoint "
2085 "pid %d needed %d any_count %d n_sysno %d\n",
2086 pid, needed, any_count, n_sysno);
2087 }
2088
2089 if (needed)
2090 {
2091 /* Prepare a packet with the sysno list, assuming max 8+1
2092 characters for a sysno. If the resulting packet size is too
2093 big, fallback on the non-selective packet. */
2094 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2095
c0518081 2096 catch_packet = (char *) xmalloc (maxpktsz);
82075af2
JS
2097 strcpy (catch_packet, "QCatchSyscalls:1");
2098 if (!any_count)
2099 {
2100 int i;
2101 char *p;
2102
2103 p = catch_packet;
2104 p += strlen (p);
2105
2106 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
2107 for (i = 0; i < table_size; i++)
2108 {
2109 if (table[i] != 0)
2110 p += xsnprintf (p, catch_packet + maxpktsz - p, ";%x", i);
2111 }
2112 }
2113 if (strlen (catch_packet) > get_remote_packet_size ())
2114 {
2115 /* catch_packet too big. Fallback to less efficient
2116 non selective mode, with GDB doing the filtering. */
2117 catch_packet[sizeof ("QCatchSyscalls:1") - 1] = 0;
2118 }
2119 }
2120 else
2121 catch_packet = xstrdup ("QCatchSyscalls:0");
2122
2123 {
2124 struct cleanup *old_chain = make_cleanup (xfree, catch_packet);
2125 struct remote_state *rs = get_remote_state ();
2126
2127 putpkt (catch_packet);
2128 getpkt (&rs->buf, &rs->buf_size, 0);
2129 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2130 do_cleanups (old_chain);
2131 if (result == PACKET_OK)
2132 return 0;
2133 else
2134 return -1;
2135 }
2136}
2137
9b224c5e
PA
2138/* If 'QProgramSignals' is supported, tell the remote stub what
2139 signals it should pass through to the inferior when detaching. */
2140
2141static void
daf5e9b6
TT
2142remote_program_signals (struct target_ops *self,
2143 int numsigs, unsigned char *signals)
9b224c5e 2144{
4082afcc 2145 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2146 {
2147 char *packet, *p;
2148 int count = 0, i;
5e4a05c4 2149 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2150
2151 gdb_assert (numsigs < 256);
2152 for (i = 0; i < numsigs; i++)
2153 {
2154 if (signals[i])
2155 count++;
2156 }
224c3ddb 2157 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2158 strcpy (packet, "QProgramSignals:");
2159 p = packet + strlen (packet);
2160 for (i = 0; i < numsigs; i++)
2161 {
2162 if (signal_pass_state (i))
2163 {
2164 if (i >= 16)
2165 *p++ = tohex (i >> 4);
2166 *p++ = tohex (i & 15);
2167 if (count)
2168 *p++ = ';';
2169 else
2170 break;
2171 count--;
2172 }
2173 }
2174 *p = 0;
5e4a05c4
TT
2175 if (!rs->last_program_signals_packet
2176 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2177 {
9b224c5e
PA
2178 putpkt (packet);
2179 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2180 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2181 xfree (rs->last_program_signals_packet);
2182 rs->last_program_signals_packet = packet;
9b224c5e
PA
2183 }
2184 else
2185 xfree (packet);
2186 }
2187}
2188
79d7f229
PA
2189/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2190 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2191 thread. If GEN is set, set the general thread, if not, then set
2192 the step/continue thread. */
c906108c 2193static void
d62a8ae2 2194set_thread (ptid_t ptid, int gen)
c906108c 2195{
d01949b6 2196 struct remote_state *rs = get_remote_state ();
47f8a51d 2197 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2198 char *buf = rs->buf;
79d7f229 2199 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2200
79d7f229 2201 if (ptid_equal (state, ptid))
c906108c
SS
2202 return;
2203
79d7f229
PA
2204 *buf++ = 'H';
2205 *buf++ = gen ? 'g' : 'c';
2206 if (ptid_equal (ptid, magic_null_ptid))
2207 xsnprintf (buf, endbuf - buf, "0");
2208 else if (ptid_equal (ptid, any_thread_ptid))
2209 xsnprintf (buf, endbuf - buf, "0");
2210 else if (ptid_equal (ptid, minus_one_ptid))
2211 xsnprintf (buf, endbuf - buf, "-1");
2212 else
82f73884 2213 write_ptid (buf, endbuf, ptid);
79d7f229 2214 putpkt (rs->buf);
6d820c5c 2215 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2216 if (gen)
47f8a51d 2217 rs->general_thread = ptid;
c906108c 2218 else
47f8a51d 2219 rs->continue_thread = ptid;
c906108c 2220}
79d7f229
PA
2221
2222static void
d62a8ae2 2223set_general_thread (ptid_t ptid)
79d7f229
PA
2224{
2225 set_thread (ptid, 1);
2226}
2227
2228static void
d62a8ae2 2229set_continue_thread (ptid_t ptid)
79d7f229
PA
2230{
2231 set_thread (ptid, 0);
2232}
2233
3c9c4b83
PA
2234/* Change the remote current process. Which thread within the process
2235 ends up selected isn't important, as long as it is the same process
2236 as what INFERIOR_PTID points to.
2237
2238 This comes from that fact that there is no explicit notion of
2239 "selected process" in the protocol. The selected process for
2240 general operations is the process the selected general thread
2241 belongs to. */
2242
2243static void
2244set_general_process (void)
2245{
2246 struct remote_state *rs = get_remote_state ();
2247
2248 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2249 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2250 return;
2251
2252 /* We only need to change the remote current thread if it's pointing
2253 at some other process. */
47f8a51d 2254 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
2255 set_general_thread (inferior_ptid);
2256}
2257
c906108c 2258\f
7d1a114c
PA
2259/* Return nonzero if this is the main thread that we made up ourselves
2260 to model non-threaded targets as single-threaded. */
c906108c
SS
2261
2262static int
7d1a114c 2263remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
c906108c 2264{
c0a2216e
PA
2265 if (ptid_equal (ptid, magic_null_ptid))
2266 /* The main thread is always alive. */
2267 return 1;
2268
ba348170 2269 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
c0a2216e
PA
2270 /* The main thread is always alive. This can happen after a
2271 vAttach, if the remote side doesn't support
2272 multi-threading. */
2273 return 1;
2274
7d1a114c
PA
2275 return 0;
2276}
2277
2278/* Return nonzero if the thread PTID is still alive on the remote
2279 system. */
2280
2281static int
2282remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2283{
2284 struct remote_state *rs = get_remote_state ();
2285 char *p, *endp;
2286
2287 /* Check if this is a thread that we made up ourselves to model
2288 non-threaded targets as single-threaded. */
2289 if (remote_thread_always_alive (ops, ptid))
2290 return 1;
2291
82f73884
PA
2292 p = rs->buf;
2293 endp = rs->buf + get_remote_packet_size ();
2294
2295 *p++ = 'T';
2296 write_ptid (p, endp, ptid);
2297
2e9f7625 2298 putpkt (rs->buf);
6d820c5c 2299 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2300 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2301}
2302
79efa585
SM
2303/* Return a pointer to a thread name if we know it and NULL otherwise.
2304 The thread_info object owns the memory for the name. */
2305
2306static const char *
2307remote_thread_name (struct target_ops *ops, struct thread_info *info)
2308{
2309 if (info->priv != NULL)
2310 return info->priv->name;
2311
2312 return NULL;
2313}
2314
c906108c
SS
2315/* About these extended threadlist and threadinfo packets. They are
2316 variable length packets but, the fields within them are often fixed
2317 length. They are redundent enough to send over UDP as is the
2318 remote protocol in general. There is a matching unit test module
2319 in libstub. */
2320
23860348 2321/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2322 libstub protocol encoding, and remote.c. It is not particularly
23860348 2323 changable. */
cce74817
JM
2324
2325/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2326 Plan to fix this. */
cce74817 2327
23860348 2328typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2329
9d1f7ab2 2330/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2331 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2332
2333struct gdb_ext_thread_info
c5aa993b 2334 {
23860348 2335 threadref threadid; /* External form of thread reference. */
2bc416ba 2336 int active; /* Has state interesting to GDB?
23860348 2337 regs, stack. */
2bc416ba 2338 char display[256]; /* Brief state display, name,
cedea757 2339 blocked/suspended. */
23860348 2340 char shortname[32]; /* To be used to name threads. */
2bc416ba 2341 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2342 whatever. */
c5aa993b 2343 };
cce74817
JM
2344
2345/* The volume of remote transfers can be limited by submitting
2346 a mask containing bits specifying the desired information.
2347 Use a union of these values as the 'selection' parameter to
0df8b418 2348 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2349
2350#define TAG_THREADID 1
2351#define TAG_EXISTS 2
2352#define TAG_DISPLAY 4
2353#define TAG_THREADNAME 8
c5aa993b 2354#define TAG_MOREDISPLAY 16
cce74817 2355
23860348 2356#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2357
a14ed312 2358static char *unpack_nibble (char *buf, int *val);
cce74817 2359
a14ed312 2360static char *unpack_byte (char *buf, int *value);
cce74817 2361
a14ed312 2362static char *pack_int (char *buf, int value);
cce74817 2363
a14ed312 2364static char *unpack_int (char *buf, int *value);
cce74817 2365
a14ed312 2366static char *unpack_string (char *src, char *dest, int length);
cce74817 2367
23860348 2368static char *pack_threadid (char *pkt, threadref *id);
cce74817 2369
23860348 2370static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2371
23860348 2372void int_to_threadref (threadref *id, int value);
cce74817 2373
23860348 2374static int threadref_to_int (threadref *ref);
cce74817 2375
23860348 2376static void copy_threadref (threadref *dest, threadref *src);
cce74817 2377
23860348 2378static int threadmatch (threadref *dest, threadref *src);
cce74817 2379
2bc416ba 2380static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2381 threadref *id);
cce74817 2382
a14ed312 2383static int remote_unpack_thread_info_response (char *pkt,
23860348 2384 threadref *expectedref,
a14ed312
KB
2385 struct gdb_ext_thread_info
2386 *info);
cce74817
JM
2387
2388
2bc416ba 2389static int remote_get_threadinfo (threadref *threadid,
23860348 2390 int fieldset, /*TAG mask */
a14ed312 2391 struct gdb_ext_thread_info *info);
cce74817 2392
a14ed312
KB
2393static char *pack_threadlist_request (char *pkt, int startflag,
2394 int threadcount,
23860348 2395 threadref *nextthread);
cce74817 2396
a14ed312
KB
2397static int parse_threadlist_response (char *pkt,
2398 int result_limit,
23860348 2399 threadref *original_echo,
2bc416ba 2400 threadref *resultlist,
23860348 2401 int *doneflag);
cce74817 2402
a14ed312 2403static int remote_get_threadlist (int startflag,
23860348 2404 threadref *nextthread,
a14ed312
KB
2405 int result_limit,
2406 int *done,
2bc416ba 2407 int *result_count,
23860348 2408 threadref *threadlist);
cce74817 2409
23860348 2410typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 2411
a14ed312
KB
2412static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2413 void *context, int looplimit);
cce74817 2414
23860348 2415static int remote_newthread_step (threadref *ref, void *context);
cce74817 2416
82f73884
PA
2417
2418/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2419 buffer we're allowed to write to. Returns
2420 BUF+CHARACTERS_WRITTEN. */
2421
2422static char *
2423write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2424{
2425 int pid, tid;
2426 struct remote_state *rs = get_remote_state ();
2427
2428 if (remote_multi_process_p (rs))
2429 {
2430 pid = ptid_get_pid (ptid);
2431 if (pid < 0)
2432 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2433 else
2434 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2435 }
ba348170 2436 tid = ptid_get_lwp (ptid);
82f73884
PA
2437 if (tid < 0)
2438 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2439 else
2440 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2441
2442 return buf;
2443}
2444
2445/* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2446 passed the last parsed char. Returns null_ptid on error. */
2447
2448static ptid_t
2449read_ptid (char *buf, char **obuf)
2450{
2451 char *p = buf;
2452 char *pp;
2453 ULONGEST pid = 0, tid = 0;
82f73884
PA
2454
2455 if (*p == 'p')
2456 {
2457 /* Multi-process ptid. */
2458 pp = unpack_varlen_hex (p + 1, &pid);
2459 if (*pp != '.')
b37520b6 2460 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2461
2462 p = pp;
2463 pp = unpack_varlen_hex (p + 1, &tid);
2464 if (obuf)
2465 *obuf = pp;
ba348170 2466 return ptid_build (pid, tid, 0);
82f73884
PA
2467 }
2468
2469 /* No multi-process. Just a tid. */
2470 pp = unpack_varlen_hex (p, &tid);
2471
c9f35b34
KB
2472 /* Return null_ptid when no thread id is found. */
2473 if (p == pp)
2474 {
2475 if (obuf)
2476 *obuf = pp;
2477 return null_ptid;
2478 }
2479
82f73884 2480 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2481 what's in inferior_ptid, unless it's null at this point. If so,
2482 then since there's no way to know the pid of the reported
2483 threads, use the magic number. */
2484 if (ptid_equal (inferior_ptid, null_ptid))
2485 pid = ptid_get_pid (magic_null_ptid);
2486 else
2487 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2488
2489 if (obuf)
2490 *obuf = pp;
ba348170 2491 return ptid_build (pid, tid, 0);
82f73884
PA
2492}
2493
c906108c 2494static int
fba45db2 2495stubhex (int ch)
c906108c
SS
2496{
2497 if (ch >= 'a' && ch <= 'f')
2498 return ch - 'a' + 10;
2499 if (ch >= '0' && ch <= '9')
2500 return ch - '0';
2501 if (ch >= 'A' && ch <= 'F')
2502 return ch - 'A' + 10;
2503 return -1;
2504}
2505
2506static int
fba45db2 2507stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2508{
2509 int nibble;
2510 int retval = 0;
2511
2512 while (fieldlength)
2513 {
2514 nibble = stubhex (*buff++);
2515 retval |= nibble;
2516 fieldlength--;
2517 if (fieldlength)
2518 retval = retval << 4;
2519 }
2520 return retval;
2521}
2522
c906108c 2523static char *
fba45db2 2524unpack_nibble (char *buf, int *val)
c906108c 2525{
b7589f7d 2526 *val = fromhex (*buf++);
c906108c
SS
2527 return buf;
2528}
2529
c906108c 2530static char *
fba45db2 2531unpack_byte (char *buf, int *value)
c906108c
SS
2532{
2533 *value = stub_unpack_int (buf, 2);
2534 return buf + 2;
2535}
2536
2537static char *
fba45db2 2538pack_int (char *buf, int value)
c906108c
SS
2539{
2540 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2541 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2542 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2543 buf = pack_hex_byte (buf, (value & 0xff));
2544 return buf;
2545}
2546
2547static char *
fba45db2 2548unpack_int (char *buf, int *value)
c906108c
SS
2549{
2550 *value = stub_unpack_int (buf, 8);
2551 return buf + 8;
2552}
2553
23860348 2554#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2555static char *pack_string (char *pkt, char *string);
c906108c
SS
2556
2557static char *
fba45db2 2558pack_string (char *pkt, char *string)
c906108c
SS
2559{
2560 char ch;
2561 int len;
2562
2563 len = strlen (string);
2564 if (len > 200)
23860348 2565 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2566 pkt = pack_hex_byte (pkt, len);
2567 while (len-- > 0)
2568 {
2569 ch = *string++;
2570 if ((ch == '\0') || (ch == '#'))
23860348 2571 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2572 *pkt++ = ch;
2573 }
2574 return pkt;
2575}
2576#endif /* 0 (unused) */
2577
2578static char *
fba45db2 2579unpack_string (char *src, char *dest, int length)
c906108c
SS
2580{
2581 while (length--)
2582 *dest++ = *src++;
2583 *dest = '\0';
2584 return src;
2585}
2586
2587static char *
fba45db2 2588pack_threadid (char *pkt, threadref *id)
c906108c
SS
2589{
2590 char *limit;
2591 unsigned char *altid;
2592
2593 altid = (unsigned char *) id;
2594 limit = pkt + BUF_THREAD_ID_SIZE;
2595 while (pkt < limit)
2596 pkt = pack_hex_byte (pkt, *altid++);
2597 return pkt;
2598}
2599
2600
2601static char *
fba45db2 2602unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2603{
2604 char *altref;
2605 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2606 int x, y;
2607
2608 altref = (char *) id;
2609
2610 while (inbuf < limit)
2611 {
2612 x = stubhex (*inbuf++);
2613 y = stubhex (*inbuf++);
2614 *altref++ = (x << 4) | y;
2615 }
2616 return inbuf;
2617}
2618
2619/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2620 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2621 to use 64bit thread references internally. This is an adapter
2622 function. */
2623
2624void
fba45db2 2625int_to_threadref (threadref *id, int value)
c906108c
SS
2626{
2627 unsigned char *scan;
2628
2629 scan = (unsigned char *) id;
2630 {
2631 int i = 4;
2632 while (i--)
2633 *scan++ = 0;
2634 }
2635 *scan++ = (value >> 24) & 0xff;
2636 *scan++ = (value >> 16) & 0xff;
2637 *scan++ = (value >> 8) & 0xff;
2638 *scan++ = (value & 0xff);
2639}
2640
2641static int
fba45db2 2642threadref_to_int (threadref *ref)
c906108c
SS
2643{
2644 int i, value = 0;
2645 unsigned char *scan;
2646
cfd77fa1 2647 scan = *ref;
c906108c
SS
2648 scan += 4;
2649 i = 4;
2650 while (i-- > 0)
2651 value = (value << 8) | ((*scan++) & 0xff);
2652 return value;
2653}
2654
2655static void
fba45db2 2656copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2657{
2658 int i;
2659 unsigned char *csrc, *cdest;
2660
2661 csrc = (unsigned char *) src;
2662 cdest = (unsigned char *) dest;
2663 i = 8;
2664 while (i--)
2665 *cdest++ = *csrc++;
2666}
2667
2668static int
fba45db2 2669threadmatch (threadref *dest, threadref *src)
c906108c 2670{
23860348 2671 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2672#if 0
2673 unsigned char *srcp, *destp;
2674 int i, result;
2675 srcp = (char *) src;
2676 destp = (char *) dest;
2677
2678 result = 1;
2679 while (i-- > 0)
2680 result &= (*srcp++ == *destp++) ? 1 : 0;
2681 return result;
2682#endif
2683 return 1;
2684}
2685
2686/*
c5aa993b
JM
2687 threadid:1, # always request threadid
2688 context_exists:2,
2689 display:4,
2690 unique_name:8,
2691 more_display:16
2692 */
c906108c
SS
2693
2694/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2695
2696static char *
fba45db2 2697pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2698{
23860348
MS
2699 *pkt++ = 'q'; /* Info Query */
2700 *pkt++ = 'P'; /* process or thread info */
2701 pkt = pack_int (pkt, mode); /* mode */
c906108c 2702 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2703 *pkt = '\0'; /* terminate */
c906108c
SS
2704 return pkt;
2705}
2706
23860348 2707/* These values tag the fields in a thread info response packet. */
c906108c 2708/* Tagging the fields allows us to request specific fields and to
23860348 2709 add more fields as time goes by. */
c906108c 2710
23860348 2711#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 2712#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 2713 fetch registers and its stack? */
c5aa993b 2714#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 2715#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 2716#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 2717 the process. */
c906108c
SS
2718
2719static int
fba45db2
KB
2720remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2721 struct gdb_ext_thread_info *info)
c906108c 2722{
d01949b6 2723 struct remote_state *rs = get_remote_state ();
c906108c 2724 int mask, length;
cfd77fa1 2725 int tag;
c906108c 2726 threadref ref;
6d820c5c 2727 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
2728 int retval = 1;
2729
23860348 2730 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
2731 info->active = 0;
2732 info->display[0] = '\0';
2733 info->shortname[0] = '\0';
2734 info->more_display[0] = '\0';
2735
23860348
MS
2736 /* Assume the characters indicating the packet type have been
2737 stripped. */
c906108c
SS
2738 pkt = unpack_int (pkt, &mask); /* arg mask */
2739 pkt = unpack_threadid (pkt, &ref);
2740
2741 if (mask == 0)
8a3fe4f8 2742 warning (_("Incomplete response to threadinfo request."));
c906108c 2743 if (!threadmatch (&ref, expectedref))
23860348 2744 { /* This is an answer to a different request. */
8a3fe4f8 2745 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
2746 return 0;
2747 }
2748 copy_threadref (&info->threadid, &ref);
2749
23860348 2750 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 2751
23860348
MS
2752 /* Packets are terminated with nulls. */
2753 while ((pkt < limit) && mask && *pkt)
c906108c
SS
2754 {
2755 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
2756 pkt = unpack_byte (pkt, &length); /* length */
2757 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 2758 {
8a3fe4f8 2759 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
2760 retval = 0;
2761 break;
2762 }
2763 if (tag == TAG_THREADID)
2764 {
2765 if (length != 16)
2766 {
8a3fe4f8 2767 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
2768 retval = 0;
2769 break;
2770 }
2771 pkt = unpack_threadid (pkt, &ref);
2772 mask = mask & ~TAG_THREADID;
2773 continue;
2774 }
2775 if (tag == TAG_EXISTS)
2776 {
2777 info->active = stub_unpack_int (pkt, length);
2778 pkt += length;
2779 mask = mask & ~(TAG_EXISTS);
2780 if (length > 8)
2781 {
8a3fe4f8 2782 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
2783 retval = 0;
2784 break;
2785 }
2786 continue;
2787 }
2788 if (tag == TAG_THREADNAME)
2789 {
2790 pkt = unpack_string (pkt, &info->shortname[0], length);
2791 mask = mask & ~TAG_THREADNAME;
2792 continue;
2793 }
2794 if (tag == TAG_DISPLAY)
2795 {
2796 pkt = unpack_string (pkt, &info->display[0], length);
2797 mask = mask & ~TAG_DISPLAY;
2798 continue;
2799 }
2800 if (tag == TAG_MOREDISPLAY)
2801 {
2802 pkt = unpack_string (pkt, &info->more_display[0], length);
2803 mask = mask & ~TAG_MOREDISPLAY;
2804 continue;
2805 }
8a3fe4f8 2806 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2807 break; /* Not a tag we know about. */
c906108c
SS
2808 }
2809 return retval;
2810}
2811
2812static int
fba45db2
KB
2813remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2814 struct gdb_ext_thread_info *info)
c906108c 2815{
d01949b6 2816 struct remote_state *rs = get_remote_state ();
c906108c 2817 int result;
c906108c 2818
2e9f7625
DJ
2819 pack_threadinfo_request (rs->buf, fieldset, threadid);
2820 putpkt (rs->buf);
6d820c5c 2821 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2822
2823 if (rs->buf[0] == '\0')
2824 return 0;
2825
2e9f7625 2826 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2827 threadid, info);
c906108c
SS
2828 return result;
2829}
2830
c906108c
SS
2831/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2832
2833static char *
fba45db2
KB
2834pack_threadlist_request (char *pkt, int startflag, int threadcount,
2835 threadref *nextthread)
c906108c
SS
2836{
2837 *pkt++ = 'q'; /* info query packet */
2838 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2839 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2840 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2841 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2842 *pkt = '\0';
2843 return pkt;
2844}
2845
2846/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2847
2848static int
fba45db2
KB
2849parse_threadlist_response (char *pkt, int result_limit,
2850 threadref *original_echo, threadref *resultlist,
2851 int *doneflag)
c906108c 2852{
d01949b6 2853 struct remote_state *rs = get_remote_state ();
c906108c
SS
2854 char *limit;
2855 int count, resultcount, done;
2856
2857 resultcount = 0;
2858 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2859 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2860 /* done parse past here */
c906108c
SS
2861 pkt = unpack_byte (pkt, &count); /* count field */
2862 pkt = unpack_nibble (pkt, &done);
2863 /* The first threadid is the argument threadid. */
2864 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2865 while ((count-- > 0) && (pkt < limit))
2866 {
2867 pkt = unpack_threadid (pkt, resultlist++);
2868 if (resultcount++ >= result_limit)
2869 break;
2870 }
2871 if (doneflag)
2872 *doneflag = done;
2873 return resultcount;
2874}
2875
6dc54d91
PA
2876/* Fetch the next batch of threads from the remote. Returns -1 if the
2877 qL packet is not supported, 0 on error and 1 on success. */
2878
c906108c 2879static int
fba45db2
KB
2880remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2881 int *done, int *result_count, threadref *threadlist)
c906108c 2882{
d01949b6 2883 struct remote_state *rs = get_remote_state ();
c906108c
SS
2884 int result = 1;
2885
23860348 2886 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
2887 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2888 >= get_remote_packet_size ())
ea9c271d 2889 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2890
6d820c5c
DJ
2891 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2892 putpkt (rs->buf);
2893 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 2894 if (*rs->buf == '\0')
6dc54d91
PA
2895 {
2896 /* Packet not supported. */
2897 return -1;
2898 }
2899
2900 *result_count =
2901 parse_threadlist_response (rs->buf + 2, result_limit,
2902 &rs->echo_nextthread, threadlist, done);
c906108c 2903
0d031856 2904 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 2905 {
23860348
MS
2906 /* FIXME: This is a good reason to drop the packet. */
2907 /* Possably, there is a duplicate response. */
c906108c
SS
2908 /* Possabilities :
2909 retransmit immediatly - race conditions
2910 retransmit after timeout - yes
2911 exit
2912 wait for packet, then exit
2913 */
8a3fe4f8 2914 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2915 return 0; /* I choose simply exiting. */
c906108c
SS
2916 }
2917 if (*result_count <= 0)
2918 {
2919 if (*done != 1)
2920 {
8a3fe4f8 2921 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2922 result = 0;
2923 }
2924 return result; /* break; */
2925 }
2926 if (*result_count > result_limit)
2927 {
2928 *result_count = 0;
8a3fe4f8 2929 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2930 return 0;
2931 }
2932 return result;
2933}
2934
6dc54d91
PA
2935/* Fetch the list of remote threads, with the qL packet, and call
2936 STEPFUNCTION for each thread found. Stops iterating and returns 1
2937 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2938 STEPFUNCTION returns false. If the packet is not supported,
2939 returns -1. */
c906108c 2940
c906108c 2941static int
fba45db2
KB
2942remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2943 int looplimit)
c906108c 2944{
0d031856 2945 struct remote_state *rs = get_remote_state ();
c906108c
SS
2946 int done, i, result_count;
2947 int startflag = 1;
2948 int result = 1;
2949 int loopcount = 0;
c906108c
SS
2950
2951 done = 0;
2952 while (!done)
2953 {
2954 if (loopcount++ > looplimit)
2955 {
2956 result = 0;
8a3fe4f8 2957 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2958 break;
2959 }
6dc54d91
PA
2960 result = remote_get_threadlist (startflag, &rs->nextthread,
2961 MAXTHREADLISTRESULTS,
2962 &done, &result_count,
2963 rs->resultthreadlist);
2964 if (result <= 0)
2965 break;
23860348 2966 /* Clear for later iterations. */
c906108c
SS
2967 startflag = 0;
2968 /* Setup to resume next batch of thread references, set nextthread. */
2969 if (result_count >= 1)
0d031856
TT
2970 copy_threadref (&rs->nextthread,
2971 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
2972 i = 0;
2973 while (result_count--)
6dc54d91
PA
2974 {
2975 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2976 {
2977 result = 0;
2978 break;
2979 }
2980 }
c906108c
SS
2981 }
2982 return result;
2983}
2984
6dc54d91
PA
2985/* A thread found on the remote target. */
2986
2987typedef struct thread_item
2988{
2989 /* The thread's PTID. */
2990 ptid_t ptid;
2991
2992 /* The thread's extra info. May be NULL. */
2993 char *extra;
2994
79efa585
SM
2995 /* The thread's name. May be NULL. */
2996 char *name;
2997
6dc54d91
PA
2998 /* The core the thread was running on. -1 if not known. */
2999 int core;
3000} thread_item_t;
3001DEF_VEC_O(thread_item_t);
3002
3003/* Context passed around to the various methods listing remote
3004 threads. As new threads are found, they're added to the ITEMS
3005 vector. */
3006
3007struct threads_listing_context
3008{
3009 /* The threads found on the remote target. */
3010 VEC (thread_item_t) *items;
3011};
3012
80134cf5
PA
3013/* Discard the contents of the constructed thread listing context. */
3014
3015static void
3016clear_threads_listing_context (void *p)
3017{
19ba03f4
SM
3018 struct threads_listing_context *context
3019 = (struct threads_listing_context *) p;
80134cf5
PA
3020 int i;
3021 struct thread_item *item;
3022
3023 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
79efa585
SM
3024 {
3025 xfree (item->extra);
3026 xfree (item->name);
3027 }
80134cf5
PA
3028
3029 VEC_free (thread_item_t, context->items);
3030}
3031
cbb8991c
DB
3032/* Remove the thread specified as the related_pid field of WS
3033 from the CONTEXT list. */
3034
3035static void
3036threads_listing_context_remove (struct target_waitstatus *ws,
3037 struct threads_listing_context *context)
3038{
3039 struct thread_item *item;
3040 int i;
3041 ptid_t child_ptid = ws->value.related_pid;
3042
3043 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
3044 {
3045 if (ptid_equal (item->ptid, child_ptid))
3046 {
3047 VEC_ordered_remove (thread_item_t, context->items, i);
3048 break;
3049 }
3050 }
3051}
3052
c906108c 3053static int
6dc54d91 3054remote_newthread_step (threadref *ref, void *data)
c906108c 3055{
19ba03f4
SM
3056 struct threads_listing_context *context
3057 = (struct threads_listing_context *) data;
6dc54d91 3058 struct thread_item item;
79d7f229 3059 int pid = ptid_get_pid (inferior_ptid);
39f77062 3060
6dc54d91
PA
3061 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
3062 item.core = -1;
2e3b657e 3063 item.name = NULL;
6dc54d91
PA
3064 item.extra = NULL;
3065
3066 VEC_safe_push (thread_item_t, context->items, &item);
3067
c906108c
SS
3068 return 1; /* continue iterator */
3069}
3070
3071#define CRAZY_MAX_THREADS 1000
3072
39f77062
KB
3073static ptid_t
3074remote_current_thread (ptid_t oldpid)
c906108c 3075{
d01949b6 3076 struct remote_state *rs = get_remote_state ();
c906108c
SS
3077
3078 putpkt ("qC");
6d820c5c 3079 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3080 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34
KB
3081 {
3082 char *obuf;
3083 ptid_t result;
3084
3085 result = read_ptid (&rs->buf[2], &obuf);
3086 if (*obuf != '\0' && remote_debug)
3087 fprintf_unfiltered (gdb_stdlog,
3088 "warning: garbage in qC reply\n");
3089
3090 return result;
3091 }
c906108c
SS
3092 else
3093 return oldpid;
3094}
3095
6dc54d91 3096/* List remote threads using the deprecated qL packet. */
cce74817 3097
6dc54d91
PA
3098static int
3099remote_get_threads_with_ql (struct target_ops *ops,
3100 struct threads_listing_context *context)
c906108c 3101{
6dc54d91
PA
3102 if (remote_threadlist_iterator (remote_newthread_step, context,
3103 CRAZY_MAX_THREADS) >= 0)
3104 return 1;
3105
3106 return 0;
c906108c
SS
3107}
3108
dc146f7c
VP
3109#if defined(HAVE_LIBEXPAT)
3110
dc146f7c
VP
3111static void
3112start_thread (struct gdb_xml_parser *parser,
3113 const struct gdb_xml_element *element,
3114 void *user_data, VEC(gdb_xml_value_s) *attributes)
3115{
19ba03f4
SM
3116 struct threads_listing_context *data
3117 = (struct threads_listing_context *) user_data;
dc146f7c
VP
3118
3119 struct thread_item item;
3120 char *id;
3d2c1d41 3121 struct gdb_xml_value *attr;
dc146f7c 3122
19ba03f4 3123 id = (char *) xml_find_attribute (attributes, "id")->value;
dc146f7c
VP
3124 item.ptid = read_ptid (id, NULL);
3125
3d2c1d41
PA
3126 attr = xml_find_attribute (attributes, "core");
3127 if (attr != NULL)
3128 item.core = *(ULONGEST *) attr->value;
dc146f7c
VP
3129 else
3130 item.core = -1;
3131
79efa585 3132 attr = xml_find_attribute (attributes, "name");
e1961661 3133 item.name = attr != NULL ? xstrdup ((const char *) attr->value) : NULL;
79efa585 3134
dc146f7c
VP
3135 item.extra = 0;
3136
3137 VEC_safe_push (thread_item_t, data->items, &item);
3138}
3139
3140static void
3141end_thread (struct gdb_xml_parser *parser,
3142 const struct gdb_xml_element *element,
3143 void *user_data, const char *body_text)
3144{
19ba03f4
SM
3145 struct threads_listing_context *data
3146 = (struct threads_listing_context *) user_data;
dc146f7c
VP
3147
3148 if (body_text && *body_text)
2ae2a0b7 3149 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
dc146f7c
VP
3150}
3151
3152const struct gdb_xml_attribute thread_attributes[] = {
3153 { "id", GDB_XML_AF_NONE, NULL, NULL },
3154 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3155 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3156 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3157};
3158
3159const struct gdb_xml_element thread_children[] = {
3160 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3161};
3162
3163const struct gdb_xml_element threads_children[] = {
3164 { "thread", thread_attributes, thread_children,
3165 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3166 start_thread, end_thread },
3167 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3168};
3169
3170const struct gdb_xml_element threads_elements[] = {
3171 { "threads", NULL, threads_children,
3172 GDB_XML_EF_NONE, NULL, NULL },
3173 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3174};
3175
3176#endif
3177
6dc54d91 3178/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3179
6dc54d91
PA
3180static int
3181remote_get_threads_with_qxfer (struct target_ops *ops,
3182 struct threads_listing_context *context)
0f71a2f6 3183{
dc146f7c 3184#if defined(HAVE_LIBEXPAT)
4082afcc 3185 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3186 {
6dc54d91 3187 char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
dc146f7c 3188 struct cleanup *back_to = make_cleanup (xfree, xml);
efc0eabd 3189
6dc54d91 3190 if (xml != NULL && *xml != '\0')
dc146f7c 3191 {
6dc54d91
PA
3192 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3193 threads_elements, xml, context);
dc146f7c
VP
3194 }
3195
3196 do_cleanups (back_to);
6dc54d91 3197 return 1;
dc146f7c
VP
3198 }
3199#endif
3200
6dc54d91
PA
3201 return 0;
3202}
3203
3204/* List remote threads using qfThreadInfo/qsThreadInfo. */
3205
3206static int
3207remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3208 struct threads_listing_context *context)
3209{
3210 struct remote_state *rs = get_remote_state ();
3211
b80fafe3 3212 if (rs->use_threadinfo_query)
9d1f7ab2 3213 {
6dc54d91
PA
3214 char *bufp;
3215
9d1f7ab2 3216 putpkt ("qfThreadInfo");
6d820c5c 3217 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3218 bufp = rs->buf;
9d1f7ab2 3219 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3220 {
9d1f7ab2
MS
3221 while (*bufp++ == 'm') /* reply contains one or more TID */
3222 {
3223 do
3224 {
6dc54d91
PA
3225 struct thread_item item;
3226
3227 item.ptid = read_ptid (bufp, &bufp);
3228 item.core = -1;
2e3b657e 3229 item.name = NULL;
6dc54d91
PA
3230 item.extra = NULL;
3231
3232 VEC_safe_push (thread_item_t, context->items, &item);
9d1f7ab2
MS
3233 }
3234 while (*bufp++ == ','); /* comma-separated list */
3235 putpkt ("qsThreadInfo");
6d820c5c 3236 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3237 bufp = rs->buf;
9d1f7ab2 3238 }
6dc54d91
PA
3239 return 1;
3240 }
3241 else
3242 {
3243 /* Packet not recognized. */
3244 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3245 }
3246 }
3247
6dc54d91
PA
3248 return 0;
3249}
3250
e8032dde 3251/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3252 targets. */
3253
3254static void
e8032dde 3255remote_update_thread_list (struct target_ops *ops)
6dc54d91 3256{
6dc54d91
PA
3257 struct threads_listing_context context;
3258 struct cleanup *old_chain;
ab970af1 3259 int got_list = 0;
e8032dde 3260
6dc54d91
PA
3261 context.items = NULL;
3262 old_chain = make_cleanup (clear_threads_listing_context, &context);
3263
3264 /* We have a few different mechanisms to fetch the thread list. Try
3265 them all, starting with the most preferred one first, falling
3266 back to older methods. */
3267 if (remote_get_threads_with_qxfer (ops, &context)
3268 || remote_get_threads_with_qthreadinfo (ops, &context)
3269 || remote_get_threads_with_ql (ops, &context))
3270 {
3271 int i;
3272 struct thread_item *item;
ab970af1
PA
3273 struct thread_info *tp, *tmp;
3274
3275 got_list = 1;
3276
7d1a114c
PA
3277 if (VEC_empty (thread_item_t, context.items)
3278 && remote_thread_always_alive (ops, inferior_ptid))
3279 {
3280 /* Some targets don't really support threads, but still
3281 reply an (empty) thread list in response to the thread
3282 listing packets, instead of replying "packet not
3283 supported". Exit early so we don't delete the main
3284 thread. */
3285 do_cleanups (old_chain);
3286 return;
3287 }
3288
ab970af1
PA
3289 /* CONTEXT now holds the current thread list on the remote
3290 target end. Delete GDB-side threads no longer found on the
3291 target. */
8a06aea7 3292 ALL_THREADS_SAFE (tp, tmp)
cbb8991c 3293 {
ab970af1
PA
3294 for (i = 0;
3295 VEC_iterate (thread_item_t, context.items, i, item);
3296 ++i)
3297 {
3298 if (ptid_equal (item->ptid, tp->ptid))
3299 break;
3300 }
3301
3302 if (i == VEC_length (thread_item_t, context.items))
3303 {
3304 /* Not found. */
3305 delete_thread (tp->ptid);
3306 }
cbb8991c
DB
3307 }
3308
3309 /* Remove any unreported fork child threads from CONTEXT so
3310 that we don't interfere with follow fork, which is where
3311 creation of such threads is handled. */
3312 remove_new_fork_children (&context);
74531fed 3313
ab970af1 3314 /* And now add threads we don't know about yet to our list. */
6dc54d91
PA
3315 for (i = 0;
3316 VEC_iterate (thread_item_t, context.items, i, item);
3317 ++i)
3318 {
3319 if (!ptid_equal (item->ptid, null_ptid))
3320 {
3321 struct private_thread_info *info;
3322 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3323 executing until proven otherwise with a stop reply.
3324 In all-stop, we can only get here if all threads are
6dc54d91 3325 stopped. */
0d5b594f 3326 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3327
0d5b594f 3328 remote_notice_new_inferior (item->ptid, executing);
6dc54d91 3329
85ad3aaf 3330 info = get_private_info_ptid (item->ptid);
6dc54d91
PA
3331 info->core = item->core;
3332 info->extra = item->extra;
3333 item->extra = NULL;
79efa585
SM
3334 info->name = item->name;
3335 item->name = NULL;
6dc54d91
PA
3336 }
3337 }
3338 }
3339
ab970af1
PA
3340 if (!got_list)
3341 {
3342 /* If no thread listing method is supported, then query whether
3343 each known thread is alive, one by one, with the T packet.
3344 If the target doesn't support threads at all, then this is a
3345 no-op. See remote_thread_alive. */
3346 prune_threads ();
3347 }
3348
6dc54d91 3349 do_cleanups (old_chain);
9d1f7ab2
MS
3350}
3351
802188a7 3352/*
9d1f7ab2
MS
3353 * Collect a descriptive string about the given thread.
3354 * The target may say anything it wants to about the thread
3355 * (typically info about its blocked / runnable state, name, etc.).
3356 * This string will appear in the info threads display.
802188a7 3357 *
9d1f7ab2
MS
3358 * Optional: targets are not required to implement this function.
3359 */
3360
7a114964 3361static const char *
c15906d8 3362remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
9d1f7ab2 3363{
d01949b6 3364 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3365 int result;
3366 int set;
3367 threadref id;
3368 struct gdb_ext_thread_info threadinfo;
23860348 3369 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
3370 int n = 0; /* position in display_buf */
3371
5d93a237 3372 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3373 internal_error (__FILE__, __LINE__,
e2e0b3e5 3374 _("remote_threads_extra_info"));
9d1f7ab2 3375
60e569b9 3376 if (ptid_equal (tp->ptid, magic_null_ptid)
ba348170 3377 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
60e569b9
PA
3378 /* This is the main thread which was added by GDB. The remote
3379 server doesn't know about it. */
3380 return NULL;
3381
4082afcc 3382 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c
VP
3383 {
3384 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 3385
fe978cb0
PA
3386 if (info && info->priv)
3387 return info->priv->extra;
dc146f7c
VP
3388 else
3389 return NULL;
3390 }
3391
b80fafe3 3392 if (rs->use_threadextra_query)
9d1f7ab2 3393 {
82f73884
PA
3394 char *b = rs->buf;
3395 char *endb = rs->buf + get_remote_packet_size ();
3396
3397 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3398 b += strlen (b);
3399 write_ptid (b, endb, tp->ptid);
3400
2e9f7625 3401 putpkt (rs->buf);
6d820c5c 3402 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3403 if (rs->buf[0] != 0)
9d1f7ab2 3404 {
325fac50 3405 n = std::min (strlen (rs->buf) / 2, sizeof (display_buf));
2e9f7625 3406 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 3407 display_buf [result] = '\0';
9d1f7ab2
MS
3408 return display_buf;
3409 }
0f71a2f6 3410 }
9d1f7ab2
MS
3411
3412 /* If the above query fails, fall back to the old method. */
b80fafe3 3413 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3414 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3415 | TAG_MOREDISPLAY | TAG_DISPLAY;
ba348170 3416 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
9d1f7ab2
MS
3417 if (remote_get_threadinfo (&id, set, &threadinfo))
3418 if (threadinfo.active)
0f71a2f6 3419 {
9d1f7ab2 3420 if (*threadinfo.shortname)
2bc416ba 3421 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 3422 " Name: %s,", threadinfo.shortname);
9d1f7ab2 3423 if (*threadinfo.display)
2bc416ba 3424 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3425 " State: %s,", threadinfo.display);
9d1f7ab2 3426 if (*threadinfo.more_display)
2bc416ba 3427 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3428 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
3429
3430 if (n > 0)
c5aa993b 3431 {
23860348 3432 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
3433 if (',' == display_buf[n-1])
3434 display_buf[n-1] = ' ';
3435 return display_buf;
c5aa993b 3436 }
0f71a2f6 3437 }
9d1f7ab2 3438 return NULL;
0f71a2f6 3439}
c906108c 3440\f
c5aa993b 3441
0fb4aa4b 3442static int
61fc905d 3443remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
0fb4aa4b
PA
3444 struct static_tracepoint_marker *marker)
3445{
3446 struct remote_state *rs = get_remote_state ();
3447 char *p = rs->buf;
3448
bba74b36 3449 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3450 p += strlen (p);
3451 p += hexnumstr (p, addr);
3452 putpkt (rs->buf);
3453 getpkt (&rs->buf, &rs->buf_size, 0);
3454 p = rs->buf;
3455
3456 if (*p == 'E')
3457 error (_("Remote failure reply: %s"), p);
3458
3459 if (*p++ == 'm')
3460 {
3461 parse_static_tracepoint_marker_definition (p, &p, marker);
3462 return 1;
3463 }
3464
3465 return 0;
3466}
3467
0fb4aa4b 3468static VEC(static_tracepoint_marker_p) *
c686c57f
TT
3469remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3470 const char *strid)
0fb4aa4b
PA
3471{
3472 struct remote_state *rs = get_remote_state ();
3473 VEC(static_tracepoint_marker_p) *markers = NULL;
3474 struct static_tracepoint_marker *marker = NULL;
3475 struct cleanup *old_chain;
3476 char *p;
3477
3478 /* Ask for a first packet of static tracepoint marker
3479 definition. */
3480 putpkt ("qTfSTM");
3481 getpkt (&rs->buf, &rs->buf_size, 0);
3482 p = rs->buf;
3483 if (*p == 'E')
3484 error (_("Remote failure reply: %s"), p);
3485
3486 old_chain = make_cleanup (free_current_marker, &marker);
3487
3488 while (*p++ == 'm')
3489 {
3490 if (marker == NULL)
3491 marker = XCNEW (struct static_tracepoint_marker);
3492
3493 do
3494 {
3495 parse_static_tracepoint_marker_definition (p, &p, marker);
3496
3497 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3498 {
3499 VEC_safe_push (static_tracepoint_marker_p,
3500 markers, marker);
3501 marker = NULL;
3502 }
3503 else
3504 {
3505 release_static_tracepoint_marker (marker);
3506 memset (marker, 0, sizeof (*marker));
3507 }
3508 }
3509 while (*p++ == ','); /* comma-separated list */
3510 /* Ask for another packet of static tracepoint definition. */
3511 putpkt ("qTsSTM");
3512 getpkt (&rs->buf, &rs->buf_size, 0);
3513 p = rs->buf;
3514 }
3515
3516 do_cleanups (old_chain);
3517 return markers;
3518}
3519
3520\f
10760264
JB
3521/* Implement the to_get_ada_task_ptid function for the remote targets. */
3522
3523static ptid_t
1e6b91a4 3524remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
10760264 3525{
ba348170 3526 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
10760264
JB
3527}
3528\f
3529
24b06219 3530/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3531
3532static void
fba45db2 3533extended_remote_restart (void)
c906108c 3534{
d01949b6 3535 struct remote_state *rs = get_remote_state ();
c906108c
SS
3536
3537 /* Send the restart command; for reasons I don't understand the
3538 remote side really expects a number after the "R". */
ea9c271d 3539 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3540 putpkt (rs->buf);
c906108c 3541
ad9a8f3f 3542 remote_fileio_reset ();
c906108c
SS
3543}
3544\f
3545/* Clean up connection to a remote debugger. */
3546
c906108c 3547static void
de90e03d 3548remote_close (struct target_ops *self)
c906108c 3549{
5d93a237
TT
3550 struct remote_state *rs = get_remote_state ();
3551
3552 if (rs->remote_desc == NULL)
d3fd5342
PA
3553 return; /* already closed */
3554
048094ac 3555 /* Make sure we leave stdin registered in the event loop. */
e3594fd1 3556 remote_terminal_ours (self);
ce5ce7ed 3557
5d93a237
TT
3558 serial_close (rs->remote_desc);
3559 rs->remote_desc = NULL;
ce5ce7ed
PA
3560
3561 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3562 of all the inferiors and their threads we were controlling.
3563 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3564 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3565 inferior_ptid = null_ptid;
f67fd822 3566 discard_all_inferiors ();
ce5ce7ed 3567
f48ff2a7
YQ
3568 /* We are closing the remote target, so we should discard
3569 everything of this target. */
bcc75809 3570 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3571
3572 if (remote_async_inferior_event_token)
3573 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3574
5965e028 3575 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3576
3577 trace_reset_local_state ();
c906108c
SS
3578}
3579
23860348 3580/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3581
3582static void
fba45db2 3583get_offsets (void)
c906108c 3584{
d01949b6 3585 struct remote_state *rs = get_remote_state ();
2e9f7625 3586 char *buf;
085dd6e6 3587 char *ptr;
31d99776
DJ
3588 int lose, num_segments = 0, do_sections, do_segments;
3589 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3590 struct section_offsets *offs;
31d99776
DJ
3591 struct symfile_segment_data *data;
3592
3593 if (symfile_objfile == NULL)
3594 return;
c906108c
SS
3595
3596 putpkt ("qOffsets");
6d820c5c 3597 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3598 buf = rs->buf;
c906108c
SS
3599
3600 if (buf[0] == '\000')
3601 return; /* Return silently. Stub doesn't support
23860348 3602 this command. */
c906108c
SS
3603 if (buf[0] == 'E')
3604 {
8a3fe4f8 3605 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3606 return;
3607 }
3608
3609 /* Pick up each field in turn. This used to be done with scanf, but
3610 scanf will make trouble if CORE_ADDR size doesn't match
3611 conversion directives correctly. The following code will work
3612 with any size of CORE_ADDR. */
3613 text_addr = data_addr = bss_addr = 0;
3614 ptr = buf;
3615 lose = 0;
3616
61012eef 3617 if (startswith (ptr, "Text="))
c906108c
SS
3618 {
3619 ptr += 5;
3620 /* Don't use strtol, could lose on big values. */
3621 while (*ptr && *ptr != ';')
3622 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3623
61012eef 3624 if (startswith (ptr, ";Data="))
31d99776
DJ
3625 {
3626 ptr += 6;
3627 while (*ptr && *ptr != ';')
3628 data_addr = (data_addr << 4) + fromhex (*ptr++);
3629 }
3630 else
3631 lose = 1;
3632
61012eef 3633 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
3634 {
3635 ptr += 5;
3636 while (*ptr && *ptr != ';')
3637 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3638
31d99776
DJ
3639 if (bss_addr != data_addr)
3640 warning (_("Target reported unsupported offsets: %s"), buf);
3641 }
3642 else
3643 lose = 1;
3644 }
61012eef 3645 else if (startswith (ptr, "TextSeg="))
c906108c 3646 {
31d99776
DJ
3647 ptr += 8;
3648 /* Don't use strtol, could lose on big values. */
c906108c 3649 while (*ptr && *ptr != ';')
31d99776
DJ
3650 text_addr = (text_addr << 4) + fromhex (*ptr++);
3651 num_segments = 1;
3652
61012eef 3653 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
3654 {
3655 ptr += 9;
3656 while (*ptr && *ptr != ';')
3657 data_addr = (data_addr << 4) + fromhex (*ptr++);
3658 num_segments++;
3659 }
c906108c
SS
3660 }
3661 else
3662 lose = 1;
3663
3664 if (lose)
8a3fe4f8 3665 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3666 else if (*ptr != '\0')
3667 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3668
802188a7 3669 offs = ((struct section_offsets *)
a39a16c4 3670 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3671 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3672 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3673
31d99776
DJ
3674 data = get_symfile_segment_data (symfile_objfile->obfd);
3675 do_segments = (data != NULL);
3676 do_sections = num_segments == 0;
c906108c 3677
28c32713 3678 if (num_segments > 0)
31d99776 3679 {
31d99776
DJ
3680 segments[0] = text_addr;
3681 segments[1] = data_addr;
3682 }
28c32713
JB
3683 /* If we have two segments, we can still try to relocate everything
3684 by assuming that the .text and .data offsets apply to the whole
3685 text and data segments. Convert the offsets given in the packet
3686 to base addresses for symfile_map_offsets_to_segments. */
3687 else if (data && data->num_segments == 2)
3688 {
3689 segments[0] = data->segment_bases[0] + text_addr;
3690 segments[1] = data->segment_bases[1] + data_addr;
3691 num_segments = 2;
3692 }
8d385431
DJ
3693 /* If the object file has only one segment, assume that it is text
3694 rather than data; main programs with no writable data are rare,
3695 but programs with no code are useless. Of course the code might
3696 have ended up in the data segment... to detect that we would need
3697 the permissions here. */
3698 else if (data && data->num_segments == 1)
3699 {
3700 segments[0] = data->segment_bases[0] + text_addr;
3701 num_segments = 1;
3702 }
28c32713
JB
3703 /* There's no way to relocate by segment. */
3704 else
3705 do_segments = 0;
31d99776
DJ
3706
3707 if (do_segments)
3708 {
3709 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3710 offs, num_segments, segments);
3711
3712 if (ret == 0 && !do_sections)
3e43a32a
MS
3713 error (_("Can not handle qOffsets TextSeg "
3714 "response with this symbol file"));
31d99776
DJ
3715
3716 if (ret > 0)
3717 do_sections = 0;
3718 }
c906108c 3719
9ef895d6
DJ
3720 if (data)
3721 free_symfile_segment_data (data);
31d99776
DJ
3722
3723 if (do_sections)
3724 {
3725 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3726
3e43a32a
MS
3727 /* This is a temporary kludge to force data and bss to use the
3728 same offsets because that's what nlmconv does now. The real
3729 solution requires changes to the stub and remote.c that I
3730 don't have time to do right now. */
31d99776
DJ
3731
3732 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3733 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3734 }
c906108c
SS
3735
3736 objfile_relocate (symfile_objfile, offs);
3737}
3738
9a7071a8
JB
3739/* Send interrupt_sequence to remote target. */
3740static void
eeae04df 3741send_interrupt_sequence (void)
9a7071a8 3742{
5d93a237
TT
3743 struct remote_state *rs = get_remote_state ();
3744
9a7071a8 3745 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 3746 remote_serial_write ("\x03", 1);
9a7071a8 3747 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 3748 serial_send_break (rs->remote_desc);
9a7071a8
JB
3749 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3750 {
5d93a237 3751 serial_send_break (rs->remote_desc);
c33e31fd 3752 remote_serial_write ("g", 1);
9a7071a8
JB
3753 }
3754 else
3755 internal_error (__FILE__, __LINE__,
3756 _("Invalid value for interrupt_sequence_mode: %s."),
3757 interrupt_sequence_mode);
3758}
3759
3405876a
PA
3760
3761/* If STOP_REPLY is a T stop reply, look for the "thread" register,
3762 and extract the PTID. Returns NULL_PTID if not found. */
3763
3764static ptid_t
3765stop_reply_extract_thread (char *stop_reply)
3766{
3767 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3768 {
3769 char *p;
3770
3771 /* Txx r:val ; r:val (...) */
3772 p = &stop_reply[3];
3773
3774 /* Look for "register" named "thread". */
3775 while (*p != '\0')
3776 {
3777 char *p1;
3778
3779 p1 = strchr (p, ':');
3780 if (p1 == NULL)
3781 return null_ptid;
3782
3783 if (strncmp (p, "thread", p1 - p) == 0)
3784 return read_ptid (++p1, &p);
3785
3786 p1 = strchr (p, ';');
3787 if (p1 == NULL)
3788 return null_ptid;
3789 p1++;
3790
3791 p = p1;
3792 }
3793 }
3794
3795 return null_ptid;
3796}
3797
b7ea362b
PA
3798/* Determine the remote side's current thread. If we have a stop
3799 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3800 "thread" register we can extract the current thread from. If not,
3801 ask the remote which is the current thread with qC. The former
3802 method avoids a roundtrip. */
3803
3804static ptid_t
3805get_current_thread (char *wait_status)
3806{
6a49a997 3807 ptid_t ptid = null_ptid;
b7ea362b
PA
3808
3809 /* Note we don't use remote_parse_stop_reply as that makes use of
3810 the target architecture, which we haven't yet fully determined at
3811 this point. */
3812 if (wait_status != NULL)
3813 ptid = stop_reply_extract_thread (wait_status);
3814 if (ptid_equal (ptid, null_ptid))
3815 ptid = remote_current_thread (inferior_ptid);
3816
3817 return ptid;
3818}
3819
49c62f2e
PA
3820/* Query the remote target for which is the current thread/process,
3821 add it to our tables, and update INFERIOR_PTID. The caller is
3822 responsible for setting the state such that the remote end is ready
3405876a
PA
3823 to return the current thread.
3824
3825 This function is called after handling the '?' or 'vRun' packets,
3826 whose response is a stop reply from which we can also try
3827 extracting the thread. If the target doesn't support the explicit
3828 qC query, we infer the current thread from that stop reply, passed
3829 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
3830
3831static void
3405876a 3832add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
3833{
3834 struct remote_state *rs = get_remote_state ();
3835 int fake_pid_p = 0;
49c62f2e
PA
3836
3837 inferior_ptid = null_ptid;
3838
b7ea362b 3839 /* Now, if we have thread information, update inferior_ptid. */
87215ad1 3840 ptid_t curr_ptid = get_current_thread (wait_status);
3405876a 3841
87215ad1 3842 if (curr_ptid != null_ptid)
49c62f2e
PA
3843 {
3844 if (!remote_multi_process_p (rs))
3845 fake_pid_p = 1;
49c62f2e
PA
3846 }
3847 else
3848 {
3849 /* Without this, some commands which require an active target
3850 (such as kill) won't work. This variable serves (at least)
3851 double duty as both the pid of the target process (if it has
3852 such), and as a flag indicating that a target is active. */
87215ad1 3853 curr_ptid = magic_null_ptid;
49c62f2e
PA
3854 fake_pid_p = 1;
3855 }
3856
87215ad1 3857 remote_add_inferior (fake_pid_p, ptid_get_pid (curr_ptid), -1, 1);
49c62f2e 3858
87215ad1
SDJ
3859 /* Add the main thread and switch to it. Don't try reading
3860 registers yet, since we haven't fetched the target description
3861 yet. */
3862 thread_info *tp = add_thread_silent (curr_ptid);
3863 switch_to_thread_no_regs (tp);
49c62f2e
PA
3864}
3865
6efcd9a8
PA
3866/* Print info about a thread that was found already stopped on
3867 connection. */
3868
3869static void
3870print_one_stopped_thread (struct thread_info *thread)
3871{
3872 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3873
3874 switch_to_thread (thread->ptid);
3875 stop_pc = get_frame_pc (get_current_frame ());
3876 set_current_sal_from_frame (get_current_frame ());
3877
3878 thread->suspend.waitstatus_pending_p = 0;
3879
3880 if (ws->kind == TARGET_WAITKIND_STOPPED)
3881 {
3882 enum gdb_signal sig = ws->value.sig;
3883
3884 if (signal_print_state (sig))
3885 observer_notify_signal_received (sig);
3886 }
3887 observer_notify_normal_stop (NULL, 1);
3888}
3889
221e1a37
PA
3890/* Process all initial stop replies the remote side sent in response
3891 to the ? packet. These indicate threads that were already stopped
3892 on initial connection. We mark these threads as stopped and print
3893 their current frame before giving the user the prompt. */
3894
3895static void
6efcd9a8 3896process_initial_stop_replies (int from_tty)
221e1a37
PA
3897{
3898 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
3899 struct inferior *inf;
3900 struct thread_info *thread;
3901 struct thread_info *selected = NULL;
3902 struct thread_info *lowest_stopped = NULL;
3903 struct thread_info *first = NULL;
221e1a37
PA
3904
3905 /* Consume the initial pending events. */
3906 while (pending_stop_replies-- > 0)
3907 {
3908 ptid_t waiton_ptid = minus_one_ptid;
3909 ptid_t event_ptid;
3910 struct target_waitstatus ws;
3911 int ignore_event = 0;
6efcd9a8 3912 struct thread_info *thread;
221e1a37
PA
3913
3914 memset (&ws, 0, sizeof (ws));
3915 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3916 if (remote_debug)
3917 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3918
3919 switch (ws.kind)
3920 {
3921 case TARGET_WAITKIND_IGNORE:
3922 case TARGET_WAITKIND_NO_RESUMED:
3923 case TARGET_WAITKIND_SIGNALLED:
3924 case TARGET_WAITKIND_EXITED:
3925 /* We shouldn't see these, but if we do, just ignore. */
3926 if (remote_debug)
3927 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3928 ignore_event = 1;
3929 break;
3930
3931 case TARGET_WAITKIND_EXECD:
3932 xfree (ws.value.execd_pathname);
3933 break;
3934 default:
3935 break;
3936 }
3937
3938 if (ignore_event)
3939 continue;
3940
6efcd9a8 3941 thread = find_thread_ptid (event_ptid);
221e1a37
PA
3942
3943 if (ws.kind == TARGET_WAITKIND_STOPPED)
3944 {
3945 enum gdb_signal sig = ws.value.sig;
3946
3947 /* Stubs traditionally report SIGTRAP as initial signal,
3948 instead of signal 0. Suppress it. */
3949 if (sig == GDB_SIGNAL_TRAP)
3950 sig = GDB_SIGNAL_0;
6efcd9a8
PA
3951 thread->suspend.stop_signal = sig;
3952 ws.value.sig = sig;
3953 }
221e1a37 3954
6efcd9a8
PA
3955 thread->suspend.waitstatus = ws;
3956
3957 if (ws.kind != TARGET_WAITKIND_STOPPED
3958 || ws.value.sig != GDB_SIGNAL_0)
3959 thread->suspend.waitstatus_pending_p = 1;
3960
3961 set_executing (event_ptid, 0);
3962 set_running (event_ptid, 0);
85ad3aaf 3963 thread->priv->vcont_resumed = 0;
6efcd9a8
PA
3964 }
3965
3966 /* "Notice" the new inferiors before anything related to
3967 registers/memory. */
3968 ALL_INFERIORS (inf)
3969 {
3970 if (inf->pid == 0)
3971 continue;
3972
3973 inf->needs_setup = 1;
3974
3975 if (non_stop)
3976 {
3977 thread = any_live_thread_of_process (inf->pid);
3978 notice_new_inferior (thread->ptid,
3979 thread->state == THREAD_RUNNING,
3980 from_tty);
3981 }
3982 }
3983
3984 /* If all-stop on top of non-stop, pause all threads. Note this
3985 records the threads' stop pc, so must be done after "noticing"
3986 the inferiors. */
3987 if (!non_stop)
3988 {
3989 stop_all_threads ();
3990
3991 /* If all threads of an inferior were already stopped, we
3992 haven't setup the inferior yet. */
3993 ALL_INFERIORS (inf)
3994 {
3995 if (inf->pid == 0)
3996 continue;
221e1a37 3997
6efcd9a8
PA
3998 if (inf->needs_setup)
3999 {
4000 thread = any_live_thread_of_process (inf->pid);
4001 switch_to_thread_no_regs (thread);
4002 setup_inferior (0);
4003 }
4004 }
221e1a37 4005 }
6efcd9a8
PA
4006
4007 /* Now go over all threads that are stopped, and print their current
4008 frame. If all-stop, then if there's a signalled thread, pick
4009 that as current. */
4010 ALL_NON_EXITED_THREADS (thread)
4011 {
6efcd9a8
PA
4012 if (first == NULL)
4013 first = thread;
4014
4015 if (!non_stop)
4016 set_running (thread->ptid, 0);
4017 else if (thread->state != THREAD_STOPPED)
4018 continue;
4019
6efcd9a8
PA
4020 if (selected == NULL
4021 && thread->suspend.waitstatus_pending_p)
4022 selected = thread;
4023
5d5658a1
PA
4024 if (lowest_stopped == NULL
4025 || thread->inf->num < lowest_stopped->inf->num
4026 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
4027 lowest_stopped = thread;
4028
4029 if (non_stop)
4030 print_one_stopped_thread (thread);
4031 }
4032
4033 /* In all-stop, we only print the status of one thread, and leave
4034 others with their status pending. */
4035 if (!non_stop)
4036 {
4037 thread = selected;
4038 if (thread == NULL)
4039 thread = lowest_stopped;
4040 if (thread == NULL)
4041 thread = first;
4042
4043 print_one_stopped_thread (thread);
4044 }
4045
4046 /* For "info program". */
4047 thread = inferior_thread ();
4048 if (thread->state == THREAD_STOPPED)
4049 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
4050}
4051
048094ac
PA
4052/* Start the remote connection and sync state. */
4053
9cbc821d 4054static void
04bd08de 4055remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
c906108c 4056{
c8d104ad
PA
4057 struct remote_state *rs = get_remote_state ();
4058 struct packet_config *noack_config;
2d717e4f 4059 char *wait_status = NULL;
8621d6a9 4060
048094ac
PA
4061 /* Signal other parts that we're going through the initial setup,
4062 and so things may not be stable yet. E.g., we don't try to
4063 install tracepoints until we've relocated symbols. Also, a
4064 Ctrl-C before we're connected and synced up can't interrupt the
4065 target. Instead, it offers to drop the (potentially wedged)
4066 connection. */
4067 rs->starting_up = 1;
4068
522002f9 4069 QUIT;
c906108c 4070
9a7071a8
JB
4071 if (interrupt_on_connect)
4072 send_interrupt_sequence ();
4073
57e12211 4074 /* Ack any packet which the remote side has already sent. */
048094ac 4075 remote_serial_write ("+", 1);
1e51243a 4076
c8d104ad
PA
4077 /* The first packet we send to the target is the optional "supported
4078 packets" request. If the target can answer this, it will tell us
4079 which later probes to skip. */
4080 remote_query_supported ();
4081
d914c394 4082 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4083 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
c378d69d 4084 remote_set_permissions (target);
d914c394 4085
57809e5e
JK
4086 /* gdbserver < 7.7 (before its fix from 2013-12-11) did reply to any
4087 unknown 'v' packet with string "OK". "OK" gets interpreted by GDB
4088 as a reply to known packet. For packet "vFile:setfs:" it is an
4089 invalid reply and GDB would return error in
4090 remote_hostio_set_filesystem, making remote files access impossible.
4091 Disable "vFile:setfs:" in such case. Do not disable other 'v' packets as
4092 other "vFile" packets get correctly detected even on gdbserver < 7.7. */
4093 {
4094 const char v_mustreplyempty[] = "vMustReplyEmpty";
4095
4096 putpkt (v_mustreplyempty);
4097 getpkt (&rs->buf, &rs->buf_size, 0);
4098 if (strcmp (rs->buf, "OK") == 0)
4099 remote_protocol_packets[PACKET_vFile_setfs].support = PACKET_DISABLE;
4100 else if (strcmp (rs->buf, "") != 0)
4101 error (_("Remote replied unexpectedly to '%s': %s"), v_mustreplyempty,
4102 rs->buf);
4103 }
4104
c8d104ad
PA
4105 /* Next, we possibly activate noack mode.
4106
4107 If the QStartNoAckMode packet configuration is set to AUTO,
4108 enable noack mode if the stub reported a wish for it with
4109 qSupported.
4110
4111 If set to TRUE, then enable noack mode even if the stub didn't
4112 report it in qSupported. If the stub doesn't reply OK, the
4113 session ends with an error.
4114
4115 If FALSE, then don't activate noack mode, regardless of what the
4116 stub claimed should be the default with qSupported. */
4117
4118 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4119 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4120 {
4121 putpkt ("QStartNoAckMode");
4122 getpkt (&rs->buf, &rs->buf_size, 0);
4123 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4124 rs->noack_mode = 1;
4125 }
4126
04bd08de 4127 if (extended_p)
5fe04517
PA
4128 {
4129 /* Tell the remote that we are using the extended protocol. */
4130 putpkt ("!");
4131 getpkt (&rs->buf, &rs->buf_size, 0);
4132 }
4133
9b224c5e
PA
4134 /* Let the target know which signals it is allowed to pass down to
4135 the program. */
4136 update_signals_program_target ();
4137
d962ef82
DJ
4138 /* Next, if the target can specify a description, read it. We do
4139 this before anything involving memory or registers. */
4140 target_find_description ();
4141
6c95b8df
PA
4142 /* Next, now that we know something about the target, update the
4143 address spaces in the program spaces. */
4144 update_address_spaces ();
4145
50c71eaf
PA
4146 /* On OSs where the list of libraries is global to all
4147 processes, we fetch them early. */
f5656ead 4148 if (gdbarch_has_global_solist (target_gdbarch ()))
e696b3ad 4149 solib_add (NULL, from_tty, auto_solib_add);
50c71eaf 4150
6efcd9a8 4151 if (target_is_non_stop_p ())
74531fed 4152 {
4082afcc 4153 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4154 error (_("Non-stop mode requested, but remote "
4155 "does not support non-stop"));
74531fed
PA
4156
4157 putpkt ("QNonStop:1");
4158 getpkt (&rs->buf, &rs->buf_size, 0);
4159
4160 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4161 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4162
4163 /* Find about threads and processes the stub is already
4164 controlling. We default to adding them in the running state.
4165 The '?' query below will then tell us about which threads are
4166 stopped. */
e8032dde 4167 remote_update_thread_list (target);
74531fed 4168 }
4082afcc 4169 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4170 {
4171 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4172 Request it explicitly. */
74531fed
PA
4173 putpkt ("QNonStop:0");
4174 getpkt (&rs->buf, &rs->buf_size, 0);
4175
4176 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4177 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4178 }
4179
a0743c90
YQ
4180 /* Upload TSVs regardless of whether the target is running or not. The
4181 remote stub, such as GDBserver, may have some predefined or builtin
4182 TSVs, even if the target is not running. */
8bd200f1 4183 if (remote_get_trace_status (target, current_trace_status ()) != -1)
a0743c90
YQ
4184 {
4185 struct uploaded_tsv *uploaded_tsvs = NULL;
4186
181e3713 4187 remote_upload_trace_state_variables (target, &uploaded_tsvs);
a0743c90
YQ
4188 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4189 }
4190
2d717e4f
DJ
4191 /* Check whether the target is running now. */
4192 putpkt ("?");
4193 getpkt (&rs->buf, &rs->buf_size, 0);
4194
6efcd9a8 4195 if (!target_is_non_stop_p ())
2d717e4f 4196 {
74531fed 4197 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4198 {
04bd08de 4199 if (!extended_p)
74531fed 4200 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4201
4202 /* We're connected, but not running. Drop out before we
4203 call start_remote. */
e278ad5b 4204 rs->starting_up = 0;
c35b1492 4205 return;
2d717e4f
DJ
4206 }
4207 else
74531fed 4208 {
74531fed 4209 /* Save the reply for later. */
224c3ddb 4210 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4211 strcpy (wait_status, rs->buf);
4212 }
4213
b7ea362b 4214 /* Fetch thread list. */
e8032dde 4215 target_update_thread_list ();
b7ea362b 4216
74531fed
PA
4217 /* Let the stub know that we want it to return the thread. */
4218 set_continue_thread (minus_one_ptid);
4219
b7ea362b
PA
4220 if (thread_count () == 0)
4221 {
4222 /* Target has no concept of threads at all. GDB treats
4223 non-threaded target as single-threaded; add a main
4224 thread. */
4225 add_current_inferior_and_thread (wait_status);
4226 }
4227 else
4228 {
4229 /* We have thread information; select the thread the target
4230 says should be current. If we're reconnecting to a
4231 multi-threaded program, this will ideally be the thread
4232 that last reported an event before GDB disconnected. */
4233 inferior_ptid = get_current_thread (wait_status);
4234 if (ptid_equal (inferior_ptid, null_ptid))
4235 {
4236 /* Odd... The target was able to list threads, but not
4237 tell us which thread was current (no "thread"
4238 register in T stop reply?). Just pick the first
4239 thread in the thread list then. */
c9f35b34
KB
4240
4241 if (remote_debug)
4242 fprintf_unfiltered (gdb_stdlog,
4243 "warning: couldn't determine remote "
4244 "current thread; picking first in list.\n");
4245
b7ea362b
PA
4246 inferior_ptid = thread_list->ptid;
4247 }
4248 }
74531fed 4249
6e586cc5
YQ
4250 /* init_wait_for_inferior should be called before get_offsets in order
4251 to manage `inserted' flag in bp loc in a correct state.
4252 breakpoint_init_inferior, called from init_wait_for_inferior, set
4253 `inserted' flag to 0, while before breakpoint_re_set, called from
4254 start_remote, set `inserted' flag to 1. In the initialization of
4255 inferior, breakpoint_init_inferior should be called first, and then
4256 breakpoint_re_set can be called. If this order is broken, state of
4257 `inserted' flag is wrong, and cause some problems on breakpoint
4258 manipulation. */
4259 init_wait_for_inferior ();
4260
74531fed
PA
4261 get_offsets (); /* Get text, data & bss offsets. */
4262
d962ef82
DJ
4263 /* If we could not find a description using qXfer, and we know
4264 how to do it some other way, try again. This is not
4265 supported for non-stop; it could be, but it is tricky if
4266 there are no stopped threads when we connect. */
04bd08de 4267 if (remote_read_description_p (target)
f5656ead 4268 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4269 {
4270 target_clear_description ();
4271 target_find_description ();
4272 }
4273
74531fed
PA
4274 /* Use the previously fetched status. */
4275 gdb_assert (wait_status != NULL);
4276 strcpy (rs->buf, wait_status);
4277 rs->cached_wait_status = 1;
4278
04bd08de 4279 start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4280 }
4281 else
4282 {
68c97600
PA
4283 /* Clear WFI global state. Do this before finding about new
4284 threads and inferiors, and setting the current inferior.
4285 Otherwise we would clear the proceed status of the current
4286 inferior when we want its stop_soon state to be preserved
4287 (see notice_new_inferior). */
4288 init_wait_for_inferior ();
4289
74531fed
PA
4290 /* In non-stop, we will either get an "OK", meaning that there
4291 are no stopped threads at this time; or, a regular stop
4292 reply. In the latter case, there may be more than one thread
4293 stopped --- we pull them all out using the vStopped
4294 mechanism. */
4295 if (strcmp (rs->buf, "OK") != 0)
4296 {
722247f1 4297 struct notif_client *notif = &notif_client_stop;
2d717e4f 4298
722247f1
YQ
4299 /* remote_notif_get_pending_replies acks this one, and gets
4300 the rest out. */
f48ff2a7 4301 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
4302 = remote_notif_parse (notif, rs->buf);
4303 remote_notif_get_pending_events (notif);
74531fed 4304 }
2d717e4f 4305
74531fed
PA
4306 if (thread_count () == 0)
4307 {
04bd08de 4308 if (!extended_p)
74531fed 4309 error (_("The target is not running (try extended-remote?)"));
82f73884 4310
c35b1492
PA
4311 /* We're connected, but not running. Drop out before we
4312 call start_remote. */
e278ad5b 4313 rs->starting_up = 0;
c35b1492
PA
4314 return;
4315 }
74531fed 4316
74531fed
PA
4317 /* In non-stop mode, any cached wait status will be stored in
4318 the stop reply queue. */
4319 gdb_assert (wait_status == NULL);
f0223081 4320
2455069d 4321 /* Report all signals during attach/startup. */
94bedb42 4322 remote_pass_signals (target, 0, NULL);
221e1a37
PA
4323
4324 /* If there are already stopped threads, mark them stopped and
4325 report their stops before giving the prompt to the user. */
6efcd9a8 4326 process_initial_stop_replies (from_tty);
221e1a37
PA
4327
4328 if (target_can_async_p ())
4329 target_async (1);
74531fed 4330 }
c8d104ad 4331
c8d104ad
PA
4332 /* If we connected to a live target, do some additional setup. */
4333 if (target_has_execution)
4334 {
f4ccffad 4335 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4336 remote_check_symbols ();
c8d104ad 4337 }
50c71eaf 4338
d5551862
SS
4339 /* Possibly the target has been engaged in a trace run started
4340 previously; find out where things are at. */
8bd200f1 4341 if (remote_get_trace_status (target, current_trace_status ()) != -1)
d5551862 4342 {
00bf0b85 4343 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4344
00bf0b85
SS
4345 if (current_trace_status ()->running)
4346 printf_filtered (_("Trace is already running on the target.\n"));
4347
ab6617cc 4348 remote_upload_tracepoints (target, &uploaded_tps);
00bf0b85
SS
4349
4350 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4351 }
4352
c0272db5
TW
4353 /* Possibly the target has been engaged in a btrace record started
4354 previously; find out where things are at. */
4355 remote_btrace_maybe_reopen ();
4356
1e51243a
PA
4357 /* The thread and inferior lists are now synchronized with the
4358 target, our symbols have been relocated, and we're merged the
4359 target's tracepoints with ours. We're done with basic start
4360 up. */
4361 rs->starting_up = 0;
4362
a25a5a45
PA
4363 /* Maybe breakpoints are global and need to be inserted now. */
4364 if (breakpoints_should_be_inserted_now ())
50c71eaf 4365 insert_breakpoints ();
c906108c
SS
4366}
4367
4368/* Open a connection to a remote debugger.
4369 NAME is the filename used for communication. */
4370
4371static void
014f9477 4372remote_open (const char *name, int from_tty)
c906108c 4373{
75c99385 4374 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
4375}
4376
c906108c
SS
4377/* Open a connection to a remote debugger using the extended
4378 remote gdb protocol. NAME is the filename used for communication. */
4379
4380static void
014f9477 4381extended_remote_open (const char *name, int from_tty)
c906108c 4382{
75c99385 4383 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
4384}
4385
ca4f7f8b
PA
4386/* Reset all packets back to "unknown support". Called when opening a
4387 new connection to a remote target. */
c906108c 4388
d471ea57 4389static void
ca4f7f8b 4390reset_all_packet_configs_support (void)
d471ea57
AC
4391{
4392 int i;
a744cf53 4393
444abaca 4394 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4395 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4396}
4397
ca4f7f8b
PA
4398/* Initialize all packet configs. */
4399
4400static void
4401init_all_packet_configs (void)
4402{
4403 int i;
4404
4405 for (i = 0; i < PACKET_MAX; i++)
4406 {
4407 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4408 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4409 }
4410}
4411
23860348 4412/* Symbol look-up. */
dc8acb97
MS
4413
4414static void
36d25514 4415remote_check_symbols (void)
dc8acb97 4416{
d01949b6 4417 struct remote_state *rs = get_remote_state ();
dc8acb97 4418 char *msg, *reply, *tmp;
dc8acb97 4419 int end;
28170b88 4420 long reply_size;
a5c0808e 4421 struct cleanup *old_chain;
dc8acb97 4422
63154eca
PA
4423 /* The remote side has no concept of inferiors that aren't running
4424 yet, it only knows about running processes. If we're connected
4425 but our current inferior is not running, we should not invite the
4426 remote target to request symbol lookups related to its
4427 (unrelated) current process. */
4428 if (!target_has_execution)
4429 return;
4430
4082afcc 4431 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4432 return;
4433
63154eca
PA
4434 /* Make sure the remote is pointing at the right process. Note
4435 there's no way to select "no process". */
3c9c4b83
PA
4436 set_general_process ();
4437
6d820c5c
DJ
4438 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4439 because we need both at the same time. */
224c3ddb 4440 msg = (char *) xmalloc (get_remote_packet_size ());
a5c0808e 4441 old_chain = make_cleanup (xfree, msg);
28170b88
MK
4442 reply = (char *) xmalloc (get_remote_packet_size ());
4443 make_cleanup (free_current_contents, &reply);
4444 reply_size = get_remote_packet_size ();
6d820c5c 4445
23860348 4446 /* Invite target to request symbol lookups. */
dc8acb97
MS
4447
4448 putpkt ("qSymbol::");
28170b88
MK
4449 getpkt (&reply, &reply_size, 0);
4450 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4451
61012eef 4452 while (startswith (reply, "qSymbol:"))
dc8acb97 4453 {
77e371c0
TT
4454 struct bound_minimal_symbol sym;
4455
dc8acb97 4456 tmp = &reply[8];
cfd77fa1 4457 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
4458 msg[end] = '\0';
4459 sym = lookup_minimal_symbol (msg, NULL, NULL);
3b7344d5 4460 if (sym.minsym == NULL)
ea9c271d 4461 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 4462 else
2bbe3cc1 4463 {
f5656ead 4464 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4465 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4466
4467 /* If this is a function address, return the start of code
4468 instead of any data function descriptor. */
f5656ead 4469 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
4470 sym_addr,
4471 &current_target);
4472
4473 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4474 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
4475 }
4476
dc8acb97 4477 putpkt (msg);
28170b88 4478 getpkt (&reply, &reply_size, 0);
dc8acb97 4479 }
a5c0808e
PA
4480
4481 do_cleanups (old_chain);
dc8acb97
MS
4482}
4483
9db8d71f 4484static struct serial *
baa336ce 4485remote_serial_open (const char *name)
9db8d71f
DJ
4486{
4487 static int udp_warning = 0;
4488
4489 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4490 of in ser-tcp.c, because it is the remote protocol assuming that the
4491 serial connection is reliable and not the serial connection promising
4492 to be. */
61012eef 4493 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4494 {
3e43a32a
MS
4495 warning (_("The remote protocol may be unreliable over UDP.\n"
4496 "Some events may be lost, rendering further debugging "
4497 "impossible."));
9db8d71f
DJ
4498 udp_warning = 1;
4499 }
4500
4501 return serial_open (name);
4502}
4503
d914c394
SS
4504/* Inform the target of our permission settings. The permission flags
4505 work without this, but if the target knows the settings, it can do
4506 a couple things. First, it can add its own check, to catch cases
4507 that somehow manage to get by the permissions checks in target
4508 methods. Second, if the target is wired to disallow particular
4509 settings (for instance, a system in the field that is not set up to
4510 be able to stop at a breakpoint), it can object to any unavailable
4511 permissions. */
4512
4513void
c378d69d 4514remote_set_permissions (struct target_ops *self)
d914c394
SS
4515{
4516 struct remote_state *rs = get_remote_state ();
4517
bba74b36
YQ
4518 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4519 "WriteReg:%x;WriteMem:%x;"
4520 "InsertBreak:%x;InsertTrace:%x;"
4521 "InsertFastTrace:%x;Stop:%x",
4522 may_write_registers, may_write_memory,
4523 may_insert_breakpoints, may_insert_tracepoints,
4524 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4525 putpkt (rs->buf);
4526 getpkt (&rs->buf, &rs->buf_size, 0);
4527
4528 /* If the target didn't like the packet, warn the user. Do not try
4529 to undo the user's settings, that would just be maddening. */
4530 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 4531 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
4532}
4533
be2a5f71
DJ
4534/* This type describes each known response to the qSupported
4535 packet. */
4536struct protocol_feature
4537{
4538 /* The name of this protocol feature. */
4539 const char *name;
4540
4541 /* The default for this protocol feature. */
4542 enum packet_support default_support;
4543
4544 /* The function to call when this feature is reported, or after
4545 qSupported processing if the feature is not supported.
4546 The first argument points to this structure. The second
4547 argument indicates whether the packet requested support be
4548 enabled, disabled, or probed (or the default, if this function
4549 is being called at the end of processing and this feature was
4550 not reported). The third argument may be NULL; if not NULL, it
4551 is a NUL-terminated string taken from the packet following
4552 this feature's name and an equals sign. */
4553 void (*func) (const struct protocol_feature *, enum packet_support,
4554 const char *);
4555
4556 /* The corresponding packet for this feature. Only used if
4557 FUNC is remote_supported_packet. */
4558 int packet;
4559};
4560
be2a5f71
DJ
4561static void
4562remote_supported_packet (const struct protocol_feature *feature,
4563 enum packet_support support,
4564 const char *argument)
4565{
4566 if (argument)
4567 {
4568 warning (_("Remote qSupported response supplied an unexpected value for"
4569 " \"%s\"."), feature->name);
4570 return;
4571 }
4572
4082afcc 4573 remote_protocol_packets[feature->packet].support = support;
be2a5f71 4574}
be2a5f71
DJ
4575
4576static void
4577remote_packet_size (const struct protocol_feature *feature,
4578 enum packet_support support, const char *value)
4579{
4580 struct remote_state *rs = get_remote_state ();
4581
4582 int packet_size;
4583 char *value_end;
4584
4585 if (support != PACKET_ENABLE)
4586 return;
4587
4588 if (value == NULL || *value == '\0')
4589 {
4590 warning (_("Remote target reported \"%s\" without a size."),
4591 feature->name);
4592 return;
4593 }
4594
4595 errno = 0;
4596 packet_size = strtol (value, &value_end, 16);
4597 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4598 {
4599 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4600 feature->name, value);
4601 return;
4602 }
4603
be2a5f71
DJ
4604 /* Record the new maximum packet size. */
4605 rs->explicit_packet_size = packet_size;
4606}
4607
dc473cfb 4608static const struct protocol_feature remote_protocol_features[] = {
0876f84a 4609 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 4610 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 4611 PACKET_qXfer_auxv },
c78fa86a
GB
4612 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4613 PACKET_qXfer_exec_file },
23181151
DJ
4614 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4615 PACKET_qXfer_features },
cfa9d6d9
DJ
4616 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4617 PACKET_qXfer_libraries },
2268b414
JK
4618 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4619 PACKET_qXfer_libraries_svr4 },
ced63ec0 4620 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 4621 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 4622 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4623 PACKET_qXfer_memory_map },
4de6483e
UW
4624 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4625 PACKET_qXfer_spu_read },
4626 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4627 PACKET_qXfer_spu_write },
07e059b5
VP
4628 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4629 PACKET_qXfer_osdata },
dc146f7c
VP
4630 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4631 PACKET_qXfer_threads },
b3b9301e
PA
4632 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4633 PACKET_qXfer_traceframe_info },
89be2091
DJ
4634 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4635 PACKET_QPassSignals },
82075af2
JS
4636 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4637 PACKET_QCatchSyscalls },
9b224c5e
PA
4638 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4639 PACKET_QProgramSignals },
aefd8b33
SDJ
4640 { "QStartupWithShell", PACKET_DISABLE, remote_supported_packet,
4641 PACKET_QStartupWithShell },
0a2dde4a
SDJ
4642 { "QEnvironmentHexEncoded", PACKET_DISABLE, remote_supported_packet,
4643 PACKET_QEnvironmentHexEncoded },
4644 { "QEnvironmentReset", PACKET_DISABLE, remote_supported_packet,
4645 PACKET_QEnvironmentReset },
4646 { "QEnvironmentUnset", PACKET_DISABLE, remote_supported_packet,
4647 PACKET_QEnvironmentUnset },
a6f3e723
SL
4648 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4649 PACKET_QStartNoAckMode },
4082afcc
PA
4650 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4651 PACKET_multiprocess_feature },
4652 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
4653 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4654 PACKET_qXfer_siginfo_read },
4655 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4656 PACKET_qXfer_siginfo_write },
4082afcc 4657 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 4658 PACKET_ConditionalTracepoints },
4082afcc 4659 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 4660 PACKET_ConditionalBreakpoints },
4082afcc 4661 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 4662 PACKET_BreakpointCommands },
4082afcc 4663 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 4664 PACKET_FastTracepoints },
4082afcc 4665 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 4666 PACKET_StaticTracepoints },
4082afcc 4667 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 4668 PACKET_InstallInTrace},
4082afcc
PA
4669 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4670 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
4671 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4672 PACKET_bc },
4673 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4674 PACKET_bs },
409873ef
SS
4675 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4676 PACKET_TracepointSource },
d914c394
SS
4677 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4678 PACKET_QAllow },
4082afcc
PA
4679 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4680 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
4681 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4682 PACKET_qXfer_fdpic },
169081d0
TG
4683 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4684 PACKET_qXfer_uib },
03583c20
UW
4685 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4686 PACKET_QDisableRandomization },
d1feda86 4687 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4688 { "QTBuffer:size", PACKET_DISABLE,
4689 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 4690 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
4691 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4692 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 4693 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 4694 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
4695 PACKET_qXfer_btrace },
4696 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
4697 PACKET_qXfer_btrace_conf },
4698 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
4699 PACKET_Qbtrace_conf_bts_size },
4700 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 4701 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
4702 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4703 PACKET_fork_event_feature },
4704 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4705 PACKET_vfork_event_feature },
94585166
DB
4706 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4707 PACKET_exec_event_feature },
b20a6524 4708 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 4709 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
4710 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4711 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 4712 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
4713};
4714
c8d5aac9
L
4715static char *remote_support_xml;
4716
4717/* Register string appended to "xmlRegisters=" in qSupported query. */
4718
4719void
6e39997a 4720register_remote_support_xml (const char *xml)
c8d5aac9
L
4721{
4722#if defined(HAVE_LIBEXPAT)
4723 if (remote_support_xml == NULL)
c4f7c687 4724 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4725 else
4726 {
4727 char *copy = xstrdup (remote_support_xml + 13);
4728 char *p = strtok (copy, ",");
4729
4730 do
4731 {
4732 if (strcmp (p, xml) == 0)
4733 {
4734 /* already there */
4735 xfree (copy);
4736 return;
4737 }
4738 }
4739 while ((p = strtok (NULL, ",")) != NULL);
4740 xfree (copy);
4741
94b0dee1
PA
4742 remote_support_xml = reconcat (remote_support_xml,
4743 remote_support_xml, ",", xml,
4744 (char *) NULL);
c8d5aac9
L
4745 }
4746#endif
4747}
4748
4749static char *
4750remote_query_supported_append (char *msg, const char *append)
4751{
4752 if (msg)
94b0dee1 4753 return reconcat (msg, msg, ";", append, (char *) NULL);
c8d5aac9
L
4754 else
4755 return xstrdup (append);
4756}
4757
be2a5f71
DJ
4758static void
4759remote_query_supported (void)
4760{
4761 struct remote_state *rs = get_remote_state ();
4762 char *next;
4763 int i;
4764 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4765
4766 /* The packet support flags are handled differently for this packet
4767 than for most others. We treat an error, a disabled packet, and
4768 an empty response identically: any features which must be reported
4769 to be used will be automatically disabled. An empty buffer
4770 accomplishes this, since that is also the representation for a list
4771 containing no features. */
4772
4773 rs->buf[0] = 0;
4082afcc 4774 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 4775 {
c8d5aac9 4776 char *q = NULL;
94b0dee1 4777 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
c8d5aac9 4778
73b8c1fd
PA
4779 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4780 q = remote_query_supported_append (q, "multiprocess+");
c8d5aac9 4781
f7e6eed5
PA
4782 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4783 q = remote_query_supported_append (q, "swbreak+");
4784 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4785 q = remote_query_supported_append (q, "hwbreak+");
4786
dde08ee1
PA
4787 q = remote_query_supported_append (q, "qRelocInsn+");
4788
8020350c
DB
4789 if (packet_set_cmd_state (PACKET_fork_event_feature)
4790 != AUTO_BOOLEAN_FALSE)
4791 q = remote_query_supported_append (q, "fork-events+");
4792 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4793 != AUTO_BOOLEAN_FALSE)
4794 q = remote_query_supported_append (q, "vfork-events+");
4795 if (packet_set_cmd_state (PACKET_exec_event_feature)
4796 != AUTO_BOOLEAN_FALSE)
4797 q = remote_query_supported_append (q, "exec-events+");
89245bc0 4798
750ce8d1
YQ
4799 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4800 q = remote_query_supported_append (q, "vContSupported+");
4801
65706a29
PA
4802 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4803 q = remote_query_supported_append (q, "QThreadEvents+");
4804
f2faf941
PA
4805 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4806 q = remote_query_supported_append (q, "no-resumed+");
4807
b35d5edb
PA
4808 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4809 the qSupported:xmlRegisters=i386 handling. */
4810 if (remote_support_xml != NULL)
4811 q = remote_query_supported_append (q, remote_support_xml);
4812
dde08ee1
PA
4813 q = reconcat (q, "qSupported:", q, (char *) NULL);
4814 putpkt (q);
82f73884 4815
94b0dee1
PA
4816 do_cleanups (old_chain);
4817
be2a5f71
DJ
4818 getpkt (&rs->buf, &rs->buf_size, 0);
4819
4820 /* If an error occured, warn, but do not return - just reset the
4821 buffer to empty and go on to disable features. */
4822 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4823 == PACKET_ERROR)
4824 {
4825 warning (_("Remote failure reply: %s"), rs->buf);
4826 rs->buf[0] = 0;
4827 }
4828 }
4829
4830 memset (seen, 0, sizeof (seen));
4831
4832 next = rs->buf;
4833 while (*next)
4834 {
4835 enum packet_support is_supported;
4836 char *p, *end, *name_end, *value;
4837
4838 /* First separate out this item from the rest of the packet. If
4839 there's another item after this, we overwrite the separator
4840 (terminated strings are much easier to work with). */
4841 p = next;
4842 end = strchr (p, ';');
4843 if (end == NULL)
4844 {
4845 end = p + strlen (p);
4846 next = end;
4847 }
4848 else
4849 {
89be2091
DJ
4850 *end = '\0';
4851 next = end + 1;
4852
be2a5f71
DJ
4853 if (end == p)
4854 {
4855 warning (_("empty item in \"qSupported\" response"));
4856 continue;
4857 }
be2a5f71
DJ
4858 }
4859
4860 name_end = strchr (p, '=');
4861 if (name_end)
4862 {
4863 /* This is a name=value entry. */
4864 is_supported = PACKET_ENABLE;
4865 value = name_end + 1;
4866 *name_end = '\0';
4867 }
4868 else
4869 {
4870 value = NULL;
4871 switch (end[-1])
4872 {
4873 case '+':
4874 is_supported = PACKET_ENABLE;
4875 break;
4876
4877 case '-':
4878 is_supported = PACKET_DISABLE;
4879 break;
4880
4881 case '?':
4882 is_supported = PACKET_SUPPORT_UNKNOWN;
4883 break;
4884
4885 default:
3e43a32a
MS
4886 warning (_("unrecognized item \"%s\" "
4887 "in \"qSupported\" response"), p);
be2a5f71
DJ
4888 continue;
4889 }
4890 end[-1] = '\0';
4891 }
4892
4893 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4894 if (strcmp (remote_protocol_features[i].name, p) == 0)
4895 {
4896 const struct protocol_feature *feature;
4897
4898 seen[i] = 1;
4899 feature = &remote_protocol_features[i];
4900 feature->func (feature, is_supported, value);
4901 break;
4902 }
4903 }
4904
4905 /* If we increased the packet size, make sure to increase the global
4906 buffer size also. We delay this until after parsing the entire
4907 qSupported packet, because this is the same buffer we were
4908 parsing. */
4909 if (rs->buf_size < rs->explicit_packet_size)
4910 {
4911 rs->buf_size = rs->explicit_packet_size;
224c3ddb 4912 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
4913 }
4914
4915 /* Handle the defaults for unmentioned features. */
4916 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4917 if (!seen[i])
4918 {
4919 const struct protocol_feature *feature;
4920
4921 feature = &remote_protocol_features[i];
4922 feature->func (feature, feature->default_support, NULL);
4923 }
4924}
4925
048094ac
PA
4926/* Serial QUIT handler for the remote serial descriptor.
4927
4928 Defers handling a Ctrl-C until we're done with the current
4929 command/response packet sequence, unless:
4930
4931 - We're setting up the connection. Don't send a remote interrupt
4932 request, as we're not fully synced yet. Quit immediately
4933 instead.
4934
4935 - The target has been resumed in the foreground
4936 (target_terminal_is_ours is false) with a synchronous resume
4937 packet, and we're blocked waiting for the stop reply, thus a
4938 Ctrl-C should be immediately sent to the target.
4939
4940 - We get a second Ctrl-C while still within the same serial read or
4941 write. In that case the serial is seemingly wedged --- offer to
4942 quit/disconnect.
4943
4944 - We see a second Ctrl-C without target response, after having
4945 previously interrupted the target. In that case the target/stub
4946 is probably wedged --- offer to quit/disconnect.
4947*/
4948
4949static void
4950remote_serial_quit_handler (void)
4951{
4952 struct remote_state *rs = get_remote_state ();
4953
4954 if (check_quit_flag ())
4955 {
4956 /* If we're starting up, we're not fully synced yet. Quit
4957 immediately. */
4958 if (rs->starting_up)
4959 quit ();
4960 else if (rs->got_ctrlc_during_io)
4961 {
4962 if (query (_("The target is not responding to GDB commands.\n"
4963 "Stop debugging it? ")))
4964 remote_unpush_and_throw ();
4965 }
4966 /* If ^C has already been sent once, offer to disconnect. */
4967 else if (!target_terminal_is_ours () && rs->ctrlc_pending_p)
4968 interrupt_query ();
4969 /* All-stop protocol, and blocked waiting for stop reply. Send
4970 an interrupt request. */
4971 else if (!target_terminal_is_ours () && rs->waiting_for_stop_reply)
4972 target_interrupt (inferior_ptid);
4973 else
4974 rs->got_ctrlc_during_io = 1;
4975 }
4976}
4977
78a095c3
JK
4978/* Remove any of the remote.c targets from target stack. Upper targets depend
4979 on it so remove them first. */
4980
4981static void
4982remote_unpush_target (void)
4983{
915ef8b1 4984 pop_all_targets_at_and_above (process_stratum);
78a095c3 4985}
be2a5f71 4986
048094ac
PA
4987static void
4988remote_unpush_and_throw (void)
4989{
4990 remote_unpush_target ();
4991 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
4992}
4993
c906108c 4994static void
014f9477 4995remote_open_1 (const char *name, int from_tty,
3e43a32a 4996 struct target_ops *target, int extended_p)
c906108c 4997{
d01949b6 4998 struct remote_state *rs = get_remote_state ();
a6f3e723 4999
c906108c 5000 if (name == 0)
8a3fe4f8 5001 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 5002 "serial device is attached to the remote system\n"
8a3fe4f8 5003 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 5004
23860348 5005 /* See FIXME above. */
c6ebd6cf 5006 if (!target_async_permitted)
92d1e331 5007 wait_forever_enabled_p = 1;
6426a772 5008
2d717e4f 5009 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
5010 Ask this question first, before target_preopen has a chance to kill
5011 anything. */
5d93a237 5012 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 5013 {
78a095c3
JK
5014 if (from_tty
5015 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
5016 error (_("Still connected."));
5017 }
5018
78a095c3 5019 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
5020 target_preopen (from_tty);
5021
89be2091 5022 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
5023 xfree (rs->last_pass_packet);
5024 rs->last_pass_packet = NULL;
89be2091 5025
9b224c5e
PA
5026 /* Make sure we send the program signals list the next time we
5027 resume. */
5e4a05c4
TT
5028 xfree (rs->last_program_signals_packet);
5029 rs->last_program_signals_packet = NULL;
9b224c5e 5030
ad9a8f3f 5031 remote_fileio_reset ();
1dd41f16
NS
5032 reopen_exec_file ();
5033 reread_symbols ();
5034
5d93a237
TT
5035 rs->remote_desc = remote_serial_open (name);
5036 if (!rs->remote_desc)
c906108c
SS
5037 perror_with_name (name);
5038
5039 if (baud_rate != -1)
5040 {
5d93a237 5041 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 5042 {
9b74d5d3
KB
5043 /* The requested speed could not be set. Error out to
5044 top level after closing remote_desc. Take care to
5045 set remote_desc to NULL to avoid closing remote_desc
5046 more than once. */
5d93a237
TT
5047 serial_close (rs->remote_desc);
5048 rs->remote_desc = NULL;
c906108c
SS
5049 perror_with_name (name);
5050 }
5051 }
5052
236af5e3 5053 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 5054 serial_raw (rs->remote_desc);
c906108c
SS
5055
5056 /* If there is something sitting in the buffer we might take it as a
5057 response to a command, which would be bad. */
5d93a237 5058 serial_flush_input (rs->remote_desc);
c906108c
SS
5059
5060 if (from_tty)
5061 {
5062 puts_filtered ("Remote debugging using ");
5063 puts_filtered (name);
5064 puts_filtered ("\n");
5065 }
23860348 5066 push_target (target); /* Switch to using remote target now. */
c906108c 5067
74531fed
PA
5068 /* Register extra event sources in the event loop. */
5069 remote_async_inferior_event_token
5070 = create_async_event_handler (remote_async_inferior_event_handler,
5071 NULL);
5965e028 5072 rs->notif_state = remote_notif_state_allocate ();
74531fed 5073
be2a5f71
DJ
5074 /* Reset the target state; these things will be queried either by
5075 remote_query_supported or as they are needed. */
ca4f7f8b 5076 reset_all_packet_configs_support ();
74531fed 5077 rs->cached_wait_status = 0;
be2a5f71 5078 rs->explicit_packet_size = 0;
a6f3e723 5079 rs->noack_mode = 0;
82f73884 5080 rs->extended = extended_p;
e24a49d8 5081 rs->waiting_for_stop_reply = 0;
3a29589a 5082 rs->ctrlc_pending_p = 0;
048094ac 5083 rs->got_ctrlc_during_io = 0;
802188a7 5084
47f8a51d
TT
5085 rs->general_thread = not_sent_ptid;
5086 rs->continue_thread = not_sent_ptid;
262e1174 5087 rs->remote_traceframe_number = -1;
c906108c 5088
3a00c802
PA
5089 rs->last_resume_exec_dir = EXEC_FORWARD;
5090
9d1f7ab2 5091 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
5092 rs->use_threadinfo_query = 1;
5093 rs->use_threadextra_query = 1;
9d1f7ab2 5094
80152258
PA
5095 readahead_cache_invalidate ();
5096
048094ac
PA
5097 /* Start out by owning the terminal. */
5098 remote_async_terminal_ours_p = 1;
5099
c6ebd6cf 5100 if (target_async_permitted)
92d1e331 5101 {
92d1e331
DJ
5102 /* FIXME: cagney/1999-09-23: During the initial connection it is
5103 assumed that the target is already ready and able to respond to
0df8b418 5104 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 5105 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 5106 around this. Eventually a mechanism that allows
92d1e331 5107 wait_for_inferior() to expect/get timeouts will be
23860348 5108 implemented. */
92d1e331
DJ
5109 wait_forever_enabled_p = 0;
5110 }
5111
23860348 5112 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 5113 no_shared_libraries (NULL, 0);
f78f6cf1 5114
74531fed
PA
5115 /* Start afresh. */
5116 init_thread_list ();
5117
36918e70 5118 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
5119 target (we'd otherwise be in an inconsistent state) and then
5120 propogate the error on up the exception chain. This ensures that
5121 the caller doesn't stumble along blindly assuming that the
5122 function succeeded. The CLI doesn't have this problem but other
5123 UI's, such as MI do.
36918e70
AC
5124
5125 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
5126 this function should return an error indication letting the
ce2826aa 5127 caller restore the previous state. Unfortunately the command
36918e70
AC
5128 ``target remote'' is directly wired to this function making that
5129 impossible. On a positive note, the CLI side of this problem has
5130 been fixed - the function set_cmd_context() makes it possible for
5131 all the ``target ....'' commands to share a common callback
5132 function. See cli-dump.c. */
109c3e39 5133 {
2d717e4f 5134
492d29ea 5135 TRY
04bd08de
TT
5136 {
5137 remote_start_remote (from_tty, target, extended_p);
5138 }
492d29ea 5139 CATCH (ex, RETURN_MASK_ALL)
109c3e39 5140 {
c8d104ad
PA
5141 /* Pop the partially set up target - unless something else did
5142 already before throwing the exception. */
5d93a237 5143 if (rs->remote_desc != NULL)
78a095c3 5144 remote_unpush_target ();
c6ebd6cf 5145 if (target_async_permitted)
109c3e39
AC
5146 wait_forever_enabled_p = 1;
5147 throw_exception (ex);
5148 }
492d29ea 5149 END_CATCH
109c3e39 5150 }
c906108c 5151
f4abbc16
MM
5152 remote_btrace_reset ();
5153
c6ebd6cf 5154 if (target_async_permitted)
92d1e331 5155 wait_forever_enabled_p = 1;
43ff13b4
JM
5156}
5157
de0d863e
DB
5158/* Detach the specified process. */
5159
5160static void
5161remote_detach_pid (int pid)
5162{
5163 struct remote_state *rs = get_remote_state ();
5164
5165 if (remote_multi_process_p (rs))
5166 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5167 else
5168 strcpy (rs->buf, "D");
5169
5170 putpkt (rs->buf);
5171 getpkt (&rs->buf, &rs->buf_size, 0);
5172
5173 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5174 ;
5175 else if (rs->buf[0] == '\0')
5176 error (_("Remote doesn't know how to detach"));
5177 else
5178 error (_("Can't detach process."));
5179}
5180
5181/* This detaches a program to which we previously attached, using
5182 inferior_ptid to identify the process. After this is done, GDB
5183 can be used to debug some other program. We better not have left
5184 any breakpoints in the target program or it'll die when it hits
5185 one. */
c906108c
SS
5186
5187static void
de0d863e 5188remote_detach_1 (const char *args, int from_tty)
c906108c 5189{
82f73884 5190 int pid = ptid_get_pid (inferior_ptid);
d01949b6 5191 struct remote_state *rs = get_remote_state ();
de0d863e
DB
5192 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5193 int is_fork_parent;
c906108c
SS
5194
5195 if (args)
8a3fe4f8 5196 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 5197
2d717e4f
DJ
5198 if (!target_has_execution)
5199 error (_("No process to detach from."));
5200
0f48b757 5201 target_announce_detach (from_tty);
7cee1e54 5202
c906108c 5203 /* Tell the remote target to detach. */
de0d863e 5204 remote_detach_pid (pid);
82f73884 5205
8020350c
DB
5206 /* Exit only if this is the only active inferior. */
5207 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5208 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5209
de0d863e
DB
5210 /* Check to see if we are detaching a fork parent. Note that if we
5211 are detaching a fork child, tp == NULL. */
5212 is_fork_parent = (tp != NULL
5213 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5214
5215 /* If doing detach-on-fork, we don't mourn, because that will delete
5216 breakpoints that should be available for the followed inferior. */
5217 if (!is_fork_parent)
bc1e6c81 5218 target_mourn_inferior (inferior_ptid);
de0d863e
DB
5219 else
5220 {
5221 inferior_ptid = null_ptid;
5222 detach_inferior (pid);
5223 }
2d717e4f
DJ
5224}
5225
5226static void
52554a0e 5227remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5228{
de0d863e 5229 remote_detach_1 (args, from_tty);
2d717e4f
DJ
5230}
5231
5232static void
52554a0e 5233extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5234{
de0d863e
DB
5235 remote_detach_1 (args, from_tty);
5236}
5237
5238/* Target follow-fork function for remote targets. On entry, and
5239 at return, the current inferior is the fork parent.
5240
5241 Note that although this is currently only used for extended-remote,
5242 it is named remote_follow_fork in anticipation of using it for the
5243 remote target as well. */
5244
5245static int
5246remote_follow_fork (struct target_ops *ops, int follow_child,
5247 int detach_fork)
5248{
5249 struct remote_state *rs = get_remote_state ();
c269dbdb 5250 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5251
c269dbdb
DB
5252 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5253 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5254 {
5255 /* When following the parent and detaching the child, we detach
5256 the child here. For the case of following the child and
5257 detaching the parent, the detach is done in the target-
5258 independent follow fork code in infrun.c. We can't use
5259 target_detach when detaching an unfollowed child because
5260 the client side doesn't know anything about the child. */
5261 if (detach_fork && !follow_child)
5262 {
5263 /* Detach the fork child. */
5264 ptid_t child_ptid;
5265 pid_t child_pid;
5266
5267 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5268 child_pid = ptid_get_pid (child_ptid);
5269
5270 remote_detach_pid (child_pid);
5271 detach_inferior (child_pid);
5272 }
5273 }
5274 return 0;
c906108c
SS
5275}
5276
94585166
DB
5277/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5278 in the program space of the new inferior. On entry and at return the
5279 current inferior is the exec'ing inferior. INF is the new exec'd
5280 inferior, which may be the same as the exec'ing inferior unless
5281 follow-exec-mode is "new". */
5282
5283static void
5284remote_follow_exec (struct target_ops *ops,
5285 struct inferior *inf, char *execd_pathname)
5286{
5287 /* We know that this is a target file name, so if it has the "target:"
5288 prefix we strip it off before saving it in the program space. */
5289 if (is_target_filename (execd_pathname))
5290 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5291
5292 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5293}
5294
6ad8ae5c
DJ
5295/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5296
43ff13b4 5297static void
fee354ee 5298remote_disconnect (struct target_ops *target, const char *args, int from_tty)
43ff13b4 5299{
43ff13b4 5300 if (args)
2d717e4f 5301 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5302
8020350c
DB
5303 /* Make sure we unpush even the extended remote targets. Calling
5304 target_mourn_inferior won't unpush, and remote_mourn won't
5305 unpush if there is more than one inferior left. */
5306 unpush_target (target);
5307 generic_mourn_inferior ();
2d717e4f 5308
43ff13b4
JM
5309 if (from_tty)
5310 puts_filtered ("Ending remote debugging.\n");
5311}
5312
2d717e4f
DJ
5313/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5314 be chatty about it. */
5315
5316static void
20f796c9
GB
5317extended_remote_attach (struct target_ops *target, const char *args,
5318 int from_tty)
2d717e4f
DJ
5319{
5320 struct remote_state *rs = get_remote_state ();
be86555c 5321 int pid;
96ef3384 5322 char *wait_status = NULL;
2d717e4f 5323
74164c56 5324 pid = parse_pid_to_attach (args);
2d717e4f 5325
74164c56
JK
5326 /* Remote PID can be freely equal to getpid, do not check it here the same
5327 way as in other targets. */
2d717e4f 5328
4082afcc 5329 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5330 error (_("This target does not support attaching to a process"));
5331
7cee1e54
PA
5332 if (from_tty)
5333 {
5334 char *exec_file = get_exec_file (0);
5335
5336 if (exec_file)
5337 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5338 target_pid_to_str (pid_to_ptid (pid)));
5339 else
5340 printf_unfiltered (_("Attaching to %s\n"),
5341 target_pid_to_str (pid_to_ptid (pid)));
5342
5343 gdb_flush (gdb_stdout);
5344 }
5345
bba74b36 5346 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5347 putpkt (rs->buf);
5348 getpkt (&rs->buf, &rs->buf_size, 0);
5349
4082afcc
PA
5350 switch (packet_ok (rs->buf,
5351 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5352 {
4082afcc 5353 case PACKET_OK:
6efcd9a8 5354 if (!target_is_non_stop_p ())
74531fed
PA
5355 {
5356 /* Save the reply for later. */
224c3ddb 5357 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5358 strcpy (wait_status, rs->buf);
5359 }
5360 else if (strcmp (rs->buf, "OK") != 0)
5361 error (_("Attaching to %s failed with: %s"),
5362 target_pid_to_str (pid_to_ptid (pid)),
5363 rs->buf);
4082afcc
PA
5364 break;
5365 case PACKET_UNKNOWN:
5366 error (_("This target does not support attaching to a process"));
5367 default:
5368 error (_("Attaching to %s failed"),
5369 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 5370 }
2d717e4f 5371
1b6e6f5c 5372 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5373
2d717e4f 5374 inferior_ptid = pid_to_ptid (pid);
79d7f229 5375
6efcd9a8 5376 if (target_is_non_stop_p ())
bad34192
PA
5377 {
5378 struct thread_info *thread;
79d7f229 5379
bad34192 5380 /* Get list of threads. */
e8032dde 5381 remote_update_thread_list (target);
82f73884 5382
bad34192
PA
5383 thread = first_thread_of_process (pid);
5384 if (thread)
5385 inferior_ptid = thread->ptid;
5386 else
5387 inferior_ptid = pid_to_ptid (pid);
5388
5389 /* Invalidate our notion of the remote current thread. */
47f8a51d 5390 record_currthread (rs, minus_one_ptid);
bad34192 5391 }
74531fed 5392 else
bad34192
PA
5393 {
5394 /* Now, if we have thread information, update inferior_ptid. */
5395 inferior_ptid = remote_current_thread (inferior_ptid);
5396
5397 /* Add the main thread to the thread list. */
5398 add_thread_silent (inferior_ptid);
5399 }
c0a2216e 5400
96ef3384
UW
5401 /* Next, if the target can specify a description, read it. We do
5402 this before anything involving memory or registers. */
5403 target_find_description ();
5404
6efcd9a8 5405 if (!target_is_non_stop_p ())
74531fed
PA
5406 {
5407 /* Use the previously fetched status. */
5408 gdb_assert (wait_status != NULL);
5409
5410 if (target_can_async_p ())
5411 {
722247f1
YQ
5412 struct notif_event *reply
5413 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 5414
722247f1 5415 push_stop_reply ((struct stop_reply *) reply);
74531fed 5416
6a3753b3 5417 target_async (1);
74531fed
PA
5418 }
5419 else
5420 {
5421 gdb_assert (wait_status != NULL);
5422 strcpy (rs->buf, wait_status);
5423 rs->cached_wait_status = 1;
5424 }
5425 }
5426 else
5427 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5428}
5429
b9c1d481
AS
5430/* Implementation of the to_post_attach method. */
5431
5432static void
5433extended_remote_post_attach (struct target_ops *ops, int pid)
5434{
6efcd9a8
PA
5435 /* Get text, data & bss offsets. */
5436 get_offsets ();
5437
b9c1d481
AS
5438 /* In certain cases GDB might not have had the chance to start
5439 symbol lookup up until now. This could happen if the debugged
5440 binary is not using shared libraries, the vsyscall page is not
5441 present (on Linux) and the binary itself hadn't changed since the
5442 debugging process was started. */
5443 if (symfile_objfile != NULL)
5444 remote_check_symbols();
5445}
5446
c906108c 5447\f
506fb367
DJ
5448/* Check for the availability of vCont. This function should also check
5449 the response. */
c906108c
SS
5450
5451static void
6d820c5c 5452remote_vcont_probe (struct remote_state *rs)
c906108c 5453{
2e9f7625 5454 char *buf;
6d820c5c 5455
2e9f7625
DJ
5456 strcpy (rs->buf, "vCont?");
5457 putpkt (rs->buf);
6d820c5c 5458 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5459 buf = rs->buf;
c906108c 5460
506fb367 5461 /* Make sure that the features we assume are supported. */
61012eef 5462 if (startswith (buf, "vCont"))
506fb367
DJ
5463 {
5464 char *p = &buf[5];
750ce8d1 5465 int support_c, support_C;
506fb367 5466
750ce8d1
YQ
5467 rs->supports_vCont.s = 0;
5468 rs->supports_vCont.S = 0;
506fb367
DJ
5469 support_c = 0;
5470 support_C = 0;
d458bd84 5471 rs->supports_vCont.t = 0;
c1e36e3e 5472 rs->supports_vCont.r = 0;
506fb367
DJ
5473 while (p && *p == ';')
5474 {
5475 p++;
5476 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5477 rs->supports_vCont.s = 1;
506fb367 5478 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5479 rs->supports_vCont.S = 1;
506fb367
DJ
5480 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5481 support_c = 1;
5482 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5483 support_C = 1;
74531fed 5484 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5485 rs->supports_vCont.t = 1;
c1e36e3e
PA
5486 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5487 rs->supports_vCont.r = 1;
506fb367
DJ
5488
5489 p = strchr (p, ';');
5490 }
c906108c 5491
750ce8d1
YQ
5492 /* If c, and C are not all supported, we can't use vCont. Clearing
5493 BUF will make packet_ok disable the packet. */
5494 if (!support_c || !support_C)
506fb367
DJ
5495 buf[0] = 0;
5496 }
c906108c 5497
444abaca 5498 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5499}
c906108c 5500
0d8f58ca
PA
5501/* Helper function for building "vCont" resumptions. Write a
5502 resumption to P. ENDP points to one-passed-the-end of the buffer
5503 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5504 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5505 resumed thread should be single-stepped and/or signalled. If PTID
5506 equals minus_one_ptid, then all threads are resumed; if PTID
5507 represents a process, then all threads of the process are resumed;
5508 the thread to be stepped and/or signalled is given in the global
5509 INFERIOR_PTID. */
5510
5511static char *
5512append_resumption (char *p, char *endp,
2ea28649 5513 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
5514{
5515 struct remote_state *rs = get_remote_state ();
5516
a493e3e2 5517 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5518 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5519 else if (step
5520 /* GDB is willing to range step. */
5521 && use_range_stepping
5522 /* Target supports range stepping. */
5523 && rs->supports_vCont.r
5524 /* We don't currently support range stepping multiple
5525 threads with a wildcard (though the protocol allows it,
5526 so stubs shouldn't make an active effort to forbid
5527 it). */
5528 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5529 {
5530 struct thread_info *tp;
5531
5532 if (ptid_equal (ptid, minus_one_ptid))
5533 {
5534 /* If we don't know about the target thread's tid, then
5535 we're resuming magic_null_ptid (see caller). */
5536 tp = find_thread_ptid (magic_null_ptid);
5537 }
5538 else
5539 tp = find_thread_ptid (ptid);
5540 gdb_assert (tp != NULL);
5541
5542 if (tp->control.may_range_step)
5543 {
5544 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5545
5546 p += xsnprintf (p, endp - p, ";r%s,%s",
5547 phex_nz (tp->control.step_range_start,
5548 addr_size),
5549 phex_nz (tp->control.step_range_end,
5550 addr_size));
5551 }
5552 else
5553 p += xsnprintf (p, endp - p, ";s");
5554 }
0d8f58ca
PA
5555 else if (step)
5556 p += xsnprintf (p, endp - p, ";s");
a493e3e2 5557 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
5558 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5559 else
5560 p += xsnprintf (p, endp - p, ";c");
5561
5562 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5563 {
5564 ptid_t nptid;
5565
5566 /* All (-1) threads of process. */
ba348170 5567 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
0d8f58ca
PA
5568
5569 p += xsnprintf (p, endp - p, ":");
5570 p = write_ptid (p, endp, nptid);
5571 }
5572 else if (!ptid_equal (ptid, minus_one_ptid))
5573 {
5574 p += xsnprintf (p, endp - p, ":");
5575 p = write_ptid (p, endp, ptid);
5576 }
5577
5578 return p;
5579}
5580
799a2abe
PA
5581/* Clear the thread's private info on resume. */
5582
5583static void
5584resume_clear_thread_private_info (struct thread_info *thread)
5585{
5586 if (thread->priv != NULL)
5587 {
5588 thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5589 thread->priv->watch_data_address = 0;
5590 }
5591}
5592
e5ef252a
PA
5593/* Append a vCont continue-with-signal action for threads that have a
5594 non-zero stop signal. */
5595
5596static char *
5597append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5598{
5599 struct thread_info *thread;
5600
034f788c 5601 ALL_NON_EXITED_THREADS (thread)
e5ef252a
PA
5602 if (ptid_match (thread->ptid, ptid)
5603 && !ptid_equal (inferior_ptid, thread->ptid)
70509625 5604 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
5605 {
5606 p = append_resumption (p, endp, thread->ptid,
5607 0, thread->suspend.stop_signal);
5608 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 5609 resume_clear_thread_private_info (thread);
e5ef252a
PA
5610 }
5611
5612 return p;
5613}
5614
7b68ffbb
PA
5615/* Set the target running, using the packets that use Hc
5616 (c/s/C/S). */
5617
5618static void
5619remote_resume_with_hc (struct target_ops *ops,
5620 ptid_t ptid, int step, enum gdb_signal siggnal)
5621{
5622 struct remote_state *rs = get_remote_state ();
5623 struct thread_info *thread;
5624 char *buf;
5625
5626 rs->last_sent_signal = siggnal;
5627 rs->last_sent_step = step;
5628
5629 /* The c/s/C/S resume packets use Hc, so set the continue
5630 thread. */
5631 if (ptid_equal (ptid, minus_one_ptid))
5632 set_continue_thread (any_thread_ptid);
5633 else
5634 set_continue_thread (ptid);
5635
5636 ALL_NON_EXITED_THREADS (thread)
5637 resume_clear_thread_private_info (thread);
5638
5639 buf = rs->buf;
5640 if (execution_direction == EXEC_REVERSE)
5641 {
5642 /* We don't pass signals to the target in reverse exec mode. */
5643 if (info_verbose && siggnal != GDB_SIGNAL_0)
5644 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
5645 siggnal);
5646
5647 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
5648 error (_("Remote reverse-step not supported."));
5649 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
5650 error (_("Remote reverse-continue not supported."));
5651
5652 strcpy (buf, step ? "bs" : "bc");
5653 }
5654 else if (siggnal != GDB_SIGNAL_0)
5655 {
5656 buf[0] = step ? 'S' : 'C';
5657 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
5658 buf[2] = tohex (((int) siggnal) & 0xf);
5659 buf[3] = '\0';
5660 }
5661 else
5662 strcpy (buf, step ? "s" : "c");
5663
5664 putpkt (buf);
5665}
5666
506fb367
DJ
5667/* Resume the remote inferior by using a "vCont" packet. The thread
5668 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
5669 resumed thread should be single-stepped and/or signalled. If PTID
5670 equals minus_one_ptid, then all threads are resumed; the thread to
5671 be stepped and/or signalled is given in the global INFERIOR_PTID.
5672 This function returns non-zero iff it resumes the inferior.
44eaed12 5673
7b68ffbb
PA
5674 This function issues a strict subset of all possible vCont commands
5675 at the moment. */
44eaed12 5676
506fb367 5677static int
7b68ffbb 5678remote_resume_with_vcont (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
5679{
5680 struct remote_state *rs = get_remote_state ();
82f73884
PA
5681 char *p;
5682 char *endp;
44eaed12 5683
7b68ffbb
PA
5684 /* No reverse execution actions defined for vCont. */
5685 if (execution_direction == EXEC_REVERSE)
5686 return 0;
5687
4082afcc 5688 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6d820c5c 5689 remote_vcont_probe (rs);
44eaed12 5690
4082afcc 5691 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 5692 return 0;
44eaed12 5693
82f73884
PA
5694 p = rs->buf;
5695 endp = rs->buf + get_remote_packet_size ();
5696
506fb367
DJ
5697 /* If we could generate a wider range of packets, we'd have to worry
5698 about overflowing BUF. Should there be a generic
5699 "multi-part-packet" packet? */
5700
0d8f58ca
PA
5701 p += xsnprintf (p, endp - p, "vCont");
5702
79d7f229 5703 if (ptid_equal (ptid, magic_null_ptid))
c906108c 5704 {
79d7f229
PA
5705 /* MAGIC_NULL_PTID means that we don't have any active threads,
5706 so we don't have any TID numbers the inferior will
5707 understand. Make sure to only send forms that do not specify
5708 a TID. */
a9cbf802 5709 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 5710 }
0d8f58ca 5711 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 5712 {
0d8f58ca
PA
5713 /* Resume all threads (of all processes, or of a single
5714 process), with preference for INFERIOR_PTID. This assumes
5715 inferior_ptid belongs to the set of all threads we are about
5716 to resume. */
a493e3e2 5717 if (step || siggnal != GDB_SIGNAL_0)
82f73884 5718 {
0d8f58ca
PA
5719 /* Step inferior_ptid, with or without signal. */
5720 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 5721 }
0d8f58ca 5722
e5ef252a
PA
5723 /* Also pass down any pending signaled resumption for other
5724 threads not the current. */
5725 p = append_pending_thread_resumptions (p, endp, ptid);
5726
0d8f58ca 5727 /* And continue others without a signal. */
a493e3e2 5728 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
5729 }
5730 else
506fb367
DJ
5731 {
5732 /* Scheduler locking; resume only PTID. */
a9cbf802 5733 append_resumption (p, endp, ptid, step, siggnal);
506fb367 5734 }
c906108c 5735
82f73884
PA
5736 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5737 putpkt (rs->buf);
506fb367 5738
6efcd9a8 5739 if (target_is_non_stop_p ())
74531fed
PA
5740 {
5741 /* In non-stop, the stub replies to vCont with "OK". The stop
5742 reply will be reported asynchronously by means of a `%Stop'
5743 notification. */
5744 getpkt (&rs->buf, &rs->buf_size, 0);
5745 if (strcmp (rs->buf, "OK") != 0)
5746 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5747 }
5748
506fb367 5749 return 1;
c906108c 5750}
43ff13b4 5751
506fb367
DJ
5752/* Tell the remote machine to resume. */
5753
43ff13b4 5754static void
28439f5e 5755remote_resume (struct target_ops *ops,
2ea28649 5756 ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 5757{
d01949b6 5758 struct remote_state *rs = get_remote_state ();
43ff13b4 5759
85ad3aaf
PA
5760 /* When connected in non-stop mode, the core resumes threads
5761 individually. Resuming remote threads directly in target_resume
5762 would thus result in sending one packet per thread. Instead, to
5763 minimize roundtrip latency, here we just store the resume
5764 request; the actual remote resumption will be done in
5765 target_commit_resume / remote_commit_resume, where we'll be able
5766 to do vCont action coalescing. */
5767 if (target_is_non_stop_p () && execution_direction != EXEC_REVERSE)
5768 {
5769 struct private_thread_info *remote_thr;
5770
5771 if (ptid_equal (minus_one_ptid, ptid) || ptid_is_pid (ptid))
5772 remote_thr = get_private_info_ptid (inferior_ptid);
5773 else
5774 remote_thr = get_private_info_ptid (ptid);
5775 remote_thr->last_resume_step = step;
5776 remote_thr->last_resume_sig = siggnal;
5777 return;
5778 }
5779
722247f1
YQ
5780 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5781 (explained in remote-notif.c:handle_notification) so
5782 remote_notif_process is not called. We need find a place where
5783 it is safe to start a 'vNotif' sequence. It is good to do it
5784 before resuming inferior, because inferior was stopped and no RSP
5785 traffic at that moment. */
6efcd9a8 5786 if (!target_is_non_stop_p ())
5965e028 5787 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 5788
3a00c802
PA
5789 rs->last_resume_exec_dir = execution_direction;
5790
7b68ffbb
PA
5791 /* Prefer vCont, and fallback to s/c/S/C, which use Hc. */
5792 if (!remote_resume_with_vcont (ptid, step, siggnal))
5793 remote_resume_with_hc (ops, ptid, step, siggnal);
43ff13b4 5794
2acceee2 5795 /* We are about to start executing the inferior, let's register it
0df8b418
MS
5796 with the event loop. NOTE: this is the one place where all the
5797 execution commands end up. We could alternatively do this in each
23860348 5798 of the execution commands in infcmd.c. */
2acceee2
JM
5799 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5800 into infcmd.c in order to allow inferior function calls to work
23860348 5801 NOT asynchronously. */
362646f5 5802 if (target_can_async_p ())
6a3753b3 5803 target_async (1);
e24a49d8
PA
5804
5805 /* We've just told the target to resume. The remote server will
5806 wait for the inferior to stop, and then send a stop reply. In
5807 the mean time, we can't start another command/query ourselves
74531fed
PA
5808 because the stub wouldn't be ready to process it. This applies
5809 only to the base all-stop protocol, however. In non-stop (which
5810 only supports vCont), the stub replies with an "OK", and is
5811 immediate able to process further serial input. */
6efcd9a8 5812 if (!target_is_non_stop_p ())
74531fed 5813 rs->waiting_for_stop_reply = 1;
43ff13b4 5814}
85ad3aaf
PA
5815
5816static void check_pending_events_prevent_wildcard_vcont
5817 (int *may_global_wildcard_vcont);
5818static int is_pending_fork_parent_thread (struct thread_info *thread);
5819
5820/* Private per-inferior info for target remote processes. */
5821
5822struct private_inferior
5823{
5824 /* Whether we can send a wildcard vCont for this process. */
5825 int may_wildcard_vcont;
5826};
5827
5828/* Structure used to track the construction of a vCont packet in the
5829 outgoing packet buffer. This is used to send multiple vCont
5830 packets if we have more actions than would fit a single packet. */
5831
5832struct vcont_builder
5833{
5834 /* Pointer to the first action. P points here if no action has been
5835 appended yet. */
5836 char *first_action;
5837
5838 /* Where the next action will be appended. */
5839 char *p;
5840
5841 /* The end of the buffer. Must never write past this. */
5842 char *endp;
5843};
5844
5845/* Prepare the outgoing buffer for a new vCont packet. */
5846
5847static void
5848vcont_builder_restart (struct vcont_builder *builder)
5849{
5850 struct remote_state *rs = get_remote_state ();
5851
5852 builder->p = rs->buf;
5853 builder->endp = rs->buf + get_remote_packet_size ();
5854 builder->p += xsnprintf (builder->p, builder->endp - builder->p, "vCont");
5855 builder->first_action = builder->p;
5856}
5857
5858/* If the vCont packet being built has any action, send it to the
5859 remote end. */
5860
5861static void
5862vcont_builder_flush (struct vcont_builder *builder)
5863{
5864 struct remote_state *rs;
5865
5866 if (builder->p == builder->first_action)
5867 return;
5868
5869 rs = get_remote_state ();
5870 putpkt (rs->buf);
5871 getpkt (&rs->buf, &rs->buf_size, 0);
5872 if (strcmp (rs->buf, "OK") != 0)
5873 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5874}
5875
5876/* The largest action is range-stepping, with its two addresses. This
5877 is more than sufficient. If a new, bigger action is created, it'll
5878 quickly trigger a failed assertion in append_resumption (and we'll
5879 just bump this). */
5880#define MAX_ACTION_SIZE 200
5881
5882/* Append a new vCont action in the outgoing packet being built. If
5883 the action doesn't fit the packet along with previous actions, push
5884 what we've got so far to the remote end and start over a new vCont
5885 packet (with the new action). */
5886
5887static void
5888vcont_builder_push_action (struct vcont_builder *builder,
5889 ptid_t ptid, int step, enum gdb_signal siggnal)
5890{
5891 char buf[MAX_ACTION_SIZE + 1];
5892 char *endp;
5893 size_t rsize;
5894
5895 endp = append_resumption (buf, buf + sizeof (buf),
5896 ptid, step, siggnal);
5897
5898 /* Check whether this new action would fit in the vCont packet along
5899 with previous actions. If not, send what we've got so far and
5900 start a new vCont packet. */
5901 rsize = endp - buf;
5902 if (rsize > builder->endp - builder->p)
5903 {
5904 vcont_builder_flush (builder);
5905 vcont_builder_restart (builder);
5906
5907 /* Should now fit. */
5908 gdb_assert (rsize <= builder->endp - builder->p);
5909 }
5910
5911 memcpy (builder->p, buf, rsize);
5912 builder->p += rsize;
5913 *builder->p = '\0';
5914}
5915
5916/* to_commit_resume implementation. */
5917
5918static void
5919remote_commit_resume (struct target_ops *ops)
5920{
5921 struct remote_state *rs = get_remote_state ();
5922 struct inferior *inf;
5923 struct thread_info *tp;
5924 int any_process_wildcard;
5925 int may_global_wildcard_vcont;
5926 struct vcont_builder vcont_builder;
5927
5928 /* If connected in all-stop mode, we'd send the remote resume
5929 request directly from remote_resume. Likewise if
5930 reverse-debugging, as there are no defined vCont actions for
5931 reverse execution. */
5932 if (!target_is_non_stop_p () || execution_direction == EXEC_REVERSE)
5933 return;
5934
5935 /* Try to send wildcard actions ("vCont;c" or "vCont;c:pPID.-1")
5936 instead of resuming all threads of each process individually.
5937 However, if any thread of a process must remain halted, we can't
5938 send wildcard resumes and must send one action per thread.
5939
5940 Care must be taken to not resume threads/processes the server
5941 side already told us are stopped, but the core doesn't know about
5942 yet, because the events are still in the vStopped notification
5943 queue. For example:
5944
5945 #1 => vCont s:p1.1;c
5946 #2 <= OK
5947 #3 <= %Stopped T05 p1.1
5948 #4 => vStopped
5949 #5 <= T05 p1.2
5950 #6 => vStopped
5951 #7 <= OK
5952 #8 (infrun handles the stop for p1.1 and continues stepping)
5953 #9 => vCont s:p1.1;c
5954
5955 The last vCont above would resume thread p1.2 by mistake, because
5956 the server has no idea that the event for p1.2 had not been
5957 handled yet.
5958
5959 The server side must similarly ignore resume actions for the
5960 thread that has a pending %Stopped notification (and any other
5961 threads with events pending), until GDB acks the notification
5962 with vStopped. Otherwise, e.g., the following case is
5963 mishandled:
5964
5965 #1 => g (or any other packet)
5966 #2 <= [registers]
5967 #3 <= %Stopped T05 p1.2
5968 #4 => vCont s:p1.1;c
5969 #5 <= OK
5970
5971 Above, the server must not resume thread p1.2. GDB can't know
5972 that p1.2 stopped until it acks the %Stopped notification, and
5973 since from GDB's perspective all threads should be running, it
5974 sends a "c" action.
5975
5976 Finally, special care must also be given to handling fork/vfork
5977 events. A (v)fork event actually tells us that two processes
5978 stopped -- the parent and the child. Until we follow the fork,
5979 we must not resume the child. Therefore, if we have a pending
5980 fork follow, we must not send a global wildcard resume action
5981 (vCont;c). We can still send process-wide wildcards though. */
5982
5983 /* Start by assuming a global wildcard (vCont;c) is possible. */
5984 may_global_wildcard_vcont = 1;
5985
5986 /* And assume every process is individually wildcard-able too. */
5987 ALL_NON_EXITED_INFERIORS (inf)
5988 {
5989 if (inf->priv == NULL)
5990 inf->priv = XNEW (struct private_inferior);
5991 inf->priv->may_wildcard_vcont = 1;
5992 }
5993
5994 /* Check for any pending events (not reported or processed yet) and
5995 disable process and global wildcard resumes appropriately. */
5996 check_pending_events_prevent_wildcard_vcont (&may_global_wildcard_vcont);
5997
5998 ALL_NON_EXITED_THREADS (tp)
5999 {
6000 /* If a thread of a process is not meant to be resumed, then we
6001 can't wildcard that process. */
6002 if (!tp->executing)
6003 {
6004 tp->inf->priv->may_wildcard_vcont = 0;
6005
6006 /* And if we can't wildcard a process, we can't wildcard
6007 everything either. */
6008 may_global_wildcard_vcont = 0;
6009 continue;
6010 }
6011
6012 /* If a thread is the parent of an unfollowed fork, then we
6013 can't do a global wildcard, as that would resume the fork
6014 child. */
6015 if (is_pending_fork_parent_thread (tp))
6016 may_global_wildcard_vcont = 0;
6017 }
6018
6019 /* Now let's build the vCont packet(s). Actions must be appended
6020 from narrower to wider scopes (thread -> process -> global). If
6021 we end up with too many actions for a single packet vcont_builder
6022 flushes the current vCont packet to the remote side and starts a
6023 new one. */
6024 vcont_builder_restart (&vcont_builder);
6025
6026 /* Threads first. */
6027 ALL_NON_EXITED_THREADS (tp)
6028 {
6029 struct private_thread_info *remote_thr = tp->priv;
6030
6031 if (!tp->executing || remote_thr->vcont_resumed)
6032 continue;
6033
6034 gdb_assert (!thread_is_in_step_over_chain (tp));
6035
6036 if (!remote_thr->last_resume_step
6037 && remote_thr->last_resume_sig == GDB_SIGNAL_0
6038 && tp->inf->priv->may_wildcard_vcont)
6039 {
6040 /* We'll send a wildcard resume instead. */
6041 remote_thr->vcont_resumed = 1;
6042 continue;
6043 }
6044
6045 vcont_builder_push_action (&vcont_builder, tp->ptid,
6046 remote_thr->last_resume_step,
6047 remote_thr->last_resume_sig);
6048 remote_thr->vcont_resumed = 1;
6049 }
6050
6051 /* Now check whether we can send any process-wide wildcard. This is
6052 to avoid sending a global wildcard in the case nothing is
6053 supposed to be resumed. */
6054 any_process_wildcard = 0;
6055
6056 ALL_NON_EXITED_INFERIORS (inf)
6057 {
6058 if (inf->priv->may_wildcard_vcont)
6059 {
6060 any_process_wildcard = 1;
6061 break;
6062 }
6063 }
6064
6065 if (any_process_wildcard)
6066 {
6067 /* If all processes are wildcard-able, then send a single "c"
6068 action, otherwise, send an "all (-1) threads of process"
6069 continue action for each running process, if any. */
6070 if (may_global_wildcard_vcont)
6071 {
6072 vcont_builder_push_action (&vcont_builder, minus_one_ptid,
6073 0, GDB_SIGNAL_0);
6074 }
6075 else
6076 {
6077 ALL_NON_EXITED_INFERIORS (inf)
6078 {
6079 if (inf->priv->may_wildcard_vcont)
6080 {
6081 vcont_builder_push_action (&vcont_builder,
6082 pid_to_ptid (inf->pid),
6083 0, GDB_SIGNAL_0);
6084 }
6085 }
6086 }
6087 }
6088
6089 vcont_builder_flush (&vcont_builder);
6090}
6091
c906108c 6092\f
43ff13b4 6093
74531fed
PA
6094/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
6095 thread, all threads of a remote process, or all threads of all
6096 processes. */
6097
6098static void
6099remote_stop_ns (ptid_t ptid)
6100{
6101 struct remote_state *rs = get_remote_state ();
6102 char *p = rs->buf;
6103 char *endp = rs->buf + get_remote_packet_size ();
74531fed 6104
4082afcc 6105 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
74531fed
PA
6106 remote_vcont_probe (rs);
6107
d458bd84 6108 if (!rs->supports_vCont.t)
74531fed
PA
6109 error (_("Remote server does not support stopping threads"));
6110
f91d3df5
PA
6111 if (ptid_equal (ptid, minus_one_ptid)
6112 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
6113 p += xsnprintf (p, endp - p, "vCont;t");
6114 else
6115 {
6116 ptid_t nptid;
6117
74531fed
PA
6118 p += xsnprintf (p, endp - p, "vCont;t:");
6119
6120 if (ptid_is_pid (ptid))
6121 /* All (-1) threads of process. */
ba348170 6122 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
74531fed
PA
6123 else
6124 {
6125 /* Small optimization: if we already have a stop reply for
6126 this thread, no use in telling the stub we want this
6127 stopped. */
6128 if (peek_stop_reply (ptid))
6129 return;
6130
6131 nptid = ptid;
6132 }
6133
a9cbf802 6134 write_ptid (p, endp, nptid);
74531fed
PA
6135 }
6136
6137 /* In non-stop, we get an immediate OK reply. The stop reply will
6138 come in asynchronously by notification. */
6139 putpkt (rs->buf);
6140 getpkt (&rs->buf, &rs->buf_size, 0);
6141 if (strcmp (rs->buf, "OK") != 0)
6142 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
6143}
6144
bfedc46a
PA
6145/* All-stop version of target_interrupt. Sends a break or a ^C to
6146 interrupt the remote target. It is undefined which thread of which
6147 process reports the interrupt. */
74531fed
PA
6148
6149static void
de979965 6150remote_interrupt_as (void)
74531fed
PA
6151{
6152 struct remote_state *rs = get_remote_state ();
6153
3a29589a
DJ
6154 rs->ctrlc_pending_p = 1;
6155
74531fed
PA
6156 /* If the inferior is stopped already, but the core didn't know
6157 about it yet, just ignore the request. The cached wait status
6158 will be collected in remote_wait. */
6159 if (rs->cached_wait_status)
6160 return;
6161
9a7071a8
JB
6162 /* Send interrupt_sequence to remote target. */
6163 send_interrupt_sequence ();
74531fed
PA
6164}
6165
de979965
PA
6166/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
6167 the remote target. It is undefined which thread of which process
e42de8c7
PA
6168 reports the interrupt. Throws an error if the packet is not
6169 supported by the server. */
de979965 6170
e42de8c7 6171static void
de979965
PA
6172remote_interrupt_ns (void)
6173{
6174 struct remote_state *rs = get_remote_state ();
6175 char *p = rs->buf;
6176 char *endp = rs->buf + get_remote_packet_size ();
6177
6178 xsnprintf (p, endp - p, "vCtrlC");
6179
6180 /* In non-stop, we get an immediate OK reply. The stop reply will
6181 come in asynchronously by notification. */
6182 putpkt (rs->buf);
6183 getpkt (&rs->buf, &rs->buf_size, 0);
6184
6185 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
6186 {
6187 case PACKET_OK:
6188 break;
6189 case PACKET_UNKNOWN:
e42de8c7 6190 error (_("No support for interrupting the remote target."));
de979965
PA
6191 case PACKET_ERROR:
6192 error (_("Interrupting target failed: %s"), rs->buf);
6193 }
de979965
PA
6194}
6195
bfedc46a 6196/* Implement the to_stop function for the remote targets. */
74531fed 6197
c906108c 6198static void
1eab8a48 6199remote_stop (struct target_ops *self, ptid_t ptid)
c906108c 6200{
7a292a7a 6201 if (remote_debug)
0f71a2f6 6202 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 6203
6efcd9a8 6204 if (target_is_non_stop_p ())
74531fed 6205 remote_stop_ns (ptid);
c906108c 6206 else
bfedc46a
PA
6207 {
6208 /* We don't currently have a way to transparently pause the
6209 remote target in all-stop mode. Interrupt it instead. */
de979965 6210 remote_interrupt_as ();
bfedc46a
PA
6211 }
6212}
6213
6214/* Implement the to_interrupt function for the remote targets. */
6215
6216static void
6217remote_interrupt (struct target_ops *self, ptid_t ptid)
6218{
e42de8c7
PA
6219 struct remote_state *rs = get_remote_state ();
6220
bfedc46a
PA
6221 if (remote_debug)
6222 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
6223
e42de8c7
PA
6224 if (target_is_non_stop_p ())
6225 remote_interrupt_ns ();
bfedc46a 6226 else
e42de8c7 6227 remote_interrupt_as ();
c906108c
SS
6228}
6229
93692b58
PA
6230/* Implement the to_pass_ctrlc function for the remote targets. */
6231
6232static void
6233remote_pass_ctrlc (struct target_ops *self)
6234{
6235 struct remote_state *rs = get_remote_state ();
6236
6237 if (remote_debug)
6238 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
6239
6240 /* If we're starting up, we're not fully synced yet. Quit
6241 immediately. */
6242 if (rs->starting_up)
6243 quit ();
6244 /* If ^C has already been sent once, offer to disconnect. */
6245 else if (rs->ctrlc_pending_p)
6246 interrupt_query ();
6247 else
6248 target_interrupt (inferior_ptid);
6249}
6250
c906108c
SS
6251/* Ask the user what to do when an interrupt is received. */
6252
6253static void
fba45db2 6254interrupt_query (void)
c906108c 6255{
abc56d60 6256 struct remote_state *rs = get_remote_state ();
c906108c 6257
abc56d60 6258 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 6259 {
abc56d60
PA
6260 if (query (_("The target is not responding to interrupt requests.\n"
6261 "Stop debugging it? ")))
74531fed 6262 {
78a095c3 6263 remote_unpush_target ();
abc56d60 6264 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
6265 }
6266 }
abc56d60
PA
6267 else
6268 {
6269 if (query (_("Interrupted while waiting for the program.\n"
6270 "Give up waiting? ")))
6271 quit ();
6272 }
c906108c
SS
6273}
6274
6426a772
JM
6275/* Enable/disable target terminal ownership. Most targets can use
6276 terminal groups to control terminal ownership. Remote targets are
6277 different in that explicit transfer of ownership to/from GDB/target
23860348 6278 is required. */
6426a772
JM
6279
6280static void
d2f640d4 6281remote_terminal_inferior (struct target_ops *self)
6426a772 6282{
d9d2d8b6
PA
6283 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
6284 idempotent. The event-loop GDB talking to an asynchronous target
6285 with a synchronous command calls this function from both
6286 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
6287 transfer the terminal to the target when it shouldn't this guard
6288 can go away. */
6426a772
JM
6289 if (!remote_async_terminal_ours_p)
6290 return;
6426a772 6291 remote_async_terminal_ours_p = 0;
6426a772
JM
6292 /* NOTE: At this point we could also register our selves as the
6293 recipient of all input. Any characters typed could then be
23860348 6294 passed on down to the target. */
6426a772
JM
6295}
6296
6297static void
e3594fd1 6298remote_terminal_ours (struct target_ops *self)
6426a772 6299{
75c99385 6300 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
6301 if (remote_async_terminal_ours_p)
6302 return;
6426a772
JM
6303 remote_async_terminal_ours_p = 1;
6304}
6305
176a6961 6306static void
917317f4 6307remote_console_output (char *msg)
c906108c
SS
6308{
6309 char *p;
6310
c5aa993b 6311 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
6312 {
6313 char tb[2];
6314 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 6315
c906108c
SS
6316 tb[0] = c;
6317 tb[1] = 0;
43ff13b4 6318 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 6319 }
00db5b94
PA
6320 gdb_flush (gdb_stdtarg);
6321}
74531fed 6322
74531fed
PA
6323DEF_VEC_O(cached_reg_t);
6324
722247f1 6325typedef struct stop_reply
74531fed 6326{
722247f1 6327 struct notif_event base;
74531fed 6328
722247f1 6329 /* The identifier of the thread about this event */
74531fed
PA
6330 ptid_t ptid;
6331
340e3c99 6332 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6333 connection, represented by a remote_state object, is closed,
6334 all the associated stop_reply events should be released. */
6335 struct remote_state *rs;
6336
74531fed
PA
6337 struct target_waitstatus ws;
6338
15148d6a
PA
6339 /* Expedited registers. This makes remote debugging a bit more
6340 efficient for those targets that provide critical registers as
6341 part of their normal status mechanism (as another roundtrip to
6342 fetch them is avoided). */
74531fed
PA
6343 VEC(cached_reg_t) *regcache;
6344
f7e6eed5
PA
6345 enum target_stop_reason stop_reason;
6346
74531fed
PA
6347 CORE_ADDR watch_data_address;
6348
dc146f7c 6349 int core;
722247f1 6350} *stop_reply_p;
a744cf53 6351
722247f1
YQ
6352DECLARE_QUEUE_P (stop_reply_p);
6353DEFINE_QUEUE_P (stop_reply_p);
6354/* The list of already fetched and acknowledged stop events. This
6355 queue is used for notification Stop, and other notifications
6356 don't need queue for their events, because the notification events
6357 of Stop can't be consumed immediately, so that events should be
6358 queued first, and be consumed by remote_wait_{ns,as} one per
6359 time. Other notifications can consume their events immediately,
6360 so queue is not needed for them. */
6361static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
6362
6363static void
6364stop_reply_xfree (struct stop_reply *r)
6365{
f48ff2a7 6366 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6367}
6368
221e1a37
PA
6369/* Return the length of the stop reply queue. */
6370
6371static int
6372stop_reply_queue_length (void)
6373{
6374 return QUEUE_length (stop_reply_p, stop_reply_queue);
6375}
6376
722247f1
YQ
6377static void
6378remote_notif_stop_parse (struct notif_client *self, char *buf,
6379 struct notif_event *event)
6380{
6381 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6382}
6383
6384static void
6385remote_notif_stop_ack (struct notif_client *self, char *buf,
6386 struct notif_event *event)
6387{
6388 struct stop_reply *stop_reply = (struct stop_reply *) event;
6389
6390 /* acknowledge */
f5c4fcd9 6391 putpkt (self->ack_command);
722247f1
YQ
6392
6393 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6394 /* We got an unknown stop reply. */
6395 error (_("Unknown stop reply"));
6396
6397 push_stop_reply (stop_reply);
6398}
6399
6400static int
6401remote_notif_stop_can_get_pending_events (struct notif_client *self)
6402{
6403 /* We can't get pending events in remote_notif_process for
6404 notification stop, and we have to do this in remote_wait_ns
6405 instead. If we fetch all queued events from stub, remote stub
6406 may exit and we have no chance to process them back in
6407 remote_wait_ns. */
6408 mark_async_event_handler (remote_async_inferior_event_token);
6409 return 0;
6410}
6411
6412static void
6413stop_reply_dtr (struct notif_event *event)
6414{
6415 struct stop_reply *r = (struct stop_reply *) event;
d1dff226
AH
6416 cached_reg_t *reg;
6417 int ix;
6418
6419 for (ix = 0;
6420 VEC_iterate (cached_reg_t, r->regcache, ix, reg);
6421 ix++)
6422 xfree (reg->data);
722247f1
YQ
6423
6424 VEC_free (cached_reg_t, r->regcache);
6425}
6426
6427static struct notif_event *
6428remote_notif_stop_alloc_reply (void)
6429{
8d749320
SM
6430 /* We cast to a pointer to the "base class". */
6431 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6432
6433 r->dtr = stop_reply_dtr;
6434
6435 return r;
6436}
6437
6438/* A client of notification Stop. */
6439
6440struct notif_client notif_client_stop =
6441{
6442 "Stop",
6443 "vStopped",
6444 remote_notif_stop_parse,
6445 remote_notif_stop_ack,
6446 remote_notif_stop_can_get_pending_events,
6447 remote_notif_stop_alloc_reply,
f48ff2a7 6448 REMOTE_NOTIF_STOP,
722247f1
YQ
6449};
6450
6451/* A parameter to pass data in and out. */
6452
6453struct queue_iter_param
6454{
6455 void *input;
6456 struct stop_reply *output;
6457};
6458
85ad3aaf 6459/* Determine if THREAD_PTID is a pending fork parent thread. ARG contains
cbb8991c
DB
6460 the pid of the process that owns the threads we want to check, or
6461 -1 if we want to check all threads. */
6462
6463static int
6464is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6465 ptid_t thread_ptid)
6466{
6467 if (ws->kind == TARGET_WAITKIND_FORKED
6468 || ws->kind == TARGET_WAITKIND_VFORKED)
6469 {
6470 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6471 return 1;
6472 }
6473
6474 return 0;
6475}
6476
85ad3aaf
PA
6477/* Return the thread's pending status used to determine whether the
6478 thread is a fork parent stopped at a fork event. */
6479
6480static struct target_waitstatus *
6481thread_pending_fork_status (struct thread_info *thread)
6482{
6483 if (thread->suspend.waitstatus_pending_p)
6484 return &thread->suspend.waitstatus;
6485 else
6486 return &thread->pending_follow;
6487}
6488
6489/* Determine if THREAD is a pending fork parent thread. */
6490
6491static int
6492is_pending_fork_parent_thread (struct thread_info *thread)
6493{
6494 struct target_waitstatus *ws = thread_pending_fork_status (thread);
6495 int pid = -1;
6496
6497 return is_pending_fork_parent (ws, pid, thread->ptid);
6498}
6499
cbb8991c
DB
6500/* Check whether EVENT is a fork event, and if it is, remove the
6501 fork child from the context list passed in DATA. */
6502
6503static int
6504remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6505 QUEUE_ITER (stop_reply_p) *iter,
6506 stop_reply_p event,
6507 void *data)
6508{
19ba03f4
SM
6509 struct queue_iter_param *param = (struct queue_iter_param *) data;
6510 struct threads_listing_context *context
6511 = (struct threads_listing_context *) param->input;
cbb8991c
DB
6512
6513 if (event->ws.kind == TARGET_WAITKIND_FORKED
65706a29
PA
6514 || event->ws.kind == TARGET_WAITKIND_VFORKED
6515 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6516 threads_listing_context_remove (&event->ws, context);
cbb8991c
DB
6517
6518 return 1;
6519}
6520
6521/* If CONTEXT contains any fork child threads that have not been
6522 reported yet, remove them from the CONTEXT list. If such a
6523 thread exists it is because we are stopped at a fork catchpoint
6524 and have not yet called follow_fork, which will set up the
6525 host-side data structures for the new process. */
6526
6527static void
6528remove_new_fork_children (struct threads_listing_context *context)
6529{
6530 struct thread_info * thread;
6531 int pid = -1;
6532 struct notif_client *notif = &notif_client_stop;
6533 struct queue_iter_param param;
6534
6535 /* For any threads stopped at a fork event, remove the corresponding
6536 fork child threads from the CONTEXT list. */
6537 ALL_NON_EXITED_THREADS (thread)
6538 {
85ad3aaf 6539 struct target_waitstatus *ws = thread_pending_fork_status (thread);
cbb8991c
DB
6540
6541 if (is_pending_fork_parent (ws, pid, thread->ptid))
6542 {
6543 threads_listing_context_remove (ws, context);
6544 }
6545 }
6546
6547 /* Check for any pending fork events (not reported or processed yet)
6548 in process PID and remove those fork child threads from the
6549 CONTEXT list as well. */
6550 remote_notif_get_pending_events (notif);
6551 param.input = context;
6552 param.output = NULL;
6553 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6554 remove_child_of_pending_fork, &param);
6555}
6556
85ad3aaf
PA
6557/* Check whether EVENT would prevent a global or process wildcard
6558 vCont action. */
6559
6560static int
6561check_pending_event_prevents_wildcard_vcont_callback
6562 (QUEUE (stop_reply_p) *q,
6563 QUEUE_ITER (stop_reply_p) *iter,
6564 stop_reply_p event,
6565 void *data)
6566{
6567 struct inferior *inf;
6568 int *may_global_wildcard_vcont = (int *) data;
6569
6570 if (event->ws.kind == TARGET_WAITKIND_NO_RESUMED
6571 || event->ws.kind == TARGET_WAITKIND_NO_HISTORY)
6572 return 1;
6573
6574 if (event->ws.kind == TARGET_WAITKIND_FORKED
6575 || event->ws.kind == TARGET_WAITKIND_VFORKED)
6576 *may_global_wildcard_vcont = 0;
6577
6578 inf = find_inferior_ptid (event->ptid);
6579
6580 /* This may be the first time we heard about this process.
6581 Regardless, we must not do a global wildcard resume, otherwise
6582 we'd resume this process too. */
6583 *may_global_wildcard_vcont = 0;
6584 if (inf != NULL)
6585 inf->priv->may_wildcard_vcont = 0;
6586
6587 return 1;
6588}
6589
6590/* Check whether any event pending in the vStopped queue would prevent
6591 a global or process wildcard vCont action. Clear
6592 *may_global_wildcard if we can't do a global wildcard (vCont;c),
6593 and clear the event inferior's may_wildcard_vcont flag if we can't
6594 do a process-wide wildcard resume (vCont;c:pPID.-1). */
6595
6596static void
6597check_pending_events_prevent_wildcard_vcont (int *may_global_wildcard)
6598{
6599 struct notif_client *notif = &notif_client_stop;
6600
6601 remote_notif_get_pending_events (notif);
6602 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6603 check_pending_event_prevents_wildcard_vcont_callback,
6604 may_global_wildcard);
6605}
6606
f48ff2a7
YQ
6607/* Remove stop replies in the queue if its pid is equal to the given
6608 inferior's pid. */
722247f1
YQ
6609
6610static int
f48ff2a7
YQ
6611remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6612 QUEUE_ITER (stop_reply_p) *iter,
6613 stop_reply_p event,
6614 void *data)
722247f1 6615{
19ba03f4
SM
6616 struct queue_iter_param *param = (struct queue_iter_param *) data;
6617 struct inferior *inf = (struct inferior *) param->input;
722247f1 6618
f48ff2a7 6619 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
6620 {
6621 stop_reply_xfree (event);
6622 QUEUE_remove_elem (stop_reply_p, q, iter);
6623 }
6624
6625 return 1;
6626}
6627
f48ff2a7 6628/* Discard all pending stop replies of inferior INF. */
c906108c 6629
74531fed 6630static void
5f4cf0bb 6631discard_pending_stop_replies (struct inferior *inf)
c906108c 6632{
722247f1 6633 struct queue_iter_param param;
f48ff2a7
YQ
6634 struct stop_reply *reply;
6635 struct remote_state *rs = get_remote_state ();
6636 struct remote_notif_state *rns = rs->notif_state;
6637
6638 /* This function can be notified when an inferior exists. When the
6639 target is not remote, the notification state is NULL. */
6640 if (rs->remote_desc == NULL)
6641 return;
6642
6643 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 6644
74531fed 6645 /* Discard the in-flight notification. */
f48ff2a7 6646 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 6647 {
722247f1 6648 stop_reply_xfree (reply);
f48ff2a7 6649 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 6650 }
c906108c 6651
722247f1
YQ
6652 param.input = inf;
6653 param.output = NULL;
74531fed
PA
6654 /* Discard the stop replies we have already pulled with
6655 vStopped. */
722247f1 6656 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
6657 remove_stop_reply_for_inferior, &param);
6658}
6659
bcc75809
YQ
6660/* If its remote state is equal to the given remote state,
6661 remove EVENT from the stop reply queue. */
6662
6663static int
6664remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6665 QUEUE_ITER (stop_reply_p) *iter,
6666 stop_reply_p event,
6667 void *data)
6668{
19ba03f4
SM
6669 struct queue_iter_param *param = (struct queue_iter_param *) data;
6670 struct remote_state *rs = (struct remote_state *) param->input;
bcc75809
YQ
6671
6672 if (event->rs == rs)
6673 {
6674 stop_reply_xfree (event);
6675 QUEUE_remove_elem (stop_reply_p, q, iter);
6676 }
6677
6678 return 1;
6679}
6680
6681/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
6682
6683static void
bcc75809 6684discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
6685{
6686 struct queue_iter_param param;
6687
bcc75809 6688 param.input = rs;
f48ff2a7
YQ
6689 param.output = NULL;
6690 /* Discard the stop replies we have already pulled with
6691 vStopped. */
6692 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 6693 remove_stop_reply_of_remote_state, &param);
722247f1 6694}
74531fed 6695
722247f1
YQ
6696/* A parameter to pass data in and out. */
6697
6698static int
6699remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6700 QUEUE_ITER (stop_reply_p) *iter,
6701 stop_reply_p event,
6702 void *data)
6703{
19ba03f4
SM
6704 struct queue_iter_param *param = (struct queue_iter_param *) data;
6705 ptid_t *ptid = (ptid_t *) param->input;
722247f1
YQ
6706
6707 if (ptid_match (event->ptid, *ptid))
6708 {
6709 param->output = event;
6710 QUEUE_remove_elem (stop_reply_p, q, iter);
6711 return 0;
c8e38a49 6712 }
722247f1
YQ
6713
6714 return 1;
74531fed 6715}
43ff13b4 6716
722247f1
YQ
6717/* Remove the first reply in 'stop_reply_queue' which matches
6718 PTID. */
2e9f7625 6719
722247f1
YQ
6720static struct stop_reply *
6721remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 6722{
722247f1
YQ
6723 struct queue_iter_param param;
6724
6725 param.input = &ptid;
6726 param.output = NULL;
6727
6728 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6729 remote_notif_remove_once_on_match, &param);
6730 if (notif_debug)
6731 fprintf_unfiltered (gdb_stdlog,
6732 "notif: discard queued event: 'Stop' in %s\n",
6733 target_pid_to_str (ptid));
a744cf53 6734
722247f1 6735 return param.output;
74531fed 6736}
75c99385 6737
74531fed
PA
6738/* Look for a queued stop reply belonging to PTID. If one is found,
6739 remove it from the queue, and return it. Returns NULL if none is
6740 found. If there are still queued events left to process, tell the
6741 event loop to get back to target_wait soon. */
e24a49d8 6742
74531fed
PA
6743static struct stop_reply *
6744queued_stop_reply (ptid_t ptid)
6745{
722247f1 6746 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 6747
722247f1 6748 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
6749 /* There's still at least an event left. */
6750 mark_async_event_handler (remote_async_inferior_event_token);
6751
722247f1 6752 return r;
74531fed
PA
6753}
6754
6755/* Push a fully parsed stop reply in the stop reply queue. Since we
6756 know that we now have at least one queued event left to pass to the
6757 core side, tell the event loop to get back to target_wait soon. */
6758
6759static void
6760push_stop_reply (struct stop_reply *new_event)
6761{
722247f1 6762 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 6763
722247f1
YQ
6764 if (notif_debug)
6765 fprintf_unfiltered (gdb_stdlog,
6766 "notif: push 'Stop' %s to queue %d\n",
6767 target_pid_to_str (new_event->ptid),
6768 QUEUE_length (stop_reply_p,
6769 stop_reply_queue));
74531fed
PA
6770
6771 mark_async_event_handler (remote_async_inferior_event_token);
6772}
6773
722247f1
YQ
6774static int
6775stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6776 QUEUE_ITER (stop_reply_p) *iter,
6777 struct stop_reply *event,
6778 void *data)
6779{
19ba03f4 6780 ptid_t *ptid = (ptid_t *) data;
722247f1
YQ
6781
6782 return !(ptid_equal (*ptid, event->ptid)
6783 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6784}
6785
74531fed
PA
6786/* Returns true if we have a stop reply for PTID. */
6787
6788static int
6789peek_stop_reply (ptid_t ptid)
6790{
722247f1
YQ
6791 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6792 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
6793}
6794
26d56a93
SL
6795/* Helper for remote_parse_stop_reply. Return nonzero if the substring
6796 starting with P and ending with PEND matches PREFIX. */
6797
6798static int
6799strprefix (const char *p, const char *pend, const char *prefix)
6800{
6801 for ( ; p < pend; p++, prefix++)
6802 if (*p != *prefix)
6803 return 0;
6804 return *prefix == '\0';
6805}
6806
74531fed
PA
6807/* Parse the stop reply in BUF. Either the function succeeds, and the
6808 result is stored in EVENT, or throws an error. */
6809
6810static void
6811remote_parse_stop_reply (char *buf, struct stop_reply *event)
6812{
6813 struct remote_arch_state *rsa = get_remote_arch_state ();
6814 ULONGEST addr;
6815 char *p;
94585166 6816 int skipregs = 0;
74531fed
PA
6817
6818 event->ptid = null_ptid;
bcc75809 6819 event->rs = get_remote_state ();
74531fed
PA
6820 event->ws.kind = TARGET_WAITKIND_IGNORE;
6821 event->ws.value.integer = 0;
f7e6eed5 6822 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 6823 event->regcache = NULL;
dc146f7c 6824 event->core = -1;
74531fed
PA
6825
6826 switch (buf[0])
6827 {
6828 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
6829 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6830 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6831 ss = signal number
6832 n... = register number
6833 r... = register contents
6834 */
6835
6836 p = &buf[3]; /* after Txx */
6837 while (*p)
6838 {
6839 char *p1;
cea39f65 6840 int fieldsize;
43ff13b4 6841
1f10ba14
PA
6842 p1 = strchr (p, ':');
6843 if (p1 == NULL)
6844 error (_("Malformed packet(a) (missing colon): %s\n\
6845Packet: '%s'\n"),
6846 p, buf);
6847 if (p == p1)
6848 error (_("Malformed packet(a) (missing register number): %s\n\
6849Packet: '%s'\n"),
6850 p, buf);
3c3bea1c 6851
1f10ba14
PA
6852 /* Some "registers" are actually extended stop information.
6853 Note if you're adding a new entry here: GDB 7.9 and
6854 earlier assume that all register "numbers" that start
6855 with an hex digit are real register numbers. Make sure
6856 the server only sends such a packet if it knows the
6857 client understands it. */
c8e38a49 6858
26d56a93 6859 if (strprefix (p, p1, "thread"))
1f10ba14 6860 event->ptid = read_ptid (++p1, &p);
82075af2
JS
6861 else if (strprefix (p, p1, "syscall_entry"))
6862 {
6863 ULONGEST sysno;
6864
6865 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6866 p = unpack_varlen_hex (++p1, &sysno);
6867 event->ws.value.syscall_number = (int) sysno;
6868 }
6869 else if (strprefix (p, p1, "syscall_return"))
6870 {
6871 ULONGEST sysno;
6872
6873 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6874 p = unpack_varlen_hex (++p1, &sysno);
6875 event->ws.value.syscall_number = (int) sysno;
6876 }
26d56a93
SL
6877 else if (strprefix (p, p1, "watch")
6878 || strprefix (p, p1, "rwatch")
6879 || strprefix (p, p1, "awatch"))
cea39f65 6880 {
f7e6eed5 6881 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
6882 p = unpack_varlen_hex (++p1, &addr);
6883 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 6884 }
26d56a93 6885 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
6886 {
6887 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6888
6889 /* Make sure the stub doesn't forget to indicate support
6890 with qSupported. */
6891 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6892 error (_("Unexpected swbreak stop reason"));
6893
6894 /* The value part is documented as "must be empty",
6895 though we ignore it, in case we ever decide to make
6896 use of it in a backward compatible way. */
8424cc97 6897 p = strchrnul (p1 + 1, ';');
f7e6eed5 6898 }
26d56a93 6899 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
6900 {
6901 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6902
6903 /* Make sure the stub doesn't forget to indicate support
6904 with qSupported. */
6905 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6906 error (_("Unexpected hwbreak stop reason"));
6907
6908 /* See above. */
8424cc97 6909 p = strchrnul (p1 + 1, ';');
f7e6eed5 6910 }
26d56a93 6911 else if (strprefix (p, p1, "library"))
cea39f65 6912 {
1f10ba14 6913 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 6914 p = strchrnul (p1 + 1, ';');
1f10ba14 6915 }
26d56a93 6916 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
6917 {
6918 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6919 /* p1 will indicate "begin" or "end", but it makes
6920 no difference for now, so ignore it. */
8424cc97 6921 p = strchrnul (p1 + 1, ';');
1f10ba14 6922 }
26d56a93 6923 else if (strprefix (p, p1, "core"))
1f10ba14
PA
6924 {
6925 ULONGEST c;
a744cf53 6926
1f10ba14
PA
6927 p = unpack_varlen_hex (++p1, &c);
6928 event->core = c;
cea39f65 6929 }
26d56a93 6930 else if (strprefix (p, p1, "fork"))
de0d863e
DB
6931 {
6932 event->ws.value.related_pid = read_ptid (++p1, &p);
6933 event->ws.kind = TARGET_WAITKIND_FORKED;
6934 }
26d56a93 6935 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
6936 {
6937 event->ws.value.related_pid = read_ptid (++p1, &p);
6938 event->ws.kind = TARGET_WAITKIND_VFORKED;
6939 }
26d56a93 6940 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
6941 {
6942 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 6943 p = strchrnul (p1 + 1, ';');
c269dbdb 6944 }
6ab24463 6945 else if (strprefix (p, p1, "exec"))
94585166
DB
6946 {
6947 ULONGEST ignored;
6948 char pathname[PATH_MAX];
6949 int pathlen;
6950
6951 /* Determine the length of the execd pathname. */
6952 p = unpack_varlen_hex (++p1, &ignored);
6953 pathlen = (p - p1) / 2;
6954
6955 /* Save the pathname for event reporting and for
6956 the next run command. */
6957 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6958 pathname[pathlen] = '\0';
6959
6960 /* This is freed during event handling. */
6961 event->ws.value.execd_pathname = xstrdup (pathname);
6962 event->ws.kind = TARGET_WAITKIND_EXECD;
6963
6964 /* Skip the registers included in this packet, since
6965 they may be for an architecture different from the
6966 one used by the original program. */
6967 skipregs = 1;
6968 }
65706a29
PA
6969 else if (strprefix (p, p1, "create"))
6970 {
6971 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 6972 p = strchrnul (p1 + 1, ';');
65706a29 6973 }
cea39f65
MS
6974 else
6975 {
1f10ba14
PA
6976 ULONGEST pnum;
6977 char *p_temp;
6978
94585166
DB
6979 if (skipregs)
6980 {
8424cc97 6981 p = strchrnul (p1 + 1, ';');
94585166
DB
6982 p++;
6983 continue;
6984 }
6985
1f10ba14
PA
6986 /* Maybe a real ``P'' register number. */
6987 p_temp = unpack_varlen_hex (p, &pnum);
6988 /* If the first invalid character is the colon, we got a
6989 register number. Otherwise, it's an unknown stop
6990 reason. */
6991 if (p_temp == p1)
6992 {
6993 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
6994 cached_reg_t cached_reg;
d1dff226 6995 struct gdbarch *gdbarch = target_gdbarch ();
43ff13b4 6996
1f10ba14
PA
6997 if (reg == NULL)
6998 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 6999Packet: '%s'\n"),
1f10ba14 7000 hex_string (pnum), p, buf);
c8e38a49 7001
1f10ba14 7002 cached_reg.num = reg->regnum;
d1dff226
AH
7003 cached_reg.data = (gdb_byte *)
7004 xmalloc (register_size (gdbarch, reg->regnum));
4100683b 7005
1f10ba14
PA
7006 p = p1 + 1;
7007 fieldsize = hex2bin (p, cached_reg.data,
d1dff226 7008 register_size (gdbarch, reg->regnum));
1f10ba14 7009 p += 2 * fieldsize;
d1dff226 7010 if (fieldsize < register_size (gdbarch, reg->regnum))
1f10ba14 7011 warning (_("Remote reply is too short: %s"), buf);
74531fed 7012
1f10ba14
PA
7013 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
7014 }
7015 else
7016 {
7017 /* Not a number. Silently skip unknown optional
7018 info. */
8424cc97 7019 p = strchrnul (p1 + 1, ';');
1f10ba14 7020 }
cea39f65 7021 }
c8e38a49 7022
cea39f65
MS
7023 if (*p != ';')
7024 error (_("Remote register badly formatted: %s\nhere: %s"),
7025 buf, p);
7026 ++p;
7027 }
5b5596ff
PA
7028
7029 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
7030 break;
7031
c8e38a49
PA
7032 /* fall through */
7033 case 'S': /* Old style status, just signal only. */
3a09da41
PA
7034 {
7035 int sig;
7036
7037 event->ws.kind = TARGET_WAITKIND_STOPPED;
7038 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
7039 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
7040 event->ws.value.sig = (enum gdb_signal) sig;
7041 else
7042 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
7043 }
c8e38a49 7044 break;
65706a29
PA
7045 case 'w': /* Thread exited. */
7046 {
7047 char *p;
7048 ULONGEST value;
7049
7050 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
7051 p = unpack_varlen_hex (&buf[1], &value);
7052 event->ws.value.integer = value;
7053 if (*p != ';')
7054 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 7055 event->ptid = read_ptid (++p, NULL);
65706a29
PA
7056 break;
7057 }
c8e38a49
PA
7058 case 'W': /* Target exited. */
7059 case 'X':
7060 {
7061 char *p;
7062 int pid;
7063 ULONGEST value;
82f73884 7064
c8e38a49
PA
7065 /* GDB used to accept only 2 hex chars here. Stubs should
7066 only send more if they detect GDB supports multi-process
7067 support. */
7068 p = unpack_varlen_hex (&buf[1], &value);
82f73884 7069
c8e38a49
PA
7070 if (buf[0] == 'W')
7071 {
7072 /* The remote process exited. */
74531fed
PA
7073 event->ws.kind = TARGET_WAITKIND_EXITED;
7074 event->ws.value.integer = value;
c8e38a49
PA
7075 }
7076 else
7077 {
7078 /* The remote process exited with a signal. */
74531fed 7079 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
7080 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
7081 event->ws.value.sig = (enum gdb_signal) value;
7082 else
7083 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 7084 }
82f73884 7085
c8e38a49
PA
7086 /* If no process is specified, assume inferior_ptid. */
7087 pid = ptid_get_pid (inferior_ptid);
7088 if (*p == '\0')
7089 ;
7090 else if (*p == ';')
7091 {
7092 p++;
7093
0b24eb2d 7094 if (*p == '\0')
82f73884 7095 ;
61012eef 7096 else if (startswith (p, "process:"))
82f73884 7097 {
c8e38a49 7098 ULONGEST upid;
a744cf53 7099
c8e38a49
PA
7100 p += sizeof ("process:") - 1;
7101 unpack_varlen_hex (p, &upid);
7102 pid = upid;
82f73884
PA
7103 }
7104 else
7105 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 7106 }
c8e38a49
PA
7107 else
7108 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
7109 event->ptid = pid_to_ptid (pid);
7110 }
7111 break;
f2faf941
PA
7112 case 'N':
7113 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
7114 event->ptid = minus_one_ptid;
7115 break;
74531fed
PA
7116 }
7117
6efcd9a8 7118 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
74531fed
PA
7119 error (_("No process or thread specified in stop reply: %s"), buf);
7120}
7121
722247f1
YQ
7122/* When the stub wants to tell GDB about a new notification reply, it
7123 sends a notification (%Stop, for example). Those can come it at
7124 any time, hence, we have to make sure that any pending
7125 putpkt/getpkt sequence we're making is finished, before querying
7126 the stub for more events with the corresponding ack command
7127 (vStopped, for example). E.g., if we started a vStopped sequence
7128 immediately upon receiving the notification, something like this
7129 could happen:
74531fed
PA
7130
7131 1.1) --> Hg 1
7132 1.2) <-- OK
7133 1.3) --> g
7134 1.4) <-- %Stop
7135 1.5) --> vStopped
7136 1.6) <-- (registers reply to step #1.3)
7137
7138 Obviously, the reply in step #1.6 would be unexpected to a vStopped
7139 query.
7140
796cb314 7141 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
7142 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
7143 doing whatever we were doing:
7144
7145 2.1) --> Hg 1
7146 2.2) <-- OK
7147 2.3) --> g
7148 2.4) <-- %Stop
7149 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
7150 2.5) <-- (registers reply to step #2.3)
7151
7152 Eventualy after step #2.5, we return to the event loop, which
7153 notices there's an event on the
7154 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
7155 associated callback --- the function below. At this point, we're
7156 always safe to start a vStopped sequence. :
7157
7158 2.6) --> vStopped
7159 2.7) <-- T05 thread:2
7160 2.8) --> vStopped
7161 2.9) --> OK
7162*/
7163
722247f1
YQ
7164void
7165remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
7166{
7167 struct remote_state *rs = get_remote_state ();
74531fed 7168
f48ff2a7 7169 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 7170 {
722247f1
YQ
7171 if (notif_debug)
7172 fprintf_unfiltered (gdb_stdlog,
7173 "notif: process: '%s' ack pending event\n",
7174 nc->name);
74531fed 7175
722247f1 7176 /* acknowledge */
f48ff2a7
YQ
7177 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
7178 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
7179
7180 while (1)
7181 {
7182 getpkt (&rs->buf, &rs->buf_size, 0);
7183 if (strcmp (rs->buf, "OK") == 0)
7184 break;
7185 else
722247f1 7186 remote_notif_ack (nc, rs->buf);
74531fed
PA
7187 }
7188 }
722247f1
YQ
7189 else
7190 {
7191 if (notif_debug)
7192 fprintf_unfiltered (gdb_stdlog,
7193 "notif: process: '%s' no pending reply\n",
7194 nc->name);
7195 }
74531fed
PA
7196}
7197
74531fed
PA
7198/* Called when it is decided that STOP_REPLY holds the info of the
7199 event that is to be returned to the core. This function always
7200 destroys STOP_REPLY. */
7201
7202static ptid_t
7203process_stop_reply (struct stop_reply *stop_reply,
7204 struct target_waitstatus *status)
7205{
7206 ptid_t ptid;
7207
7208 *status = stop_reply->ws;
7209 ptid = stop_reply->ptid;
7210
7211 /* If no thread/process was reported by the stub, assume the current
7212 inferior. */
7213 if (ptid_equal (ptid, null_ptid))
7214 ptid = inferior_ptid;
7215
5f3563ea 7216 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
7217 && status->kind != TARGET_WAITKIND_SIGNALLED
7218 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 7219 {
799a2abe 7220 struct private_thread_info *remote_thr;
ee154bee 7221
5f3563ea
PA
7222 /* Expedited registers. */
7223 if (stop_reply->regcache)
7224 {
217f1f79 7225 struct regcache *regcache
f5656ead 7226 = get_thread_arch_regcache (ptid, target_gdbarch ());
5f3563ea
PA
7227 cached_reg_t *reg;
7228 int ix;
7229
7230 for (ix = 0;
d1dff226 7231 VEC_iterate (cached_reg_t, stop_reply->regcache, ix, reg);
5f3563ea 7232 ix++)
d1dff226 7233 {
217f1f79 7234 regcache_raw_supply (regcache, reg->num, reg->data);
d1dff226
AH
7235 xfree (reg->data);
7236 }
7237
5f3563ea
PA
7238 VEC_free (cached_reg_t, stop_reply->regcache);
7239 }
74531fed 7240
1941c569 7241 remote_notice_new_inferior (ptid, 0);
85ad3aaf 7242 remote_thr = get_private_info_ptid (ptid);
799a2abe
PA
7243 remote_thr->core = stop_reply->core;
7244 remote_thr->stop_reason = stop_reply->stop_reason;
7245 remote_thr->watch_data_address = stop_reply->watch_data_address;
85ad3aaf 7246 remote_thr->vcont_resumed = 0;
74531fed
PA
7247 }
7248
74531fed
PA
7249 stop_reply_xfree (stop_reply);
7250 return ptid;
7251}
7252
7253/* The non-stop mode version of target_wait. */
7254
7255static ptid_t
47608cb1 7256remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7257{
7258 struct remote_state *rs = get_remote_state ();
74531fed
PA
7259 struct stop_reply *stop_reply;
7260 int ret;
fee9eda9 7261 int is_notif = 0;
74531fed
PA
7262
7263 /* If in non-stop mode, get out of getpkt even if a
7264 notification is received. */
7265
7266 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7267 0 /* forever */, &is_notif);
74531fed
PA
7268 while (1)
7269 {
fee9eda9 7270 if (ret != -1 && !is_notif)
74531fed
PA
7271 switch (rs->buf[0])
7272 {
7273 case 'E': /* Error of some sort. */
7274 /* We're out of sync with the target now. Did it continue
7275 or not? We can't tell which thread it was in non-stop,
7276 so just ignore this. */
7277 warning (_("Remote failure reply: %s"), rs->buf);
7278 break;
7279 case 'O': /* Console output. */
7280 remote_console_output (rs->buf + 1);
7281 break;
7282 default:
7283 warning (_("Invalid remote reply: %s"), rs->buf);
7284 break;
7285 }
7286
7287 /* Acknowledge a pending stop reply that may have arrived in the
7288 mean time. */
f48ff2a7 7289 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 7290 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
7291
7292 /* If indeed we noticed a stop reply, we're done. */
7293 stop_reply = queued_stop_reply (ptid);
7294 if (stop_reply != NULL)
7295 return process_stop_reply (stop_reply, status);
7296
47608cb1 7297 /* Still no event. If we're just polling for an event, then
74531fed 7298 return to the event loop. */
47608cb1 7299 if (options & TARGET_WNOHANG)
74531fed
PA
7300 {
7301 status->kind = TARGET_WAITKIND_IGNORE;
7302 return minus_one_ptid;
7303 }
7304
47608cb1 7305 /* Otherwise do a blocking wait. */
74531fed 7306 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 7307 1 /* forever */, &is_notif);
74531fed
PA
7308 }
7309}
7310
7311/* Wait until the remote machine stops, then return, storing status in
7312 STATUS just as `wait' would. */
7313
7314static ptid_t
47608cb1 7315remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
7316{
7317 struct remote_state *rs = get_remote_state ();
74531fed 7318 ptid_t event_ptid = null_ptid;
cea39f65 7319 char *buf;
74531fed
PA
7320 struct stop_reply *stop_reply;
7321
47608cb1
PA
7322 again:
7323
74531fed
PA
7324 status->kind = TARGET_WAITKIND_IGNORE;
7325 status->value.integer = 0;
7326
7327 stop_reply = queued_stop_reply (ptid);
7328 if (stop_reply != NULL)
7329 return process_stop_reply (stop_reply, status);
7330
7331 if (rs->cached_wait_status)
7332 /* Use the cached wait status, but only once. */
7333 rs->cached_wait_status = 0;
7334 else
7335 {
7336 int ret;
722247f1 7337 int is_notif;
567420d1
PA
7338 int forever = ((options & TARGET_WNOHANG) == 0
7339 && wait_forever_enabled_p);
7340
7341 if (!rs->waiting_for_stop_reply)
7342 {
7343 status->kind = TARGET_WAITKIND_NO_RESUMED;
7344 return minus_one_ptid;
7345 }
74531fed 7346
74531fed
PA
7347 /* FIXME: cagney/1999-09-27: If we're in async mode we should
7348 _never_ wait for ever -> test on target_is_async_p().
7349 However, before we do that we need to ensure that the caller
7350 knows how to take the target into/out of async mode. */
722247f1 7351 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 7352 forever, &is_notif);
722247f1
YQ
7353
7354 /* GDB gets a notification. Return to core as this event is
7355 not interesting. */
7356 if (ret != -1 && is_notif)
7357 return minus_one_ptid;
567420d1
PA
7358
7359 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
7360 return minus_one_ptid;
74531fed
PA
7361 }
7362
7363 buf = rs->buf;
7364
3a29589a
DJ
7365 /* Assume that the target has acknowledged Ctrl-C unless we receive
7366 an 'F' or 'O' packet. */
7367 if (buf[0] != 'F' && buf[0] != 'O')
7368 rs->ctrlc_pending_p = 0;
7369
74531fed
PA
7370 switch (buf[0])
7371 {
7372 case 'E': /* Error of some sort. */
7373 /* We're out of sync with the target now. Did it continue or
7374 not? Not is more likely, so report a stop. */
29090fb6
LM
7375 rs->waiting_for_stop_reply = 0;
7376
74531fed
PA
7377 warning (_("Remote failure reply: %s"), buf);
7378 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 7379 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
7380 break;
7381 case 'F': /* File-I/O request. */
e42e5352
YQ
7382 /* GDB may access the inferior memory while handling the File-I/O
7383 request, but we don't want GDB accessing memory while waiting
7384 for a stop reply. See the comments in putpkt_binary. Set
7385 waiting_for_stop_reply to 0 temporarily. */
7386 rs->waiting_for_stop_reply = 0;
3a29589a
DJ
7387 remote_fileio_request (buf, rs->ctrlc_pending_p);
7388 rs->ctrlc_pending_p = 0;
e42e5352
YQ
7389 /* GDB handled the File-I/O request, and the target is running
7390 again. Keep waiting for events. */
7391 rs->waiting_for_stop_reply = 1;
74531fed 7392 break;
f2faf941 7393 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 7394 {
29090fb6
LM
7395 struct stop_reply *stop_reply;
7396
7397 /* There is a stop reply to handle. */
7398 rs->waiting_for_stop_reply = 0;
7399
7400 stop_reply
722247f1
YQ
7401 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7402 rs->buf);
74531fed 7403
74531fed 7404 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7405 break;
7406 }
7407 case 'O': /* Console output. */
7408 remote_console_output (buf + 1);
c8e38a49
PA
7409 break;
7410 case '\0':
b73be471 7411 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7412 {
7413 /* Zero length reply means that we tried 'S' or 'C' and the
7414 remote system doesn't support it. */
7415 target_terminal_ours_for_output ();
7416 printf_filtered
7417 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7418 gdb_signal_to_name (rs->last_sent_signal));
7419 rs->last_sent_signal = GDB_SIGNAL_0;
c8e38a49
PA
7420 target_terminal_inferior ();
7421
f5c4fcd9
TT
7422 strcpy (buf, rs->last_sent_step ? "s" : "c");
7423 putpkt (buf);
c8e38a49 7424 break;
43ff13b4 7425 }
c8e38a49
PA
7426 /* else fallthrough */
7427 default:
7428 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7429 break;
43ff13b4 7430 }
c8e38a49 7431
f2faf941
PA
7432 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7433 return minus_one_ptid;
7434 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7435 {
7436 /* Nothing interesting happened. If we're doing a non-blocking
7437 poll, we're done. Otherwise, go back to waiting. */
7438 if (options & TARGET_WNOHANG)
7439 return minus_one_ptid;
7440 else
7441 goto again;
7442 }
74531fed
PA
7443 else if (status->kind != TARGET_WAITKIND_EXITED
7444 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
7445 {
7446 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 7447 record_currthread (rs, event_ptid);
82f73884
PA
7448 else
7449 event_ptid = inferior_ptid;
43ff13b4 7450 }
74531fed
PA
7451 else
7452 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7453 record_currthread (rs, minus_one_ptid);
79d7f229 7454
82f73884 7455 return event_ptid;
43ff13b4
JM
7456}
7457
74531fed
PA
7458/* Wait until the remote machine stops, then return, storing status in
7459 STATUS just as `wait' would. */
7460
c8e38a49 7461static ptid_t
117de6a9 7462remote_wait (struct target_ops *ops,
47608cb1 7463 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7464{
7465 ptid_t event_ptid;
7466
6efcd9a8 7467 if (target_is_non_stop_p ())
47608cb1 7468 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 7469 else
47608cb1 7470 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 7471
d9d41e78 7472 if (target_is_async_p ())
c8e38a49 7473 {
74531fed
PA
7474 /* If there are are events left in the queue tell the event loop
7475 to return here. */
722247f1 7476 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 7477 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 7478 }
c8e38a49
PA
7479
7480 return event_ptid;
7481}
7482
74ca34ce 7483/* Fetch a single register using a 'p' packet. */
c906108c 7484
b96ec7ac 7485static int
56be3814 7486fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac 7487{
9890e433 7488 struct gdbarch *gdbarch = get_regcache_arch (regcache);
b96ec7ac 7489 struct remote_state *rs = get_remote_state ();
2e9f7625 7490 char *buf, *p;
9890e433 7491 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
b96ec7ac
AC
7492 int i;
7493
4082afcc 7494 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7495 return 0;
7496
7497 if (reg->pnum == -1)
7498 return 0;
7499
2e9f7625 7500 p = rs->buf;
fcad0fa4 7501 *p++ = 'p';
74ca34ce 7502 p += hexnumstr (p, reg->pnum);
fcad0fa4 7503 *p++ = '\0';
1f4437a4
MS
7504 putpkt (rs->buf);
7505 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7506
2e9f7625
DJ
7507 buf = rs->buf;
7508
74ca34ce
DJ
7509 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7510 {
7511 case PACKET_OK:
7512 break;
7513 case PACKET_UNKNOWN:
7514 return 0;
7515 case PACKET_ERROR:
27a9c0bf
MS
7516 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7517 gdbarch_register_name (get_regcache_arch (regcache),
7518 reg->regnum),
7519 buf);
74ca34ce 7520 }
3f9a994c
JB
7521
7522 /* If this register is unfetchable, tell the regcache. */
7523 if (buf[0] == 'x')
8480adf2 7524 {
56be3814 7525 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 7526 return 1;
b96ec7ac 7527 }
b96ec7ac 7528
3f9a994c
JB
7529 /* Otherwise, parse and supply the value. */
7530 p = buf;
7531 i = 0;
7532 while (p[0] != 0)
7533 {
7534 if (p[1] == 0)
74ca34ce 7535 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7536
7537 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7538 p += 2;
7539 }
56be3814 7540 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 7541 return 1;
b96ec7ac
AC
7542}
7543
74ca34ce
DJ
7544/* Fetch the registers included in the target's 'g' packet. */
7545
29709017
DJ
7546static int
7547send_g_packet (void)
c906108c 7548{
d01949b6 7549 struct remote_state *rs = get_remote_state ();
cea39f65 7550 int buf_len;
c906108c 7551
bba74b36 7552 xsnprintf (rs->buf, get_remote_packet_size (), "g");
74ca34ce 7553 remote_send (&rs->buf, &rs->buf_size);
c906108c 7554
29709017
DJ
7555 /* We can get out of synch in various cases. If the first character
7556 in the buffer is not a hex character, assume that has happened
7557 and try to fetch another packet to read. */
7558 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7559 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7560 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7561 && rs->buf[0] != 'x') /* New: unavailable register value. */
7562 {
7563 if (remote_debug)
7564 fprintf_unfiltered (gdb_stdlog,
7565 "Bad register packet; fetching a new packet\n");
7566 getpkt (&rs->buf, &rs->buf_size, 0);
7567 }
7568
74ca34ce
DJ
7569 buf_len = strlen (rs->buf);
7570
7571 /* Sanity check the received packet. */
7572 if (buf_len % 2 != 0)
7573 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
7574
7575 return buf_len / 2;
7576}
7577
7578static void
56be3814 7579process_g_packet (struct regcache *regcache)
29709017 7580{
4a22f64d 7581 struct gdbarch *gdbarch = get_regcache_arch (regcache);
29709017
DJ
7582 struct remote_state *rs = get_remote_state ();
7583 struct remote_arch_state *rsa = get_remote_arch_state ();
7584 int i, buf_len;
7585 char *p;
7586 char *regs;
7587
7588 buf_len = strlen (rs->buf);
7589
7590 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce 7591 if (buf_len > 2 * rsa->sizeof_g_packet)
fc809827
SM
7592 error (_("Remote 'g' packet reply is too long (expected %ld bytes, got %d "
7593 "bytes): %s"), rsa->sizeof_g_packet, buf_len / 2, rs->buf);
74ca34ce
DJ
7594
7595 /* Save the size of the packet sent to us by the target. It is used
7596 as a heuristic when determining the max size of packets that the
7597 target can safely receive. */
7598 if (rsa->actual_register_packet_size == 0)
7599 rsa->actual_register_packet_size = buf_len;
7600
7601 /* If this is smaller than we guessed the 'g' packet would be,
7602 update our records. A 'g' reply that doesn't include a register's
7603 value implies either that the register is not available, or that
7604 the 'p' packet must be used. */
7605 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7606 {
9dc193c3 7607 long sizeof_g_packet = buf_len / 2;
74ca34ce 7608
4a22f64d 7609 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7610 {
9dc193c3
LF
7611 long offset = rsa->regs[i].offset;
7612 long reg_size = register_size (gdbarch, i);
7613
74ca34ce
DJ
7614 if (rsa->regs[i].pnum == -1)
7615 continue;
7616
9dc193c3 7617 if (offset >= sizeof_g_packet)
74ca34ce 7618 rsa->regs[i].in_g_packet = 0;
9dc193c3
LF
7619 else if (offset + reg_size > sizeof_g_packet)
7620 error (_("Truncated register %d in remote 'g' packet"), i);
b96ec7ac 7621 else
74ca34ce 7622 rsa->regs[i].in_g_packet = 1;
b96ec7ac 7623 }
9dc193c3
LF
7624
7625 /* Looks valid enough, we can assume this is the correct length
7626 for a 'g' packet. It's important not to adjust
7627 rsa->sizeof_g_packet if we have truncated registers otherwise
7628 this "if" won't be run the next time the method is called
7629 with a packet of the same size and one of the internal errors
7630 below will trigger instead. */
7631 rsa->sizeof_g_packet = sizeof_g_packet;
74ca34ce 7632 }
b323314b 7633
224c3ddb 7634 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
7635
7636 /* Unimplemented registers read as all bits zero. */
ea9c271d 7637 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 7638
c906108c
SS
7639 /* Reply describes registers byte by byte, each byte encoded as two
7640 hex characters. Suck them all up, then supply them to the
7641 register cacheing/storage mechanism. */
7642
74ca34ce 7643 p = rs->buf;
ea9c271d 7644 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 7645 {
74ca34ce
DJ
7646 if (p[0] == 0 || p[1] == 0)
7647 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7648 internal_error (__FILE__, __LINE__,
9b20d036 7649 _("unexpected end of 'g' packet reply"));
74ca34ce 7650
c906108c 7651 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 7652 regs[i] = 0; /* 'x' */
c906108c
SS
7653 else
7654 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7655 p += 2;
7656 }
7657
a744cf53
MS
7658 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7659 {
7660 struct packet_reg *r = &rsa->regs[i];
9dc193c3 7661 long reg_size = register_size (gdbarch, i);
a744cf53
MS
7662
7663 if (r->in_g_packet)
7664 {
9dc193c3 7665 if ((r->offset + reg_size) * 2 > strlen (rs->buf))
a744cf53
MS
7666 /* This shouldn't happen - we adjusted in_g_packet above. */
7667 internal_error (__FILE__, __LINE__,
9b20d036 7668 _("unexpected end of 'g' packet reply"));
a744cf53
MS
7669 else if (rs->buf[r->offset * 2] == 'x')
7670 {
7671 gdb_assert (r->offset * 2 < strlen (rs->buf));
7672 /* The register isn't available, mark it as such (at
7673 the same time setting the value to zero). */
7674 regcache_raw_supply (regcache, r->regnum, NULL);
7675 }
7676 else
7677 regcache_raw_supply (regcache, r->regnum,
7678 regs + r->offset);
7679 }
7680 }
c906108c
SS
7681}
7682
29709017 7683static void
56be3814 7684fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
7685{
7686 send_g_packet ();
56be3814 7687 process_g_packet (regcache);
29709017
DJ
7688}
7689
e6e4e701
PA
7690/* Make the remote selected traceframe match GDB's selected
7691 traceframe. */
7692
7693static void
7694set_remote_traceframe (void)
7695{
7696 int newnum;
262e1174 7697 struct remote_state *rs = get_remote_state ();
e6e4e701 7698
262e1174 7699 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
7700 return;
7701
7702 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 7703 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
7704
7705 newnum = target_trace_find (tfind_number,
7706 get_traceframe_number (), 0, 0, NULL);
7707
7708 /* Should not happen. If it does, all bets are off. */
7709 if (newnum != get_traceframe_number ())
7710 warning (_("could not set remote traceframe"));
7711}
7712
74ca34ce 7713static void
28439f5e
PA
7714remote_fetch_registers (struct target_ops *ops,
7715 struct regcache *regcache, int regnum)
74ca34ce 7716{
74ca34ce
DJ
7717 struct remote_arch_state *rsa = get_remote_arch_state ();
7718 int i;
7719
e6e4e701 7720 set_remote_traceframe ();
bcc0c096 7721 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7722
7723 if (regnum >= 0)
7724 {
7725 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
a744cf53 7726
74ca34ce
DJ
7727 gdb_assert (reg != NULL);
7728
7729 /* If this register might be in the 'g' packet, try that first -
7730 we are likely to read more than one register. If this is the
7731 first 'g' packet, we might be overly optimistic about its
7732 contents, so fall back to 'p'. */
7733 if (reg->in_g_packet)
7734 {
56be3814 7735 fetch_registers_using_g (regcache);
74ca34ce
DJ
7736 if (reg->in_g_packet)
7737 return;
7738 }
7739
56be3814 7740 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
7741 return;
7742
7743 /* This register is not available. */
56be3814 7744 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
7745
7746 return;
7747 }
7748
56be3814 7749 fetch_registers_using_g (regcache);
74ca34ce 7750
4a22f64d 7751 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 7752 if (!rsa->regs[i].in_g_packet)
56be3814 7753 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
7754 {
7755 /* This register is not available. */
56be3814 7756 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
7757 }
7758}
7759
c906108c
SS
7760/* Prepare to store registers. Since we may send them all (using a
7761 'G' request), we have to read out the ones we don't want to change
7762 first. */
7763
c5aa993b 7764static void
f32dbf8c 7765remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 7766{
ea9c271d 7767 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 7768 int i;
cf0e1e0d 7769
c906108c 7770 /* Make sure the entire registers array is valid. */
4082afcc 7771 switch (packet_support (PACKET_P))
5a2468f5
JM
7772 {
7773 case PACKET_DISABLE:
7774 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 7775 /* Make sure all the necessary registers are cached. */
4a22f64d 7776 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ea9c271d 7777 if (rsa->regs[i].in_g_packet)
8e368124 7778 regcache_raw_update (regcache, rsa->regs[i].regnum);
5a2468f5
JM
7779 break;
7780 case PACKET_ENABLE:
7781 break;
7782 }
7783}
7784
ad10f812 7785/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 7786 packet was not recognized. */
5a2468f5
JM
7787
7788static int
1f4437a4
MS
7789store_register_using_P (const struct regcache *regcache,
7790 struct packet_reg *reg)
5a2468f5 7791{
4a22f64d 7792 struct gdbarch *gdbarch = get_regcache_arch (regcache);
d01949b6 7793 struct remote_state *rs = get_remote_state ();
5a2468f5 7794 /* Try storing a single register. */
6d820c5c 7795 char *buf = rs->buf;
9890e433 7796 gdb_byte *regp = (gdb_byte *) alloca (register_size (gdbarch, reg->regnum));
5a2468f5 7797 char *p;
5a2468f5 7798
4082afcc 7799 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
7800 return 0;
7801
7802 if (reg->pnum == -1)
7803 return 0;
7804
ea9c271d 7805 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 7806 p = buf + strlen (buf);
56be3814 7807 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 7808 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
7809 putpkt (rs->buf);
7810 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 7811
74ca34ce
DJ
7812 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7813 {
7814 case PACKET_OK:
7815 return 1;
7816 case PACKET_ERROR:
27a9c0bf
MS
7817 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7818 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
7819 case PACKET_UNKNOWN:
7820 return 0;
7821 default:
7822 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7823 }
c906108c
SS
7824}
7825
23860348
MS
7826/* Store register REGNUM, or all registers if REGNUM == -1, from the
7827 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
7828
7829static void
56be3814 7830store_registers_using_G (const struct regcache *regcache)
c906108c 7831{
d01949b6 7832 struct remote_state *rs = get_remote_state ();
ea9c271d 7833 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 7834 gdb_byte *regs;
c906108c
SS
7835 char *p;
7836
193cb69f
AC
7837 /* Extract all the registers in the regcache copying them into a
7838 local buffer. */
7839 {
b323314b 7840 int i;
a744cf53 7841
224c3ddb 7842 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 7843 memset (regs, 0, rsa->sizeof_g_packet);
4a22f64d 7844 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
193cb69f 7845 {
ea9c271d 7846 struct packet_reg *r = &rsa->regs[i];
a744cf53 7847
b323314b 7848 if (r->in_g_packet)
56be3814 7849 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
7850 }
7851 }
c906108c
SS
7852
7853 /* Command describes registers byte by byte,
7854 each byte encoded as two hex characters. */
6d820c5c 7855 p = rs->buf;
193cb69f 7856 *p++ = 'G';
74ca34ce 7857 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
7858 putpkt (rs->buf);
7859 getpkt (&rs->buf, &rs->buf_size, 0);
7860 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
7861 error (_("Could not write registers; remote failure reply '%s'"),
7862 rs->buf);
c906108c 7863}
74ca34ce
DJ
7864
7865/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7866 of the register cache buffer. FIXME: ignores errors. */
7867
7868static void
28439f5e
PA
7869remote_store_registers (struct target_ops *ops,
7870 struct regcache *regcache, int regnum)
74ca34ce 7871{
74ca34ce
DJ
7872 struct remote_arch_state *rsa = get_remote_arch_state ();
7873 int i;
7874
e6e4e701 7875 set_remote_traceframe ();
bcc0c096 7876 set_general_thread (regcache_get_ptid (regcache));
74ca34ce
DJ
7877
7878 if (regnum >= 0)
7879 {
7880 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
a744cf53 7881
74ca34ce
DJ
7882 gdb_assert (reg != NULL);
7883
7884 /* Always prefer to store registers using the 'P' packet if
7885 possible; we often change only a small number of registers.
7886 Sometimes we change a larger number; we'd need help from a
7887 higher layer to know to use 'G'. */
56be3814 7888 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
7889 return;
7890
7891 /* For now, don't complain if we have no way to write the
7892 register. GDB loses track of unavailable registers too
7893 easily. Some day, this may be an error. We don't have
0df8b418 7894 any way to read the register, either... */
74ca34ce
DJ
7895 if (!reg->in_g_packet)
7896 return;
7897
56be3814 7898 store_registers_using_G (regcache);
74ca34ce
DJ
7899 return;
7900 }
7901
56be3814 7902 store_registers_using_G (regcache);
74ca34ce 7903
4a22f64d 7904 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 7905 if (!rsa->regs[i].in_g_packet)
56be3814 7906 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
7907 /* See above for why we do not issue an error here. */
7908 continue;
7909}
c906108c
SS
7910\f
7911
7912/* Return the number of hex digits in num. */
7913
7914static int
fba45db2 7915hexnumlen (ULONGEST num)
c906108c
SS
7916{
7917 int i;
7918
7919 for (i = 0; num != 0; i++)
7920 num >>= 4;
7921
325fac50 7922 return std::max (i, 1);
c906108c
SS
7923}
7924
2df3850c 7925/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
7926
7927static int
fba45db2 7928hexnumstr (char *buf, ULONGEST num)
c906108c 7929{
c906108c 7930 int len = hexnumlen (num);
a744cf53 7931
2df3850c
JM
7932 return hexnumnstr (buf, num, len);
7933}
7934
c906108c 7935
2df3850c 7936/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 7937
2df3850c 7938static int
fba45db2 7939hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
7940{
7941 int i;
7942
7943 buf[width] = '\0';
7944
7945 for (i = width - 1; i >= 0; i--)
c906108c 7946 {
c5aa993b 7947 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
7948 num >>= 4;
7949 }
7950
2df3850c 7951 return width;
c906108c
SS
7952}
7953
23860348 7954/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
7955
7956static CORE_ADDR
fba45db2 7957remote_address_masked (CORE_ADDR addr)
c906108c 7958{
883b9c6c 7959 unsigned int address_size = remote_address_size;
a744cf53 7960
911c95a5
UW
7961 /* If "remoteaddresssize" was not set, default to target address size. */
7962 if (!address_size)
f5656ead 7963 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
7964
7965 if (address_size > 0
7966 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
7967 {
7968 /* Only create a mask when that mask can safely be constructed
23860348 7969 in a ULONGEST variable. */
c906108c 7970 ULONGEST mask = 1;
a744cf53 7971
911c95a5 7972 mask = (mask << address_size) - 1;
c906108c
SS
7973 addr &= mask;
7974 }
7975 return addr;
7976}
7977
7978/* Determine whether the remote target supports binary downloading.
7979 This is accomplished by sending a no-op memory write of zero length
7980 to the target at the specified address. It does not suffice to send
23860348
MS
7981 the whole packet, since many stubs strip the eighth bit and
7982 subsequently compute a wrong checksum, which causes real havoc with
7983 remote_write_bytes.
7a292a7a 7984
96baa820 7985 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 7986 clean. In cases like this, the user should clear "remote
23860348 7987 X-packet". */
96baa820 7988
c906108c 7989static void
fba45db2 7990check_binary_download (CORE_ADDR addr)
c906108c 7991{
d01949b6 7992 struct remote_state *rs = get_remote_state ();
24b06219 7993
4082afcc 7994 switch (packet_support (PACKET_X))
c906108c 7995 {
96baa820
JM
7996 case PACKET_DISABLE:
7997 break;
7998 case PACKET_ENABLE:
7999 break;
8000 case PACKET_SUPPORT_UNKNOWN:
8001 {
96baa820 8002 char *p;
802188a7 8003
2e9f7625 8004 p = rs->buf;
96baa820
JM
8005 *p++ = 'X';
8006 p += hexnumstr (p, (ULONGEST) addr);
8007 *p++ = ',';
8008 p += hexnumstr (p, (ULONGEST) 0);
8009 *p++ = ':';
8010 *p = '\0';
802188a7 8011
2e9f7625 8012 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8013 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 8014
2e9f7625 8015 if (rs->buf[0] == '\0')
96baa820
JM
8016 {
8017 if (remote_debug)
8018 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8019 "binary downloading NOT "
8020 "supported by target\n");
444abaca 8021 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
8022 }
8023 else
8024 {
8025 if (remote_debug)
8026 fprintf_unfiltered (gdb_stdlog,
64b9b334 8027 "binary downloading supported by target\n");
444abaca 8028 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
8029 }
8030 break;
8031 }
c906108c
SS
8032 }
8033}
8034
124e13d9
SM
8035/* Helper function to resize the payload in order to try to get a good
8036 alignment. We try to write an amount of data such that the next write will
8037 start on an address aligned on REMOTE_ALIGN_WRITES. */
8038
8039static int
8040align_for_efficient_write (int todo, CORE_ADDR memaddr)
8041{
8042 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
8043}
8044
c906108c
SS
8045/* Write memory data directly to the remote machine.
8046 This does not inform the data cache; the data cache uses this.
a76d924d 8047 HEADER is the starting part of the packet.
c906108c
SS
8048 MEMADDR is the address in the remote memory space.
8049 MYADDR is the address of the buffer in our space.
124e13d9
SM
8050 LEN_UNITS is the number of addressable units to write.
8051 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
8052 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
8053 should send data as binary ('X'), or hex-encoded ('M').
8054
8055 The function creates packet of the form
8056 <HEADER><ADDRESS>,<LENGTH>:<DATA>
8057
124e13d9 8058 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
8059
8060 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
8061 are omitted.
8062
9b409511 8063 Return the transferred status, error or OK (an
124e13d9
SM
8064 'enum target_xfer_status' value). Save the number of addressable units
8065 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
8066
8067 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
8068 exchange between gdb and the stub could look like (?? in place of the
8069 checksum):
8070
8071 -> $m1000,4#??
8072 <- aaaabbbbccccdddd
8073
8074 -> $M1000,3:eeeeffffeeee#??
8075 <- OK
8076
8077 -> $m1000,4#??
8078 <- eeeeffffeeeedddd */
c906108c 8079
9b409511 8080static enum target_xfer_status
a76d924d 8081remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
124e13d9
SM
8082 const gdb_byte *myaddr, ULONGEST len_units,
8083 int unit_size, ULONGEST *xfered_len_units,
8084 char packet_format, int use_length)
c906108c 8085{
6d820c5c 8086 struct remote_state *rs = get_remote_state ();
cfd77fa1 8087 char *p;
a76d924d
DJ
8088 char *plen = NULL;
8089 int plenlen = 0;
124e13d9
SM
8090 int todo_units;
8091 int units_written;
8092 int payload_capacity_bytes;
8093 int payload_length_bytes;
a76d924d
DJ
8094
8095 if (packet_format != 'X' && packet_format != 'M')
8096 internal_error (__FILE__, __LINE__,
9b20d036 8097 _("remote_write_bytes_aux: bad packet format"));
c906108c 8098
124e13d9 8099 if (len_units == 0)
9b409511 8100 return TARGET_XFER_EOF;
b2182ed2 8101
124e13d9 8102 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 8103
6d820c5c
DJ
8104 /* The packet buffer will be large enough for the payload;
8105 get_memory_packet_size ensures this. */
a76d924d 8106 rs->buf[0] = '\0';
c906108c 8107
a257b5bb 8108 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
8109 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
8110
124e13d9 8111 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 8112 if (!use_length)
0df8b418 8113 /* The comma won't be used. */
124e13d9
SM
8114 payload_capacity_bytes += 1;
8115 payload_capacity_bytes -= strlen (header);
8116 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 8117
a76d924d 8118 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 8119
a76d924d
DJ
8120 strcat (rs->buf, header);
8121 p = rs->buf + strlen (header);
8122
8123 /* Compute a best guess of the number of bytes actually transfered. */
8124 if (packet_format == 'X')
c906108c 8125 {
23860348 8126 /* Best guess at number of bytes that will fit. */
325fac50
PA
8127 todo_units = std::min (len_units,
8128 (ULONGEST) payload_capacity_bytes / unit_size);
a76d924d 8129 if (use_length)
124e13d9 8130 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50 8131 todo_units = std::min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
8132 }
8133 else
8134 {
124e13d9 8135 /* Number of bytes that will fit. */
325fac50
PA
8136 todo_units
8137 = std::min (len_units,
8138 (ULONGEST) (payload_capacity_bytes / unit_size) / 2);
a76d924d 8139 if (use_length)
124e13d9 8140 payload_capacity_bytes -= hexnumlen (todo_units);
325fac50
PA
8141 todo_units = std::min (todo_units,
8142 (payload_capacity_bytes / unit_size) / 2);
917317f4 8143 }
a76d924d 8144
124e13d9 8145 if (todo_units <= 0)
3de11b2e 8146 internal_error (__FILE__, __LINE__,
405f8e94 8147 _("minimum packet size too small to write data"));
802188a7 8148
6765f3e5
DJ
8149 /* If we already need another packet, then try to align the end
8150 of this packet to a useful boundary. */
124e13d9
SM
8151 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
8152 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 8153
a257b5bb 8154 /* Append "<memaddr>". */
917317f4
JM
8155 memaddr = remote_address_masked (memaddr);
8156 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 8157
a76d924d
DJ
8158 if (use_length)
8159 {
8160 /* Append ",". */
8161 *p++ = ',';
802188a7 8162
124e13d9
SM
8163 /* Append the length and retain its location and size. It may need to be
8164 adjusted once the packet body has been created. */
a76d924d 8165 plen = p;
124e13d9 8166 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
8167 p += plenlen;
8168 }
a257b5bb
AC
8169
8170 /* Append ":". */
917317f4
JM
8171 *p++ = ':';
8172 *p = '\0';
802188a7 8173
a257b5bb 8174 /* Append the packet body. */
a76d924d 8175 if (packet_format == 'X')
917317f4 8176 {
917317f4
JM
8177 /* Binary mode. Send target system values byte by byte, in
8178 increasing byte addresses. Only escape certain critical
8179 characters. */
124e13d9
SM
8180 payload_length_bytes =
8181 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
8182 &units_written, payload_capacity_bytes);
6765f3e5 8183
124e13d9 8184 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
8185 a second try to keep the end of the packet aligned. Don't do
8186 this if the packet is tiny. */
124e13d9 8187 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 8188 {
124e13d9
SM
8189 int new_todo_units;
8190
8191 new_todo_units = align_for_efficient_write (units_written, memaddr);
8192
8193 if (new_todo_units != units_written)
8194 payload_length_bytes =
8195 remote_escape_output (myaddr, new_todo_units, unit_size,
8196 (gdb_byte *) p, &units_written,
8197 payload_capacity_bytes);
6765f3e5
DJ
8198 }
8199
124e13d9
SM
8200 p += payload_length_bytes;
8201 if (use_length && units_written < todo_units)
c906108c 8202 {
802188a7 8203 /* Escape chars have filled up the buffer prematurely,
124e13d9 8204 and we have actually sent fewer units than planned.
917317f4
JM
8205 Fix-up the length field of the packet. Use the same
8206 number of characters as before. */
124e13d9
SM
8207 plen += hexnumnstr (plen, (ULONGEST) units_written,
8208 plenlen);
917317f4 8209 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 8210 }
a76d924d
DJ
8211 }
8212 else
8213 {
917317f4
JM
8214 /* Normal mode: Send target system values byte by byte, in
8215 increasing byte addresses. Each byte is encoded as a two hex
8216 value. */
124e13d9
SM
8217 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
8218 units_written = todo_units;
c906108c 8219 }
802188a7 8220
2e9f7625 8221 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 8222 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8223
2e9f7625 8224 if (rs->buf[0] == 'E')
00d84524 8225 return TARGET_XFER_E_IO;
802188a7 8226
124e13d9
SM
8227 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
8228 send fewer units than we'd planned. */
8229 *xfered_len_units = (ULONGEST) units_written;
9b409511 8230 return TARGET_XFER_OK;
c906108c
SS
8231}
8232
a76d924d
DJ
8233/* Write memory data directly to the remote machine.
8234 This does not inform the data cache; the data cache uses this.
8235 MEMADDR is the address in the remote memory space.
8236 MYADDR is the address of the buffer in our space.
8237 LEN is the number of bytes.
8238
9b409511
YQ
8239 Return the transferred status, error or OK (an
8240 'enum target_xfer_status' value). Save the number of bytes
8241 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 8242
9b409511
YQ
8243static enum target_xfer_status
8244remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
124e13d9 8245 int unit_size, ULONGEST *xfered_len)
a76d924d 8246{
a121b7c1 8247 const char *packet_format = NULL;
a76d924d
DJ
8248
8249 /* Check whether the target supports binary download. */
8250 check_binary_download (memaddr);
8251
4082afcc 8252 switch (packet_support (PACKET_X))
a76d924d
DJ
8253 {
8254 case PACKET_ENABLE:
8255 packet_format = "X";
8256 break;
8257 case PACKET_DISABLE:
8258 packet_format = "M";
8259 break;
8260 case PACKET_SUPPORT_UNKNOWN:
8261 internal_error (__FILE__, __LINE__,
8262 _("remote_write_bytes: bad internal state"));
8263 default:
8264 internal_error (__FILE__, __LINE__, _("bad switch"));
8265 }
8266
8267 return remote_write_bytes_aux (packet_format,
124e13d9 8268 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 8269 packet_format[0], 1);
a76d924d
DJ
8270}
8271
9217e74e
YQ
8272/* Read memory data directly from the remote machine.
8273 This does not use the data cache; the data cache uses this.
8274 MEMADDR is the address in the remote memory space.
8275 MYADDR is the address of the buffer in our space.
124e13d9
SM
8276 LEN_UNITS is the number of addressable memory units to read..
8277 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
8278
8279 Return the transferred status, error or OK (an
8280 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
8281 transferred in *XFERED_LEN_UNITS.
8282
8283 See the comment of remote_write_bytes_aux for an example of
8284 memory read/write exchange between gdb and the stub. */
9217e74e
YQ
8285
8286static enum target_xfer_status
124e13d9
SM
8287remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
8288 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
8289{
8290 struct remote_state *rs = get_remote_state ();
124e13d9 8291 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 8292 char *p;
124e13d9
SM
8293 int todo_units;
8294 int decoded_bytes;
9217e74e 8295
124e13d9 8296 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
8297 /* The packet buffer will be large enough for the payload;
8298 get_memory_packet_size ensures this. */
8299
124e13d9 8300 /* Number of units that will fit. */
325fac50
PA
8301 todo_units = std::min (len_units,
8302 (ULONGEST) (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
8303
8304 /* Construct "m"<memaddr>","<len>". */
8305 memaddr = remote_address_masked (memaddr);
8306 p = rs->buf;
8307 *p++ = 'm';
8308 p += hexnumstr (p, (ULONGEST) memaddr);
8309 *p++ = ',';
124e13d9 8310 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
8311 *p = '\0';
8312 putpkt (rs->buf);
8313 getpkt (&rs->buf, &rs->buf_size, 0);
8314 if (rs->buf[0] == 'E'
8315 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
8316 && rs->buf[3] == '\0')
8317 return TARGET_XFER_E_IO;
8318 /* Reply describes memory byte by byte, each byte encoded as two hex
8319 characters. */
8320 p = rs->buf;
124e13d9 8321 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 8322 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 8323 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
9217e74e
YQ
8324 return TARGET_XFER_OK;
8325}
8326
b55fbac4
YQ
8327/* Using the set of read-only target sections of remote, read live
8328 read-only memory.
8acf9577
YQ
8329
8330 For interface/parameters/return description see target.h,
8331 to_xfer_partial. */
8332
8333static enum target_xfer_status
b55fbac4
YQ
8334remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
8335 ULONGEST memaddr, ULONGEST len,
124e13d9 8336 int unit_size, ULONGEST *xfered_len)
8acf9577
YQ
8337{
8338 struct target_section *secp;
8339 struct target_section_table *table;
8340
8341 secp = target_section_by_addr (ops, memaddr);
8342 if (secp != NULL
8343 && (bfd_get_section_flags (secp->the_bfd_section->owner,
8344 secp->the_bfd_section)
8345 & SEC_READONLY))
8346 {
8347 struct target_section *p;
8348 ULONGEST memend = memaddr + len;
8349
8350 table = target_get_section_table (ops);
8351
8352 for (p = table->sections; p < table->sections_end; p++)
8353 {
8354 if (memaddr >= p->addr)
8355 {
8356 if (memend <= p->endaddr)
8357 {
8358 /* Entire transfer is within this section. */
124e13d9 8359 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8360 xfered_len);
8acf9577
YQ
8361 }
8362 else if (memaddr >= p->endaddr)
8363 {
8364 /* This section ends before the transfer starts. */
8365 continue;
8366 }
8367 else
8368 {
8369 /* This section overlaps the transfer. Just do half. */
8370 len = p->endaddr - memaddr;
124e13d9 8371 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 8372 xfered_len);
8acf9577
YQ
8373 }
8374 }
8375 }
8376 }
8377
8378 return TARGET_XFER_EOF;
8379}
8380
9217e74e
YQ
8381/* Similar to remote_read_bytes_1, but it reads from the remote stub
8382 first if the requested memory is unavailable in traceframe.
8383 Otherwise, fall back to remote_read_bytes_1. */
c906108c 8384
9b409511 8385static enum target_xfer_status
8acf9577 8386remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
124e13d9
SM
8387 gdb_byte *myaddr, ULONGEST len, int unit_size,
8388 ULONGEST *xfered_len)
c906108c 8389{
6b6aa828 8390 if (len == 0)
96c4f946 8391 return TARGET_XFER_EOF;
b2182ed2 8392
8acf9577
YQ
8393 if (get_traceframe_number () != -1)
8394 {
8395 VEC(mem_range_s) *available;
8396
8397 /* If we fail to get the set of available memory, then the
8398 target does not support querying traceframe info, and so we
8399 attempt reading from the traceframe anyway (assuming the
8400 target implements the old QTro packet then). */
8401 if (traceframe_available_memory (&available, memaddr, len))
8402 {
8403 struct cleanup *old_chain;
8404
8405 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
8406
8407 if (VEC_empty (mem_range_s, available)
8408 || VEC_index (mem_range_s, available, 0)->start != memaddr)
8409 {
8410 enum target_xfer_status res;
8411
8412 /* Don't read into the traceframe's available
8413 memory. */
8414 if (!VEC_empty (mem_range_s, available))
8415 {
8416 LONGEST oldlen = len;
8417
8418 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
8419 gdb_assert (len <= oldlen);
8420 }
8421
8422 do_cleanups (old_chain);
8423
8424 /* This goes through the topmost target again. */
b55fbac4 8425 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
124e13d9 8426 len, unit_size, xfered_len);
8acf9577
YQ
8427 if (res == TARGET_XFER_OK)
8428 return TARGET_XFER_OK;
8429 else
8430 {
8431 /* No use trying further, we know some memory starting
8432 at MEMADDR isn't available. */
8433 *xfered_len = len;
8434 return TARGET_XFER_UNAVAILABLE;
8435 }
8436 }
8437
8438 /* Don't try to read more than how much is available, in
8439 case the target implements the deprecated QTro packet to
8440 cater for older GDBs (the target's knowledge of read-only
8441 sections may be outdated by now). */
8442 len = VEC_index (mem_range_s, available, 0)->length;
8443
8444 do_cleanups (old_chain);
8445 }
8446 }
8447
124e13d9 8448 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8449}
74531fed 8450
c906108c 8451\f
c906108c 8452
a76d924d
DJ
8453/* Sends a packet with content determined by the printf format string
8454 FORMAT and the remaining arguments, then gets the reply. Returns
8455 whether the packet was a success, a failure, or unknown. */
8456
77b64a49
PA
8457static enum packet_result remote_send_printf (const char *format, ...)
8458 ATTRIBUTE_PRINTF (1, 2);
8459
2c0b251b 8460static enum packet_result
a76d924d
DJ
8461remote_send_printf (const char *format, ...)
8462{
8463 struct remote_state *rs = get_remote_state ();
8464 int max_size = get_remote_packet_size ();
a76d924d 8465 va_list ap;
a744cf53 8466
a76d924d
DJ
8467 va_start (ap, format);
8468
8469 rs->buf[0] = '\0';
8470 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 8471 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8472
8473 if (putpkt (rs->buf) < 0)
8474 error (_("Communication problem with target."));
8475
8476 rs->buf[0] = '\0';
8477 getpkt (&rs->buf, &rs->buf_size, 0);
8478
8479 return packet_check_result (rs->buf);
8480}
8481
a76d924d
DJ
8482/* Flash writing can take quite some time. We'll set
8483 effectively infinite timeout for flash operations.
8484 In future, we'll need to decide on a better approach. */
8485static const int remote_flash_timeout = 1000;
8486
8487static void
8488remote_flash_erase (struct target_ops *ops,
8489 ULONGEST address, LONGEST length)
8490{
f5656ead 8491 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d 8492 enum packet_result ret;
2ec845e7
TT
8493 scoped_restore restore_timeout
8494 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
a76d924d
DJ
8495
8496 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8497 phex (address, addr_size),
a76d924d
DJ
8498 phex (length, 4));
8499 switch (ret)
8500 {
8501 case PACKET_UNKNOWN:
8502 error (_("Remote target does not support flash erase"));
8503 case PACKET_ERROR:
8504 error (_("Error erasing flash with vFlashErase packet"));
8505 default:
8506 break;
8507 }
a76d924d
DJ
8508}
8509
9b409511
YQ
8510static enum target_xfer_status
8511remote_flash_write (struct target_ops *ops, ULONGEST address,
8512 ULONGEST length, ULONGEST *xfered_len,
8513 const gdb_byte *data)
a76d924d 8514{
2ec845e7
TT
8515 scoped_restore restore_timeout
8516 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8517 return remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
8518 xfered_len,'X', 0);
a76d924d
DJ
8519}
8520
8521static void
8522remote_flash_done (struct target_ops *ops)
8523{
a76d924d 8524 int ret;
a76d924d 8525
2ec845e7
TT
8526 scoped_restore restore_timeout
8527 = make_scoped_restore (&remote_timeout, remote_flash_timeout);
8528
a76d924d 8529 ret = remote_send_printf ("vFlashDone");
a76d924d
DJ
8530
8531 switch (ret)
8532 {
8533 case PACKET_UNKNOWN:
8534 error (_("Remote target does not support vFlashDone"));
8535 case PACKET_ERROR:
8536 error (_("Error finishing flash operation"));
8537 default:
8538 break;
8539 }
8540}
8541
c906108c 8542static void
fba45db2 8543remote_files_info (struct target_ops *ignore)
c906108c
SS
8544{
8545 puts_filtered ("Debugging a target over a serial line.\n");
8546}
8547\f
8548/* Stuff for dealing with the packets which are part of this protocol.
8549 See comment at top of file for details. */
8550
1927e618
PA
8551/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8552 error to higher layers. Called when a serial error is detected.
8553 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8554 the system error message for errno at function entry and final dot
8555 for output compatibility with throw_perror_with_name. */
1927e618
PA
8556
8557static void
8558unpush_and_perror (const char *string)
8559{
d6cb50a2 8560 int saved_errno = errno;
1927e618
PA
8561
8562 remote_unpush_target ();
d6cb50a2
JK
8563 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8564 safe_strerror (saved_errno));
1927e618
PA
8565}
8566
048094ac
PA
8567/* Read a single character from the remote end. The current quit
8568 handler is overridden to avoid quitting in the middle of packet
8569 sequence, as that would break communication with the remote server.
8570 See remote_serial_quit_handler for more detail. */
c906108c
SS
8571
8572static int
fba45db2 8573readchar (int timeout)
c906108c
SS
8574{
8575 int ch;
5d93a237 8576 struct remote_state *rs = get_remote_state ();
048094ac 8577
2ec845e7
TT
8578 {
8579 scoped_restore restore_quit
8580 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
c906108c 8581
2ec845e7 8582 rs->got_ctrlc_during_io = 0;
c906108c 8583
2ec845e7 8584 ch = serial_readchar (rs->remote_desc, timeout);
048094ac 8585
2ec845e7
TT
8586 if (rs->got_ctrlc_during_io)
8587 set_quit_flag ();
8588 }
048094ac 8589
2acceee2 8590 if (ch >= 0)
0876f84a 8591 return ch;
2acceee2
JM
8592
8593 switch ((enum serial_rc) ch)
c906108c
SS
8594 {
8595 case SERIAL_EOF:
78a095c3 8596 remote_unpush_target ();
598d3636 8597 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8598 /* no return */
c906108c 8599 case SERIAL_ERROR:
1927e618
PA
8600 unpush_and_perror (_("Remote communication error. "
8601 "Target disconnected."));
2acceee2 8602 /* no return */
c906108c 8603 case SERIAL_TIMEOUT:
2acceee2 8604 break;
c906108c 8605 }
2acceee2 8606 return ch;
c906108c
SS
8607}
8608
c33e31fd 8609/* Wrapper for serial_write that closes the target and throws if
048094ac
PA
8610 writing fails. The current quit handler is overridden to avoid
8611 quitting in the middle of packet sequence, as that would break
8612 communication with the remote server. See
8613 remote_serial_quit_handler for more detail. */
c33e31fd
PA
8614
8615static void
8616remote_serial_write (const char *str, int len)
8617{
5d93a237 8618 struct remote_state *rs = get_remote_state ();
048094ac 8619
2ec845e7
TT
8620 scoped_restore restore_quit
8621 = make_scoped_restore (&quit_handler, remote_serial_quit_handler);
048094ac
PA
8622
8623 rs->got_ctrlc_during_io = 0;
5d93a237
TT
8624
8625 if (serial_write (rs->remote_desc, str, len))
c33e31fd 8626 {
1927e618
PA
8627 unpush_and_perror (_("Remote communication error. "
8628 "Target disconnected."));
c33e31fd 8629 }
048094ac
PA
8630
8631 if (rs->got_ctrlc_during_io)
8632 set_quit_flag ();
c33e31fd
PA
8633}
8634
6d820c5c
DJ
8635/* Send the command in *BUF to the remote machine, and read the reply
8636 into *BUF. Report an error if we get an error reply. Resize
8637 *BUF using xrealloc if necessary to hold the result, and update
8638 *SIZEOF_BUF. */
c906108c
SS
8639
8640static void
6d820c5c
DJ
8641remote_send (char **buf,
8642 long *sizeof_buf)
c906108c 8643{
6d820c5c 8644 putpkt (*buf);
c2d11a7d 8645 getpkt (buf, sizeof_buf, 0);
c906108c 8646
6d820c5c
DJ
8647 if ((*buf)[0] == 'E')
8648 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
8649}
8650
b3ced9ba
PA
8651/* Return a string representing an escaped version of BUF, of len N.
8652 E.g. \n is converted to \\n, \t to \\t, etc. */
6e5abd65 8653
b3ced9ba 8654static std::string
6e5abd65
PA
8655escape_buffer (const char *buf, int n)
8656{
d7e74731 8657 string_file stb;
6e5abd65 8658
d7e74731
PA
8659 stb.putstrn (buf, n, '\\');
8660 return std::move (stb.string ());
6e5abd65
PA
8661}
8662
c906108c
SS
8663/* Display a null-terminated packet on stdout, for debugging, using C
8664 string notation. */
8665
8666static void
baa336ce 8667print_packet (const char *buf)
c906108c
SS
8668{
8669 puts_filtered ("\"");
43e526b9 8670 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
8671 puts_filtered ("\"");
8672}
8673
8674int
baa336ce 8675putpkt (const char *buf)
c906108c
SS
8676{
8677 return putpkt_binary (buf, strlen (buf));
8678}
8679
8680/* Send a packet to the remote machine, with error checking. The data
23860348 8681 of the packet is in BUF. The string in BUF can be at most
ea9c271d 8682 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
8683 and for a possible /0 if we are debugging (remote_debug) and want
8684 to print the sent packet as a string. */
c906108c
SS
8685
8686static int
baa336ce 8687putpkt_binary (const char *buf, int cnt)
c906108c 8688{
2d717e4f 8689 struct remote_state *rs = get_remote_state ();
c906108c
SS
8690 int i;
8691 unsigned char csum = 0;
224c3ddb 8692 char *buf2 = (char *) xmalloc (cnt + 6);
a5c0808e 8693 struct cleanup *old_chain = make_cleanup (xfree, buf2);
085dd6e6 8694
c906108c
SS
8695 int ch;
8696 int tcount = 0;
8697 char *p;
8698
e24a49d8
PA
8699 /* Catch cases like trying to read memory or listing threads while
8700 we're waiting for a stop reply. The remote server wouldn't be
8701 ready to handle this request, so we'd hang and timeout. We don't
8702 have to worry about this in synchronous mode, because in that
8703 case it's not possible to issue a command while the target is
74531fed
PA
8704 running. This is not a problem in non-stop mode, because in that
8705 case, the stub is always ready to process serial input. */
6efcd9a8
PA
8706 if (!target_is_non_stop_p ()
8707 && target_is_async_p ()
8708 && rs->waiting_for_stop_reply)
9597b22a
DE
8709 {
8710 error (_("Cannot execute this command while the target is running.\n"
8711 "Use the \"interrupt\" command to stop the target\n"
8712 "and then try again."));
8713 }
e24a49d8 8714
2d717e4f
DJ
8715 /* We're sending out a new packet. Make sure we don't look at a
8716 stale cached response. */
8717 rs->cached_wait_status = 0;
8718
c906108c
SS
8719 /* Copy the packet into buffer BUF2, encapsulating it
8720 and giving it a checksum. */
8721
c906108c
SS
8722 p = buf2;
8723 *p++ = '$';
8724
8725 for (i = 0; i < cnt; i++)
8726 {
8727 csum += buf[i];
8728 *p++ = buf[i];
8729 }
8730 *p++ = '#';
8731 *p++ = tohex ((csum >> 4) & 0xf);
8732 *p++ = tohex (csum & 0xf);
8733
8734 /* Send it over and over until we get a positive ack. */
8735
8736 while (1)
8737 {
8738 int started_error_output = 0;
8739
8740 if (remote_debug)
8741 {
8742 *p = '\0';
b3ced9ba 8743
6f8976bf
YQ
8744 int len = (int) (p - buf2);
8745
8746 std::string str
8747 = escape_buffer (buf2, std::min (len, REMOTE_DEBUG_MAX_CHAR));
8748
8749 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s", str.c_str ());
8750
8751 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
8752 {
8753 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
8754 str.length () - REMOTE_DEBUG_MAX_CHAR);
8755 }
8756
8757 fprintf_unfiltered (gdb_stdlog, "...");
b3ced9ba 8758
0f71a2f6 8759 gdb_flush (gdb_stdlog);
c906108c 8760 }
c33e31fd 8761 remote_serial_write (buf2, p - buf2);
c906108c 8762
a6f3e723
SL
8763 /* If this is a no acks version of the remote protocol, send the
8764 packet and move on. */
8765 if (rs->noack_mode)
8766 break;
8767
74531fed
PA
8768 /* Read until either a timeout occurs (-2) or '+' is read.
8769 Handle any notification that arrives in the mean time. */
c906108c
SS
8770 while (1)
8771 {
8772 ch = readchar (remote_timeout);
8773
c5aa993b 8774 if (remote_debug)
c906108c
SS
8775 {
8776 switch (ch)
8777 {
8778 case '+':
1216fa2c 8779 case '-':
c906108c
SS
8780 case SERIAL_TIMEOUT:
8781 case '$':
74531fed 8782 case '%':
c906108c
SS
8783 if (started_error_output)
8784 {
8785 putchar_unfiltered ('\n');
8786 started_error_output = 0;
8787 }
8788 }
8789 }
8790
8791 switch (ch)
8792 {
8793 case '+':
8794 if (remote_debug)
0f71a2f6 8795 fprintf_unfiltered (gdb_stdlog, "Ack\n");
a5c0808e 8796 do_cleanups (old_chain);
c906108c 8797 return 1;
1216fa2c
AC
8798 case '-':
8799 if (remote_debug)
8800 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 8801 /* FALLTHROUGH */
c906108c 8802 case SERIAL_TIMEOUT:
c5aa993b 8803 tcount++;
c906108c 8804 if (tcount > 3)
a5c0808e
PA
8805 {
8806 do_cleanups (old_chain);
8807 return 0;
8808 }
23860348 8809 break; /* Retransmit buffer. */
c906108c
SS
8810 case '$':
8811 {
40e3f985 8812 if (remote_debug)
2bc416ba 8813 fprintf_unfiltered (gdb_stdlog,
23860348 8814 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
8815 /* It's probably an old response sent because an ACK
8816 was lost. Gobble up the packet and ack it so it
8817 doesn't get retransmitted when we resend this
8818 packet. */
6d820c5c 8819 skip_frame ();
c33e31fd 8820 remote_serial_write ("+", 1);
23860348 8821 continue; /* Now, go look for +. */
c906108c 8822 }
74531fed
PA
8823
8824 case '%':
8825 {
8826 int val;
8827
8828 /* If we got a notification, handle it, and go back to looking
8829 for an ack. */
8830 /* We've found the start of a notification. Now
8831 collect the data. */
8832 val = read_frame (&rs->buf, &rs->buf_size);
8833 if (val >= 0)
8834 {
8835 if (remote_debug)
8836 {
b3ced9ba 8837 std::string str = escape_buffer (rs->buf, val);
6e5abd65 8838
6e5abd65
PA
8839 fprintf_unfiltered (gdb_stdlog,
8840 " Notification received: %s\n",
b3ced9ba 8841 str.c_str ());
74531fed 8842 }
5965e028 8843 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
8844 /* We're in sync now, rewait for the ack. */
8845 tcount = 0;
8846 }
8847 else
8848 {
8849 if (remote_debug)
8850 {
8851 if (!started_error_output)
8852 {
8853 started_error_output = 1;
8854 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8855 }
8856 fputc_unfiltered (ch & 0177, gdb_stdlog);
8857 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8858 }
8859 }
8860 continue;
8861 }
8862 /* fall-through */
c906108c
SS
8863 default:
8864 if (remote_debug)
8865 {
8866 if (!started_error_output)
8867 {
8868 started_error_output = 1;
0f71a2f6 8869 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 8870 }
0f71a2f6 8871 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
8872 }
8873 continue;
8874 }
23860348 8875 break; /* Here to retransmit. */
c906108c
SS
8876 }
8877
8878#if 0
8879 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
8880 able to get out next time we call QUIT, without anything as
8881 violent as interrupt_query. If we want to provide a way out of
8882 here without getting to the next QUIT, it should be based on
8883 hitting ^C twice as in remote_wait. */
c906108c
SS
8884 if (quit_flag)
8885 {
8886 quit_flag = 0;
8887 interrupt_query ();
8888 }
8889#endif
8890 }
a5c0808e
PA
8891
8892 do_cleanups (old_chain);
a6f3e723 8893 return 0;
c906108c
SS
8894}
8895
6d820c5c
DJ
8896/* Come here after finding the start of a frame when we expected an
8897 ack. Do our best to discard the rest of this packet. */
8898
8899static void
8900skip_frame (void)
8901{
8902 int c;
8903
8904 while (1)
8905 {
8906 c = readchar (remote_timeout);
8907 switch (c)
8908 {
8909 case SERIAL_TIMEOUT:
8910 /* Nothing we can do. */
8911 return;
8912 case '#':
8913 /* Discard the two bytes of checksum and stop. */
8914 c = readchar (remote_timeout);
8915 if (c >= 0)
8916 c = readchar (remote_timeout);
8917
8918 return;
8919 case '*': /* Run length encoding. */
8920 /* Discard the repeat count. */
8921 c = readchar (remote_timeout);
8922 if (c < 0)
8923 return;
8924 break;
8925 default:
8926 /* A regular character. */
8927 break;
8928 }
8929 }
8930}
8931
c906108c 8932/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
8933 into *BUF, verifying the checksum, length, and handling run-length
8934 compression. NUL terminate the buffer. If there is not enough room,
8935 expand *BUF using xrealloc.
c906108c 8936
c2d11a7d
JM
8937 Returns -1 on error, number of characters in buffer (ignoring the
8938 trailing NULL) on success. (could be extended to return one of the
23860348 8939 SERIAL status indications). */
c2d11a7d
JM
8940
8941static long
6d820c5c
DJ
8942read_frame (char **buf_p,
8943 long *sizeof_buf)
c906108c
SS
8944{
8945 unsigned char csum;
c2d11a7d 8946 long bc;
c906108c 8947 int c;
6d820c5c 8948 char *buf = *buf_p;
a6f3e723 8949 struct remote_state *rs = get_remote_state ();
c906108c
SS
8950
8951 csum = 0;
c2d11a7d 8952 bc = 0;
c906108c
SS
8953
8954 while (1)
8955 {
8956 c = readchar (remote_timeout);
c906108c
SS
8957 switch (c)
8958 {
8959 case SERIAL_TIMEOUT:
8960 if (remote_debug)
0f71a2f6 8961 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 8962 return -1;
c906108c
SS
8963 case '$':
8964 if (remote_debug)
0f71a2f6
JM
8965 fputs_filtered ("Saw new packet start in middle of old one\n",
8966 gdb_stdlog);
23860348 8967 return -1; /* Start a new packet, count retries. */
c906108c
SS
8968 case '#':
8969 {
8970 unsigned char pktcsum;
e1b09194
AC
8971 int check_0 = 0;
8972 int check_1 = 0;
c906108c 8973
c2d11a7d 8974 buf[bc] = '\0';
c906108c 8975
e1b09194
AC
8976 check_0 = readchar (remote_timeout);
8977 if (check_0 >= 0)
8978 check_1 = readchar (remote_timeout);
802188a7 8979
e1b09194
AC
8980 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8981 {
8982 if (remote_debug)
2bc416ba 8983 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 8984 gdb_stdlog);
e1b09194
AC
8985 return -1;
8986 }
8987 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
8988 {
8989 if (remote_debug)
2bc416ba 8990 fputs_filtered ("Communication error in checksum\n",
23860348 8991 gdb_stdlog);
40e3f985
FN
8992 return -1;
8993 }
c906108c 8994
a6f3e723
SL
8995 /* Don't recompute the checksum; with no ack packets we
8996 don't have any way to indicate a packet retransmission
8997 is necessary. */
8998 if (rs->noack_mode)
8999 return bc;
9000
e1b09194 9001 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 9002 if (csum == pktcsum)
c2d11a7d 9003 return bc;
c906108c 9004
c5aa993b 9005 if (remote_debug)
c906108c 9006 {
b3ced9ba 9007 std::string str = escape_buffer (buf, bc);
6e5abd65 9008
6e5abd65 9009 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
9010 "Bad checksum, sentsum=0x%x, "
9011 "csum=0x%x, buf=%s\n",
b3ced9ba 9012 pktcsum, csum, str.c_str ());
c906108c 9013 }
c2d11a7d 9014 /* Number of characters in buffer ignoring trailing
23860348 9015 NULL. */
c2d11a7d 9016 return -1;
c906108c 9017 }
23860348 9018 case '*': /* Run length encoding. */
c2c6d25f
JM
9019 {
9020 int repeat;
c906108c 9021
a744cf53 9022 csum += c;
b4501125
AC
9023 c = readchar (remote_timeout);
9024 csum += c;
23860348 9025 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 9026
23860348 9027 /* The character before ``*'' is repeated. */
c2d11a7d 9028
6d820c5c 9029 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 9030 {
6d820c5c
DJ
9031 if (bc + repeat - 1 >= *sizeof_buf - 1)
9032 {
9033 /* Make some more room in the buffer. */
9034 *sizeof_buf += repeat;
224c3ddb 9035 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
9036 buf = *buf_p;
9037 }
9038
c2d11a7d
JM
9039 memset (&buf[bc], buf[bc - 1], repeat);
9040 bc += repeat;
c2c6d25f
JM
9041 continue;
9042 }
9043
c2d11a7d 9044 buf[bc] = '\0';
6d820c5c 9045 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 9046 return -1;
c2c6d25f 9047 }
c906108c 9048 default:
6d820c5c 9049 if (bc >= *sizeof_buf - 1)
c906108c 9050 {
6d820c5c
DJ
9051 /* Make some more room in the buffer. */
9052 *sizeof_buf *= 2;
224c3ddb 9053 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 9054 buf = *buf_p;
c906108c
SS
9055 }
9056
6d820c5c
DJ
9057 buf[bc++] = c;
9058 csum += c;
9059 continue;
c906108c
SS
9060 }
9061 }
9062}
9063
9064/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9065 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9066 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9067 rather than timing out; this is used (in synchronous mode) to wait
9068 for a target that is is executing user code to stop. */
d9fcf2fb
JM
9069/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
9070 don't have to change all the calls to getpkt to deal with the
9071 return value, because at the moment I don't know what the right
23860348 9072 thing to do it for those. */
c906108c 9073void
6d820c5c
DJ
9074getpkt (char **buf,
9075 long *sizeof_buf,
c2d11a7d 9076 int forever)
d9fcf2fb 9077{
54887903 9078 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
9079}
9080
9081
9082/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
9083 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
9084 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
9085 rather than timing out; this is used (in synchronous mode) to wait
9086 for a target that is is executing user code to stop. If FOREVER ==
9087 0, this function is allowed to time out gracefully and return an
74531fed
PA
9088 indication of this to the caller. Otherwise return the number of
9089 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
9090 enough reason to return to the caller. *IS_NOTIF is an output
9091 boolean that indicates whether *BUF holds a notification or not
9092 (a regular packet). */
74531fed 9093
3172dc30 9094static int
74531fed 9095getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 9096 int expecting_notif, int *is_notif)
c906108c 9097{
2d717e4f 9098 struct remote_state *rs = get_remote_state ();
c906108c
SS
9099 int c;
9100 int tries;
9101 int timeout;
df4b58fe 9102 int val = -1;
c906108c 9103
2d717e4f
DJ
9104 /* We're reading a new response. Make sure we don't look at a
9105 previously cached response. */
9106 rs->cached_wait_status = 0;
9107
6d820c5c 9108 strcpy (*buf, "timeout");
c906108c
SS
9109
9110 if (forever)
74531fed
PA
9111 timeout = watchdog > 0 ? watchdog : -1;
9112 else if (expecting_notif)
9113 timeout = 0; /* There should already be a char in the buffer. If
9114 not, bail out. */
c906108c
SS
9115 else
9116 timeout = remote_timeout;
9117
9118#define MAX_TRIES 3
9119
74531fed
PA
9120 /* Process any number of notifications, and then return when
9121 we get a packet. */
9122 for (;;)
c906108c 9123 {
d9c43928 9124 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
9125 times. */
9126 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 9127 {
74531fed
PA
9128 /* This can loop forever if the remote side sends us
9129 characters continuously, but if it pauses, we'll get
9130 SERIAL_TIMEOUT from readchar because of timeout. Then
9131 we'll count that as a retry.
9132
9133 Note that even when forever is set, we will only wait
9134 forever prior to the start of a packet. After that, we
9135 expect characters to arrive at a brisk pace. They should
9136 show up within remote_timeout intervals. */
9137 do
9138 c = readchar (timeout);
9139 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
9140
9141 if (c == SERIAL_TIMEOUT)
9142 {
74531fed
PA
9143 if (expecting_notif)
9144 return -1; /* Don't complain, it's normal to not get
9145 anything in this case. */
9146
23860348 9147 if (forever) /* Watchdog went off? Kill the target. */
c906108c 9148 {
78a095c3 9149 remote_unpush_target ();
598d3636
JK
9150 throw_error (TARGET_CLOSE_ERROR,
9151 _("Watchdog timeout has expired. "
9152 "Target detached."));
c906108c 9153 }
c906108c 9154 if (remote_debug)
0f71a2f6 9155 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 9156 }
74531fed
PA
9157 else
9158 {
9159 /* We've found the start of a packet or notification.
9160 Now collect the data. */
9161 val = read_frame (buf, sizeof_buf);
9162 if (val >= 0)
9163 break;
9164 }
9165
c33e31fd 9166 remote_serial_write ("-", 1);
c906108c 9167 }
c906108c 9168
74531fed
PA
9169 if (tries > MAX_TRIES)
9170 {
9171 /* We have tried hard enough, and just can't receive the
9172 packet/notification. Give up. */
9173 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 9174
74531fed
PA
9175 /* Skip the ack char if we're in no-ack mode. */
9176 if (!rs->noack_mode)
c33e31fd 9177 remote_serial_write ("+", 1);
74531fed
PA
9178 return -1;
9179 }
c906108c 9180
74531fed
PA
9181 /* If we got an ordinary packet, return that to our caller. */
9182 if (c == '$')
c906108c
SS
9183 {
9184 if (remote_debug)
43e526b9 9185 {
6f8976bf
YQ
9186 std::string str
9187 = escape_buffer (*buf,
9188 std::min (val, REMOTE_DEBUG_MAX_CHAR));
9189
9190 fprintf_unfiltered (gdb_stdlog, "Packet received: %s",
9191 str.c_str ());
9192
9193 if (str.length () > REMOTE_DEBUG_MAX_CHAR)
9194 {
9195 fprintf_unfiltered (gdb_stdlog, "[%zu bytes omitted]",
9196 str.length () - REMOTE_DEBUG_MAX_CHAR);
9197 }
6e5abd65 9198
6f8976bf 9199 fprintf_unfiltered (gdb_stdlog, "\n");
43e526b9 9200 }
a6f3e723
SL
9201
9202 /* Skip the ack char if we're in no-ack mode. */
9203 if (!rs->noack_mode)
c33e31fd 9204 remote_serial_write ("+", 1);
fee9eda9
YQ
9205 if (is_notif != NULL)
9206 *is_notif = 0;
0876f84a 9207 return val;
c906108c
SS
9208 }
9209
74531fed
PA
9210 /* If we got a notification, handle it, and go back to looking
9211 for a packet. */
9212 else
9213 {
9214 gdb_assert (c == '%');
9215
9216 if (remote_debug)
9217 {
b3ced9ba 9218 std::string str = escape_buffer (*buf, val);
6e5abd65 9219
6e5abd65
PA
9220 fprintf_unfiltered (gdb_stdlog,
9221 " Notification received: %s\n",
b3ced9ba 9222 str.c_str ());
74531fed 9223 }
fee9eda9
YQ
9224 if (is_notif != NULL)
9225 *is_notif = 1;
c906108c 9226
5965e028 9227 handle_notification (rs->notif_state, *buf);
c906108c 9228
74531fed 9229 /* Notifications require no acknowledgement. */
a6f3e723 9230
74531fed 9231 if (expecting_notif)
fee9eda9 9232 return val;
74531fed
PA
9233 }
9234 }
9235}
9236
9237static int
9238getpkt_sane (char **buf, long *sizeof_buf, int forever)
9239{
fee9eda9 9240 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
9241}
9242
9243static int
fee9eda9
YQ
9244getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
9245 int *is_notif)
74531fed 9246{
fee9eda9
YQ
9247 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
9248 is_notif);
c906108c 9249}
74531fed 9250
cbb8991c
DB
9251/* Check whether EVENT is a fork event for the process specified
9252 by the pid passed in DATA, and if it is, kill the fork child. */
9253
9254static int
9255kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
9256 QUEUE_ITER (stop_reply_p) *iter,
9257 stop_reply_p event,
9258 void *data)
9259{
19ba03f4 9260 struct queue_iter_param *param = (struct queue_iter_param *) data;
cbb8991c
DB
9261 int parent_pid = *(int *) param->input;
9262
9263 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
9264 {
9265 struct remote_state *rs = get_remote_state ();
9266 int child_pid = ptid_get_pid (event->ws.value.related_pid);
9267 int res;
9268
9269 res = remote_vkill (child_pid, rs);
9270 if (res != 0)
9271 error (_("Can't kill fork child process %d"), child_pid);
9272 }
9273
9274 return 1;
9275}
9276
9277/* Kill any new fork children of process PID that haven't been
9278 processed by follow_fork. */
9279
9280static void
9281kill_new_fork_children (int pid, struct remote_state *rs)
9282{
9283 struct thread_info *thread;
9284 struct notif_client *notif = &notif_client_stop;
9285 struct queue_iter_param param;
9286
9287 /* Kill the fork child threads of any threads in process PID
9288 that are stopped at a fork event. */
9289 ALL_NON_EXITED_THREADS (thread)
9290 {
9291 struct target_waitstatus *ws = &thread->pending_follow;
9292
9293 if (is_pending_fork_parent (ws, pid, thread->ptid))
9294 {
9295 struct remote_state *rs = get_remote_state ();
9296 int child_pid = ptid_get_pid (ws->value.related_pid);
9297 int res;
9298
9299 res = remote_vkill (child_pid, rs);
9300 if (res != 0)
9301 error (_("Can't kill fork child process %d"), child_pid);
9302 }
9303 }
9304
9305 /* Check for any pending fork events (not reported or processed yet)
9306 in process PID and kill those fork child threads as well. */
9307 remote_notif_get_pending_events (notif);
9308 param.input = &pid;
9309 param.output = NULL;
9310 QUEUE_iterate (stop_reply_p, stop_reply_queue,
9311 kill_child_of_pending_fork, &param);
9312}
9313
c906108c 9314\f
8020350c
DB
9315/* Target hook to kill the current inferior. */
9316
c906108c 9317static void
7d85a9c0 9318remote_kill (struct target_ops *ops)
43ff13b4 9319{
8020350c
DB
9320 int res = -1;
9321 int pid = ptid_get_pid (inferior_ptid);
9322 struct remote_state *rs = get_remote_state ();
0fdf84ca 9323
8020350c 9324 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 9325 {
8020350c
DB
9326 /* If we're stopped while forking and we haven't followed yet,
9327 kill the child task. We need to do this before killing the
9328 parent task because if this is a vfork then the parent will
9329 be sleeping. */
9330 kill_new_fork_children (pid, rs);
9331
9332 res = remote_vkill (pid, rs);
9333 if (res == 0)
0fdf84ca 9334 {
bc1e6c81 9335 target_mourn_inferior (inferior_ptid);
0fdf84ca
PA
9336 return;
9337 }
8020350c 9338 }
0fdf84ca 9339
8020350c
DB
9340 /* If we are in 'target remote' mode and we are killing the only
9341 inferior, then we will tell gdbserver to exit and unpush the
9342 target. */
9343 if (res == -1 && !remote_multi_process_p (rs)
9344 && number_of_live_inferiors () == 1)
9345 {
9346 remote_kill_k ();
9347
9348 /* We've killed the remote end, we get to mourn it. If we are
9349 not in extended mode, mourning the inferior also unpushes
9350 remote_ops from the target stack, which closes the remote
9351 connection. */
bc1e6c81 9352 target_mourn_inferior (inferior_ptid);
8020350c
DB
9353
9354 return;
0fdf84ca 9355 }
43ff13b4 9356
8020350c 9357 error (_("Can't kill process"));
43ff13b4
JM
9358}
9359
8020350c
DB
9360/* Send a kill request to the target using the 'vKill' packet. */
9361
82f73884
PA
9362static int
9363remote_vkill (int pid, struct remote_state *rs)
9364{
4082afcc 9365 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
9366 return -1;
9367
9368 /* Tell the remote target to detach. */
bba74b36 9369 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
9370 putpkt (rs->buf);
9371 getpkt (&rs->buf, &rs->buf_size, 0);
9372
4082afcc
PA
9373 switch (packet_ok (rs->buf,
9374 &remote_protocol_packets[PACKET_vKill]))
9375 {
9376 case PACKET_OK:
9377 return 0;
9378 case PACKET_ERROR:
9379 return 1;
9380 case PACKET_UNKNOWN:
9381 return -1;
9382 default:
9383 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
9384 }
82f73884
PA
9385}
9386
8020350c
DB
9387/* Send a kill request to the target using the 'k' packet. */
9388
82f73884 9389static void
8020350c 9390remote_kill_k (void)
82f73884 9391{
8020350c
DB
9392 /* Catch errors so the user can quit from gdb even when we
9393 aren't on speaking terms with the remote system. */
9394 TRY
82f73884 9395 {
82f73884 9396 putpkt ("k");
82f73884 9397 }
8020350c
DB
9398 CATCH (ex, RETURN_MASK_ERROR)
9399 {
9400 if (ex.error == TARGET_CLOSE_ERROR)
9401 {
9402 /* If we got an (EOF) error that caused the target
9403 to go away, then we're done, that's what we wanted.
9404 "k" is susceptible to cause a premature EOF, given
9405 that the remote server isn't actually required to
9406 reply to "k", and it can happen that it doesn't
9407 even get to reply ACK to the "k". */
9408 return;
9409 }
82f73884 9410
8020350c
DB
9411 /* Otherwise, something went wrong. We didn't actually kill
9412 the target. Just propagate the exception, and let the
9413 user or higher layers decide what to do. */
9414 throw_exception (ex);
9415 }
9416 END_CATCH
82f73884
PA
9417}
9418
c906108c 9419static void
20f796c9 9420remote_mourn (struct target_ops *target)
c906108c 9421{
8020350c 9422 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9423
8020350c
DB
9424 /* In 'target remote' mode with one inferior, we close the connection. */
9425 if (!rs->extended && number_of_live_inferiors () <= 1)
9426 {
9427 unpush_target (target);
c906108c 9428
8020350c
DB
9429 /* remote_close takes care of doing most of the clean up. */
9430 generic_mourn_inferior ();
9431 return;
9432 }
c906108c 9433
e24a49d8
PA
9434 /* In case we got here due to an error, but we're going to stay
9435 connected. */
9436 rs->waiting_for_stop_reply = 0;
9437
dc1981d7
PA
9438 /* If the current general thread belonged to the process we just
9439 detached from or has exited, the remote side current general
9440 thread becomes undefined. Considering a case like this:
9441
9442 - We just got here due to a detach.
9443 - The process that we're detaching from happens to immediately
9444 report a global breakpoint being hit in non-stop mode, in the
9445 same thread we had selected before.
9446 - GDB attaches to this process again.
9447 - This event happens to be the next event we handle.
9448
9449 GDB would consider that the current general thread didn't need to
9450 be set on the stub side (with Hg), since for all it knew,
9451 GENERAL_THREAD hadn't changed.
9452
9453 Notice that although in all-stop mode, the remote server always
9454 sets the current thread to the thread reporting the stop event,
9455 that doesn't happen in non-stop mode; in non-stop, the stub *must
9456 not* change the current thread when reporting a breakpoint hit,
9457 due to the decoupling of event reporting and event handling.
9458
9459 To keep things simple, we always invalidate our notion of the
9460 current thread. */
47f8a51d 9461 record_currthread (rs, minus_one_ptid);
dc1981d7 9462
8020350c 9463 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9464 generic_mourn_inferior ();
9465
d729566a 9466 if (!have_inferiors ())
2d717e4f 9467 {
82f73884
PA
9468 if (!remote_multi_process_p (rs))
9469 {
9470 /* Check whether the target is running now - some remote stubs
9471 automatically restart after kill. */
9472 putpkt ("?");
9473 getpkt (&rs->buf, &rs->buf_size, 0);
9474
9475 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9476 {
3e43a32a
MS
9477 /* Assume that the target has been restarted. Set
9478 inferior_ptid so that bits of core GDB realizes
9479 there's something here, e.g., so that the user can
9480 say "kill" again. */
82f73884
PA
9481 inferior_ptid = magic_null_ptid;
9482 }
82f73884 9483 }
2d717e4f
DJ
9484 }
9485}
c906108c 9486
03583c20 9487static int
2bfc0540 9488extended_remote_supports_disable_randomization (struct target_ops *self)
03583c20 9489{
4082afcc 9490 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9491}
9492
9493static void
9494extended_remote_disable_randomization (int val)
9495{
9496 struct remote_state *rs = get_remote_state ();
9497 char *reply;
9498
bba74b36
YQ
9499 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9500 val);
03583c20
UW
9501 putpkt (rs->buf);
9502 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
9503 if (*reply == '\0')
9504 error (_("Target does not support QDisableRandomization."));
9505 if (strcmp (reply, "OK") != 0)
9506 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9507}
9508
2d717e4f 9509static int
7c5ded6a 9510extended_remote_run (const std::string &args)
2d717e4f
DJ
9511{
9512 struct remote_state *rs = get_remote_state ();
2d717e4f 9513 int len;
94585166 9514 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9515
2d717e4f
DJ
9516 /* If the user has disabled vRun support, or we have detected that
9517 support is not available, do not try it. */
4082afcc 9518 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9519 return -1;
424163ea 9520
2d717e4f
DJ
9521 strcpy (rs->buf, "vRun;");
9522 len = strlen (rs->buf);
c906108c 9523
2d717e4f
DJ
9524 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9525 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9526 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9527 strlen (remote_exec_file));
2d717e4f 9528
7c5ded6a 9529 if (!args.empty ())
2d717e4f 9530 {
2d717e4f 9531 int i;
2d717e4f 9532
773a1edc 9533 gdb_argv argv (args.c_str ());
2d717e4f
DJ
9534 for (i = 0; argv[i] != NULL; i++)
9535 {
9536 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9537 error (_("Argument list too long for run packet"));
9538 rs->buf[len++] = ';';
9f1b45b0
TT
9539 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9540 strlen (argv[i]));
2d717e4f 9541 }
2d717e4f
DJ
9542 }
9543
9544 rs->buf[len++] = '\0';
9545
9546 putpkt (rs->buf);
9547 getpkt (&rs->buf, &rs->buf_size, 0);
9548
4082afcc 9549 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9550 {
4082afcc 9551 case PACKET_OK:
3405876a 9552 /* We have a wait response. All is well. */
2d717e4f 9553 return 0;
4082afcc
PA
9554 case PACKET_UNKNOWN:
9555 return -1;
9556 case PACKET_ERROR:
2d717e4f
DJ
9557 if (remote_exec_file[0] == '\0')
9558 error (_("Running the default executable on the remote target failed; "
9559 "try \"set remote exec-file\"?"));
9560 else
9561 error (_("Running \"%s\" on the remote target failed"),
9562 remote_exec_file);
4082afcc
PA
9563 default:
9564 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9565 }
c906108c
SS
9566}
9567
0a2dde4a
SDJ
9568/* Helper function to send set/unset environment packets. ACTION is
9569 either "set" or "unset". PACKET is either "QEnvironmentHexEncoded"
9570 or "QEnvironmentUnsetVariable". VALUE is the variable to be
9571 sent. */
9572
9573static void
9574send_environment_packet (struct remote_state *rs,
9575 const char *action,
9576 const char *packet,
9577 const char *value)
9578{
9579 /* Convert the environment variable to an hex string, which
9580 is the best format to be transmitted over the wire. */
9581 std::string encoded_value = bin2hex ((const gdb_byte *) value,
9582 strlen (value));
9583
9584 xsnprintf (rs->buf, get_remote_packet_size (),
9585 "%s:%s", packet, encoded_value.c_str ());
9586
9587 putpkt (rs->buf);
9588 getpkt (&rs->buf, &rs->buf_size, 0);
9589 if (strcmp (rs->buf, "OK") != 0)
9590 warning (_("Unable to %s environment variable '%s' on remote."),
9591 action, value);
9592}
9593
9594/* Helper function to handle the QEnvironment* packets. */
9595
9596static void
9597extended_remote_environment_support (struct remote_state *rs)
9598{
9599 if (packet_support (PACKET_QEnvironmentReset) != PACKET_DISABLE)
9600 {
9601 putpkt ("QEnvironmentReset");
9602 getpkt (&rs->buf, &rs->buf_size, 0);
9603 if (strcmp (rs->buf, "OK") != 0)
9604 warning (_("Unable to reset environment on remote."));
9605 }
9606
9607 gdb_environ *e = &current_inferior ()->environment;
9608
9609 if (packet_support (PACKET_QEnvironmentHexEncoded) != PACKET_DISABLE)
9610 for (const std::string &el : e->user_set_env ())
9611 send_environment_packet (rs, "set", "QEnvironmentHexEncoded",
9612 el.c_str ());
9613
9614 if (packet_support (PACKET_QEnvironmentUnset) != PACKET_DISABLE)
9615 for (const std::string &el : e->user_unset_env ())
9616 send_environment_packet (rs, "unset", "QEnvironmentUnset", el.c_str ());
9617}
9618
2d717e4f
DJ
9619/* In the extended protocol we want to be able to do things like
9620 "run" and have them basically work as expected. So we need
9621 a special create_inferior function. We support changing the
9622 executable file and the command line arguments, but not the
9623 environment. */
9624
43ff13b4 9625static void
77a19445 9626extended_remote_create_inferior (struct target_ops *ops,
7c5ded6a
SDJ
9627 const char *exec_file,
9628 const std::string &args,
77a19445 9629 char **env, int from_tty)
43ff13b4 9630{
3405876a
PA
9631 int run_worked;
9632 char *stop_reply;
9633 struct remote_state *rs = get_remote_state ();
94585166 9634 const char *remote_exec_file = get_remote_exec_file ();
3405876a 9635
43ff13b4 9636 /* If running asynchronously, register the target file descriptor
23860348 9637 with the event loop. */
75c99385 9638 if (target_can_async_p ())
6a3753b3 9639 target_async (1);
43ff13b4 9640
03583c20 9641 /* Disable address space randomization if requested (and supported). */
2bfc0540 9642 if (extended_remote_supports_disable_randomization (ops))
03583c20
UW
9643 extended_remote_disable_randomization (disable_randomization);
9644
aefd8b33
SDJ
9645 /* If startup-with-shell is on, we inform gdbserver to start the
9646 remote inferior using a shell. */
9647 if (packet_support (PACKET_QStartupWithShell) != PACKET_DISABLE)
9648 {
9649 xsnprintf (rs->buf, get_remote_packet_size (),
9650 "QStartupWithShell:%d", startup_with_shell ? 1 : 0);
9651 putpkt (rs->buf);
9652 getpkt (&rs->buf, &rs->buf_size, 0);
9653 if (strcmp (rs->buf, "OK") != 0)
9654 error (_("\
9655Remote replied unexpectedly while setting startup-with-shell: %s"),
9656 rs->buf);
9657 }
9658
0a2dde4a
SDJ
9659 extended_remote_environment_support (rs);
9660
43ff13b4 9661 /* Now restart the remote server. */
3405876a
PA
9662 run_worked = extended_remote_run (args) != -1;
9663 if (!run_worked)
2d717e4f
DJ
9664 {
9665 /* vRun was not supported. Fail if we need it to do what the
9666 user requested. */
9667 if (remote_exec_file[0])
9668 error (_("Remote target does not support \"set remote exec-file\""));
7c5ded6a 9669 if (!args.empty ())
2d717e4f 9670 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 9671
2d717e4f
DJ
9672 /* Fall back to "R". */
9673 extended_remote_restart ();
9674 }
424163ea 9675
6c95b8df
PA
9676 if (!have_inferiors ())
9677 {
9678 /* Clean up from the last time we ran, before we mark the target
9679 running again. This will mark breakpoints uninserted, and
9680 get_offsets may insert breakpoints. */
9681 init_thread_list ();
9682 init_wait_for_inferior ();
9683 }
45280a52 9684
3405876a
PA
9685 /* vRun's success return is a stop reply. */
9686 stop_reply = run_worked ? rs->buf : NULL;
9687 add_current_inferior_and_thread (stop_reply);
c0a2216e 9688
2d717e4f
DJ
9689 /* Get updated offsets, if the stub uses qOffsets. */
9690 get_offsets ();
2d717e4f 9691}
c906108c 9692\f
c5aa993b 9693
b775012e
LM
9694/* Given a location's target info BP_TGT and the packet buffer BUF, output
9695 the list of conditions (in agent expression bytecode format), if any, the
9696 target needs to evaluate. The output is placed into the packet buffer
bba74b36 9697 started from BUF and ended at BUF_END. */
b775012e
LM
9698
9699static int
9700remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
9701 struct bp_target_info *bp_tgt, char *buf,
9702 char *buf_end)
b775012e 9703{
3cde5c42 9704 if (bp_tgt->conditions.empty ())
b775012e
LM
9705 return 0;
9706
9707 buf += strlen (buf);
bba74b36 9708 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
9709 buf++;
9710
83621223 9711 /* Send conditions to the target. */
d538e36d 9712 for (agent_expr *aexpr : bp_tgt->conditions)
b775012e 9713 {
bba74b36 9714 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e 9715 buf += strlen (buf);
3cde5c42 9716 for (int i = 0; i < aexpr->len; ++i)
b775012e
LM
9717 buf = pack_hex_byte (buf, aexpr->buf[i]);
9718 *buf = '\0';
9719 }
b775012e
LM
9720 return 0;
9721}
9722
d3ce09f5
SS
9723static void
9724remote_add_target_side_commands (struct gdbarch *gdbarch,
9725 struct bp_target_info *bp_tgt, char *buf)
9726{
3cde5c42 9727 if (bp_tgt->tcommands.empty ())
d3ce09f5
SS
9728 return;
9729
9730 buf += strlen (buf);
9731
9732 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9733 buf += strlen (buf);
9734
9735 /* Concatenate all the agent expressions that are commands into the
9736 cmds parameter. */
df97be55 9737 for (agent_expr *aexpr : bp_tgt->tcommands)
d3ce09f5
SS
9738 {
9739 sprintf (buf, "X%x,", aexpr->len);
9740 buf += strlen (buf);
3cde5c42 9741 for (int i = 0; i < aexpr->len; ++i)
d3ce09f5
SS
9742 buf = pack_hex_byte (buf, aexpr->buf[i]);
9743 *buf = '\0';
9744 }
d3ce09f5
SS
9745}
9746
8181d85f
DJ
9747/* Insert a breakpoint. On targets that have software breakpoint
9748 support, we ask the remote target to do the work; on targets
9749 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
9750
9751static int
3db08215
MM
9752remote_insert_breakpoint (struct target_ops *ops,
9753 struct gdbarch *gdbarch,
a6d9a66e 9754 struct bp_target_info *bp_tgt)
c906108c 9755{
d471ea57
AC
9756 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9757 If it succeeds, then set the support to PACKET_ENABLE. If it
9758 fails, and the user has explicitly requested the Z support then
23860348 9759 report an error, otherwise, mark it disabled and go on. */
802188a7 9760
4082afcc 9761 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9762 {
0d5ed153 9763 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 9764 struct remote_state *rs;
bba74b36 9765 char *p, *endbuf;
7c0f6dcc 9766 int bpsize;
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
PA
10008 return (thread->priv != NULL
10009 && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT);
f7e6eed5
PA
10010}
10011
10012/* The to_supports_stopped_by_sw_breakpoint method of target
10013 remote. */
10014
10015static int
10016remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
10017{
f7e6eed5
PA
10018 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
10019}
10020
10021/* The to_stopped_by_hw_breakpoint method of target remote. */
10022
10023static int
10024remote_stopped_by_hw_breakpoint (struct target_ops *ops)
10025{
799a2abe 10026 struct thread_info *thread = inferior_thread ();
f7e6eed5 10027
799a2abe
PA
10028 return (thread->priv != NULL
10029 && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT);
f7e6eed5
PA
10030}
10031
10032/* The to_supports_stopped_by_hw_breakpoint method of target
10033 remote. */
10034
10035static int
10036remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
10037{
f7e6eed5
PA
10038 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
10039}
10040
b9362cc7 10041static int
6a109b6b 10042remote_stopped_by_watchpoint (struct target_ops *ops)
3c3bea1c 10043{
799a2abe 10044 struct thread_info *thread = inferior_thread ();
ee154bee 10045
799a2abe
PA
10046 return (thread->priv != NULL
10047 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT);
3c3bea1c
GS
10048}
10049
4aa7a7f5
JJ
10050static int
10051remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 10052{
799a2abe 10053 struct thread_info *thread = inferior_thread ();
a744cf53 10054
799a2abe
PA
10055 if (thread->priv != NULL
10056 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
4aa7a7f5 10057 {
799a2abe
PA
10058 *addr_p = thread->priv->watch_data_address;
10059 return 1;
4aa7a7f5
JJ
10060 }
10061
799a2abe 10062 return 0;
3c3bea1c
GS
10063}
10064
10065
10066static int
23a26771 10067remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10068 struct bp_target_info *bp_tgt)
3c3bea1c 10069{
0d5ed153 10070 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 10071 struct remote_state *rs;
bba74b36 10072 char *p, *endbuf;
dd61ec5c 10073 char *message;
3c3bea1c 10074
4082afcc 10075 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10076 return -1;
2bc416ba 10077
28439a30
PA
10078 /* Make sure the remote is pointing at the right process, if
10079 necessary. */
10080 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10081 set_general_process ();
10082
4fff2411
JZ
10083 rs = get_remote_state ();
10084 p = rs->buf;
bba74b36 10085 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 10086
96baa820
JM
10087 *(p++) = 'Z';
10088 *(p++) = '1';
10089 *(p++) = ',';
802188a7 10090
0d5ed153 10091 addr = remote_address_masked (addr);
96baa820 10092 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10093 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10094
efcc2da7 10095 if (remote_supports_cond_breakpoints (self))
bba74b36 10096 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 10097
78eff0ec 10098 if (remote_can_run_breakpoint_commands (self))
d3ce09f5
SS
10099 remote_add_target_side_commands (gdbarch, bp_tgt, p);
10100
6d820c5c
DJ
10101 putpkt (rs->buf);
10102 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 10103
6d820c5c 10104 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10105 {
10106 case PACKET_ERROR:
dd61ec5c
MW
10107 if (rs->buf[1] == '.')
10108 {
10109 message = strchr (rs->buf + 2, '.');
10110 if (message)
0316657e 10111 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
10112 }
10113 return -1;
d471ea57
AC
10114 case PACKET_UNKNOWN:
10115 return -1;
10116 case PACKET_OK:
10117 return 0;
10118 }
8e65ff28 10119 internal_error (__FILE__, __LINE__,
e2e0b3e5 10120 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
10121}
10122
d471ea57 10123
802188a7 10124static int
a64dc96c 10125remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 10126 struct bp_target_info *bp_tgt)
96baa820 10127{
8181d85f 10128 CORE_ADDR addr;
d01949b6 10129 struct remote_state *rs = get_remote_state ();
6d820c5c 10130 char *p = rs->buf;
bba74b36 10131 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 10132
4082afcc 10133 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 10134 return -1;
802188a7 10135
28439a30
PA
10136 /* Make sure the remote is pointing at the right process, if
10137 necessary. */
10138 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
10139 set_general_process ();
10140
96baa820
JM
10141 *(p++) = 'z';
10142 *(p++) = '1';
10143 *(p++) = ',';
802188a7 10144
8181d85f 10145 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 10146 p += hexnumstr (p, (ULONGEST) addr);
579c6ad9 10147 xsnprintf (p, endbuf - p, ",%x", bp_tgt->kind);
96baa820 10148
6d820c5c
DJ
10149 putpkt (rs->buf);
10150 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 10151
6d820c5c 10152 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
10153 {
10154 case PACKET_ERROR:
10155 case PACKET_UNKNOWN:
10156 return -1;
10157 case PACKET_OK:
10158 return 0;
10159 }
8e65ff28 10160 internal_error (__FILE__, __LINE__,
e2e0b3e5 10161 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 10162}
96baa820 10163
4a5e7a5b
PA
10164/* Verify memory using the "qCRC:" request. */
10165
10166static int
10167remote_verify_memory (struct target_ops *ops,
10168 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
10169{
10170 struct remote_state *rs = get_remote_state ();
10171 unsigned long host_crc, target_crc;
10172 char *tmp;
10173
936d2992
PA
10174 /* It doesn't make sense to use qCRC if the remote target is
10175 connected but not running. */
10176 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
10177 {
10178 enum packet_result result;
28439a30 10179
936d2992
PA
10180 /* Make sure the remote is pointing at the right process. */
10181 set_general_process ();
4a5e7a5b 10182
936d2992
PA
10183 /* FIXME: assumes lma can fit into long. */
10184 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
10185 (long) lma, (long) size);
10186 putpkt (rs->buf);
4a5e7a5b 10187
936d2992
PA
10188 /* Be clever; compute the host_crc before waiting for target
10189 reply. */
10190 host_crc = xcrc32 (data, size, 0xffffffff);
10191
10192 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 10193
936d2992
PA
10194 result = packet_ok (rs->buf,
10195 &remote_protocol_packets[PACKET_qCRC]);
10196 if (result == PACKET_ERROR)
10197 return -1;
10198 else if (result == PACKET_OK)
10199 {
10200 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
10201 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 10202
936d2992
PA
10203 return (host_crc == target_crc);
10204 }
10205 }
4a5e7a5b 10206
936d2992 10207 return simple_verify_memory (ops, data, lma, size);
4a5e7a5b
PA
10208}
10209
c906108c
SS
10210/* compare-sections command
10211
10212 With no arguments, compares each loadable section in the exec bfd
10213 with the same memory range on the target, and reports mismatches.
4a5e7a5b 10214 Useful for verifying the image on the target against the exec file. */
e514a9d6 10215
c906108c 10216static void
fba45db2 10217compare_sections_command (char *args, int from_tty)
c906108c
SS
10218{
10219 asection *s;
c906108c 10220 struct cleanup *old_chain;
948f8e3d 10221 gdb_byte *sectdata;
ce359b09 10222 const char *sectname;
c906108c
SS
10223 bfd_size_type size;
10224 bfd_vma lma;
10225 int matched = 0;
10226 int mismatched = 0;
4a5e7a5b 10227 int res;
95cf3b38 10228 int read_only = 0;
c906108c
SS
10229
10230 if (!exec_bfd)
8a3fe4f8 10231 error (_("command cannot be used without an exec file"));
c906108c 10232
28439a30
PA
10233 /* Make sure the remote is pointing at the right process. */
10234 set_general_process ();
10235
95cf3b38
DT
10236 if (args != NULL && strcmp (args, "-r") == 0)
10237 {
10238 read_only = 1;
10239 args = NULL;
10240 }
10241
c5aa993b 10242 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
10243 {
10244 if (!(s->flags & SEC_LOAD))
0df8b418 10245 continue; /* Skip non-loadable section. */
c906108c 10246
95cf3b38
DT
10247 if (read_only && (s->flags & SEC_READONLY) == 0)
10248 continue; /* Skip writeable sections */
10249
2c500098 10250 size = bfd_get_section_size (s);
c906108c 10251 if (size == 0)
0df8b418 10252 continue; /* Skip zero-length section. */
c906108c 10253
ce359b09 10254 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 10255 if (args && strcmp (args, sectname) != 0)
0df8b418 10256 continue; /* Not the section selected by user. */
c906108c 10257
0df8b418 10258 matched = 1; /* Do this section. */
c906108c 10259 lma = s->lma;
c906108c 10260
224c3ddb 10261 sectdata = (gdb_byte *) xmalloc (size);
b8c9b27d 10262 old_chain = make_cleanup (xfree, sectdata);
c906108c 10263 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
c906108c 10264
4a5e7a5b
PA
10265 res = target_verify_memory (sectdata, lma, size);
10266
10267 if (res == -1)
5af949e3 10268 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
10269 paddress (target_gdbarch (), lma),
10270 paddress (target_gdbarch (), lma + size));
c906108c 10271
5af949e3 10272 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
10273 paddress (target_gdbarch (), lma),
10274 paddress (target_gdbarch (), lma + size));
4a5e7a5b 10275 if (res)
c906108c
SS
10276 printf_filtered ("matched.\n");
10277 else
c5aa993b
JM
10278 {
10279 printf_filtered ("MIS-MATCHED!\n");
10280 mismatched++;
10281 }
c906108c
SS
10282
10283 do_cleanups (old_chain);
10284 }
10285 if (mismatched > 0)
936d2992 10286 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 10287the loaded file\n"));
c906108c 10288 if (args && !matched)
a3f17187 10289 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
10290}
10291
0e7f50da
UW
10292/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
10293 into remote target. The number of bytes written to the remote
10294 target is returned, or -1 for error. */
10295
9b409511 10296static enum target_xfer_status
0e7f50da
UW
10297remote_write_qxfer (struct target_ops *ops, const char *object_name,
10298 const char *annex, const gdb_byte *writebuf,
9b409511 10299 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
0e7f50da
UW
10300 struct packet_config *packet)
10301{
10302 int i, buf_len;
10303 ULONGEST n;
0e7f50da
UW
10304 struct remote_state *rs = get_remote_state ();
10305 int max_size = get_memory_write_packet_size ();
10306
10307 if (packet->support == PACKET_DISABLE)
2ed4b548 10308 return TARGET_XFER_E_IO;
0e7f50da
UW
10309
10310 /* Insert header. */
10311 i = snprintf (rs->buf, max_size,
10312 "qXfer:%s:write:%s:%s:",
10313 object_name, annex ? annex : "",
10314 phex_nz (offset, sizeof offset));
10315 max_size -= (i + 1);
10316
10317 /* Escape as much data as fits into rs->buf. */
10318 buf_len = remote_escape_output
124e13d9 10319 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
10320
10321 if (putpkt_binary (rs->buf, i + buf_len) < 0
10322 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10323 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10324 return TARGET_XFER_E_IO;
0e7f50da
UW
10325
10326 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
10327
10328 *xfered_len = n;
10329 return TARGET_XFER_OK;
0e7f50da
UW
10330}
10331
0876f84a
DJ
10332/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
10333 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
10334 number of bytes read is returned, or 0 for EOF, or -1 for error.
10335 The number of bytes read may be less than LEN without indicating an
10336 EOF. PACKET is checked and updated to indicate whether the remote
10337 target supports this object. */
10338
9b409511 10339static enum target_xfer_status
0876f84a
DJ
10340remote_read_qxfer (struct target_ops *ops, const char *object_name,
10341 const char *annex,
10342 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9b409511 10343 ULONGEST *xfered_len,
0876f84a
DJ
10344 struct packet_config *packet)
10345{
0876f84a 10346 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
10347 LONGEST i, n, packet_len;
10348
10349 if (packet->support == PACKET_DISABLE)
2ed4b548 10350 return TARGET_XFER_E_IO;
0876f84a
DJ
10351
10352 /* Check whether we've cached an end-of-object packet that matches
10353 this request. */
8e88304f 10354 if (rs->finished_object)
0876f84a 10355 {
8e88304f
TT
10356 if (strcmp (object_name, rs->finished_object) == 0
10357 && strcmp (annex ? annex : "", rs->finished_annex) == 0
10358 && offset == rs->finished_offset)
9b409511
YQ
10359 return TARGET_XFER_EOF;
10360
0876f84a
DJ
10361
10362 /* Otherwise, we're now reading something different. Discard
10363 the cache. */
8e88304f
TT
10364 xfree (rs->finished_object);
10365 xfree (rs->finished_annex);
10366 rs->finished_object = NULL;
10367 rs->finished_annex = NULL;
0876f84a
DJ
10368 }
10369
10370 /* Request only enough to fit in a single packet. The actual data
10371 may not, since we don't know how much of it will need to be escaped;
10372 the target is free to respond with slightly less data. We subtract
10373 five to account for the response type and the protocol frame. */
768adc05 10374 n = std::min<LONGEST> (get_remote_packet_size () - 5, len);
0876f84a
DJ
10375 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
10376 object_name, annex ? annex : "",
10377 phex_nz (offset, sizeof offset),
10378 phex_nz (n, sizeof n));
10379 i = putpkt (rs->buf);
10380 if (i < 0)
2ed4b548 10381 return TARGET_XFER_E_IO;
0876f84a
DJ
10382
10383 rs->buf[0] = '\0';
10384 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10385 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 10386 return TARGET_XFER_E_IO;
0876f84a
DJ
10387
10388 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
10389 error (_("Unknown remote qXfer reply: %s"), rs->buf);
10390
10391 /* 'm' means there is (or at least might be) more data after this
10392 batch. That does not make sense unless there's at least one byte
10393 of data in this reply. */
10394 if (rs->buf[0] == 'm' && packet_len == 1)
10395 error (_("Remote qXfer reply contained no data."));
10396
10397 /* Got some data. */
bc20a4af
PA
10398 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
10399 packet_len - 1, readbuf, n);
0876f84a
DJ
10400
10401 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
10402 or possibly empty. If we have the final block of a non-empty
10403 object, record this fact to bypass a subsequent partial read. */
10404 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 10405 {
8e88304f
TT
10406 rs->finished_object = xstrdup (object_name);
10407 rs->finished_annex = xstrdup (annex ? annex : "");
10408 rs->finished_offset = offset + i;
0876f84a
DJ
10409 }
10410
9b409511
YQ
10411 if (i == 0)
10412 return TARGET_XFER_EOF;
10413 else
10414 {
10415 *xfered_len = i;
10416 return TARGET_XFER_OK;
10417 }
0876f84a
DJ
10418}
10419
9b409511 10420static enum target_xfer_status
4b8a223f 10421remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5 10422 const char *annex, gdb_byte *readbuf,
9b409511
YQ
10423 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
10424 ULONGEST *xfered_len)
c906108c 10425{
82f73884 10426 struct remote_state *rs;
c906108c 10427 int i;
6d820c5c 10428 char *p2;
1e3ff5ad 10429 char query_type;
124e13d9 10430 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 10431
e6e4e701 10432 set_remote_traceframe ();
82f73884
PA
10433 set_general_thread (inferior_ptid);
10434
10435 rs = get_remote_state ();
10436
b2182ed2 10437 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
10438 if (object == TARGET_OBJECT_MEMORY)
10439 {
2d717e4f
DJ
10440 /* If the remote target is connected but not running, we should
10441 pass this request down to a lower stratum (e.g. the executable
10442 file). */
10443 if (!target_has_execution)
9b409511 10444 return TARGET_XFER_EOF;
2d717e4f 10445
21e3b9b9 10446 if (writebuf != NULL)
124e13d9
SM
10447 return remote_write_bytes (offset, writebuf, len, unit_size,
10448 xfered_len);
21e3b9b9 10449 else
124e13d9
SM
10450 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
10451 xfered_len);
21e3b9b9
DJ
10452 }
10453
0df8b418 10454 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10455 if (object == TARGET_OBJECT_SPU)
10456 {
10457 if (readbuf)
10458 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9b409511
YQ
10459 xfered_len, &remote_protocol_packets
10460 [PACKET_qXfer_spu_read]);
0e7f50da
UW
10461 else
10462 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9b409511
YQ
10463 xfered_len, &remote_protocol_packets
10464 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10465 }
10466
4aa995e1
PA
10467 /* Handle extra signal info using qxfer packets. */
10468 if (object == TARGET_OBJECT_SIGNAL_INFO)
10469 {
10470 if (readbuf)
10471 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9b409511 10472 xfered_len, &remote_protocol_packets
4aa995e1
PA
10473 [PACKET_qXfer_siginfo_read]);
10474 else
3e43a32a 10475 return remote_write_qxfer (ops, "siginfo", annex,
9b409511 10476 writebuf, offset, len, xfered_len,
4aa995e1
PA
10477 &remote_protocol_packets
10478 [PACKET_qXfer_siginfo_write]);
10479 }
10480
0fb4aa4b
PA
10481 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10482 {
10483 if (readbuf)
3e43a32a 10484 return remote_read_qxfer (ops, "statictrace", annex,
9b409511 10485 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10486 &remote_protocol_packets
10487 [PACKET_qXfer_statictrace_read]);
10488 else
2ed4b548 10489 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10490 }
10491
a76d924d
DJ
10492 /* Only handle flash writes. */
10493 if (writebuf != NULL)
10494 {
a76d924d
DJ
10495 switch (object)
10496 {
10497 case TARGET_OBJECT_FLASH:
9b409511
YQ
10498 return remote_flash_write (ops, offset, len, xfered_len,
10499 writebuf);
a76d924d
DJ
10500
10501 default:
2ed4b548 10502 return TARGET_XFER_E_IO;
a76d924d
DJ
10503 }
10504 }
4b8a223f 10505
1e3ff5ad
AC
10506 /* Map pre-existing objects onto letters. DO NOT do this for new
10507 objects!!! Instead specify new query packets. */
10508 switch (object)
c906108c 10509 {
1e3ff5ad
AC
10510 case TARGET_OBJECT_AVR:
10511 query_type = 'R';
10512 break;
802188a7
RM
10513
10514 case TARGET_OBJECT_AUXV:
0876f84a
DJ
10515 gdb_assert (annex == NULL);
10516 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
9b409511 10517 xfered_len,
0876f84a 10518 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10519
23181151
DJ
10520 case TARGET_OBJECT_AVAILABLE_FEATURES:
10521 return remote_read_qxfer
9b409511 10522 (ops, "features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10523 &remote_protocol_packets[PACKET_qXfer_features]);
10524
cfa9d6d9
DJ
10525 case TARGET_OBJECT_LIBRARIES:
10526 return remote_read_qxfer
9b409511 10527 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10528 &remote_protocol_packets[PACKET_qXfer_libraries]);
10529
2268b414
JK
10530 case TARGET_OBJECT_LIBRARIES_SVR4:
10531 return remote_read_qxfer
9b409511 10532 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10533 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10534
fd79ecee
DJ
10535 case TARGET_OBJECT_MEMORY_MAP:
10536 gdb_assert (annex == NULL);
10537 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
9b409511 10538 xfered_len,
fd79ecee
DJ
10539 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10540
07e059b5
VP
10541 case TARGET_OBJECT_OSDATA:
10542 /* Should only get here if we're connected. */
5d93a237 10543 gdb_assert (rs->remote_desc);
07e059b5 10544 return remote_read_qxfer
9b409511 10545 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10546 &remote_protocol_packets[PACKET_qXfer_osdata]);
10547
dc146f7c
VP
10548 case TARGET_OBJECT_THREADS:
10549 gdb_assert (annex == NULL);
10550 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
9b409511 10551 xfered_len,
dc146f7c
VP
10552 &remote_protocol_packets[PACKET_qXfer_threads]);
10553
b3b9301e
PA
10554 case TARGET_OBJECT_TRACEFRAME_INFO:
10555 gdb_assert (annex == NULL);
10556 return remote_read_qxfer
9b409511 10557 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10558 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10559
10560 case TARGET_OBJECT_FDPIC:
10561 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
9b409511 10562 xfered_len,
78d85199 10563 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10564
10565 case TARGET_OBJECT_OPENVMS_UIB:
10566 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
9b409511 10567 xfered_len,
169081d0
TG
10568 &remote_protocol_packets[PACKET_qXfer_uib]);
10569
9accd112
MM
10570 case TARGET_OBJECT_BTRACE:
10571 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
9b409511 10572 xfered_len,
9accd112
MM
10573 &remote_protocol_packets[PACKET_qXfer_btrace]);
10574
f4abbc16
MM
10575 case TARGET_OBJECT_BTRACE_CONF:
10576 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10577 len, xfered_len,
10578 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10579
c78fa86a
GB
10580 case TARGET_OBJECT_EXEC_FILE:
10581 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10582 len, xfered_len,
10583 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10584
1e3ff5ad 10585 default:
2ed4b548 10586 return TARGET_XFER_E_IO;
c906108c
SS
10587 }
10588
0df8b418 10589 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10590 large enough let the caller deal with it. */
ea9c271d 10591 if (len < get_remote_packet_size ())
2ed4b548 10592 return TARGET_XFER_E_IO;
ea9c271d 10593 len = get_remote_packet_size ();
1e3ff5ad 10594
23860348 10595 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10596 if (!rs->remote_desc)
8a3fe4f8 10597 error (_("remote query is only available after target open"));
c906108c 10598
1e3ff5ad 10599 gdb_assert (annex != NULL);
4b8a223f 10600 gdb_assert (readbuf != NULL);
c906108c 10601
6d820c5c 10602 p2 = rs->buf;
c906108c
SS
10603 *p2++ = 'q';
10604 *p2++ = query_type;
10605
23860348
MS
10606 /* We used one buffer char for the remote protocol q command and
10607 another for the query type. As the remote protocol encapsulation
10608 uses 4 chars plus one extra in case we are debugging
10609 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10610 string. */
c906108c 10611 i = 0;
ea9c271d 10612 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10613 {
1e3ff5ad
AC
10614 /* Bad caller may have sent forbidden characters. */
10615 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10616 *p2++ = annex[i];
c906108c
SS
10617 i++;
10618 }
1e3ff5ad
AC
10619 *p2 = '\0';
10620 gdb_assert (annex[i] == '\0');
c906108c 10621
6d820c5c 10622 i = putpkt (rs->buf);
c5aa993b 10623 if (i < 0)
2ed4b548 10624 return TARGET_XFER_E_IO;
c906108c 10625
6d820c5c
DJ
10626 getpkt (&rs->buf, &rs->buf_size, 0);
10627 strcpy ((char *) readbuf, rs->buf);
c906108c 10628
9b409511
YQ
10629 *xfered_len = strlen ((char *) readbuf);
10630 return TARGET_XFER_OK;
c906108c
SS
10631}
10632
09c98b44
DB
10633/* Implementation of to_get_memory_xfer_limit. */
10634
10635static ULONGEST
10636remote_get_memory_xfer_limit (struct target_ops *ops)
10637{
10638 return get_memory_write_packet_size ();
10639}
10640
08388c79
DE
10641static int
10642remote_search_memory (struct target_ops* ops,
10643 CORE_ADDR start_addr, ULONGEST search_space_len,
10644 const gdb_byte *pattern, ULONGEST pattern_len,
10645 CORE_ADDR *found_addrp)
10646{
f5656ead 10647 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
10648 struct remote_state *rs = get_remote_state ();
10649 int max_size = get_memory_write_packet_size ();
10650 struct packet_config *packet =
10651 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
10652 /* Number of packet bytes used to encode the pattern;
10653 this could be more than PATTERN_LEN due to escape characters. */
08388c79 10654 int escaped_pattern_len;
0df8b418 10655 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
10656 int used_pattern_len;
10657 int i;
10658 int found;
10659 ULONGEST found_addr;
10660
10661 /* Don't go to the target if we don't have to.
10662 This is done before checking packet->support to avoid the possibility that
10663 a success for this edge case means the facility works in general. */
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. */
10708 if (packet->support == PACKET_DISABLE)
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
fd79ecee
DJ
10802static VEC(mem_region_s) *
10803remote_memory_map (struct target_ops *ops)
10804{
10805 VEC(mem_region_s) *result = NULL;
10806 char *text = target_read_stralloc (&current_target,
10807 TARGET_OBJECT_MEMORY_MAP, NULL);
10808
10809 if (text)
10810 {
10811 struct cleanup *back_to = make_cleanup (xfree, text);
a744cf53 10812
fd79ecee
DJ
10813 result = parse_memory_map (text);
10814 do_cleanups (back_to);
10815 }
10816
10817 return result;
10818}
10819
c906108c 10820static void
fba45db2 10821packet_command (char *args, int from_tty)
c906108c 10822{
d01949b6 10823 struct remote_state *rs = get_remote_state ();
c906108c 10824
5d93a237 10825 if (!rs->remote_desc)
8a3fe4f8 10826 error (_("command can only be used with remote target"));
c906108c 10827
c5aa993b 10828 if (!args)
8a3fe4f8 10829 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
10830
10831 puts_filtered ("sending: ");
10832 print_packet (args);
10833 puts_filtered ("\n");
10834 putpkt (args);
10835
6d820c5c 10836 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 10837 puts_filtered ("received: ");
6d820c5c 10838 print_packet (rs->buf);
c906108c
SS
10839 puts_filtered ("\n");
10840}
10841
10842#if 0
23860348 10843/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 10844
a14ed312 10845static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 10846
a14ed312 10847static void threadset_test_cmd (char *cmd, int tty);
c906108c 10848
a14ed312 10849static void threadalive_test (char *cmd, int tty);
c906108c 10850
a14ed312 10851static void threadlist_test_cmd (char *cmd, int tty);
c906108c 10852
23860348 10853int get_and_display_threadinfo (threadref *ref);
c906108c 10854
a14ed312 10855static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 10856
23860348 10857static int thread_display_step (threadref *ref, void *context);
c906108c 10858
a14ed312 10859static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 10860
a14ed312 10861static void init_remote_threadtests (void);
c906108c 10862
23860348 10863#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
10864
10865static void
fba45db2 10866threadset_test_cmd (char *cmd, int tty)
c906108c
SS
10867{
10868 int sample_thread = SAMPLE_THREAD;
10869
a3f17187 10870 printf_filtered (_("Remote threadset test\n"));
79d7f229 10871 set_general_thread (sample_thread);
c906108c
SS
10872}
10873
10874
10875static void
fba45db2 10876threadalive_test (char *cmd, int tty)
c906108c
SS
10877{
10878 int sample_thread = SAMPLE_THREAD;
79d7f229 10879 int pid = ptid_get_pid (inferior_ptid);
ba348170 10880 ptid_t ptid = ptid_build (pid, sample_thread, 0);
c906108c 10881
79d7f229 10882 if (remote_thread_alive (ptid))
c906108c
SS
10883 printf_filtered ("PASS: Thread alive test\n");
10884 else
10885 printf_filtered ("FAIL: Thread alive test\n");
10886}
10887
23860348 10888void output_threadid (char *title, threadref *ref);
c906108c
SS
10889
10890void
fba45db2 10891output_threadid (char *title, threadref *ref)
c906108c
SS
10892{
10893 char hexid[20];
10894
23860348 10895 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
10896 hexid[16] = 0;
10897 printf_filtered ("%s %s\n", title, (&hexid[0]));
10898}
10899
10900static void
fba45db2 10901threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
10902{
10903 int startflag = 1;
10904 threadref nextthread;
10905 int done, result_count;
10906 threadref threadlist[3];
10907
10908 printf_filtered ("Remote Threadlist test\n");
10909 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10910 &result_count, &threadlist[0]))
10911 printf_filtered ("FAIL: threadlist test\n");
10912 else
10913 {
10914 threadref *scan = threadlist;
10915 threadref *limit = scan + result_count;
10916
10917 while (scan < limit)
10918 output_threadid (" thread ", scan++);
10919 }
10920}
10921
10922void
fba45db2 10923display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
10924{
10925 output_threadid ("Threadid: ", &info->threadid);
10926 printf_filtered ("Name: %s\n ", info->shortname);
10927 printf_filtered ("State: %s\n", info->display);
10928 printf_filtered ("other: %s\n\n", info->more_display);
10929}
10930
10931int
fba45db2 10932get_and_display_threadinfo (threadref *ref)
c906108c
SS
10933{
10934 int result;
10935 int set;
10936 struct gdb_ext_thread_info threadinfo;
10937
10938 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10939 | TAG_MOREDISPLAY | TAG_DISPLAY;
10940 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10941 display_thread_info (&threadinfo);
10942 return result;
10943}
10944
10945static void
fba45db2 10946threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
10947{
10948 int athread = SAMPLE_THREAD;
10949 threadref thread;
10950 int set;
10951
10952 int_to_threadref (&thread, athread);
10953 printf_filtered ("Remote Threadinfo test\n");
10954 if (!get_and_display_threadinfo (&thread))
10955 printf_filtered ("FAIL cannot get thread info\n");
10956}
10957
10958static int
fba45db2 10959thread_display_step (threadref *ref, void *context)
c906108c
SS
10960{
10961 /* output_threadid(" threadstep ",ref); *//* simple test */
10962 return get_and_display_threadinfo (ref);
10963}
10964
10965static void
fba45db2 10966threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
10967{
10968 printf_filtered ("Remote Threadlist update test\n");
10969 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10970}
10971
10972static void
10973init_remote_threadtests (void)
10974{
3e43a32a
MS
10975 add_com ("tlist", class_obscure, threadlist_test_cmd,
10976 _("Fetch and print the remote list of "
10977 "thread identifiers, one pkt only"));
c906108c 10978 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 10979 _("Fetch and display info about one thread"));
c906108c 10980 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 10981 _("Test setting to a different thread"));
c906108c 10982 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 10983 _("Iterate through updating all remote thread info"));
c906108c 10984 add_com ("talive", class_obscure, threadalive_test,
1bedd215 10985 _(" Remote thread alive test "));
c906108c
SS
10986}
10987
10988#endif /* 0 */
10989
f3fb8c85
MS
10990/* Convert a thread ID to a string. Returns the string in a static
10991 buffer. */
10992
7a114964 10993static const char *
117de6a9 10994remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 10995{
79d7f229 10996 static char buf[64];
82f73884 10997 struct remote_state *rs = get_remote_state ();
f3fb8c85 10998
7cee1e54
PA
10999 if (ptid_equal (ptid, null_ptid))
11000 return normal_pid_to_str (ptid);
11001 else if (ptid_is_pid (ptid))
ecd0ada5
PA
11002 {
11003 /* Printing an inferior target id. */
11004
11005 /* When multi-process extensions are off, there's no way in the
11006 remote protocol to know the remote process id, if there's any
11007 at all. There's one exception --- when we're connected with
11008 target extended-remote, and we manually attached to a process
11009 with "attach PID". We don't record anywhere a flag that
11010 allows us to distinguish that case from the case of
11011 connecting with extended-remote and the stub already being
11012 attached to a process, and reporting yes to qAttached, hence
11013 no smart special casing here. */
11014 if (!remote_multi_process_p (rs))
11015 {
11016 xsnprintf (buf, sizeof buf, "Remote target");
11017 return buf;
11018 }
11019
11020 return normal_pid_to_str (ptid);
82f73884 11021 }
ecd0ada5 11022 else
79d7f229 11023 {
ecd0ada5
PA
11024 if (ptid_equal (magic_null_ptid, ptid))
11025 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 11026 else if (remote_multi_process_p (rs))
de0d863e
DB
11027 if (ptid_get_lwp (ptid) == 0)
11028 return normal_pid_to_str (ptid);
11029 else
11030 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
11031 ptid_get_pid (ptid), ptid_get_lwp (ptid));
ecd0ada5
PA
11032 else
11033 xsnprintf (buf, sizeof buf, "Thread %ld",
ba348170 11034 ptid_get_lwp (ptid));
79d7f229
PA
11035 return buf;
11036 }
f3fb8c85
MS
11037}
11038
38691318
KB
11039/* Get the address of the thread local variable in OBJFILE which is
11040 stored at OFFSET within the thread local storage for thread PTID. */
11041
11042static CORE_ADDR
117de6a9
PA
11043remote_get_thread_local_address (struct target_ops *ops,
11044 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 11045{
4082afcc 11046 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
11047 {
11048 struct remote_state *rs = get_remote_state ();
6d820c5c 11049 char *p = rs->buf;
82f73884 11050 char *endp = rs->buf + get_remote_packet_size ();
571dd617 11051 enum packet_result result;
38691318
KB
11052
11053 strcpy (p, "qGetTLSAddr:");
11054 p += strlen (p);
82f73884 11055 p = write_ptid (p, endp, ptid);
38691318
KB
11056 *p++ = ',';
11057 p += hexnumstr (p, offset);
11058 *p++ = ',';
11059 p += hexnumstr (p, lm);
11060 *p++ = '\0';
11061
6d820c5c
DJ
11062 putpkt (rs->buf);
11063 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
11064 result = packet_ok (rs->buf,
11065 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 11066 if (result == PACKET_OK)
38691318
KB
11067 {
11068 ULONGEST result;
11069
6d820c5c 11070 unpack_varlen_hex (rs->buf, &result);
38691318
KB
11071 return result;
11072 }
571dd617 11073 else if (result == PACKET_UNKNOWN)
109c3e39
AC
11074 throw_error (TLS_GENERIC_ERROR,
11075 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 11076 else
109c3e39
AC
11077 throw_error (TLS_GENERIC_ERROR,
11078 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
11079 }
11080 else
109c3e39
AC
11081 throw_error (TLS_GENERIC_ERROR,
11082 _("TLS not supported or disabled on this target"));
38691318
KB
11083 /* Not reached. */
11084 return 0;
11085}
11086
711e434b
PM
11087/* Provide thread local base, i.e. Thread Information Block address.
11088 Returns 1 if ptid is found and thread_local_base is non zero. */
11089
70221824 11090static int
bd7ae0f5 11091remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
711e434b 11092{
4082afcc 11093 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
11094 {
11095 struct remote_state *rs = get_remote_state ();
11096 char *p = rs->buf;
11097 char *endp = rs->buf + get_remote_packet_size ();
11098 enum packet_result result;
11099
11100 strcpy (p, "qGetTIBAddr:");
11101 p += strlen (p);
11102 p = write_ptid (p, endp, ptid);
11103 *p++ = '\0';
11104
11105 putpkt (rs->buf);
11106 getpkt (&rs->buf, &rs->buf_size, 0);
11107 result = packet_ok (rs->buf,
11108 &remote_protocol_packets[PACKET_qGetTIBAddr]);
11109 if (result == PACKET_OK)
11110 {
11111 ULONGEST result;
11112
11113 unpack_varlen_hex (rs->buf, &result);
11114 if (addr)
11115 *addr = (CORE_ADDR) result;
11116 return 1;
11117 }
11118 else if (result == PACKET_UNKNOWN)
11119 error (_("Remote target doesn't support qGetTIBAddr packet"));
11120 else
11121 error (_("Remote target failed to process qGetTIBAddr request"));
11122 }
11123 else
11124 error (_("qGetTIBAddr not supported or disabled on this target"));
11125 /* Not reached. */
11126 return 0;
11127}
11128
29709017
DJ
11129/* Support for inferring a target description based on the current
11130 architecture and the size of a 'g' packet. While the 'g' packet
11131 can have any size (since optional registers can be left off the
11132 end), some sizes are easily recognizable given knowledge of the
11133 approximate architecture. */
11134
11135struct remote_g_packet_guess
11136{
11137 int bytes;
11138 const struct target_desc *tdesc;
11139};
11140typedef struct remote_g_packet_guess remote_g_packet_guess_s;
11141DEF_VEC_O(remote_g_packet_guess_s);
11142
11143struct remote_g_packet_data
11144{
11145 VEC(remote_g_packet_guess_s) *guesses;
11146};
11147
11148static struct gdbarch_data *remote_g_packet_data_handle;
11149
11150static void *
11151remote_g_packet_data_init (struct obstack *obstack)
11152{
11153 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
11154}
11155
11156void
11157register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
11158 const struct target_desc *tdesc)
11159{
11160 struct remote_g_packet_data *data
19ba03f4
SM
11161 = ((struct remote_g_packet_data *)
11162 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
11163 struct remote_g_packet_guess new_guess, *guess;
11164 int ix;
11165
11166 gdb_assert (tdesc != NULL);
11167
11168 for (ix = 0;
11169 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11170 ix++)
11171 if (guess->bytes == bytes)
11172 internal_error (__FILE__, __LINE__,
9b20d036 11173 _("Duplicate g packet description added for size %d"),
29709017
DJ
11174 bytes);
11175
11176 new_guess.bytes = bytes;
11177 new_guess.tdesc = tdesc;
11178 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
11179}
11180
d962ef82
DJ
11181/* Return 1 if remote_read_description would do anything on this target
11182 and architecture, 0 otherwise. */
11183
11184static int
11185remote_read_description_p (struct target_ops *target)
11186{
11187 struct remote_g_packet_data *data
19ba03f4
SM
11188 = ((struct remote_g_packet_data *)
11189 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82
DJ
11190
11191 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11192 return 1;
11193
11194 return 0;
11195}
11196
29709017
DJ
11197static const struct target_desc *
11198remote_read_description (struct target_ops *target)
11199{
11200 struct remote_g_packet_data *data
19ba03f4
SM
11201 = ((struct remote_g_packet_data *)
11202 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 11203
d962ef82
DJ
11204 /* Do not try this during initial connection, when we do not know
11205 whether there is a running but stopped thread. */
11206 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
2117c711 11207 return target->beneath->to_read_description (target->beneath);
d962ef82 11208
29709017
DJ
11209 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
11210 {
11211 struct remote_g_packet_guess *guess;
11212 int ix;
11213 int bytes = send_g_packet ();
11214
11215 for (ix = 0;
11216 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
11217 ix++)
11218 if (guess->bytes == bytes)
11219 return guess->tdesc;
11220
11221 /* We discard the g packet. A minor optimization would be to
11222 hold on to it, and fill the register cache once we have selected
11223 an architecture, but it's too tricky to do safely. */
11224 }
11225
2117c711 11226 return target->beneath->to_read_description (target->beneath);
29709017
DJ
11227}
11228
a6b151f1
DJ
11229/* Remote file transfer support. This is host-initiated I/O, not
11230 target-initiated; for target-initiated, see remote-fileio.c. */
11231
11232/* If *LEFT is at least the length of STRING, copy STRING to
11233 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11234 decrease *LEFT. Otherwise raise an error. */
11235
11236static void
a121b7c1 11237remote_buffer_add_string (char **buffer, int *left, const char *string)
a6b151f1
DJ
11238{
11239 int len = strlen (string);
11240
11241 if (len > *left)
11242 error (_("Packet too long for target."));
11243
11244 memcpy (*buffer, string, len);
11245 *buffer += len;
11246 *left -= len;
11247
11248 /* NUL-terminate the buffer as a convenience, if there is
11249 room. */
11250 if (*left)
11251 **buffer = '\0';
11252}
11253
11254/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
11255 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11256 decrease *LEFT. Otherwise raise an error. */
11257
11258static void
11259remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
11260 int len)
11261{
11262 if (2 * len > *left)
11263 error (_("Packet too long for target."));
11264
11265 bin2hex (bytes, *buffer, len);
11266 *buffer += 2 * len;
11267 *left -= 2 * len;
11268
11269 /* NUL-terminate the buffer as a convenience, if there is
11270 room. */
11271 if (*left)
11272 **buffer = '\0';
11273}
11274
11275/* If *LEFT is large enough, convert VALUE to hex and add it to
11276 *BUFFER, update *BUFFER to point to the new end of the buffer, and
11277 decrease *LEFT. Otherwise raise an error. */
11278
11279static void
11280remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
11281{
11282 int len = hexnumlen (value);
11283
11284 if (len > *left)
11285 error (_("Packet too long for target."));
11286
11287 hexnumstr (*buffer, value);
11288 *buffer += len;
11289 *left -= len;
11290
11291 /* NUL-terminate the buffer as a convenience, if there is
11292 room. */
11293 if (*left)
11294 **buffer = '\0';
11295}
11296
11297/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
11298 value, *REMOTE_ERRNO to the remote error number or zero if none
11299 was included, and *ATTACHMENT to point to the start of the annex
11300 if any. The length of the packet isn't needed here; there may
11301 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
11302
11303 Return 0 if the packet could be parsed, -1 if it could not. If
11304 -1 is returned, the other variables may not be initialized. */
11305
11306static int
11307remote_hostio_parse_result (char *buffer, int *retcode,
11308 int *remote_errno, char **attachment)
11309{
11310 char *p, *p2;
11311
11312 *remote_errno = 0;
11313 *attachment = NULL;
11314
11315 if (buffer[0] != 'F')
11316 return -1;
11317
11318 errno = 0;
11319 *retcode = strtol (&buffer[1], &p, 16);
11320 if (errno != 0 || p == &buffer[1])
11321 return -1;
11322
11323 /* Check for ",errno". */
11324 if (*p == ',')
11325 {
11326 errno = 0;
11327 *remote_errno = strtol (p + 1, &p2, 16);
11328 if (errno != 0 || p + 1 == p2)
11329 return -1;
11330 p = p2;
11331 }
11332
11333 /* Check for ";attachment". If there is no attachment, the
11334 packet should end here. */
11335 if (*p == ';')
11336 {
11337 *attachment = p + 1;
11338 return 0;
11339 }
11340 else if (*p == '\0')
11341 return 0;
11342 else
11343 return -1;
11344}
11345
11346/* Send a prepared I/O packet to the target and read its response.
11347 The prepared packet is in the global RS->BUF before this function
11348 is called, and the answer is there when we return.
11349
11350 COMMAND_BYTES is the length of the request to send, which may include
11351 binary data. WHICH_PACKET is the packet configuration to check
11352 before attempting a packet. If an error occurs, *REMOTE_ERRNO
11353 is set to the error number and -1 is returned. Otherwise the value
11354 returned by the function is returned.
11355
11356 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
11357 attachment is expected; an error will be reported if there's a
11358 mismatch. If one is found, *ATTACHMENT will be set to point into
11359 the packet buffer and *ATTACHMENT_LEN will be set to the
11360 attachment's length. */
11361
11362static int
11363remote_hostio_send_command (int command_bytes, int which_packet,
11364 int *remote_errno, char **attachment,
11365 int *attachment_len)
11366{
11367 struct remote_state *rs = get_remote_state ();
11368 int ret, bytes_read;
11369 char *attachment_tmp;
11370
5d93a237 11371 if (!rs->remote_desc
4082afcc 11372 || packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
11373 {
11374 *remote_errno = FILEIO_ENOSYS;
11375 return -1;
11376 }
11377
11378 putpkt_binary (rs->buf, command_bytes);
11379 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
11380
11381 /* If it timed out, something is wrong. Don't try to parse the
11382 buffer. */
11383 if (bytes_read < 0)
11384 {
11385 *remote_errno = FILEIO_EINVAL;
11386 return -1;
11387 }
11388
11389 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
11390 {
11391 case PACKET_ERROR:
11392 *remote_errno = FILEIO_EINVAL;
11393 return -1;
11394 case PACKET_UNKNOWN:
11395 *remote_errno = FILEIO_ENOSYS;
11396 return -1;
11397 case PACKET_OK:
11398 break;
11399 }
11400
11401 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
11402 &attachment_tmp))
11403 {
11404 *remote_errno = FILEIO_EINVAL;
11405 return -1;
11406 }
11407
11408 /* Make sure we saw an attachment if and only if we expected one. */
11409 if ((attachment_tmp == NULL && attachment != NULL)
11410 || (attachment_tmp != NULL && attachment == NULL))
11411 {
11412 *remote_errno = FILEIO_EINVAL;
11413 return -1;
11414 }
11415
11416 /* If an attachment was found, it must point into the packet buffer;
11417 work out how many bytes there were. */
11418 if (attachment_tmp != NULL)
11419 {
11420 *attachment = attachment_tmp;
11421 *attachment_len = bytes_read - (*attachment - rs->buf);
11422 }
11423
11424 return ret;
11425}
11426
80152258
PA
11427/* Invalidate the readahead cache. */
11428
11429static void
11430readahead_cache_invalidate (void)
11431{
11432 struct remote_state *rs = get_remote_state ();
11433
11434 rs->readahead_cache.fd = -1;
11435}
11436
11437/* Invalidate the readahead cache if it is holding data for FD. */
11438
11439static void
11440readahead_cache_invalidate_fd (int fd)
11441{
11442 struct remote_state *rs = get_remote_state ();
11443
11444 if (rs->readahead_cache.fd == fd)
11445 rs->readahead_cache.fd = -1;
11446}
11447
15a201c8
GB
11448/* Set the filesystem remote_hostio functions that take FILENAME
11449 arguments will use. Return 0 on success, or -1 if an error
11450 occurs (and set *REMOTE_ERRNO). */
11451
11452static int
11453remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
11454{
11455 struct remote_state *rs = get_remote_state ();
11456 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
11457 char *p = rs->buf;
11458 int left = get_remote_packet_size () - 1;
11459 char arg[9];
11460 int ret;
11461
11462 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11463 return 0;
11464
11465 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11466 return 0;
11467
11468 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11469
11470 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11471 remote_buffer_add_string (&p, &left, arg);
11472
11473 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11474 remote_errno, NULL, NULL);
11475
11476 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11477 return 0;
11478
11479 if (ret == 0)
11480 rs->fs_pid = required_pid;
11481
11482 return ret;
11483}
11484
12e2a5fd 11485/* Implementation of to_fileio_open. */
a6b151f1
DJ
11486
11487static int
cd897586 11488remote_hostio_open (struct target_ops *self,
07c138c8 11489 struct inferior *inf, const char *filename,
4313b8c0
GB
11490 int flags, int mode, int warn_if_slow,
11491 int *remote_errno)
a6b151f1
DJ
11492{
11493 struct remote_state *rs = get_remote_state ();
11494 char *p = rs->buf;
11495 int left = get_remote_packet_size () - 1;
11496
4313b8c0
GB
11497 if (warn_if_slow)
11498 {
11499 static int warning_issued = 0;
11500
11501 printf_unfiltered (_("Reading %s from remote target...\n"),
11502 filename);
11503
11504 if (!warning_issued)
11505 {
11506 warning (_("File transfers from remote targets can be slow."
11507 " Use \"set sysroot\" to access files locally"
11508 " instead."));
11509 warning_issued = 1;
11510 }
11511 }
11512
15a201c8
GB
11513 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11514 return -1;
11515
a6b151f1
DJ
11516 remote_buffer_add_string (&p, &left, "vFile:open:");
11517
11518 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11519 strlen (filename));
11520 remote_buffer_add_string (&p, &left, ",");
11521
11522 remote_buffer_add_int (&p, &left, flags);
11523 remote_buffer_add_string (&p, &left, ",");
11524
11525 remote_buffer_add_int (&p, &left, mode);
11526
11527 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11528 remote_errno, NULL, NULL);
11529}
11530
12e2a5fd 11531/* Implementation of to_fileio_pwrite. */
a6b151f1
DJ
11532
11533static int
0d866f62
TT
11534remote_hostio_pwrite (struct target_ops *self,
11535 int fd, const gdb_byte *write_buf, int len,
a6b151f1
DJ
11536 ULONGEST offset, int *remote_errno)
11537{
11538 struct remote_state *rs = get_remote_state ();
11539 char *p = rs->buf;
11540 int left = get_remote_packet_size ();
11541 int out_len;
11542
80152258
PA
11543 readahead_cache_invalidate_fd (fd);
11544
a6b151f1
DJ
11545 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11546
11547 remote_buffer_add_int (&p, &left, fd);
11548 remote_buffer_add_string (&p, &left, ",");
11549
11550 remote_buffer_add_int (&p, &left, offset);
11551 remote_buffer_add_string (&p, &left, ",");
11552
124e13d9 11553 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11554 get_remote_packet_size () - (p - rs->buf));
11555
11556 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11557 remote_errno, NULL, NULL);
11558}
11559
80152258
PA
11560/* Helper for the implementation of to_fileio_pread. Read the file
11561 from the remote side with vFile:pread. */
a6b151f1
DJ
11562
11563static int
80152258
PA
11564remote_hostio_pread_vFile (struct target_ops *self,
11565 int fd, gdb_byte *read_buf, int len,
11566 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11567{
11568 struct remote_state *rs = get_remote_state ();
11569 char *p = rs->buf;
11570 char *attachment;
11571 int left = get_remote_packet_size ();
11572 int ret, attachment_len;
11573 int read_len;
11574
11575 remote_buffer_add_string (&p, &left, "vFile:pread:");
11576
11577 remote_buffer_add_int (&p, &left, fd);
11578 remote_buffer_add_string (&p, &left, ",");
11579
11580 remote_buffer_add_int (&p, &left, len);
11581 remote_buffer_add_string (&p, &left, ",");
11582
11583 remote_buffer_add_int (&p, &left, offset);
11584
11585 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11586 remote_errno, &attachment,
11587 &attachment_len);
11588
11589 if (ret < 0)
11590 return ret;
11591
bc20a4af 11592 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11593 read_buf, len);
11594 if (read_len != ret)
11595 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11596
11597 return ret;
11598}
11599
80152258
PA
11600/* Serve pread from the readahead cache. Returns number of bytes
11601 read, or 0 if the request can't be served from the cache. */
11602
11603static int
11604remote_hostio_pread_from_cache (struct remote_state *rs,
11605 int fd, gdb_byte *read_buf, size_t len,
11606 ULONGEST offset)
11607{
11608 struct readahead_cache *cache = &rs->readahead_cache;
11609
11610 if (cache->fd == fd
11611 && cache->offset <= offset
11612 && offset < cache->offset + cache->bufsize)
11613 {
11614 ULONGEST max = cache->offset + cache->bufsize;
11615
11616 if (offset + len > max)
11617 len = max - offset;
11618
11619 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11620 return len;
11621 }
11622
11623 return 0;
11624}
11625
11626/* Implementation of to_fileio_pread. */
11627
11628static int
11629remote_hostio_pread (struct target_ops *self,
11630 int fd, gdb_byte *read_buf, int len,
11631 ULONGEST offset, int *remote_errno)
11632{
11633 int ret;
11634 struct remote_state *rs = get_remote_state ();
11635 struct readahead_cache *cache = &rs->readahead_cache;
11636
11637 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11638 if (ret > 0)
11639 {
11640 cache->hit_count++;
11641
11642 if (remote_debug)
11643 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11644 pulongest (cache->hit_count));
11645 return ret;
11646 }
11647
11648 cache->miss_count++;
11649 if (remote_debug)
11650 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11651 pulongest (cache->miss_count));
11652
11653 cache->fd = fd;
11654 cache->offset = offset;
11655 cache->bufsize = get_remote_packet_size ();
224c3ddb 11656 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258
PA
11657
11658 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11659 cache->offset, remote_errno);
11660 if (ret <= 0)
11661 {
11662 readahead_cache_invalidate_fd (fd);
11663 return ret;
11664 }
11665
11666 cache->bufsize = ret;
11667 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11668}
11669
12e2a5fd 11670/* Implementation of to_fileio_close. */
a6b151f1
DJ
11671
11672static int
df39ea25 11673remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
a6b151f1
DJ
11674{
11675 struct remote_state *rs = get_remote_state ();
11676 char *p = rs->buf;
11677 int left = get_remote_packet_size () - 1;
11678
80152258
PA
11679 readahead_cache_invalidate_fd (fd);
11680
a6b151f1
DJ
11681 remote_buffer_add_string (&p, &left, "vFile:close:");
11682
11683 remote_buffer_add_int (&p, &left, fd);
11684
11685 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11686 remote_errno, NULL, NULL);
11687}
11688
12e2a5fd 11689/* Implementation of to_fileio_unlink. */
a6b151f1
DJ
11690
11691static int
dbbca37d 11692remote_hostio_unlink (struct target_ops *self,
07c138c8
GB
11693 struct inferior *inf, const char *filename,
11694 int *remote_errno)
a6b151f1
DJ
11695{
11696 struct remote_state *rs = get_remote_state ();
11697 char *p = rs->buf;
11698 int left = get_remote_packet_size () - 1;
11699
15a201c8
GB
11700 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11701 return -1;
11702
a6b151f1
DJ
11703 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11704
11705 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11706 strlen (filename));
11707
11708 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11709 remote_errno, NULL, NULL);
11710}
11711
12e2a5fd 11712/* Implementation of to_fileio_readlink. */
b9e7b9c3
UW
11713
11714static char *
fab5aa7c 11715remote_hostio_readlink (struct target_ops *self,
07c138c8
GB
11716 struct inferior *inf, const char *filename,
11717 int *remote_errno)
b9e7b9c3
UW
11718{
11719 struct remote_state *rs = get_remote_state ();
11720 char *p = rs->buf;
11721 char *attachment;
11722 int left = get_remote_packet_size ();
11723 int len, attachment_len;
11724 int read_len;
11725 char *ret;
11726
15a201c8
GB
11727 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11728 return NULL;
11729
b9e7b9c3
UW
11730 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11731
11732 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11733 strlen (filename));
11734
11735 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11736 remote_errno, &attachment,
11737 &attachment_len);
11738
11739 if (len < 0)
11740 return NULL;
11741
224c3ddb 11742 ret = (char *) xmalloc (len + 1);
b9e7b9c3 11743
bc20a4af
PA
11744 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11745 (gdb_byte *) ret, len);
b9e7b9c3
UW
11746 if (read_len != len)
11747 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11748
11749 ret[len] = '\0';
11750 return ret;
11751}
11752
12e2a5fd 11753/* Implementation of to_fileio_fstat. */
0a93529c
GB
11754
11755static int
11756remote_hostio_fstat (struct target_ops *self,
11757 int fd, struct stat *st,
11758 int *remote_errno)
11759{
11760 struct remote_state *rs = get_remote_state ();
11761 char *p = rs->buf;
11762 int left = get_remote_packet_size ();
11763 int attachment_len, ret;
11764 char *attachment;
11765 struct fio_stat fst;
11766 int read_len;
11767
464b0089
GB
11768 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11769
11770 remote_buffer_add_int (&p, &left, fd);
11771
11772 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11773 remote_errno, &attachment,
11774 &attachment_len);
11775 if (ret < 0)
0a93529c 11776 {
464b0089
GB
11777 if (*remote_errno != FILEIO_ENOSYS)
11778 return ret;
11779
0a93529c
GB
11780 /* Strictly we should return -1, ENOSYS here, but when
11781 "set sysroot remote:" was implemented in August 2008
11782 BFD's need for a stat function was sidestepped with
11783 this hack. This was not remedied until March 2015
11784 so we retain the previous behavior to avoid breaking
11785 compatibility.
11786
11787 Note that the memset is a March 2015 addition; older
11788 GDBs set st_size *and nothing else* so the structure
11789 would have garbage in all other fields. This might
11790 break something but retaining the previous behavior
11791 here would be just too wrong. */
11792
11793 memset (st, 0, sizeof (struct stat));
11794 st->st_size = INT_MAX;
11795 return 0;
11796 }
11797
0a93529c
GB
11798 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11799 (gdb_byte *) &fst, sizeof (fst));
11800
11801 if (read_len != ret)
11802 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11803
11804 if (read_len != sizeof (fst))
11805 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11806 read_len, (int) sizeof (fst));
11807
11808 remote_fileio_to_host_stat (&fst, st);
11809
11810 return 0;
11811}
11812
12e2a5fd 11813/* Implementation of to_filesystem_is_local. */
e3dd7556
GB
11814
11815static int
11816remote_filesystem_is_local (struct target_ops *self)
11817{
11818 /* Valgrind GDB presents itself as a remote target but works
11819 on the local filesystem: it does not implement remote get
11820 and users are not expected to set a sysroot. To handle
11821 this case we treat the remote filesystem as local if the
11822 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11823 does not support vFile:open. */
a3be80c3 11824 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
11825 {
11826 enum packet_support ps = packet_support (PACKET_vFile_open);
11827
11828 if (ps == PACKET_SUPPORT_UNKNOWN)
11829 {
11830 int fd, remote_errno;
11831
11832 /* Try opening a file to probe support. The supplied
11833 filename is irrelevant, we only care about whether
11834 the stub recognizes the packet or not. */
07c138c8 11835 fd = remote_hostio_open (self, NULL, "just probing",
4313b8c0 11836 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
11837 &remote_errno);
11838
11839 if (fd >= 0)
11840 remote_hostio_close (self, fd, &remote_errno);
11841
11842 ps = packet_support (PACKET_vFile_open);
11843 }
11844
11845 if (ps == PACKET_DISABLE)
11846 {
11847 static int warning_issued = 0;
11848
11849 if (!warning_issued)
11850 {
11851 warning (_("remote target does not support file"
11852 " transfer, attempting to access files"
11853 " from local filesystem."));
11854 warning_issued = 1;
11855 }
11856
11857 return 1;
11858 }
11859 }
11860
11861 return 0;
11862}
11863
a6b151f1
DJ
11864static int
11865remote_fileio_errno_to_host (int errnum)
11866{
11867 switch (errnum)
11868 {
11869 case FILEIO_EPERM:
11870 return EPERM;
11871 case FILEIO_ENOENT:
11872 return ENOENT;
11873 case FILEIO_EINTR:
11874 return EINTR;
11875 case FILEIO_EIO:
11876 return EIO;
11877 case FILEIO_EBADF:
11878 return EBADF;
11879 case FILEIO_EACCES:
11880 return EACCES;
11881 case FILEIO_EFAULT:
11882 return EFAULT;
11883 case FILEIO_EBUSY:
11884 return EBUSY;
11885 case FILEIO_EEXIST:
11886 return EEXIST;
11887 case FILEIO_ENODEV:
11888 return ENODEV;
11889 case FILEIO_ENOTDIR:
11890 return ENOTDIR;
11891 case FILEIO_EISDIR:
11892 return EISDIR;
11893 case FILEIO_EINVAL:
11894 return EINVAL;
11895 case FILEIO_ENFILE:
11896 return ENFILE;
11897 case FILEIO_EMFILE:
11898 return EMFILE;
11899 case FILEIO_EFBIG:
11900 return EFBIG;
11901 case FILEIO_ENOSPC:
11902 return ENOSPC;
11903 case FILEIO_ESPIPE:
11904 return ESPIPE;
11905 case FILEIO_EROFS:
11906 return EROFS;
11907 case FILEIO_ENOSYS:
11908 return ENOSYS;
11909 case FILEIO_ENAMETOOLONG:
11910 return ENAMETOOLONG;
11911 }
11912 return -1;
11913}
11914
11915static char *
11916remote_hostio_error (int errnum)
11917{
11918 int host_error = remote_fileio_errno_to_host (errnum);
11919
11920 if (host_error == -1)
11921 error (_("Unknown remote I/O error %d"), errnum);
11922 else
11923 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11924}
11925
a6b151f1
DJ
11926static void
11927remote_hostio_close_cleanup (void *opaque)
11928{
11929 int fd = *(int *) opaque;
11930 int remote_errno;
11931
df39ea25 11932 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
a6b151f1
DJ
11933}
11934
11935void
11936remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11937{
11938 struct cleanup *back_to, *close_cleanup;
11939 int retcode, fd, remote_errno, bytes, io_size;
a6b151f1
DJ
11940 gdb_byte *buffer;
11941 int bytes_in_buffer;
11942 int saw_eof;
11943 ULONGEST offset;
5d93a237 11944 struct remote_state *rs = get_remote_state ();
a6b151f1 11945
5d93a237 11946 if (!rs->remote_desc)
a6b151f1
DJ
11947 error (_("command can only be used with remote target"));
11948
d419f42d 11949 gdb_file_up file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
11950 if (file == NULL)
11951 perror_with_name (local_file);
a6b151f1 11952
07c138c8 11953 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
cd897586 11954 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
a6b151f1 11955 | FILEIO_O_TRUNC),
4313b8c0 11956 0700, 0, &remote_errno);
a6b151f1
DJ
11957 if (fd == -1)
11958 remote_hostio_error (remote_errno);
11959
11960 /* Send up to this many bytes at once. They won't all fit in the
11961 remote packet limit, so we'll transfer slightly fewer. */
11962 io_size = get_remote_packet_size ();
224c3ddb 11963 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 11964 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
11965
11966 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11967
11968 bytes_in_buffer = 0;
11969 saw_eof = 0;
11970 offset = 0;
11971 while (bytes_in_buffer || !saw_eof)
11972 {
11973 if (!saw_eof)
11974 {
3e43a32a
MS
11975 bytes = fread (buffer + bytes_in_buffer, 1,
11976 io_size - bytes_in_buffer,
d419f42d 11977 file.get ());
a6b151f1
DJ
11978 if (bytes == 0)
11979 {
d419f42d 11980 if (ferror (file.get ()))
a6b151f1
DJ
11981 error (_("Error reading %s."), local_file);
11982 else
11983 {
11984 /* EOF. Unless there is something still in the
11985 buffer from the last iteration, we are done. */
11986 saw_eof = 1;
11987 if (bytes_in_buffer == 0)
11988 break;
11989 }
11990 }
11991 }
11992 else
11993 bytes = 0;
11994
11995 bytes += bytes_in_buffer;
11996 bytes_in_buffer = 0;
11997
0d866f62
TT
11998 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11999 fd, buffer, bytes,
3e43a32a 12000 offset, &remote_errno);
a6b151f1
DJ
12001
12002 if (retcode < 0)
12003 remote_hostio_error (remote_errno);
12004 else if (retcode == 0)
12005 error (_("Remote write of %d bytes returned 0!"), bytes);
12006 else if (retcode < bytes)
12007 {
12008 /* Short write. Save the rest of the read data for the next
12009 write. */
12010 bytes_in_buffer = bytes - retcode;
12011 memmove (buffer, buffer + retcode, bytes_in_buffer);
12012 }
12013
12014 offset += retcode;
12015 }
12016
12017 discard_cleanups (close_cleanup);
df39ea25 12018 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12019 remote_hostio_error (remote_errno);
12020
12021 if (from_tty)
12022 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
12023 do_cleanups (back_to);
12024}
12025
12026void
12027remote_file_get (const char *remote_file, const char *local_file, int from_tty)
12028{
12029 struct cleanup *back_to, *close_cleanup;
cea39f65 12030 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
12031 gdb_byte *buffer;
12032 ULONGEST offset;
5d93a237 12033 struct remote_state *rs = get_remote_state ();
a6b151f1 12034
5d93a237 12035 if (!rs->remote_desc)
a6b151f1
DJ
12036 error (_("command can only be used with remote target"));
12037
07c138c8 12038 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
4313b8c0
GB
12039 remote_file, FILEIO_O_RDONLY, 0, 0,
12040 &remote_errno);
a6b151f1
DJ
12041 if (fd == -1)
12042 remote_hostio_error (remote_errno);
12043
d419f42d 12044 gdb_file_up file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
12045 if (file == NULL)
12046 perror_with_name (local_file);
a6b151f1
DJ
12047
12048 /* Send up to this many bytes at once. They won't all fit in the
12049 remote packet limit, so we'll transfer slightly fewer. */
12050 io_size = get_remote_packet_size ();
224c3ddb 12051 buffer = (gdb_byte *) xmalloc (io_size);
d419f42d 12052 back_to = make_cleanup (xfree, buffer);
a6b151f1
DJ
12053
12054 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
12055
12056 offset = 0;
12057 while (1)
12058 {
a3be983c
TT
12059 bytes = remote_hostio_pread (find_target_at (process_stratum),
12060 fd, buffer, io_size, offset, &remote_errno);
a6b151f1
DJ
12061 if (bytes == 0)
12062 /* Success, but no bytes, means end-of-file. */
12063 break;
12064 if (bytes == -1)
12065 remote_hostio_error (remote_errno);
12066
12067 offset += bytes;
12068
d419f42d 12069 bytes = fwrite (buffer, 1, bytes, file.get ());
a6b151f1
DJ
12070 if (bytes == 0)
12071 perror_with_name (local_file);
12072 }
12073
12074 discard_cleanups (close_cleanup);
df39ea25 12075 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
12076 remote_hostio_error (remote_errno);
12077
12078 if (from_tty)
12079 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
12080 do_cleanups (back_to);
12081}
12082
12083void
12084remote_file_delete (const char *remote_file, int from_tty)
12085{
12086 int retcode, remote_errno;
5d93a237 12087 struct remote_state *rs = get_remote_state ();
a6b151f1 12088
5d93a237 12089 if (!rs->remote_desc)
a6b151f1
DJ
12090 error (_("command can only be used with remote target"));
12091
dbbca37d 12092 retcode = remote_hostio_unlink (find_target_at (process_stratum),
07c138c8 12093 NULL, remote_file, &remote_errno);
a6b151f1
DJ
12094 if (retcode == -1)
12095 remote_hostio_error (remote_errno);
12096
12097 if (from_tty)
12098 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
12099}
12100
12101static void
12102remote_put_command (char *args, int from_tty)
12103{
d1a41061
PP
12104 if (args == NULL)
12105 error_no_arg (_("file to put"));
12106
773a1edc 12107 gdb_argv argv (args);
a6b151f1
DJ
12108 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12109 error (_("Invalid parameters to remote put"));
12110
12111 remote_file_put (argv[0], argv[1], from_tty);
a6b151f1
DJ
12112}
12113
12114static void
12115remote_get_command (char *args, int from_tty)
12116{
d1a41061
PP
12117 if (args == NULL)
12118 error_no_arg (_("file to get"));
12119
773a1edc 12120 gdb_argv argv (args);
a6b151f1
DJ
12121 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
12122 error (_("Invalid parameters to remote get"));
12123
12124 remote_file_get (argv[0], argv[1], from_tty);
a6b151f1
DJ
12125}
12126
12127static void
12128remote_delete_command (char *args, int from_tty)
12129{
d1a41061
PP
12130 if (args == NULL)
12131 error_no_arg (_("file to delete"));
12132
773a1edc 12133 gdb_argv argv (args);
a6b151f1
DJ
12134 if (argv[0] == NULL || argv[1] != NULL)
12135 error (_("Invalid parameters to remote delete"));
12136
12137 remote_file_delete (argv[0], from_tty);
a6b151f1
DJ
12138}
12139
12140static void
12141remote_command (char *args, int from_tty)
12142{
635c7e8a 12143 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
12144}
12145
b2175913 12146static int
19db3e69 12147remote_can_execute_reverse (struct target_ops *self)
b2175913 12148{
4082afcc
PA
12149 if (packet_support (PACKET_bs) == PACKET_ENABLE
12150 || packet_support (PACKET_bc) == PACKET_ENABLE)
40ab02ce
MS
12151 return 1;
12152 else
12153 return 0;
b2175913
MS
12154}
12155
74531fed 12156static int
2a9a2795 12157remote_supports_non_stop (struct target_ops *self)
74531fed
PA
12158{
12159 return 1;
12160}
12161
03583c20 12162static int
2bfc0540 12163remote_supports_disable_randomization (struct target_ops *self)
03583c20
UW
12164{
12165 /* Only supported in extended mode. */
12166 return 0;
12167}
12168
8a305172 12169static int
86ce2668 12170remote_supports_multi_process (struct target_ops *self)
8a305172
PA
12171{
12172 struct remote_state *rs = get_remote_state ();
a744cf53 12173
8020350c 12174 return remote_multi_process_p (rs);
8a305172
PA
12175}
12176
70221824 12177static int
782b2b07
SS
12178remote_supports_cond_tracepoints (void)
12179{
4082afcc 12180 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
12181}
12182
3788aec7 12183static int
efcc2da7 12184remote_supports_cond_breakpoints (struct target_ops *self)
3788aec7 12185{
4082afcc 12186 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
12187}
12188
70221824 12189static int
7a697b8d
SS
12190remote_supports_fast_tracepoints (void)
12191{
4082afcc 12192 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
12193}
12194
0fb4aa4b
PA
12195static int
12196remote_supports_static_tracepoints (void)
12197{
4082afcc 12198 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
12199}
12200
1e4d1764
YQ
12201static int
12202remote_supports_install_in_trace (void)
12203{
4082afcc 12204 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
12205}
12206
d248b706 12207static int
7d178d6a 12208remote_supports_enable_disable_tracepoint (struct target_ops *self)
d248b706 12209{
4082afcc
PA
12210 return (packet_support (PACKET_EnableDisableTracepoints_feature)
12211 == PACKET_ENABLE);
d248b706
KY
12212}
12213
3065dfb6 12214static int
6de37a3a 12215remote_supports_string_tracing (struct target_ops *self)
3065dfb6 12216{
4082afcc 12217 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
12218}
12219
d3ce09f5 12220static int
78eff0ec 12221remote_can_run_breakpoint_commands (struct target_ops *self)
d3ce09f5 12222{
4082afcc 12223 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
12224}
12225
35b1e5cc 12226static void
ecae04e1 12227remote_trace_init (struct target_ops *self)
35b1e5cc
SS
12228{
12229 putpkt ("QTinit");
12230 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99 12231 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
12232 error (_("Target does not support this command."));
12233}
12234
12235static void free_actions_list (char **actions_list);
12236static void free_actions_list_cleanup_wrapper (void *);
12237static void
12238free_actions_list_cleanup_wrapper (void *al)
12239{
19ba03f4 12240 free_actions_list ((char **) al);
35b1e5cc
SS
12241}
12242
12243static void
12244free_actions_list (char **actions_list)
12245{
12246 int ndx;
12247
12248 if (actions_list == 0)
12249 return;
12250
12251 for (ndx = 0; actions_list[ndx]; ndx++)
12252 xfree (actions_list[ndx]);
12253
12254 xfree (actions_list);
12255}
12256
409873ef
SS
12257/* Recursive routine to walk through command list including loops, and
12258 download packets for each command. */
12259
12260static void
12261remote_download_command_source (int num, ULONGEST addr,
12262 struct command_line *cmds)
12263{
12264 struct remote_state *rs = get_remote_state ();
12265 struct command_line *cmd;
12266
12267 for (cmd = cmds; cmd; cmd = cmd->next)
12268 {
0df8b418 12269 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12270 strcpy (rs->buf, "QTDPsrc:");
12271 encode_source_string (num, addr, "cmd", cmd->line,
12272 rs->buf + strlen (rs->buf),
12273 rs->buf_size - strlen (rs->buf));
12274 putpkt (rs->buf);
12275 remote_get_noisy_reply (&target_buf, &target_buf_size);
12276 if (strcmp (target_buf, "OK"))
12277 warning (_("Target does not support source download."));
12278
12279 if (cmd->control_type == while_control
12280 || cmd->control_type == while_stepping_control)
12281 {
12282 remote_download_command_source (num, addr, *cmd->body_list);
12283
0df8b418 12284 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
12285 strcpy (rs->buf, "QTDPsrc:");
12286 encode_source_string (num, addr, "cmd", "end",
12287 rs->buf + strlen (rs->buf),
12288 rs->buf_size - strlen (rs->buf));
12289 putpkt (rs->buf);
12290 remote_get_noisy_reply (&target_buf, &target_buf_size);
12291 if (strcmp (target_buf, "OK"))
12292 warning (_("Target does not support source download."));
12293 }
12294 }
12295}
12296
35b1e5cc 12297static void
548f7808 12298remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
35b1e5cc 12299{
bba74b36 12300#define BUF_SIZE 2048
e8ba3115 12301
35b1e5cc 12302 CORE_ADDR tpaddr;
409873ef 12303 char addrbuf[40];
bba74b36 12304 char buf[BUF_SIZE];
35b1e5cc
SS
12305 char **tdp_actions;
12306 char **stepping_actions;
12307 int ndx;
12308 struct cleanup *old_chain = NULL;
35b1e5cc 12309 char *pkt;
e8ba3115 12310 struct breakpoint *b = loc->owner;
d9b3f62e 12311 struct tracepoint *t = (struct tracepoint *) b;
35b1e5cc 12312
dc673c81 12313 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
12314 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
12315 tdp_actions);
12316 (void) make_cleanup (free_actions_list_cleanup_wrapper,
12317 stepping_actions);
12318
12319 tpaddr = loc->address;
12320 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
12321 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
12322 addrbuf, /* address */
12323 (b->enable_state == bp_enabled ? 'E' : 'D'),
12324 t->step_count, t->pass_count);
e8ba3115
YQ
12325 /* Fast tracepoints are mostly handled by the target, but we can
12326 tell the target how big of an instruction block should be moved
12327 around. */
12328 if (b->type == bp_fast_tracepoint)
12329 {
12330 /* Only test for support at download time; we may not know
12331 target capabilities at definition time. */
12332 if (remote_supports_fast_tracepoints ())
35b1e5cc 12333 {
6b940e6a
PL
12334 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
12335 NULL))
bba74b36 12336 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
6b940e6a 12337 gdb_insn_length (loc->gdbarch, tpaddr));
35b1e5cc 12338 else
e8ba3115
YQ
12339 /* If it passed validation at definition but fails now,
12340 something is very wrong. */
12341 internal_error (__FILE__, __LINE__,
12342 _("Fast tracepoint not "
12343 "valid during download"));
35b1e5cc 12344 }
e8ba3115
YQ
12345 else
12346 /* Fast tracepoints are functionally identical to regular
12347 tracepoints, so don't take lack of support as a reason to
12348 give up on the trace run. */
12349 warning (_("Target does not support fast tracepoints, "
12350 "downloading %d as regular tracepoint"), b->number);
12351 }
12352 else if (b->type == bp_static_tracepoint)
12353 {
12354 /* Only test for support at download time; we may not know
12355 target capabilities at definition time. */
12356 if (remote_supports_static_tracepoints ())
0fb4aa4b 12357 {
e8ba3115 12358 struct static_tracepoint_marker marker;
0fb4aa4b 12359
e8ba3115
YQ
12360 if (target_static_tracepoint_marker_at (tpaddr, &marker))
12361 strcat (buf, ":S");
0fb4aa4b 12362 else
e8ba3115 12363 error (_("Static tracepoint not valid during download"));
0fb4aa4b 12364 }
e8ba3115
YQ
12365 else
12366 /* Fast tracepoints are functionally identical to regular
12367 tracepoints, so don't take lack of support as a reason
12368 to give up on the trace run. */
12369 error (_("Target does not support static tracepoints"));
12370 }
12371 /* If the tracepoint has a conditional, make it into an agent
12372 expression and append to the definition. */
12373 if (loc->cond)
12374 {
12375 /* Only test support at download time, we may not know target
12376 capabilities at definition time. */
12377 if (remote_supports_cond_tracepoints ())
35b1e5cc 12378 {
833177a4 12379 agent_expr_up aexpr = gen_eval_for_expr (tpaddr, loc->cond.get ());
bba74b36
YQ
12380 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
12381 aexpr->len);
e8ba3115
YQ
12382 pkt = buf + strlen (buf);
12383 for (ndx = 0; ndx < aexpr->len; ++ndx)
12384 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
12385 *pkt = '\0';
35b1e5cc 12386 }
e8ba3115
YQ
12387 else
12388 warning (_("Target does not support conditional tracepoints, "
12389 "ignoring tp %d cond"), b->number);
12390 }
35b1e5cc 12391
d9b3f62e 12392 if (b->commands || *default_collect)
e8ba3115
YQ
12393 strcat (buf, "-");
12394 putpkt (buf);
12395 remote_get_noisy_reply (&target_buf, &target_buf_size);
12396 if (strcmp (target_buf, "OK"))
12397 error (_("Target does not support tracepoints."));
35b1e5cc 12398
e8ba3115
YQ
12399 /* do_single_steps (t); */
12400 if (tdp_actions)
12401 {
12402 for (ndx = 0; tdp_actions[ndx]; ndx++)
35b1e5cc 12403 {
e8ba3115 12404 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
12405 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
12406 b->number, addrbuf, /* address */
12407 tdp_actions[ndx],
12408 ((tdp_actions[ndx + 1] || stepping_actions)
12409 ? '-' : 0));
e8ba3115
YQ
12410 putpkt (buf);
12411 remote_get_noisy_reply (&target_buf,
12412 &target_buf_size);
12413 if (strcmp (target_buf, "OK"))
12414 error (_("Error on target while setting tracepoints."));
35b1e5cc 12415 }
e8ba3115
YQ
12416 }
12417 if (stepping_actions)
12418 {
12419 for (ndx = 0; stepping_actions[ndx]; ndx++)
35b1e5cc 12420 {
e8ba3115 12421 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
12422 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
12423 b->number, addrbuf, /* address */
12424 ((ndx == 0) ? "S" : ""),
12425 stepping_actions[ndx],
12426 (stepping_actions[ndx + 1] ? "-" : ""));
e8ba3115
YQ
12427 putpkt (buf);
12428 remote_get_noisy_reply (&target_buf,
12429 &target_buf_size);
12430 if (strcmp (target_buf, "OK"))
12431 error (_("Error on target while setting tracepoints."));
35b1e5cc 12432 }
e8ba3115 12433 }
409873ef 12434
4082afcc 12435 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12436 {
f00aae0f 12437 if (b->location != NULL)
409873ef 12438 {
e8ba3115 12439 strcpy (buf, "QTDPsrc:");
f00aae0f 12440 encode_source_string (b->number, loc->address, "at",
d28cd78a 12441 event_location_to_string (b->location.get ()),
f00aae0f 12442 buf + strlen (buf), 2048 - strlen (buf));
e8ba3115
YQ
12443 putpkt (buf);
12444 remote_get_noisy_reply (&target_buf, &target_buf_size);
12445 if (strcmp (target_buf, "OK"))
12446 warning (_("Target does not support source download."));
409873ef 12447 }
e8ba3115
YQ
12448 if (b->cond_string)
12449 {
12450 strcpy (buf, "QTDPsrc:");
12451 encode_source_string (b->number, loc->address,
12452 "cond", b->cond_string, buf + strlen (buf),
12453 2048 - strlen (buf));
12454 putpkt (buf);
12455 remote_get_noisy_reply (&target_buf, &target_buf_size);
12456 if (strcmp (target_buf, "OK"))
12457 warning (_("Target does not support source download."));
12458 }
12459 remote_download_command_source (b->number, loc->address,
12460 breakpoint_commands (b));
35b1e5cc 12461 }
e8ba3115
YQ
12462
12463 do_cleanups (old_chain);
35b1e5cc
SS
12464}
12465
1e4d1764 12466static int
a52a8357 12467remote_can_download_tracepoint (struct target_ops *self)
1e4d1764 12468{
1e51243a
PA
12469 struct remote_state *rs = get_remote_state ();
12470 struct trace_status *ts;
12471 int status;
12472
12473 /* Don't try to install tracepoints until we've relocated our
12474 symbols, and fetched and merged the target's tracepoint list with
12475 ours. */
12476 if (rs->starting_up)
12477 return 0;
12478
12479 ts = current_trace_status ();
8bd200f1 12480 status = remote_get_trace_status (self, ts);
1e4d1764
YQ
12481
12482 if (status == -1 || !ts->running_known || !ts->running)
12483 return 0;
12484
12485 /* If we are in a tracing experiment, but remote stub doesn't support
12486 installing tracepoint in trace, we have to return. */
12487 if (!remote_supports_install_in_trace ())
12488 return 0;
12489
12490 return 1;
12491}
12492
12493
35b1e5cc 12494static void
559d2b81
TT
12495remote_download_trace_state_variable (struct target_ops *self,
12496 struct trace_state_variable *tsv)
35b1e5cc
SS
12497{
12498 struct remote_state *rs = get_remote_state ();
00bf0b85 12499 char *p;
35b1e5cc 12500
bba74b36
YQ
12501 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12502 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12503 tsv->builtin);
00bf0b85
SS
12504 p = rs->buf + strlen (rs->buf);
12505 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12506 error (_("Trace state variable name too long for tsv definition packet"));
9f1b45b0 12507 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
00bf0b85 12508 *p++ = '\0';
35b1e5cc
SS
12509 putpkt (rs->buf);
12510 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
12511 if (*target_buf == '\0')
12512 error (_("Target does not support this command."));
12513 if (strcmp (target_buf, "OK") != 0)
12514 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12515}
12516
d248b706 12517static void
46670d57
TT
12518remote_enable_tracepoint (struct target_ops *self,
12519 struct bp_location *location)
d248b706
KY
12520{
12521 struct remote_state *rs = get_remote_state ();
12522 char addr_buf[40];
12523
12524 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12525 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12526 location->owner->number, addr_buf);
d248b706
KY
12527 putpkt (rs->buf);
12528 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12529 if (*rs->buf == '\0')
12530 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12531 if (strcmp (rs->buf, "OK") != 0)
12532 error (_("Error on target while enabling tracepoint."));
12533}
12534
12535static void
780b049c
TT
12536remote_disable_tracepoint (struct target_ops *self,
12537 struct bp_location *location)
d248b706
KY
12538{
12539 struct remote_state *rs = get_remote_state ();
12540 char addr_buf[40];
12541
12542 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12543 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12544 location->owner->number, addr_buf);
d248b706
KY
12545 putpkt (rs->buf);
12546 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12547 if (*rs->buf == '\0')
12548 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12549 if (strcmp (rs->buf, "OK") != 0)
12550 error (_("Error on target while disabling tracepoint."));
12551}
12552
35b1e5cc 12553static void
583f9a86 12554remote_trace_set_readonly_regions (struct target_ops *self)
35b1e5cc
SS
12555{
12556 asection *s;
81b9b86e 12557 bfd *abfd = NULL;
35b1e5cc 12558 bfd_size_type size;
608bcef2 12559 bfd_vma vma;
35b1e5cc 12560 int anysecs = 0;
c2fa21f1 12561 int offset = 0;
35b1e5cc
SS
12562
12563 if (!exec_bfd)
12564 return; /* No information to give. */
12565
12566 strcpy (target_buf, "QTro");
9779ab84 12567 offset = strlen (target_buf);
35b1e5cc
SS
12568 for (s = exec_bfd->sections; s; s = s->next)
12569 {
12570 char tmp1[40], tmp2[40];
c2fa21f1 12571 int sec_length;
35b1e5cc
SS
12572
12573 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 12574 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
12575 (s->flags & SEC_READONLY) == 0)
12576 continue;
12577
12578 anysecs = 1;
81b9b86e 12579 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 12580 size = bfd_get_section_size (s);
608bcef2
HZ
12581 sprintf_vma (tmp1, vma);
12582 sprintf_vma (tmp2, vma + size);
c2fa21f1
HZ
12583 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
12584 if (offset + sec_length + 1 > target_buf_size)
12585 {
4082afcc 12586 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 12587 warning (_("\
c2fa21f1
HZ
12588Too many sections for read-only sections definition packet."));
12589 break;
12590 }
bba74b36
YQ
12591 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
12592 tmp1, tmp2);
c2fa21f1 12593 offset += sec_length;
35b1e5cc
SS
12594 }
12595 if (anysecs)
12596 {
12597 putpkt (target_buf);
12598 getpkt (&target_buf, &target_buf_size, 0);
12599 }
12600}
12601
12602static void
e2d1aae3 12603remote_trace_start (struct target_ops *self)
35b1e5cc
SS
12604{
12605 putpkt ("QTStart");
12606 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
12607 if (*target_buf == '\0')
12608 error (_("Target does not support this command."));
12609 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
12610 error (_("Bogus reply from target: %s"), target_buf);
12611}
12612
12613static int
8bd200f1 12614remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
35b1e5cc 12615{
953b98d1 12616 /* Initialize it just to avoid a GCC false warning. */
f652de6f 12617 char *p = NULL;
0df8b418 12618 /* FIXME we need to get register block size some other way. */
00bf0b85 12619 extern int trace_regblock_size;
bd3eecc3
PA
12620 enum packet_result result;
12621
4082afcc 12622 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 12623 return -1;
a744cf53 12624
00bf0b85
SS
12625 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
12626
049dc89b
JK
12627 putpkt ("qTStatus");
12628
492d29ea 12629 TRY
67f41397
JK
12630 {
12631 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
12632 }
492d29ea 12633 CATCH (ex, RETURN_MASK_ERROR)
67f41397 12634 {
598d3636
JK
12635 if (ex.error != TARGET_CLOSE_ERROR)
12636 {
12637 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12638 return -1;
12639 }
12640 throw_exception (ex);
67f41397 12641 }
492d29ea 12642 END_CATCH
00bf0b85 12643
bd3eecc3
PA
12644 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12645
00bf0b85 12646 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 12647 if (result == PACKET_UNKNOWN)
00bf0b85 12648 return -1;
35b1e5cc 12649
00bf0b85 12650 /* We're working with a live target. */
f5911ea1 12651 ts->filename = NULL;
00bf0b85 12652
00bf0b85 12653 if (*p++ != 'T')
35b1e5cc
SS
12654 error (_("Bogus trace status reply from target: %s"), target_buf);
12655
84cebc4a
YQ
12656 /* Function 'parse_trace_status' sets default value of each field of
12657 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
12658 parse_trace_status (p, ts);
12659
12660 return ts->running;
35b1e5cc
SS
12661}
12662
70221824 12663static void
db90e85c 12664remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
f196051f
SS
12665 struct uploaded_tp *utp)
12666{
12667 struct remote_state *rs = get_remote_state ();
f196051f
SS
12668 char *reply;
12669 struct bp_location *loc;
12670 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 12671 size_t size = get_remote_packet_size ();
f196051f
SS
12672
12673 if (tp)
12674 {
c1fc2657 12675 tp->hit_count = 0;
f196051f 12676 tp->traceframe_usage = 0;
c1fc2657 12677 for (loc = tp->loc; loc; loc = loc->next)
f196051f
SS
12678 {
12679 /* If the tracepoint was never downloaded, don't go asking for
12680 any status. */
12681 if (tp->number_on_target == 0)
12682 continue;
bba74b36
YQ
12683 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12684 phex_nz (loc->address, 0));
f196051f
SS
12685 putpkt (rs->buf);
12686 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12687 if (reply && *reply)
12688 {
12689 if (*reply == 'V')
12690 parse_tracepoint_status (reply + 1, bp, utp);
12691 }
12692 }
12693 }
12694 else if (utp)
12695 {
12696 utp->hit_count = 0;
12697 utp->traceframe_usage = 0;
bba74b36
YQ
12698 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12699 phex_nz (utp->addr, 0));
f196051f
SS
12700 putpkt (rs->buf);
12701 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12702 if (reply && *reply)
12703 {
12704 if (*reply == 'V')
12705 parse_tracepoint_status (reply + 1, bp, utp);
12706 }
12707 }
12708}
12709
35b1e5cc 12710static void
74499f1b 12711remote_trace_stop (struct target_ops *self)
35b1e5cc
SS
12712{
12713 putpkt ("QTStop");
12714 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
12715 if (*target_buf == '\0')
12716 error (_("Target does not support this command."));
12717 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
12718 error (_("Bogus reply from target: %s"), target_buf);
12719}
12720
12721static int
bd4c6793
TT
12722remote_trace_find (struct target_ops *self,
12723 enum trace_find_type type, int num,
cc5925ad 12724 CORE_ADDR addr1, CORE_ADDR addr2,
35b1e5cc
SS
12725 int *tpp)
12726{
12727 struct remote_state *rs = get_remote_state ();
bba74b36 12728 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
12729 char *p, *reply;
12730 int target_frameno = -1, target_tracept = -1;
12731
e6e4e701
PA
12732 /* Lookups other than by absolute frame number depend on the current
12733 trace selected, so make sure it is correct on the remote end
12734 first. */
12735 if (type != tfind_number)
12736 set_remote_traceframe ();
12737
35b1e5cc
SS
12738 p = rs->buf;
12739 strcpy (p, "QTFrame:");
12740 p = strchr (p, '\0');
12741 switch (type)
12742 {
12743 case tfind_number:
bba74b36 12744 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
12745 break;
12746 case tfind_pc:
bba74b36 12747 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
12748 break;
12749 case tfind_tp:
bba74b36 12750 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
12751 break;
12752 case tfind_range:
bba74b36
YQ
12753 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12754 phex_nz (addr2, 0));
35b1e5cc
SS
12755 break;
12756 case tfind_outside:
bba74b36
YQ
12757 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12758 phex_nz (addr2, 0));
35b1e5cc
SS
12759 break;
12760 default:
9b20d036 12761 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
12762 }
12763
12764 putpkt (rs->buf);
2f65bcb7 12765 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
ad91cd99
PA
12766 if (*reply == '\0')
12767 error (_("Target does not support this command."));
35b1e5cc
SS
12768
12769 while (reply && *reply)
12770 switch (*reply)
12771 {
12772 case 'F':
f197e0f1
VP
12773 p = ++reply;
12774 target_frameno = (int) strtol (p, &reply, 16);
12775 if (reply == p)
12776 error (_("Unable to parse trace frame number"));
e6e4e701
PA
12777 /* Don't update our remote traceframe number cache on failure
12778 to select a remote traceframe. */
f197e0f1
VP
12779 if (target_frameno == -1)
12780 return -1;
35b1e5cc
SS
12781 break;
12782 case 'T':
f197e0f1
VP
12783 p = ++reply;
12784 target_tracept = (int) strtol (p, &reply, 16);
12785 if (reply == p)
12786 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
12787 break;
12788 case 'O': /* "OK"? */
12789 if (reply[1] == 'K' && reply[2] == '\0')
12790 reply += 2;
12791 else
12792 error (_("Bogus reply from target: %s"), reply);
12793 break;
12794 default:
12795 error (_("Bogus reply from target: %s"), reply);
12796 }
12797 if (tpp)
12798 *tpp = target_tracept;
e6e4e701 12799
262e1174 12800 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
12801 return target_frameno;
12802}
12803
12804static int
4011015b
TT
12805remote_get_trace_state_variable_value (struct target_ops *self,
12806 int tsvnum, LONGEST *val)
35b1e5cc
SS
12807{
12808 struct remote_state *rs = get_remote_state ();
12809 char *reply;
12810 ULONGEST uval;
12811
e6e4e701
PA
12812 set_remote_traceframe ();
12813
bba74b36 12814 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc
SS
12815 putpkt (rs->buf);
12816 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12817 if (reply && *reply)
12818 {
12819 if (*reply == 'V')
12820 {
12821 unpack_varlen_hex (reply + 1, &uval);
12822 *val = (LONGEST) uval;
12823 return 1;
12824 }
12825 }
12826 return 0;
12827}
12828
00bf0b85 12829static int
dc3decaf 12830remote_save_trace_data (struct target_ops *self, const char *filename)
00bf0b85
SS
12831{
12832 struct remote_state *rs = get_remote_state ();
12833 char *p, *reply;
12834
12835 p = rs->buf;
12836 strcpy (p, "QTSave:");
12837 p += strlen (p);
12838 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12839 error (_("Remote file name too long for trace save packet"));
9f1b45b0 12840 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
12841 *p++ = '\0';
12842 putpkt (rs->buf);
ad91cd99 12843 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
d6c5869f 12844 if (*reply == '\0')
ad91cd99
PA
12845 error (_("Target does not support this command."));
12846 if (strcmp (reply, "OK") != 0)
12847 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
12848 return 0;
12849}
12850
12851/* This is basically a memory transfer, but needs to be its own packet
12852 because we don't know how the target actually organizes its trace
12853 memory, plus we want to be able to ask for as much as possible, but
12854 not be unhappy if we don't get as much as we ask for. */
12855
12856static LONGEST
88ee6f45
TT
12857remote_get_raw_trace_data (struct target_ops *self,
12858 gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
12859{
12860 struct remote_state *rs = get_remote_state ();
12861 char *reply;
12862 char *p;
12863 int rslt;
12864
12865 p = rs->buf;
12866 strcpy (p, "qTBuffer:");
12867 p += strlen (p);
12868 p += hexnumstr (p, offset);
12869 *p++ = ',';
12870 p += hexnumstr (p, len);
12871 *p++ = '\0';
12872
12873 putpkt (rs->buf);
12874 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12875 if (reply && *reply)
12876 {
12877 /* 'l' by itself means we're at the end of the buffer and
12878 there is nothing more to get. */
12879 if (*reply == 'l')
12880 return 0;
12881
12882 /* Convert the reply into binary. Limit the number of bytes to
12883 convert according to our passed-in buffer size, rather than
12884 what was returned in the packet; if the target is
12885 unexpectedly generous and gives us a bigger reply than we
12886 asked for, we don't want to crash. */
12887 rslt = hex2bin (target_buf, buf, len);
12888 return rslt;
12889 }
12890
12891 /* Something went wrong, flag as an error. */
12892 return -1;
12893}
12894
35b1e5cc 12895static void
37b25738 12896remote_set_disconnected_tracing (struct target_ops *self, int val)
35b1e5cc
SS
12897{
12898 struct remote_state *rs = get_remote_state ();
12899
4082afcc 12900 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 12901 {
ad91cd99
PA
12902 char *reply;
12903
bba74b36 12904 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 12905 putpkt (rs->buf);
ad91cd99
PA
12906 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12907 if (*reply == '\0')
33da3f1c 12908 error (_("Target does not support this command."));
ad91cd99
PA
12909 if (strcmp (reply, "OK") != 0)
12910 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
12911 }
12912 else if (val)
12913 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
12914}
12915
dc146f7c
VP
12916static int
12917remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12918{
12919 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 12920
fe978cb0
PA
12921 if (info && info->priv)
12922 return info->priv->core;
dc146f7c
VP
12923 return -1;
12924}
12925
4daf5ac0 12926static void
736d5b1f 12927remote_set_circular_trace_buffer (struct target_ops *self, int val)
4daf5ac0
SS
12928{
12929 struct remote_state *rs = get_remote_state ();
ad91cd99 12930 char *reply;
4daf5ac0 12931
bba74b36 12932 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 12933 putpkt (rs->buf);
ad91cd99
PA
12934 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12935 if (*reply == '\0')
4daf5ac0 12936 error (_("Target does not support this command."));
ad91cd99
PA
12937 if (strcmp (reply, "OK") != 0)
12938 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
12939}
12940
b3b9301e 12941static struct traceframe_info *
a893e81f 12942remote_traceframe_info (struct target_ops *self)
b3b9301e
PA
12943{
12944 char *text;
12945
12946 text = target_read_stralloc (&current_target,
12947 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
12948 if (text != NULL)
12949 {
12950 struct traceframe_info *info;
12951 struct cleanup *back_to = make_cleanup (xfree, text);
12952
12953 info = parse_traceframe_info (text);
12954 do_cleanups (back_to);
12955 return info;
12956 }
12957
12958 return NULL;
12959}
12960
405f8e94
SS
12961/* Handle the qTMinFTPILen packet. Returns the minimum length of
12962 instruction on which a fast tracepoint may be placed. Returns -1
12963 if the packet is not supported, and 0 if the minimum instruction
12964 length is unknown. */
12965
12966static int
0e67620a 12967remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
405f8e94
SS
12968{
12969 struct remote_state *rs = get_remote_state ();
12970 char *reply;
12971
e886a173
PA
12972 /* If we're not debugging a process yet, the IPA can't be
12973 loaded. */
12974 if (!target_has_execution)
12975 return 0;
12976
12977 /* Make sure the remote is pointing at the right process. */
12978 set_general_process ();
12979
bba74b36 12980 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94
SS
12981 putpkt (rs->buf);
12982 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12983 if (*reply == '\0')
12984 return -1;
12985 else
12986 {
12987 ULONGEST min_insn_len;
12988
12989 unpack_varlen_hex (reply, &min_insn_len);
12990
12991 return (int) min_insn_len;
12992 }
12993}
12994
f6f899bf 12995static void
4da384be 12996remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
f6f899bf 12997{
4082afcc 12998 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
12999 {
13000 struct remote_state *rs = get_remote_state ();
13001 char *buf = rs->buf;
13002 char *endbuf = rs->buf + get_remote_packet_size ();
13003 enum packet_result result;
13004
13005 gdb_assert (val >= 0 || val == -1);
13006 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
13007 /* Send -1 as literal "-1" to avoid host size dependency. */
13008 if (val < 0)
13009 {
13010 *buf++ = '-';
13011 buf += hexnumstr (buf, (ULONGEST) -val);
13012 }
13013 else
13014 buf += hexnumstr (buf, (ULONGEST) val);
13015
13016 putpkt (rs->buf);
13017 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
13018 result = packet_ok (rs->buf,
13019 &remote_protocol_packets[PACKET_QTBuffer_size]);
13020
13021 if (result != PACKET_OK)
13022 warning (_("Bogus reply from target: %s"), rs->buf);
13023 }
13024}
13025
f196051f 13026static int
d9e68a2c
TT
13027remote_set_trace_notes (struct target_ops *self,
13028 const char *user, const char *notes,
ca623f82 13029 const char *stop_notes)
f196051f
SS
13030{
13031 struct remote_state *rs = get_remote_state ();
13032 char *reply;
13033 char *buf = rs->buf;
13034 char *endbuf = rs->buf + get_remote_packet_size ();
13035 int nbytes;
13036
13037 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
13038 if (user)
13039 {
13040 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 13041 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
13042 buf += 2 * nbytes;
13043 *buf++ = ';';
13044 }
13045 if (notes)
13046 {
13047 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 13048 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
13049 buf += 2 * nbytes;
13050 *buf++ = ';';
13051 }
13052 if (stop_notes)
13053 {
13054 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 13055 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
13056 buf += 2 * nbytes;
13057 *buf++ = ';';
13058 }
13059 /* Ensure the buffer is terminated. */
13060 *buf = '\0';
13061
13062 putpkt (rs->buf);
13063 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
13064 if (*reply == '\0')
13065 return 0;
13066
13067 if (strcmp (reply, "OK") != 0)
13068 error (_("Bogus reply from target: %s"), reply);
13069
13070 return 1;
13071}
13072
d1feda86 13073static int
2c152180 13074remote_use_agent (struct target_ops *self, int use)
d1feda86 13075{
4082afcc 13076 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
13077 {
13078 struct remote_state *rs = get_remote_state ();
13079
13080 /* If the stub supports QAgent. */
bba74b36 13081 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
13082 putpkt (rs->buf);
13083 getpkt (&rs->buf, &rs->buf_size, 0);
13084
13085 if (strcmp (rs->buf, "OK") == 0)
13086 {
13087 use_agent = use;
13088 return 1;
13089 }
13090 }
13091
13092 return 0;
13093}
13094
13095static int
fe38f897 13096remote_can_use_agent (struct target_ops *self)
d1feda86 13097{
4082afcc 13098 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
13099}
13100
9accd112
MM
13101struct btrace_target_info
13102{
13103 /* The ptid of the traced thread. */
13104 ptid_t ptid;
f4abbc16
MM
13105
13106 /* The obtained branch trace configuration. */
13107 struct btrace_config conf;
9accd112
MM
13108};
13109
f4abbc16
MM
13110/* Reset our idea of our target's btrace configuration. */
13111
13112static void
13113remote_btrace_reset (void)
13114{
13115 struct remote_state *rs = get_remote_state ();
13116
13117 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
13118}
13119
9accd112
MM
13120/* Check whether the target supports branch tracing. */
13121
13122static int
043c3577 13123remote_supports_btrace (struct target_ops *self, enum btrace_format format)
9accd112 13124{
4082afcc 13125 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
9accd112 13126 return 0;
4082afcc 13127 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
9accd112
MM
13128 return 0;
13129
043c3577
MM
13130 switch (format)
13131 {
13132 case BTRACE_FORMAT_NONE:
13133 return 0;
13134
13135 case BTRACE_FORMAT_BTS:
13136 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
b20a6524
MM
13137
13138 case BTRACE_FORMAT_PT:
13139 /* The trace is decoded on the host. Even if our target supports it,
13140 we still need to have libipt to decode the trace. */
13141#if defined (HAVE_LIBIPT)
13142 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
13143#else /* !defined (HAVE_LIBIPT) */
13144 return 0;
13145#endif /* !defined (HAVE_LIBIPT) */
043c3577
MM
13146 }
13147
13148 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
9accd112
MM
13149}
13150
f4abbc16
MM
13151/* Synchronize the configuration with the target. */
13152
13153static void
13154btrace_sync_conf (const struct btrace_config *conf)
13155{
d33501a5
MM
13156 struct packet_config *packet;
13157 struct remote_state *rs;
13158 char *buf, *pos, *endbuf;
13159
13160 rs = get_remote_state ();
13161 buf = rs->buf;
13162 endbuf = buf + get_remote_packet_size ();
13163
13164 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
13165 if (packet_config_support (packet) == PACKET_ENABLE
13166 && conf->bts.size != rs->btrace_config.bts.size)
13167 {
13168 pos = buf;
13169 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13170 conf->bts.size);
13171
13172 putpkt (buf);
13173 getpkt (&buf, &rs->buf_size, 0);
13174
13175 if (packet_ok (buf, packet) == PACKET_ERROR)
13176 {
13177 if (buf[0] == 'E' && buf[1] == '.')
13178 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
13179 else
13180 error (_("Failed to configure the BTS buffer size."));
13181 }
13182
13183 rs->btrace_config.bts.size = conf->bts.size;
13184 }
b20a6524
MM
13185
13186 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
13187 if (packet_config_support (packet) == PACKET_ENABLE
13188 && conf->pt.size != rs->btrace_config.pt.size)
13189 {
13190 pos = buf;
13191 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
13192 conf->pt.size);
13193
13194 putpkt (buf);
13195 getpkt (&buf, &rs->buf_size, 0);
13196
13197 if (packet_ok (buf, packet) == PACKET_ERROR)
13198 {
13199 if (buf[0] == 'E' && buf[1] == '.')
13200 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
13201 else
13202 error (_("Failed to configure the trace buffer size."));
13203 }
13204
13205 rs->btrace_config.pt.size = conf->pt.size;
13206 }
f4abbc16
MM
13207}
13208
13209/* Read the current thread's btrace configuration from the target and
13210 store it into CONF. */
13211
13212static void
13213btrace_read_config (struct btrace_config *conf)
13214{
13215 char *xml;
13216
13217 xml = target_read_stralloc (&current_target,
b20a6524 13218 TARGET_OBJECT_BTRACE_CONF, "");
f4abbc16
MM
13219 if (xml != NULL)
13220 {
13221 struct cleanup *cleanup;
13222
13223 cleanup = make_cleanup (xfree, xml);
13224 parse_xml_btrace_conf (conf, xml);
13225 do_cleanups (cleanup);
13226 }
13227}
13228
c0272db5
TW
13229/* Maybe reopen target btrace. */
13230
13231static void
13232remote_btrace_maybe_reopen (void)
13233{
13234 struct remote_state *rs = get_remote_state ();
c0272db5
TW
13235 struct thread_info *tp;
13236 int btrace_target_pushed = 0;
13237 int warned = 0;
13238
5ed8105e
PA
13239 scoped_restore_current_thread restore_thread;
13240
c0272db5
TW
13241 ALL_NON_EXITED_THREADS (tp)
13242 {
13243 set_general_thread (tp->ptid);
13244
13245 memset (&rs->btrace_config, 0x00, sizeof (struct btrace_config));
13246 btrace_read_config (&rs->btrace_config);
13247
13248 if (rs->btrace_config.format == BTRACE_FORMAT_NONE)
13249 continue;
13250
13251#if !defined (HAVE_LIBIPT)
13252 if (rs->btrace_config.format == BTRACE_FORMAT_PT)
13253 {
13254 if (!warned)
13255 {
13256 warned = 1;
13257 warning (_("GDB does not support Intel Processor Trace. "
13258 "\"record\" will not work in this session."));
13259 }
13260
13261 continue;
13262 }
13263#endif /* !defined (HAVE_LIBIPT) */
13264
13265 /* Push target, once, but before anything else happens. This way our
13266 changes to the threads will be cleaned up by unpushing the target
13267 in case btrace_read_config () throws. */
13268 if (!btrace_target_pushed)
13269 {
13270 btrace_target_pushed = 1;
13271 record_btrace_push_target ();
13272 printf_filtered (_("Target is recording using %s.\n"),
13273 btrace_format_string (rs->btrace_config.format));
13274 }
13275
13276 tp->btrace.target = XCNEW (struct btrace_target_info);
13277 tp->btrace.target->ptid = tp->ptid;
13278 tp->btrace.target->conf = rs->btrace_config;
13279 }
c0272db5
TW
13280}
13281
9accd112
MM
13282/* Enable branch tracing. */
13283
13284static struct btrace_target_info *
f4abbc16
MM
13285remote_enable_btrace (struct target_ops *self, ptid_t ptid,
13286 const struct btrace_config *conf)
9accd112
MM
13287{
13288 struct btrace_target_info *tinfo = NULL;
b20a6524 13289 struct packet_config *packet = NULL;
9accd112
MM
13290 struct remote_state *rs = get_remote_state ();
13291 char *buf = rs->buf;
13292 char *endbuf = rs->buf + get_remote_packet_size ();
13293
b20a6524
MM
13294 switch (conf->format)
13295 {
13296 case BTRACE_FORMAT_BTS:
13297 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
13298 break;
13299
13300 case BTRACE_FORMAT_PT:
13301 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
13302 break;
13303 }
13304
13305 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13306 error (_("Target does not support branch tracing."));
13307
f4abbc16
MM
13308 btrace_sync_conf (conf);
13309
9accd112
MM
13310 set_general_thread (ptid);
13311
13312 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13313 putpkt (rs->buf);
13314 getpkt (&rs->buf, &rs->buf_size, 0);
13315
13316 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13317 {
13318 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13319 error (_("Could not enable branch tracing for %s: %s"),
13320 target_pid_to_str (ptid), rs->buf + 2);
13321 else
13322 error (_("Could not enable branch tracing for %s."),
13323 target_pid_to_str (ptid));
13324 }
13325
8d749320 13326 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
13327 tinfo->ptid = ptid;
13328
f4abbc16
MM
13329 /* If we fail to read the configuration, we lose some information, but the
13330 tracing itself is not impacted. */
492d29ea
PA
13331 TRY
13332 {
13333 btrace_read_config (&tinfo->conf);
13334 }
13335 CATCH (err, RETURN_MASK_ERROR)
13336 {
13337 if (err.message != NULL)
13338 warning ("%s", err.message);
13339 }
13340 END_CATCH
f4abbc16 13341
9accd112
MM
13342 return tinfo;
13343}
13344
13345/* Disable branch tracing. */
13346
13347static void
25e95349
TT
13348remote_disable_btrace (struct target_ops *self,
13349 struct btrace_target_info *tinfo)
9accd112
MM
13350{
13351 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
13352 struct remote_state *rs = get_remote_state ();
13353 char *buf = rs->buf;
13354 char *endbuf = rs->buf + get_remote_packet_size ();
13355
4082afcc 13356 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13357 error (_("Target does not support branch tracing."));
13358
13359 set_general_thread (tinfo->ptid);
13360
13361 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
13362 putpkt (rs->buf);
13363 getpkt (&rs->buf, &rs->buf_size, 0);
13364
13365 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
13366 {
13367 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
13368 error (_("Could not disable branch tracing for %s: %s"),
13369 target_pid_to_str (tinfo->ptid), rs->buf + 2);
13370 else
13371 error (_("Could not disable branch tracing for %s."),
13372 target_pid_to_str (tinfo->ptid));
13373 }
13374
13375 xfree (tinfo);
13376}
13377
13378/* Teardown branch tracing. */
13379
13380static void
1777056d
TT
13381remote_teardown_btrace (struct target_ops *self,
13382 struct btrace_target_info *tinfo)
9accd112
MM
13383{
13384 /* We must not talk to the target during teardown. */
13385 xfree (tinfo);
13386}
13387
13388/* Read the branch trace. */
13389
969c39fb 13390static enum btrace_error
39c49f83 13391remote_read_btrace (struct target_ops *self,
734b0e4b 13392 struct btrace_data *btrace,
969c39fb 13393 struct btrace_target_info *tinfo,
9accd112
MM
13394 enum btrace_read_type type)
13395{
13396 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
969c39fb 13397 struct cleanup *cleanup;
9accd112
MM
13398 const char *annex;
13399 char *xml;
13400
4082afcc 13401 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
13402 error (_("Target does not support branch tracing."));
13403
13404#if !defined(HAVE_LIBEXPAT)
13405 error (_("Cannot process branch tracing result. XML parsing not supported."));
13406#endif
13407
13408 switch (type)
13409 {
864089d2 13410 case BTRACE_READ_ALL:
9accd112
MM
13411 annex = "all";
13412 break;
864089d2 13413 case BTRACE_READ_NEW:
9accd112
MM
13414 annex = "new";
13415 break;
969c39fb
MM
13416 case BTRACE_READ_DELTA:
13417 annex = "delta";
13418 break;
9accd112
MM
13419 default:
13420 internal_error (__FILE__, __LINE__,
13421 _("Bad branch tracing read type: %u."),
13422 (unsigned int) type);
13423 }
13424
13425 xml = target_read_stralloc (&current_target,
b20a6524 13426 TARGET_OBJECT_BTRACE, annex);
969c39fb
MM
13427 if (xml == NULL)
13428 return BTRACE_ERR_UNKNOWN;
9accd112 13429
969c39fb 13430 cleanup = make_cleanup (xfree, xml);
734b0e4b 13431 parse_xml_btrace (btrace, xml);
969c39fb 13432 do_cleanups (cleanup);
9accd112 13433
969c39fb 13434 return BTRACE_ERR_NONE;
9accd112
MM
13435}
13436
f4abbc16
MM
13437static const struct btrace_config *
13438remote_btrace_conf (struct target_ops *self,
13439 const struct btrace_target_info *tinfo)
13440{
13441 return &tinfo->conf;
13442}
13443
ced63ec0 13444static int
5436ff03 13445remote_augmented_libraries_svr4_read (struct target_ops *self)
ced63ec0 13446{
4082afcc
PA
13447 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
13448 == PACKET_ENABLE);
ced63ec0
GB
13449}
13450
9dd130a0
TT
13451/* Implementation of to_load. */
13452
13453static void
9cbe5fff 13454remote_load (struct target_ops *self, const char *name, int from_tty)
9dd130a0
TT
13455{
13456 generic_load (name, from_tty);
13457}
13458
c78fa86a
GB
13459/* Accepts an integer PID; returns a string representing a file that
13460 can be opened on the remote side to get the symbols for the child
13461 process. Returns NULL if the operation is not supported. */
13462
13463static char *
13464remote_pid_to_exec_file (struct target_ops *self, int pid)
13465{
13466 static char *filename = NULL;
835205d0
GB
13467 struct inferior *inf;
13468 char *annex = NULL;
c78fa86a
GB
13469
13470 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
13471 return NULL;
13472
13473 if (filename != NULL)
13474 xfree (filename);
13475
835205d0
GB
13476 inf = find_inferior_pid (pid);
13477 if (inf == NULL)
13478 internal_error (__FILE__, __LINE__,
13479 _("not currently attached to process %d"), pid);
13480
13481 if (!inf->fake_pid_p)
13482 {
13483 const int annex_size = 9;
13484
224c3ddb 13485 annex = (char *) alloca (annex_size);
835205d0
GB
13486 xsnprintf (annex, annex_size, "%x", pid);
13487 }
13488
c78fa86a
GB
13489 filename = target_read_stralloc (&current_target,
13490 TARGET_OBJECT_EXEC_FILE, annex);
13491
13492 return filename;
13493}
13494
750ce8d1
YQ
13495/* Implement the to_can_do_single_step target_ops method. */
13496
13497static int
13498remote_can_do_single_step (struct target_ops *ops)
13499{
13500 /* We can only tell whether target supports single step or not by
13501 supported s and S vCont actions if the stub supports vContSupported
13502 feature. If the stub doesn't support vContSupported feature,
13503 we have conservatively to think target doesn't supports single
13504 step. */
13505 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13506 {
13507 struct remote_state *rs = get_remote_state ();
13508
13509 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13510 remote_vcont_probe (rs);
13511
13512 return rs->supports_vCont.s && rs->supports_vCont.S;
13513 }
13514 else
13515 return 0;
13516}
13517
3a00c802
PA
13518/* Implementation of the to_execution_direction method for the remote
13519 target. */
13520
13521static enum exec_direction_kind
13522remote_execution_direction (struct target_ops *self)
13523{
13524 struct remote_state *rs = get_remote_state ();
13525
13526 return rs->last_resume_exec_dir;
13527}
13528
c906108c 13529static void
fba45db2 13530init_remote_ops (void)
c906108c 13531{
c5aa993b 13532 remote_ops.to_shortname = "remote";
c906108c 13533 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 13534 remote_ops.to_doc =
c906108c 13535 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
13536Specify the serial device it is connected to\n\
13537(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
13538 remote_ops.to_open = remote_open;
13539 remote_ops.to_close = remote_close;
c906108c 13540 remote_ops.to_detach = remote_detach;
6ad8ae5c 13541 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 13542 remote_ops.to_resume = remote_resume;
85ad3aaf 13543 remote_ops.to_commit_resume = remote_commit_resume;
c906108c
SS
13544 remote_ops.to_wait = remote_wait;
13545 remote_ops.to_fetch_registers = remote_fetch_registers;
13546 remote_ops.to_store_registers = remote_store_registers;
13547 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b 13548 remote_ops.to_files_info = remote_files_info;
c906108c
SS
13549 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13550 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
f7e6eed5
PA
13551 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13552 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13553 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13554 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
3c3bea1c
GS
13555 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13556 remote_ops.to_stopped_data_address = remote_stopped_data_address;
283002cf
MR
13557 remote_ops.to_watchpoint_addr_within_range =
13558 remote_watchpoint_addr_within_range;
3c3bea1c
GS
13559 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13560 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13561 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
480a3f21
PW
13562 remote_ops.to_region_ok_for_hw_watchpoint
13563 = remote_region_ok_for_hw_watchpoint;
3c3bea1c
GS
13564 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13565 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b 13566 remote_ops.to_kill = remote_kill;
9dd130a0 13567 remote_ops.to_load = remote_load;
c906108c 13568 remote_ops.to_mourn_inferior = remote_mourn;
2455069d 13569 remote_ops.to_pass_signals = remote_pass_signals;
82075af2 13570 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
9b224c5e 13571 remote_ops.to_program_signals = remote_program_signals;
c906108c 13572 remote_ops.to_thread_alive = remote_thread_alive;
79efa585 13573 remote_ops.to_thread_name = remote_thread_name;
e8032dde 13574 remote_ops.to_update_thread_list = remote_update_thread_list;
0caabb7e 13575 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 13576 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10760264 13577 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
c906108c 13578 remote_ops.to_stop = remote_stop;
bfedc46a 13579 remote_ops.to_interrupt = remote_interrupt;
93692b58 13580 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
4b8a223f 13581 remote_ops.to_xfer_partial = remote_xfer_partial;
09c98b44 13582 remote_ops.to_get_memory_xfer_limit = remote_get_memory_xfer_limit;
96baa820 13583 remote_ops.to_rcmd = remote_rcmd;
c78fa86a 13584 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
49d03eab 13585 remote_ops.to_log_command = serial_log_command;
38691318 13586 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 13587 remote_ops.to_stratum = process_stratum;
c35b1492
PA
13588 remote_ops.to_has_all_memory = default_child_has_all_memory;
13589 remote_ops.to_has_memory = default_child_has_memory;
13590 remote_ops.to_has_stack = default_child_has_stack;
13591 remote_ops.to_has_registers = default_child_has_registers;
13592 remote_ops.to_has_execution = default_child_has_execution;
3e43a32a 13593 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 13594 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 13595 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 13596 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
13597 remote_ops.to_flash_erase = remote_flash_erase;
13598 remote_ops.to_flash_done = remote_flash_done;
29709017 13599 remote_ops.to_read_description = remote_read_description;
08388c79 13600 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
13601 remote_ops.to_can_async_p = remote_can_async_p;
13602 remote_ops.to_is_async_p = remote_is_async_p;
13603 remote_ops.to_async = remote_async;
65706a29 13604 remote_ops.to_thread_events = remote_thread_events;
750ce8d1 13605 remote_ops.to_can_do_single_step = remote_can_do_single_step;
75c99385
PA
13606 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13607 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 13608 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 13609 remote_ops.to_supports_multi_process = remote_supports_multi_process;
03583c20
UW
13610 remote_ops.to_supports_disable_randomization
13611 = remote_supports_disable_randomization;
4bd7dc42 13612 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
7313baad
UW
13613 remote_ops.to_fileio_open = remote_hostio_open;
13614 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13615 remote_ops.to_fileio_pread = remote_hostio_pread;
9b15c1f0 13616 remote_ops.to_fileio_fstat = remote_hostio_fstat;
7313baad
UW
13617 remote_ops.to_fileio_close = remote_hostio_close;
13618 remote_ops.to_fileio_unlink = remote_hostio_unlink;
b9e7b9c3 13619 remote_ops.to_fileio_readlink = remote_hostio_readlink;
d248b706 13620 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
3065dfb6 13621 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
b775012e 13622 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
d3ce09f5 13623 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
35b1e5cc
SS
13624 remote_ops.to_trace_init = remote_trace_init;
13625 remote_ops.to_download_tracepoint = remote_download_tracepoint;
1e4d1764 13626 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
3e43a32a
MS
13627 remote_ops.to_download_trace_state_variable
13628 = remote_download_trace_state_variable;
d248b706
KY
13629 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13630 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
35b1e5cc
SS
13631 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13632 remote_ops.to_trace_start = remote_trace_start;
13633 remote_ops.to_get_trace_status = remote_get_trace_status;
f196051f 13634 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
35b1e5cc
SS
13635 remote_ops.to_trace_stop = remote_trace_stop;
13636 remote_ops.to_trace_find = remote_trace_find;
3e43a32a
MS
13637 remote_ops.to_get_trace_state_variable_value
13638 = remote_get_trace_state_variable_value;
00bf0b85
SS
13639 remote_ops.to_save_trace_data = remote_save_trace_data;
13640 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
3e43a32a
MS
13641 remote_ops.to_upload_trace_state_variables
13642 = remote_upload_trace_state_variables;
00bf0b85 13643 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
405f8e94 13644 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
35b1e5cc 13645 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
4daf5ac0 13646 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
f6f899bf 13647 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
f196051f 13648 remote_ops.to_set_trace_notes = remote_set_trace_notes;
dc146f7c 13649 remote_ops.to_core_of_thread = remote_core_of_thread;
4a5e7a5b 13650 remote_ops.to_verify_memory = remote_verify_memory;
711e434b 13651 remote_ops.to_get_tib_address = remote_get_tib_address;
d914c394 13652 remote_ops.to_set_permissions = remote_set_permissions;
0fb4aa4b
PA
13653 remote_ops.to_static_tracepoint_marker_at
13654 = remote_static_tracepoint_marker_at;
13655 remote_ops.to_static_tracepoint_markers_by_strid
13656 = remote_static_tracepoint_markers_by_strid;
b3b9301e 13657 remote_ops.to_traceframe_info = remote_traceframe_info;
d1feda86
YQ
13658 remote_ops.to_use_agent = remote_use_agent;
13659 remote_ops.to_can_use_agent = remote_can_use_agent;
9accd112
MM
13660 remote_ops.to_supports_btrace = remote_supports_btrace;
13661 remote_ops.to_enable_btrace = remote_enable_btrace;
13662 remote_ops.to_disable_btrace = remote_disable_btrace;
13663 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13664 remote_ops.to_read_btrace = remote_read_btrace;
f4abbc16 13665 remote_ops.to_btrace_conf = remote_btrace_conf;
ced63ec0
GB
13666 remote_ops.to_augmented_libraries_svr4_read =
13667 remote_augmented_libraries_svr4_read;
8020350c
DB
13668 remote_ops.to_follow_fork = remote_follow_fork;
13669 remote_ops.to_follow_exec = remote_follow_exec;
13670 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13671 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13672 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13673 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13674 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13675 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
3a00c802 13676 remote_ops.to_execution_direction = remote_execution_direction;
c906108c
SS
13677}
13678
13679/* Set up the extended remote vector by making a copy of the standard
13680 remote vector and adding to it. */
13681
13682static void
fba45db2 13683init_extended_remote_ops (void)
c906108c
SS
13684{
13685 extended_remote_ops = remote_ops;
13686
0f71a2f6 13687 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 13688 extended_remote_ops.to_longname =
c906108c 13689 "Extended remote serial target in gdb-specific protocol";
c5aa993b 13690 extended_remote_ops.to_doc =
c906108c 13691 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
13692Specify the serial device it is connected to (e.g. /dev/ttya).";
13693 extended_remote_ops.to_open = extended_remote_open;
c906108c 13694 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
2d717e4f
DJ
13695 extended_remote_ops.to_detach = extended_remote_detach;
13696 extended_remote_ops.to_attach = extended_remote_attach;
b9c1d481 13697 extended_remote_ops.to_post_attach = extended_remote_post_attach;
03583c20
UW
13698 extended_remote_ops.to_supports_disable_randomization
13699 = extended_remote_supports_disable_randomization;
0f71a2f6
JM
13700}
13701
6426a772 13702static int
6a109b6b 13703remote_can_async_p (struct target_ops *ops)
6426a772 13704{
5d93a237
TT
13705 struct remote_state *rs = get_remote_state ();
13706
3015c064
SM
13707 /* We don't go async if the user has explicitly prevented it with the
13708 "maint set target-async" command. */
c6ebd6cf 13709 if (!target_async_permitted)
75c99385
PA
13710 return 0;
13711
23860348 13712 /* We're async whenever the serial device is. */
5d93a237 13713 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13714}
13715
13716static int
6a109b6b 13717remote_is_async_p (struct target_ops *ops)
6426a772 13718{
5d93a237
TT
13719 struct remote_state *rs = get_remote_state ();
13720
c6ebd6cf 13721 if (!target_async_permitted)
75c99385
PA
13722 /* We only enable async when the user specifically asks for it. */
13723 return 0;
13724
23860348 13725 /* We're async whenever the serial device is. */
5d93a237 13726 return serial_is_async_p (rs->remote_desc);
6426a772
JM
13727}
13728
2acceee2
JM
13729/* Pass the SERIAL event on and up to the client. One day this code
13730 will be able to delay notifying the client of an event until the
23860348 13731 point where an entire packet has been received. */
2acceee2 13732
2acceee2
JM
13733static serial_event_ftype remote_async_serial_handler;
13734
6426a772 13735static void
819cc324 13736remote_async_serial_handler (struct serial *scb, void *context)
6426a772 13737{
2acceee2
JM
13738 /* Don't propogate error information up to the client. Instead let
13739 the client find out about the error by querying the target. */
6a3753b3 13740 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
13741}
13742
74531fed
PA
13743static void
13744remote_async_inferior_event_handler (gdb_client_data data)
13745{
13746 inferior_event_handler (INF_REG_EVENT, NULL);
13747}
13748
2acceee2 13749static void
6a3753b3 13750remote_async (struct target_ops *ops, int enable)
2acceee2 13751{
5d93a237
TT
13752 struct remote_state *rs = get_remote_state ();
13753
6a3753b3 13754 if (enable)
2acceee2 13755 {
88b496c3 13756 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
13757
13758 /* If there are pending events in the stop reply queue tell the
13759 event loop to process them. */
13760 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13761 mark_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13762 /* For simplicity, below we clear the pending events token
13763 without remembering whether it is marked, so here we always
13764 mark it. If there's actually no pending notification to
13765 process, this ends up being a no-op (other than a spurious
13766 event-loop wakeup). */
13767 if (target_is_non_stop_p ())
13768 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
13769 }
13770 else
b7d2e916
PA
13771 {
13772 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
13773 /* If the core is disabling async, it doesn't want to be
13774 disturbed with target events. Clear all async event sources
13775 too. */
b7d2e916 13776 clear_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13777 if (target_is_non_stop_p ())
13778 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 13779 }
6426a772
JM
13780}
13781
65706a29
PA
13782/* Implementation of the to_thread_events method. */
13783
13784static void
13785remote_thread_events (struct target_ops *ops, int enable)
13786{
13787 struct remote_state *rs = get_remote_state ();
13788 size_t size = get_remote_packet_size ();
65706a29
PA
13789
13790 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13791 return;
13792
13793 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13794 putpkt (rs->buf);
13795 getpkt (&rs->buf, &rs->buf_size, 0);
13796
13797 switch (packet_ok (rs->buf,
13798 &remote_protocol_packets[PACKET_QThreadEvents]))
13799 {
13800 case PACKET_OK:
13801 if (strcmp (rs->buf, "OK") != 0)
13802 error (_("Remote refused setting thread events: %s"), rs->buf);
13803 break;
13804 case PACKET_ERROR:
13805 warning (_("Remote failure reply: %s"), rs->buf);
13806 break;
13807 case PACKET_UNKNOWN:
13808 break;
13809 }
13810}
13811
5a2468f5 13812static void
c2d11a7d 13813set_remote_cmd (char *args, int from_tty)
5a2468f5 13814{
635c7e8a 13815 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
13816}
13817
d471ea57
AC
13818static void
13819show_remote_cmd (char *args, int from_tty)
13820{
37a105a1 13821 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 13822 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1 13823 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 13824 struct ui_out *uiout = current_uiout;
37a105a1 13825
2e783024 13826 ui_out_emit_tuple tuple_emitter (uiout, "showlist");
37a105a1
DJ
13827 for (; list != NULL; list = list->next)
13828 if (strcmp (list->name, "Z-packet") == 0)
13829 continue;
427c3a89
DJ
13830 else if (list->type == not_set_cmd)
13831 /* Alias commands are exactly like the original, except they
13832 don't have the normal type. */
13833 continue;
13834 else
37a105a1 13835 {
2e783024 13836 ui_out_emit_tuple option_emitter (uiout, "option");
a744cf53 13837
112e8700
SM
13838 uiout->field_string ("name", list->name);
13839 uiout->text (": ");
427c3a89 13840 if (list->type == show_cmd)
f5c4fcd9 13841 do_show_command (NULL, from_tty, list);
427c3a89
DJ
13842 else
13843 cmd_func (list, NULL, from_tty);
37a105a1 13844 }
d471ea57 13845}
5a2468f5 13846
0f71a2f6 13847
23860348 13848/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
13849static void
13850remote_new_objfile (struct objfile *objfile)
13851{
5d93a237
TT
13852 struct remote_state *rs = get_remote_state ();
13853
13854 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 13855 remote_check_symbols ();
dc8acb97
MS
13856}
13857
00bf0b85
SS
13858/* Pull all the tracepoints defined on the target and create local
13859 data structures representing them. We don't want to create real
13860 tracepoints yet, we don't want to mess up the user's existing
13861 collection. */
13862
13863static int
ab6617cc 13864remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
d5551862 13865{
00bf0b85
SS
13866 struct remote_state *rs = get_remote_state ();
13867 char *p;
d5551862 13868
00bf0b85
SS
13869 /* Ask for a first packet of tracepoint definition. */
13870 putpkt ("qTfP");
13871 getpkt (&rs->buf, &rs->buf_size, 0);
13872 p = rs->buf;
13873 while (*p && *p != 'l')
d5551862 13874 {
00bf0b85
SS
13875 parse_tracepoint_definition (p, utpp);
13876 /* Ask for another packet of tracepoint definition. */
13877 putpkt ("qTsP");
13878 getpkt (&rs->buf, &rs->buf_size, 0);
13879 p = rs->buf;
d5551862 13880 }
00bf0b85 13881 return 0;
d5551862
SS
13882}
13883
00bf0b85 13884static int
181e3713
TT
13885remote_upload_trace_state_variables (struct target_ops *self,
13886 struct uploaded_tsv **utsvp)
d5551862 13887{
00bf0b85 13888 struct remote_state *rs = get_remote_state ();
d5551862 13889 char *p;
d5551862 13890
00bf0b85
SS
13891 /* Ask for a first packet of variable definition. */
13892 putpkt ("qTfV");
d5551862
SS
13893 getpkt (&rs->buf, &rs->buf_size, 0);
13894 p = rs->buf;
00bf0b85 13895 while (*p && *p != 'l')
d5551862 13896 {
00bf0b85
SS
13897 parse_tsv_definition (p, utsvp);
13898 /* Ask for another packet of variable definition. */
13899 putpkt ("qTsV");
d5551862
SS
13900 getpkt (&rs->buf, &rs->buf_size, 0);
13901 p = rs->buf;
13902 }
00bf0b85 13903 return 0;
d5551862
SS
13904}
13905
c1e36e3e
PA
13906/* The "set/show range-stepping" show hook. */
13907
13908static void
13909show_range_stepping (struct ui_file *file, int from_tty,
13910 struct cmd_list_element *c,
13911 const char *value)
13912{
13913 fprintf_filtered (file,
13914 _("Debugger's willingness to use range stepping "
13915 "is %s.\n"), value);
13916}
13917
13918/* The "set/show range-stepping" set hook. */
13919
13920static void
13921set_range_stepping (char *ignore_args, int from_tty,
13922 struct cmd_list_element *c)
13923{
5d93a237
TT
13924 struct remote_state *rs = get_remote_state ();
13925
c1e36e3e
PA
13926 /* Whene enabling, check whether range stepping is actually
13927 supported by the target, and warn if not. */
13928 if (use_range_stepping)
13929 {
5d93a237 13930 if (rs->remote_desc != NULL)
c1e36e3e 13931 {
4082afcc 13932 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
c1e36e3e
PA
13933 remote_vcont_probe (rs);
13934
4082afcc 13935 if (packet_support (PACKET_vCont) == PACKET_ENABLE
c1e36e3e
PA
13936 && rs->supports_vCont.r)
13937 return;
13938 }
13939
13940 warning (_("Range stepping is not supported by the current target"));
13941 }
13942}
13943
c906108c 13944void
fba45db2 13945_initialize_remote (void)
c906108c 13946{
9a7071a8 13947 struct cmd_list_element *cmd;
6f937416 13948 const char *cmd_name;
ea9c271d 13949
0f71a2f6 13950 /* architecture specific data */
2bc416ba 13951 remote_gdbarch_data_handle =
23860348 13952 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
13953 remote_g_packet_data_handle =
13954 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 13955
94585166
DB
13956 remote_pspace_data
13957 = register_program_space_data_with_cleanup (NULL,
13958 remote_pspace_data_cleanup);
13959
ea9c271d
DJ
13960 /* Initialize the per-target state. At the moment there is only one
13961 of these, not one per target. Only one target is active at a
cf792862
TT
13962 time. */
13963 remote_state = new_remote_state ();
ea9c271d 13964
c906108c
SS
13965 init_remote_ops ();
13966 add_target (&remote_ops);
13967
13968 init_extended_remote_ops ();
13969 add_target (&extended_remote_ops);
cce74817 13970
dc8acb97 13971 /* Hook into new objfile notification. */
06d3b283 13972 observer_attach_new_objfile (remote_new_objfile);
5f4cf0bb
YQ
13973 /* We're no longer interested in notification events of an inferior
13974 when it exits. */
13975 observer_attach_inferior_exit (discard_pending_stop_replies);
dc8acb97 13976
c906108c
SS
13977#if 0
13978 init_remote_threadtests ();
13979#endif
13980
722247f1 13981 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 13982 /* set/show remote ... */
d471ea57 13983
1bedd215 13984 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
13985Remote protocol specific variables\n\
13986Configure various remote-protocol specific variables such as\n\
1bedd215 13987the packets being used"),
cff3e48b 13988 &remote_set_cmdlist, "set remote ",
23860348 13989 0 /* allow-unknown */, &setlist);
1bedd215 13990 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
13991Remote protocol specific variables\n\
13992Configure various remote-protocol specific variables such as\n\
1bedd215 13993the packets being used"),
cff3e48b 13994 &remote_show_cmdlist, "show remote ",
23860348 13995 0 /* allow-unknown */, &showlist);
5a2468f5 13996
1a966eab
AC
13997 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13998Compare section data on target to the exec file.\n\
95cf3b38
DT
13999Argument is a single section name (default: all loaded sections).\n\
14000To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
14001 &cmdlist);
14002
1a966eab
AC
14003 add_cmd ("packet", class_maintenance, packet_command, _("\
14004Send an arbitrary packet to a remote target.\n\
c906108c
SS
14005 maintenance packet TEXT\n\
14006If GDB is talking to an inferior via the GDB serial protocol, then\n\
14007this command sends the string TEXT to the inferior, and displays the\n\
14008response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 14009terminating `#' character and checksum."),
c906108c
SS
14010 &maintenancelist);
14011
7915a72c
AC
14012 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
14013Set whether to send break if interrupted."), _("\
14014Show whether to send break if interrupted."), _("\
14015If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 14016 set_remotebreak, show_remotebreak,
e707bbc2 14017 &setlist, &showlist);
9a7071a8
JB
14018 cmd_name = "remotebreak";
14019 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
14020 deprecate_cmd (cmd, "set remote interrupt-sequence");
14021 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
14022 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
14023 deprecate_cmd (cmd, "show remote interrupt-sequence");
14024
14025 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
14026 interrupt_sequence_modes, &interrupt_sequence_mode,
14027 _("\
9a7071a8
JB
14028Set interrupt sequence to remote target."), _("\
14029Show interrupt sequence to remote target."), _("\
14030Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
14031 NULL, show_interrupt_sequence,
14032 &remote_set_cmdlist,
14033 &remote_show_cmdlist);
14034
14035 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
14036 &interrupt_on_connect, _("\
14037Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14038Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
14039If set, interrupt sequence is sent to remote target."),
14040 NULL, NULL,
14041 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 14042
23860348 14043 /* Install commands for configuring memory read/write packets. */
11cf8741 14044
1a966eab
AC
14045 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
14046Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 14047 &setlist);
1a966eab
AC
14048 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
14049Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
14050 &showlist);
14051 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
14052 set_memory_write_packet_size, _("\
14053Set the maximum number of bytes per memory-write packet.\n\
14054Specify the number of bytes in a packet or 0 (zero) for the\n\
14055default packet size. The actual limit is further reduced\n\
14056dependent on the target. Specify ``fixed'' to disable the\n\
14057further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14058 &remote_set_cmdlist);
14059 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
14060 set_memory_read_packet_size, _("\
14061Set the maximum number of bytes per memory-read packet.\n\
14062Specify the number of bytes in a packet or 0 (zero) for the\n\
14063default packet size. The actual limit is further reduced\n\
14064dependent on the target. Specify ``fixed'' to disable the\n\
14065further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
14066 &remote_set_cmdlist);
14067 add_cmd ("memory-write-packet-size", no_class,
14068 show_memory_write_packet_size,
1a966eab 14069 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
14070 &remote_show_cmdlist);
14071 add_cmd ("memory-read-packet-size", no_class,
14072 show_memory_read_packet_size,
1a966eab 14073 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 14074 &remote_show_cmdlist);
c906108c 14075
b3f42336 14076 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
14077 &remote_hw_watchpoint_limit, _("\
14078Set the maximum number of target hardware watchpoints."), _("\
14079Show the maximum number of target hardware watchpoints."), _("\
14080Specify a negative limit for unlimited."),
3e43a32a
MS
14081 NULL, NULL, /* FIXME: i18n: The maximum
14082 number of target hardware
14083 watchpoints is %s. */
b3f42336 14084 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
14085 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
14086 &remote_hw_watchpoint_length_limit, _("\
14087Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
14088Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
14089Specify a negative limit for unlimited."),
14090 NULL, NULL, /* FIXME: i18n: The maximum
14091 length (in bytes) of a target
14092 hardware watchpoint is %s. */
14093 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 14094 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
14095 &remote_hw_breakpoint_limit, _("\
14096Set the maximum number of target hardware breakpoints."), _("\
14097Show the maximum number of target hardware breakpoints."), _("\
14098Specify a negative limit for unlimited."),
3e43a32a
MS
14099 NULL, NULL, /* FIXME: i18n: The maximum
14100 number of target hardware
14101 breakpoints is %s. */
b3f42336 14102 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 14103
1b493192
PA
14104 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
14105 &remote_address_size, _("\
4d28ad1e
AC
14106Set the maximum size of the address (in bits) in a memory packet."), _("\
14107Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
14108 NULL,
14109 NULL, /* FIXME: i18n: */
14110 &setlist, &showlist);
c906108c 14111
ca4f7f8b
PA
14112 init_all_packet_configs ();
14113
444abaca 14114 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 14115 "X", "binary-download", 1);
0f71a2f6 14116
444abaca 14117 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 14118 "vCont", "verbose-resume", 0);
506fb367 14119
89be2091
DJ
14120 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
14121 "QPassSignals", "pass-signals", 0);
14122
82075af2
JS
14123 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
14124 "QCatchSyscalls", "catch-syscalls", 0);
14125
9b224c5e
PA
14126 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
14127 "QProgramSignals", "program-signals", 0);
14128
aefd8b33
SDJ
14129 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartupWithShell],
14130 "QStartupWithShell", "startup-with-shell", 0);
14131
0a2dde4a
SDJ
14132 add_packet_config_cmd (&remote_protocol_packets
14133 [PACKET_QEnvironmentHexEncoded],
14134 "QEnvironmentHexEncoded", "environment-hex-encoded",
14135 0);
14136
14137 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentReset],
14138 "QEnvironmentReset", "environment-reset",
14139 0);
14140
14141 add_packet_config_cmd (&remote_protocol_packets[PACKET_QEnvironmentUnset],
14142 "QEnvironmentUnset", "environment-unset",
14143 0);
14144
444abaca 14145 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 14146 "qSymbol", "symbol-lookup", 0);
dc8acb97 14147
444abaca 14148 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 14149 "P", "set-register", 1);
d471ea57 14150
444abaca 14151 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 14152 "p", "fetch-register", 1);
b96ec7ac 14153
444abaca 14154 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 14155 "Z0", "software-breakpoint", 0);
d471ea57 14156
444abaca 14157 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 14158 "Z1", "hardware-breakpoint", 0);
d471ea57 14159
444abaca 14160 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 14161 "Z2", "write-watchpoint", 0);
d471ea57 14162
444abaca 14163 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 14164 "Z3", "read-watchpoint", 0);
d471ea57 14165
444abaca 14166 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 14167 "Z4", "access-watchpoint", 0);
d471ea57 14168
0876f84a
DJ
14169 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
14170 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 14171
c78fa86a
GB
14172 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
14173 "qXfer:exec-file:read", "pid-to-exec-file", 0);
14174
23181151
DJ
14175 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
14176 "qXfer:features:read", "target-features", 0);
14177
cfa9d6d9
DJ
14178 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
14179 "qXfer:libraries:read", "library-info", 0);
14180
2268b414
JK
14181 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
14182 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
14183
fd79ecee
DJ
14184 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
14185 "qXfer:memory-map:read", "memory-map", 0);
14186
0e7f50da
UW
14187 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
14188 "qXfer:spu:read", "read-spu-object", 0);
14189
14190 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
14191 "qXfer:spu:write", "write-spu-object", 0);
14192
07e059b5
VP
14193 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
14194 "qXfer:osdata:read", "osdata", 0);
14195
dc146f7c
VP
14196 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
14197 "qXfer:threads:read", "threads", 0);
14198
4aa995e1
PA
14199 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
14200 "qXfer:siginfo:read", "read-siginfo-object", 0);
14201
14202 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
14203 "qXfer:siginfo:write", "write-siginfo-object", 0);
14204
b3b9301e
PA
14205 add_packet_config_cmd
14206 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 14207 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 14208
169081d0
TG
14209 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
14210 "qXfer:uib:read", "unwind-info-block", 0);
14211
444abaca 14212 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 14213 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
14214 0);
14215
711e434b
PM
14216 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
14217 "qGetTIBAddr", "get-thread-information-block-address",
14218 0);
14219
40ab02ce
MS
14220 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
14221 "bc", "reverse-continue", 0);
14222
14223 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
14224 "bs", "reverse-step", 0);
14225
be2a5f71
DJ
14226 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
14227 "qSupported", "supported-packets", 0);
14228
08388c79
DE
14229 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
14230 "qSearch:memory", "search-memory", 0);
14231
bd3eecc3
PA
14232 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
14233 "qTStatus", "trace-status", 0);
14234
15a201c8
GB
14235 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
14236 "vFile:setfs", "hostio-setfs", 0);
14237
a6b151f1
DJ
14238 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
14239 "vFile:open", "hostio-open", 0);
14240
14241 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
14242 "vFile:pread", "hostio-pread", 0);
14243
14244 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
14245 "vFile:pwrite", "hostio-pwrite", 0);
14246
14247 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
14248 "vFile:close", "hostio-close", 0);
14249
14250 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
14251 "vFile:unlink", "hostio-unlink", 0);
14252
b9e7b9c3
UW
14253 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
14254 "vFile:readlink", "hostio-readlink", 0);
14255
0a93529c
GB
14256 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
14257 "vFile:fstat", "hostio-fstat", 0);
14258
2d717e4f
DJ
14259 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
14260 "vAttach", "attach", 0);
14261
14262 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
14263 "vRun", "run", 0);
14264
a6f3e723
SL
14265 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
14266 "QStartNoAckMode", "noack", 0);
14267
82f73884
PA
14268 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
14269 "vKill", "kill", 0);
14270
0b16c5cf
PA
14271 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
14272 "qAttached", "query-attached", 0);
14273
782b2b07 14274 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
14275 "ConditionalTracepoints",
14276 "conditional-tracepoints", 0);
3788aec7
LM
14277
14278 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
14279 "ConditionalBreakpoints",
14280 "conditional-breakpoints", 0);
14281
d3ce09f5
SS
14282 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
14283 "BreakpointCommands",
14284 "breakpoint-commands", 0);
14285
7a697b8d
SS
14286 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
14287 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 14288
409873ef
SS
14289 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
14290 "TracepointSource", "TracepointSource", 0);
14291
d914c394
SS
14292 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
14293 "QAllow", "allow", 0);
14294
0fb4aa4b
PA
14295 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
14296 "StaticTracepoints", "static-tracepoints", 0);
14297
1e4d1764
YQ
14298 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
14299 "InstallInTrace", "install-in-trace", 0);
14300
0fb4aa4b
PA
14301 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
14302 "qXfer:statictrace:read", "read-sdata-object", 0);
14303
78d85199
YQ
14304 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
14305 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
14306
03583c20
UW
14307 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
14308 "QDisableRandomization", "disable-randomization", 0);
14309
d1feda86
YQ
14310 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
14311 "QAgent", "agent", 0);
14312
f6f899bf
HAQ
14313 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
14314 "QTBuffer:size", "trace-buffer-size", 0);
14315
9accd112
MM
14316 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
14317 "Qbtrace:off", "disable-btrace", 0);
14318
14319 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
14320 "Qbtrace:bts", "enable-btrace-bts", 0);
14321
14322 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
14323 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
14324
14325 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
14326 "qXfer:btrace", "read-btrace", 0);
14327
f4abbc16
MM
14328 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
14329 "qXfer:btrace-conf", "read-btrace-conf", 0);
14330
d33501a5
MM
14331 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
14332 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
14333
73b8c1fd
PA
14334 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
14335 "multiprocess-feature", "multiprocess-feature", 0);
14336
f7e6eed5
PA
14337 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
14338 "swbreak-feature", "swbreak-feature", 0);
14339
14340 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
14341 "hwbreak-feature", "hwbreak-feature", 0);
14342
89245bc0
DB
14343 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
14344 "fork-event-feature", "fork-event-feature", 0);
14345
14346 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
14347 "vfork-event-feature", "vfork-event-feature", 0);
14348
b20a6524
MM
14349 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
14350 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
14351
750ce8d1
YQ
14352 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
14353 "vContSupported", "verbose-resume-supported", 0);
14354
94585166
DB
14355 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
14356 "exec-event-feature", "exec-event-feature", 0);
14357
de979965
PA
14358 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
14359 "vCtrlC", "ctrl-c", 0);
14360
65706a29
PA
14361 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
14362 "QThreadEvents", "thread-events", 0);
14363
f2faf941
PA
14364 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
14365 "N stop reply", "no-resumed-stop-reply", 0);
14366
0b736949
DB
14367 /* Assert that we've registered "set remote foo-packet" commands
14368 for all packet configs. */
ca4f7f8b
PA
14369 {
14370 int i;
14371
14372 for (i = 0; i < PACKET_MAX; i++)
14373 {
14374 /* Ideally all configs would have a command associated. Some
14375 still don't though. */
14376 int excepted;
14377
14378 switch (i)
14379 {
14380 case PACKET_QNonStop:
ca4f7f8b
PA
14381 case PACKET_EnableDisableTracepoints_feature:
14382 case PACKET_tracenz_feature:
14383 case PACKET_DisconnectedTracing_feature:
14384 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
14385 case PACKET_qCRC:
14386 /* Additions to this list need to be well justified:
14387 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
14388 excepted = 1;
14389 break;
14390 default:
14391 excepted = 0;
14392 break;
14393 }
14394
14395 /* This catches both forgetting to add a config command, and
14396 forgetting to remove a packet from the exception list. */
14397 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
14398 }
14399 }
14400
37a105a1
DJ
14401 /* Keep the old ``set remote Z-packet ...'' working. Each individual
14402 Z sub-packet has its own set and show commands, but users may
14403 have sets to this variable in their .gdbinit files (or in their
14404 documentation). */
e9e68a56 14405 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
14406 &remote_Z_packet_detect, _("\
14407Set use of remote protocol `Z' packets"), _("\
14408Show use of remote protocol `Z' packets "), _("\
3b64bf98 14409When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 14410packets."),
e9e68a56 14411 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
14412 show_remote_protocol_Z_packet_cmd,
14413 /* FIXME: i18n: Use of remote protocol
14414 `Z' packets is %s. */
e9e68a56 14415 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 14416
a6b151f1
DJ
14417 add_prefix_cmd ("remote", class_files, remote_command, _("\
14418Manipulate files on the remote system\n\
14419Transfer files to and from the remote target system."),
14420 &remote_cmdlist, "remote ",
14421 0 /* allow-unknown */, &cmdlist);
14422
14423 add_cmd ("put", class_files, remote_put_command,
14424 _("Copy a local file to the remote system."),
14425 &remote_cmdlist);
14426
14427 add_cmd ("get", class_files, remote_get_command,
14428 _("Copy a remote file to the local system."),
14429 &remote_cmdlist);
14430
14431 add_cmd ("delete", class_files, remote_delete_command,
14432 _("Delete a remote file."),
14433 &remote_cmdlist);
14434
2d717e4f 14435 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 14436 &remote_exec_file_var, _("\
2d717e4f 14437Set the remote pathname for \"run\""), _("\
94585166
DB
14438Show the remote pathname for \"run\""), NULL,
14439 set_remote_exec_file,
14440 show_remote_exec_file,
14441 &remote_set_cmdlist,
14442 &remote_show_cmdlist);
2d717e4f 14443
c1e36e3e
PA
14444 add_setshow_boolean_cmd ("range-stepping", class_run,
14445 &use_range_stepping, _("\
14446Enable or disable range stepping."), _("\
14447Show whether target-assisted range stepping is enabled."), _("\
14448If on, and the target supports it, when stepping a source line, GDB\n\
14449tells the target to step the corresponding range of addresses itself instead\n\
14450of issuing multiple single-steps. This speeds up source level\n\
14451stepping. If off, GDB always issues single-steps, even if range\n\
14452stepping is supported by the target. The default is on."),
14453 set_range_stepping,
14454 show_range_stepping,
14455 &setlist,
14456 &showlist);
14457
449092f6
CV
14458 /* Eventually initialize fileio. See fileio.c */
14459 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 14460
ba348170 14461 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 14462 special ptids with it set to != 0. */
ba348170
PA
14463 magic_null_ptid = ptid_build (42000, -1, 1);
14464 not_sent_ptid = ptid_build (42000, -2, 1);
14465 any_thread_ptid = ptid_build (42000, 0, 1);
35b1e5cc
SS
14466
14467 target_buf_size = 2048;
224c3ddb 14468 target_buf = (char *) xmalloc (target_buf_size);
c906108c 14469}
10760264 14470
This page took 3.249551 seconds and 4 git commands to generate.