Pass Ctrl-C to the target in target_terminal_inferior
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
618f726f 3 Copyright (C) 1988-2016 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"
35b1e5cc 73
0df8b418 74/* Temp hacks for tracepoint encoding migration. */
35b1e5cc
SS
75static char *target_buf;
76static long target_buf_size;
35b1e5cc 77
94585166
DB
78/* Per-program-space data key. */
79static const struct program_space_data *remote_pspace_data;
80
81/* The variable registered as the control variable used by the
82 remote exec-file commands. While the remote exec-file setting is
83 per-program-space, the set/show machinery uses this as the
84 location of the remote exec-file value. */
85static char *remote_exec_file_var;
86
6765f3e5
DJ
87/* The size to align memory write packets, when practical. The protocol
88 does not guarantee any alignment, and gdb will generate short
89 writes and unaligned writes, but even as a best-effort attempt this
90 can improve bulk transfers. For instance, if a write is misaligned
91 relative to the target's data bus, the stub may need to make an extra
92 round trip fetching data from the target. This doesn't make a
93 huge difference, but it's easy to do, so we try to be helpful.
94
95 The alignment chosen is arbitrary; usually data bus width is
96 important here, not the possibly larger cache line size. */
97enum { REMOTE_ALIGN_WRITES = 16 };
98
23860348 99/* Prototypes for local functions. */
934b9bac 100static void async_cleanup_sigint_signal_handler (void *dummy);
6d820c5c 101static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed 102static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
fee9eda9 103 int forever, int *is_notif);
6426a772 104
934b9bac
JK
105static void async_handle_remote_sigint (int);
106static void async_handle_remote_sigint_twice (int);
43ff13b4 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
934b9bac 144static void sync_remote_interrupt_twice (int signo);
7a292a7a 145
a14ed312 146static void interrupt_query (void);
c906108c 147
79d7f229
PA
148static void set_general_thread (struct ptid ptid);
149static void set_continue_thread (struct ptid ptid);
c906108c 150
a14ed312 151static void get_offsets (void);
c906108c 152
6d820c5c
DJ
153static void skip_frame (void);
154
155static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 156
a14ed312 157static int hexnumlen (ULONGEST num);
c906108c 158
a14ed312 159static void init_remote_ops (void);
c906108c 160
a14ed312 161static void init_extended_remote_ops (void);
c906108c 162
1eab8a48 163static void remote_stop (struct target_ops *self, ptid_t);
c906108c 164
a14ed312 165static int stubhex (int ch);
c906108c 166
a14ed312 167static int hexnumstr (char *, ULONGEST);
c906108c 168
a14ed312 169static int hexnumnstr (char *, ULONGEST, int);
2df3850c 170
a14ed312 171static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 172
baa336ce 173static void print_packet (const char *);
c906108c 174
a14ed312 175static void compare_sections_command (char *, int);
c906108c 176
a14ed312 177static void packet_command (char *, int);
c906108c 178
a14ed312 179static int stub_unpack_int (char *buff, int fieldlength);
c906108c 180
39f77062 181static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 182
baa336ce 183static int putpkt_binary (const char *buf, int cnt);
c906108c 184
a14ed312 185static void check_binary_download (CORE_ADDR addr);
c906108c 186
5a2468f5 187struct packet_config;
5a2468f5 188
a14ed312 189static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 190
bb572ddd
DJ
191static void show_remote_protocol_packet_cmd (struct ui_file *file,
192 int from_tty,
193 struct cmd_list_element *c,
194 const char *value);
195
82f73884
PA
196static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
197static ptid_t read_ptid (char *buf, char **obuf);
198
c378d69d 199static void remote_set_permissions (struct target_ops *self);
d914c394 200
8bd200f1
TT
201static int remote_get_trace_status (struct target_ops *self,
202 struct trace_status *ts);
d5551862 203
ab6617cc
TT
204static int remote_upload_tracepoints (struct target_ops *self,
205 struct uploaded_tp **utpp);
00bf0b85 206
181e3713
TT
207static int remote_upload_trace_state_variables (struct target_ops *self,
208 struct uploaded_tsv **utsvp);
00bf0b85 209
c8d104ad
PA
210static void remote_query_supported (void);
211
36d25514 212static void remote_check_symbols (void);
c8d104ad 213
a14ed312 214void _initialize_remote (void);
c906108c 215
74531fed 216struct stop_reply;
74531fed 217static void stop_reply_xfree (struct stop_reply *);
722247f1 218static void remote_parse_stop_reply (char *, struct stop_reply *);
74531fed 219static void push_stop_reply (struct stop_reply *);
bcc75809 220static void discard_pending_stop_replies_in_queue (struct remote_state *);
74531fed
PA
221static int peek_stop_reply (ptid_t ptid);
222
cbb8991c
DB
223struct threads_listing_context;
224static void remove_new_fork_children (struct threads_listing_context *);
225
74531fed 226static void remote_async_inferior_event_handler (gdb_client_data);
74531fed 227
e3594fd1 228static void remote_terminal_ours (struct target_ops *self);
d3fd5342 229
d962ef82
DJ
230static int remote_read_description_p (struct target_ops *target);
231
176a6961 232static void remote_console_output (char *msg);
dde08ee1 233
efcc2da7 234static int remote_supports_cond_breakpoints (struct target_ops *self);
b775012e 235
78eff0ec 236static int remote_can_run_breakpoint_commands (struct target_ops *self);
d3ce09f5 237
f4abbc16
MM
238static void remote_btrace_reset (void);
239
221e1a37
PA
240static int stop_reply_queue_length (void);
241
80152258
PA
242static void readahead_cache_invalidate (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
80152258
PA
286/* Data for the vFile:pread readahead cache. */
287
288struct readahead_cache
289{
290 /* The file descriptor for the file that is being cached. -1 if the
291 cache is invalid. */
292 int fd;
293
294 /* The offset into the file that the cache buffer corresponds
295 to. */
296 ULONGEST offset;
297
298 /* The buffer holding the cache contents. */
299 gdb_byte *buf;
300 /* The buffer's size. We try to read as much as fits into a packet
301 at a time. */
302 size_t bufsize;
303
304 /* Cache hit and miss counters. */
305 ULONGEST hit_count;
306 ULONGEST miss_count;
307};
308
ea9c271d
DJ
309/* Description of the remote protocol state for the currently
310 connected target. This is per-target state, and independent of the
311 selected architecture. */
312
313struct remote_state
314{
315 /* A buffer to use for incoming packets, and its current size. The
316 buffer is grown dynamically for larger incoming packets.
317 Outgoing packets may also be constructed in this buffer.
318 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
319 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
320 packets. */
321 char *buf;
322 long buf_size;
be2a5f71 323
1e51243a
PA
324 /* True if we're going through initial connection setup (finding out
325 about the remote side's threads, relocating symbols, etc.). */
326 int starting_up;
327
be2a5f71
DJ
328 /* If we negotiated packet size explicitly (and thus can bypass
329 heuristics for the largest packet size that will not overflow
330 a buffer in the stub), this will be set to that packet size.
331 Otherwise zero, meaning to use the guessed size. */
332 long explicit_packet_size;
2d717e4f
DJ
333
334 /* remote_wait is normally called when the target is running and
335 waits for a stop reply packet. But sometimes we need to call it
336 when the target is already stopped. We can send a "?" packet
337 and have remote_wait read the response. Or, if we already have
338 the response, we can stash it in BUF and tell remote_wait to
339 skip calling getpkt. This flag is set when BUF contains a
340 stop reply packet and the target is not waiting. */
341 int cached_wait_status;
a6f3e723
SL
342
343 /* True, if in no ack mode. That is, neither GDB nor the stub will
344 expect acks from each other. The connection is assumed to be
345 reliable. */
346 int noack_mode;
82f73884
PA
347
348 /* True if we're connected in extended remote mode. */
349 int extended;
350
e24a49d8
PA
351 /* True if we resumed the target and we're waiting for the target to
352 stop. In the mean time, we can't start another command/query.
353 The remote server wouldn't be ready to process it, so we'd
354 timeout waiting for a reply that would never come and eventually
355 we'd close the connection. This can happen in asynchronous mode
356 because we allow GDB commands while the target is running. */
357 int waiting_for_stop_reply;
74531fed 358
d458bd84
PA
359 /* The status of the stub support for the various vCont actions. */
360 struct vCont_action_support supports_vCont;
782b2b07 361
3a29589a
DJ
362 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
363 responded to that. */
364 int ctrlc_pending_p;
5d93a237
TT
365
366 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
367 remote_open knows that we don't have a file open when the program
368 starts. */
369 struct serial *remote_desc;
47f8a51d
TT
370
371 /* These are the threads which we last sent to the remote system. The
372 TID member will be -1 for all or -2 for not sent yet. */
373 ptid_t general_thread;
374 ptid_t continue_thread;
262e1174
TT
375
376 /* This is the traceframe which we last selected on the remote system.
377 It will be -1 if no traceframe is selected. */
378 int remote_traceframe_number;
747dc59d
TT
379
380 char *last_pass_packet;
5e4a05c4
TT
381
382 /* The last QProgramSignals packet sent to the target. We bypass
383 sending a new program signals list down to the target if the new
384 packet is exactly the same as the last we sent. IOW, we only let
385 the target know about program signals list changes. */
386 char *last_program_signals_packet;
b73be471
TT
387
388 enum gdb_signal last_sent_signal;
280ceea3
TT
389
390 int last_sent_step;
8e88304f
TT
391
392 char *finished_object;
393 char *finished_annex;
394 ULONGEST finished_offset;
b80fafe3
TT
395
396 /* Should we try the 'ThreadInfo' query packet?
397
398 This variable (NOT available to the user: auto-detect only!)
399 determines whether GDB will use the new, simpler "ThreadInfo"
400 query or the older, more complex syntax for thread queries.
401 This is an auto-detect variable (set to true at each connect,
402 and set to false when the target fails to recognize it). */
403 int use_threadinfo_query;
404 int use_threadextra_query;
88b496c3 405
0d031856
TT
406 threadref echo_nextthread;
407 threadref nextthread;
408 threadref resultthreadlist[MAXTHREADLISTRESULTS];
5965e028
YQ
409
410 /* The state of remote notification. */
411 struct remote_notif_state *notif_state;
f4abbc16
MM
412
413 /* The branch trace configuration. */
414 struct btrace_config btrace_config;
15a201c8
GB
415
416 /* The argument to the last "vFile:setfs:" packet we sent, used
417 to avoid sending repeated unnecessary "vFile:setfs:" packets.
418 Initialized to -1 to indicate that no "vFile:setfs:" packet
419 has yet been sent. */
420 int fs_pid;
80152258
PA
421
422 /* A readahead cache for vFile:pread. Often, reading a binary
423 involves a sequence of small reads. E.g., when parsing an ELF
424 file. A readahead cache helps mostly the case of remote
425 debugging on a connection with higher latency, due to the
426 request/reply nature of the RSP. We only cache data for a single
427 file descriptor at a time. */
428 struct readahead_cache readahead_cache;
ea9c271d
DJ
429};
430
dc146f7c
VP
431/* Private data that we'll store in (struct thread_info)->private. */
432struct private_thread_info
433{
434 char *extra;
79efa585 435 char *name;
dc146f7c 436 int core;
799a2abe
PA
437
438 /* Whether the target stopped for a breakpoint/watchpoint. */
439 enum target_stop_reason stop_reason;
440
441 /* This is set to the data address of the access causing the target
442 to stop for a watchpoint. */
443 CORE_ADDR watch_data_address;
dc146f7c
VP
444};
445
446static void
447free_private_thread_info (struct private_thread_info *info)
448{
449 xfree (info->extra);
79efa585 450 xfree (info->name);
dc146f7c
VP
451 xfree (info);
452}
453
ea9c271d
DJ
454/* This data could be associated with a target, but we do not always
455 have access to the current target when we need it, so for now it is
456 static. This will be fine for as long as only one target is in use
457 at a time. */
cf792862 458static struct remote_state *remote_state;
ea9c271d
DJ
459
460static struct remote_state *
0b83947e 461get_remote_state_raw (void)
ea9c271d 462{
cf792862
TT
463 return remote_state;
464}
465
466/* Allocate a new struct remote_state with xmalloc, initialize it, and
467 return it. */
468
469static struct remote_state *
470new_remote_state (void)
471{
472 struct remote_state *result = XCNEW (struct remote_state);
473
474 /* The default buffer size is unimportant; it will be expanded
475 whenever a larger buffer is needed. */
476 result->buf_size = 400;
224c3ddb 477 result->buf = (char *) xmalloc (result->buf_size);
262e1174 478 result->remote_traceframe_number = -1;
b73be471 479 result->last_sent_signal = GDB_SIGNAL_0;
15a201c8 480 result->fs_pid = -1;
cf792862
TT
481
482 return result;
ea9c271d
DJ
483}
484
485/* Description of the remote protocol for a given architecture. */
d01949b6 486
ad10f812
AC
487struct packet_reg
488{
489 long offset; /* Offset into G packet. */
490 long regnum; /* GDB's internal register number. */
491 LONGEST pnum; /* Remote protocol register number. */
b323314b 492 int in_g_packet; /* Always part of G packet. */
f5656ead 493 /* long size in bytes; == register_size (target_gdbarch (), regnum);
23860348 494 at present. */
f5656ead 495 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
c9f4d572 496 at present. */
ad10f812
AC
497};
498
ea9c271d 499struct remote_arch_state
d01949b6 500{
ad10f812
AC
501 /* Description of the remote protocol registers. */
502 long sizeof_g_packet;
b323314b
AC
503
504 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 505 (making an array gdbarch_num_regs in size). */
b323314b 506 struct packet_reg *regs;
ad10f812 507
d01949b6
AC
508 /* This is the size (in chars) of the first response to the ``g''
509 packet. It is used as a heuristic when determining the maximum
510 size of memory-read and memory-write packets. A target will
511 typically only reserve a buffer large enough to hold the ``g''
512 packet. The size does not include packet overhead (headers and
23860348 513 trailers). */
d01949b6
AC
514 long actual_register_packet_size;
515
516 /* This is the maximum size (in chars) of a non read/write packet.
23860348 517 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
518 long remote_packet_size;
519};
520
35b1e5cc
SS
521/* Utility: generate error from an incoming stub packet. */
522static void
523trace_error (char *buf)
524{
525 if (*buf++ != 'E')
526 return; /* not an error msg */
527 switch (*buf)
528 {
529 case '1': /* malformed packet error */
530 if (*++buf == '0') /* general case: */
531 error (_("remote.c: error in outgoing packet."));
532 else
533 error (_("remote.c: error in outgoing packet at field #%ld."),
534 strtol (buf, NULL, 16));
35b1e5cc
SS
535 default:
536 error (_("Target returns error code '%s'."), buf);
537 }
538}
539
540/* Utility: wait for reply from stub, while accepting "O" packets. */
541static char *
542remote_get_noisy_reply (char **buf_p,
543 long *sizeof_buf)
544{
545 do /* Loop on reply from remote stub. */
546 {
547 char *buf;
a744cf53 548
0df8b418 549 QUIT; /* Allow user to bail out with ^C. */
35b1e5cc
SS
550 getpkt (buf_p, sizeof_buf, 0);
551 buf = *buf_p;
ad91cd99 552 if (buf[0] == 'E')
35b1e5cc 553 trace_error (buf);
61012eef 554 else if (startswith (buf, "qRelocInsn:"))
dde08ee1
PA
555 {
556 ULONGEST ul;
557 CORE_ADDR from, to, org_to;
558 char *p, *pp;
559 int adjusted_size = 0;
7556d4a4 560 int relocated = 0;
dde08ee1
PA
561
562 p = buf + strlen ("qRelocInsn:");
563 pp = unpack_varlen_hex (p, &ul);
564 if (*pp != ';')
cb91c06a 565 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
566 from = ul;
567
568 p = pp + 1;
a9cbf802 569 unpack_varlen_hex (p, &ul);
dde08ee1
PA
570 to = ul;
571
572 org_to = to;
573
492d29ea 574 TRY
dde08ee1 575 {
f5656ead 576 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
7556d4a4 577 relocated = 1;
dde08ee1 578 }
492d29ea 579 CATCH (ex, RETURN_MASK_ALL)
7556d4a4
PA
580 {
581 if (ex.error == MEMORY_ERROR)
582 {
583 /* Propagate memory errors silently back to the
584 target. The stub may have limited the range of
585 addresses we can write to, for example. */
586 }
587 else
588 {
589 /* Something unexpectedly bad happened. Be verbose
590 so we can tell what, and propagate the error back
591 to the stub, so it doesn't get stuck waiting for
592 a response. */
593 exception_fprintf (gdb_stderr, ex,
594 _("warning: relocating instruction: "));
595 }
596 putpkt ("E01");
597 }
492d29ea 598 END_CATCH
7556d4a4
PA
599
600 if (relocated)
dde08ee1
PA
601 {
602 adjusted_size = to - org_to;
603
bba74b36 604 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
605 putpkt (buf);
606 }
dde08ee1 607 }
ad91cd99 608 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
609 remote_console_output (buf + 1); /* 'O' message from stub */
610 else
0df8b418 611 return buf; /* Here's the actual reply. */
35b1e5cc
SS
612 }
613 while (1);
614}
3c3bea1c 615
d01949b6
AC
616/* Handle for retreving the remote protocol data from gdbarch. */
617static struct gdbarch_data *remote_gdbarch_data_handle;
618
ea9c271d
DJ
619static struct remote_arch_state *
620get_remote_arch_state (void)
d01949b6 621{
17d8546e 622 gdb_assert (target_gdbarch () != NULL);
19ba03f4
SM
623 return ((struct remote_arch_state *)
624 gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle));
d01949b6
AC
625}
626
0b83947e
DJ
627/* Fetch the global remote target state. */
628
629static struct remote_state *
630get_remote_state (void)
631{
632 /* Make sure that the remote architecture state has been
633 initialized, because doing so might reallocate rs->buf. Any
634 function which calls getpkt also needs to be mindful of changes
635 to rs->buf, but this call limits the number of places which run
636 into trouble. */
637 get_remote_arch_state ();
638
639 return get_remote_state_raw ();
640}
641
94585166
DB
642/* Cleanup routine for the remote module's pspace data. */
643
644static void
645remote_pspace_data_cleanup (struct program_space *pspace, void *arg)
646{
19ba03f4 647 char *remote_exec_file = (char *) arg;
94585166
DB
648
649 xfree (remote_exec_file);
650}
651
652/* Fetch the remote exec-file from the current program space. */
653
654static const char *
655get_remote_exec_file (void)
656{
657 char *remote_exec_file;
658
19ba03f4
SM
659 remote_exec_file
660 = (char *) program_space_data (current_program_space,
661 remote_pspace_data);
94585166
DB
662 if (remote_exec_file == NULL)
663 return "";
664
665 return remote_exec_file;
666}
667
668/* Set the remote exec file for PSPACE. */
669
670static void
671set_pspace_remote_exec_file (struct program_space *pspace,
672 char *remote_exec_file)
673{
19ba03f4 674 char *old_file = (char *) program_space_data (pspace, remote_pspace_data);
94585166
DB
675
676 xfree (old_file);
677 set_program_space_data (pspace, remote_pspace_data,
678 xstrdup (remote_exec_file));
679}
680
681/* The "set/show remote exec-file" set command hook. */
682
683static void
684set_remote_exec_file (char *ignored, int from_tty,
685 struct cmd_list_element *c)
686{
687 gdb_assert (remote_exec_file_var != NULL);
688 set_pspace_remote_exec_file (current_program_space, remote_exec_file_var);
689}
690
691/* The "set/show remote exec-file" show command hook. */
692
693static void
694show_remote_exec_file (struct ui_file *file, int from_tty,
695 struct cmd_list_element *cmd, const char *value)
696{
697 fprintf_filtered (file, "%s\n", remote_exec_file_var);
698}
699
74ca34ce
DJ
700static int
701compare_pnums (const void *lhs_, const void *rhs_)
702{
19ba03f4
SM
703 const struct packet_reg * const *lhs
704 = (const struct packet_reg * const *) lhs_;
705 const struct packet_reg * const *rhs
706 = (const struct packet_reg * const *) rhs_;
74ca34ce
DJ
707
708 if ((*lhs)->pnum < (*rhs)->pnum)
709 return -1;
710 else if ((*lhs)->pnum == (*rhs)->pnum)
711 return 0;
712 else
713 return 1;
714}
715
c21236dc
PA
716static int
717map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 718{
74ca34ce 719 int regnum, num_remote_regs, offset;
74ca34ce 720 struct packet_reg **remote_regs;
ea9c271d 721
4a22f64d 722 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 723 {
c21236dc 724 struct packet_reg *r = &regs[regnum];
baef701f 725
4a22f64d 726 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
727 /* Do not try to fetch zero-sized (placeholder) registers. */
728 r->pnum = -1;
729 else
730 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
731
b323314b 732 r->regnum = regnum;
74ca34ce
DJ
733 }
734
735 /* Define the g/G packet format as the contents of each register
736 with a remote protocol number, in order of ascending protocol
737 number. */
738
224c3ddb 739 remote_regs = XALLOCAVEC (struct packet_reg *, gdbarch_num_regs (gdbarch));
f57d151a 740 for (num_remote_regs = 0, regnum = 0;
4a22f64d 741 regnum < gdbarch_num_regs (gdbarch);
f57d151a 742 regnum++)
c21236dc
PA
743 if (regs[regnum].pnum != -1)
744 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 745
74ca34ce
DJ
746 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
747 compare_pnums);
748
749 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
750 {
751 remote_regs[regnum]->in_g_packet = 1;
752 remote_regs[regnum]->offset = offset;
4a22f64d 753 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
754 }
755
c21236dc
PA
756 return offset;
757}
758
759/* Given the architecture described by GDBARCH, return the remote
760 protocol register's number and the register's offset in the g/G
761 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
762 If the target does not have a mapping for REGNUM, return false,
763 otherwise, return true. */
764
765int
766remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
767 int *pnum, int *poffset)
768{
c21236dc
PA
769 struct packet_reg *regs;
770 struct cleanup *old_chain;
771
772 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
773
224c3ddb 774 regs = XCNEWVEC (struct packet_reg, gdbarch_num_regs (gdbarch));
c21236dc
PA
775 old_chain = make_cleanup (xfree, regs);
776
54887903 777 map_regcache_remote_table (gdbarch, regs);
c21236dc
PA
778
779 *pnum = regs[regnum].pnum;
780 *poffset = regs[regnum].offset;
781
782 do_cleanups (old_chain);
783
784 return *pnum != -1;
785}
786
787static void *
788init_remote_state (struct gdbarch *gdbarch)
789{
790 struct remote_state *rs = get_remote_state_raw ();
791 struct remote_arch_state *rsa;
792
793 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
794
795 /* Use the architecture to build a regnum<->pnum table, which will be
796 1:1 unless a feature set specifies otherwise. */
797 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
798 gdbarch_num_regs (gdbarch),
799 struct packet_reg);
800
74ca34ce
DJ
801 /* Record the maximum possible size of the g packet - it may turn out
802 to be smaller. */
c21236dc 803 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
74ca34ce 804
0df8b418 805 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
806 remote stubs have a hardwired buffer size of 400 bytes
807 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
808 as the maximum packet-size to ensure that the packet and an extra
809 NUL character can always fit in the buffer. This stops GDB
810 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
811 already a full buffer (As of 1999-12-04 that was most stubs). */
812 rsa->remote_packet_size = 400 - 1;
d01949b6 813
ea9c271d
DJ
814 /* This one is filled in when a ``g'' packet is received. */
815 rsa->actual_register_packet_size = 0;
816
817 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
818 default, adjust the size accordingly. Remember that each byte is
819 encoded as two characters. 32 is the overhead for the packet
820 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 821 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 822 little. */
ea9c271d
DJ
823 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
824 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 825
ea9c271d
DJ
826 /* Make sure that the packet buffer is plenty big enough for
827 this architecture. */
828 if (rs->buf_size < rsa->remote_packet_size)
829 {
830 rs->buf_size = 2 * rsa->remote_packet_size;
224c3ddb 831 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
ea9c271d 832 }
6d820c5c 833
ea9c271d
DJ
834 return rsa;
835}
836
837/* Return the current allowed size of a remote packet. This is
838 inferred from the current architecture, and should be used to
839 limit the length of outgoing packets. */
840static long
841get_remote_packet_size (void)
842{
be2a5f71 843 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
844 struct remote_arch_state *rsa = get_remote_arch_state ();
845
be2a5f71
DJ
846 if (rs->explicit_packet_size)
847 return rs->explicit_packet_size;
848
ea9c271d 849 return rsa->remote_packet_size;
d01949b6
AC
850}
851
ad10f812 852static struct packet_reg *
ea9c271d 853packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
ad10f812 854{
f5656ead 855 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
b323314b
AC
856 return NULL;
857 else
ad10f812 858 {
ea9c271d 859 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 860
b323314b
AC
861 gdb_assert (r->regnum == regnum);
862 return r;
ad10f812 863 }
ad10f812
AC
864}
865
866static struct packet_reg *
ea9c271d 867packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
ad10f812 868{
b323314b 869 int i;
a744cf53 870
f5656ead 871 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
ad10f812 872 {
ea9c271d 873 struct packet_reg *r = &rsa->regs[i];
a744cf53 874
b323314b
AC
875 if (r->pnum == pnum)
876 return r;
ad10f812
AC
877 }
878 return NULL;
d01949b6
AC
879}
880
c906108c
SS
881static struct target_ops remote_ops;
882
883static struct target_ops extended_remote_ops;
884
6426a772
JM
885/* FIXME: cagney/1999-09-23: Even though getpkt was called with
886 ``forever'' still use the normal timeout mechanism. This is
887 currently used by the ASYNC code to guarentee that target reads
888 during the initial connect always time-out. Once getpkt has been
889 modified to return a timeout indication and, in turn
890 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 891 this can go away. */
6426a772
JM
892static int wait_forever_enabled_p = 1;
893
9a7071a8
JB
894/* Allow the user to specify what sequence to send to the remote
895 when he requests a program interruption: Although ^C is usually
896 what remote systems expect (this is the default, here), it is
897 sometimes preferable to send a break. On other systems such
898 as the Linux kernel, a break followed by g, which is Magic SysRq g
899 is required in order to interrupt the execution. */
900const char interrupt_sequence_control_c[] = "Ctrl-C";
901const char interrupt_sequence_break[] = "BREAK";
902const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 903static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
904 {
905 interrupt_sequence_control_c,
906 interrupt_sequence_break,
907 interrupt_sequence_break_g,
908 NULL
909 };
910static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
911
912static void
913show_interrupt_sequence (struct ui_file *file, int from_tty,
914 struct cmd_list_element *c,
915 const char *value)
916{
917 if (interrupt_sequence_mode == interrupt_sequence_control_c)
918 fprintf_filtered (file,
919 _("Send the ASCII ETX character (Ctrl-c) "
920 "to the remote target to interrupt the "
921 "execution of the program.\n"));
922 else if (interrupt_sequence_mode == interrupt_sequence_break)
923 fprintf_filtered (file,
924 _("send a break signal to the remote target "
925 "to interrupt the execution of the program.\n"));
926 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
927 fprintf_filtered (file,
928 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
929 "the remote target to interrupt the execution "
930 "of Linux kernel.\n"));
931 else
932 internal_error (__FILE__, __LINE__,
933 _("Invalid value for interrupt_sequence_mode: %s."),
934 interrupt_sequence_mode);
935}
6426a772 936
9a7071a8
JB
937/* This boolean variable specifies whether interrupt_sequence is sent
938 to the remote target when gdb connects to it.
939 This is mostly needed when you debug the Linux kernel: The Linux kernel
940 expects BREAK g which is Magic SysRq g for connecting gdb. */
941static int interrupt_on_connect = 0;
c906108c 942
9a7071a8
JB
943/* This variable is used to implement the "set/show remotebreak" commands.
944 Since these commands are now deprecated in favor of "set/show remote
945 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
946static int remote_break;
947
9a7071a8
JB
948static void
949set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
950{
951 if (remote_break)
952 interrupt_sequence_mode = interrupt_sequence_break;
953 else
954 interrupt_sequence_mode = interrupt_sequence_control_c;
955}
956
957static void
958show_remotebreak (struct ui_file *file, int from_tty,
959 struct cmd_list_element *c,
960 const char *value)
961{
962}
963
c906108c
SS
964/* This variable sets the number of bits in an address that are to be
965 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 966 leading zeros, the entire address would be sent. This variable
c906108c
SS
967 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
968 initial implementation of remote.c restricted the address sent in
969 memory packets to ``host::sizeof long'' bytes - (typically 32
970 bits). Consequently, for 64 bit targets, the upper 32 bits of an
971 address was never sent. Since fixing this bug may cause a break in
972 some remote targets this variable is principly provided to
23860348 973 facilitate backward compatibility. */
c906108c 974
883b9c6c 975static unsigned int remote_address_size;
c906108c 976
75c99385
PA
977/* Temporary to track who currently owns the terminal. See
978 remote_terminal_* for more details. */
6426a772
JM
979
980static int remote_async_terminal_ours_p;
981
11cf8741 982\f
11cf8741 983/* User configurable variables for the number of characters in a
ea9c271d
DJ
984 memory read/write packet. MIN (rsa->remote_packet_size,
985 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 986 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
987 (speed up transfers). The variables ``preferred_*'' (the user
988 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 989 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
990
991struct memory_packet_config
992{
993 char *name;
994 long size;
995 int fixed_p;
996};
997
a5c0808e
PA
998/* The default max memory-write-packet-size. The 16k is historical.
999 (It came from older GDB's using alloca for buffers and the
1000 knowledge (folklore?) that some hosts don't cope very well with
1001 large alloca calls.) */
1002#define DEFAULT_MAX_MEMORY_PACKET_SIZE 16384
1003
1004/* The minimum remote packet size for memory transfers. Ensures we
1005 can write at least one byte. */
1006#define MIN_MEMORY_PACKET_SIZE 20
1007
11cf8741
JM
1008/* Compute the current size of a read/write packet. Since this makes
1009 use of ``actual_register_packet_size'' the computation is dynamic. */
1010
1011static long
1012get_memory_packet_size (struct memory_packet_config *config)
1013{
d01949b6 1014 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
1015 struct remote_arch_state *rsa = get_remote_arch_state ();
1016
11cf8741
JM
1017 long what_they_get;
1018 if (config->fixed_p)
1019 {
1020 if (config->size <= 0)
a5c0808e 1021 what_they_get = DEFAULT_MAX_MEMORY_PACKET_SIZE;
11cf8741
JM
1022 else
1023 what_they_get = config->size;
1024 }
1025 else
1026 {
ea9c271d 1027 what_they_get = get_remote_packet_size ();
23860348 1028 /* Limit the packet to the size specified by the user. */
11cf8741
JM
1029 if (config->size > 0
1030 && what_they_get > config->size)
1031 what_they_get = config->size;
be2a5f71
DJ
1032
1033 /* Limit it to the size of the targets ``g'' response unless we have
1034 permission from the stub to use a larger packet size. */
1035 if (rs->explicit_packet_size == 0
1036 && rsa->actual_register_packet_size > 0
1037 && what_they_get > rsa->actual_register_packet_size)
1038 what_they_get = rsa->actual_register_packet_size;
11cf8741 1039 }
a5c0808e
PA
1040 if (what_they_get < MIN_MEMORY_PACKET_SIZE)
1041 what_they_get = MIN_MEMORY_PACKET_SIZE;
6d820c5c
DJ
1042
1043 /* Make sure there is room in the global buffer for this packet
1044 (including its trailing NUL byte). */
1045 if (rs->buf_size < what_they_get + 1)
1046 {
1047 rs->buf_size = 2 * what_they_get;
224c3ddb 1048 rs->buf = (char *) xrealloc (rs->buf, 2 * what_they_get);
6d820c5c
DJ
1049 }
1050
11cf8741
JM
1051 return what_they_get;
1052}
1053
0df8b418 1054/* Update the size of a read/write packet. If they user wants
23860348 1055 something really big then do a sanity check. */
11cf8741
JM
1056
1057static void
1058set_memory_packet_size (char *args, struct memory_packet_config *config)
1059{
1060 int fixed_p = config->fixed_p;
1061 long size = config->size;
a744cf53 1062
11cf8741 1063 if (args == NULL)
8a3fe4f8 1064 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1065 else if (strcmp (args, "hard") == 0
1066 || strcmp (args, "fixed") == 0)
1067 fixed_p = 1;
1068 else if (strcmp (args, "soft") == 0
1069 || strcmp (args, "limit") == 0)
1070 fixed_p = 0;
1071 else
1072 {
1073 char *end;
a744cf53 1074
11cf8741
JM
1075 size = strtoul (args, &end, 0);
1076 if (args == end)
8a3fe4f8 1077 error (_("Invalid %s (bad syntax)."), config->name);
a5c0808e
PA
1078
1079 /* Instead of explicitly capping the size of a packet to or
1080 disallowing it, the user is allowed to set the size to
1081 something arbitrarily large. */
11cf8741 1082 }
a5c0808e
PA
1083
1084 /* So that the query shows the correct value. */
1085 if (size <= 0)
1086 size = DEFAULT_MAX_MEMORY_PACKET_SIZE;
1087
23860348 1088 /* Extra checks? */
11cf8741
JM
1089 if (fixed_p && !config->fixed_p)
1090 {
e2e0b3e5
AC
1091 if (! query (_("The target may not be able to correctly handle a %s\n"
1092 "of %ld bytes. Change the packet size? "),
11cf8741 1093 config->name, size))
8a3fe4f8 1094 error (_("Packet size not changed."));
11cf8741 1095 }
23860348 1096 /* Update the config. */
11cf8741
JM
1097 config->fixed_p = fixed_p;
1098 config->size = size;
1099}
1100
1101static void
1102show_memory_packet_size (struct memory_packet_config *config)
1103{
a3f17187 1104 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1105 if (config->fixed_p)
a3f17187 1106 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
1107 get_memory_packet_size (config));
1108 else
a3f17187 1109 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
1110 get_memory_packet_size (config));
1111}
1112
1113static struct memory_packet_config memory_write_packet_config =
1114{
1115 "memory-write-packet-size",
1116};
1117
1118static void
1119set_memory_write_packet_size (char *args, int from_tty)
1120{
1121 set_memory_packet_size (args, &memory_write_packet_config);
1122}
1123
1124static void
1125show_memory_write_packet_size (char *args, int from_tty)
1126{
1127 show_memory_packet_size (&memory_write_packet_config);
1128}
1129
1130static long
1131get_memory_write_packet_size (void)
1132{
1133 return get_memory_packet_size (&memory_write_packet_config);
1134}
1135
1136static struct memory_packet_config memory_read_packet_config =
1137{
1138 "memory-read-packet-size",
1139};
1140
1141static void
1142set_memory_read_packet_size (char *args, int from_tty)
1143{
1144 set_memory_packet_size (args, &memory_read_packet_config);
1145}
1146
1147static void
1148show_memory_read_packet_size (char *args, int from_tty)
1149{
1150 show_memory_packet_size (&memory_read_packet_config);
1151}
1152
1153static long
1154get_memory_read_packet_size (void)
1155{
1156 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1157
11cf8741
JM
1158 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1159 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1160 increased beyond this. */
1161 if (size > get_remote_packet_size ())
1162 size = get_remote_packet_size ();
11cf8741
JM
1163 return size;
1164}
1165
11cf8741 1166\f
5a2468f5 1167/* Generic configuration support for packets the stub optionally
0df8b418 1168 supports. Allows the user to specify the use of the packet as well
23860348 1169 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
1170
1171enum packet_support
1172 {
1173 PACKET_SUPPORT_UNKNOWN = 0,
1174 PACKET_ENABLE,
1175 PACKET_DISABLE
1176 };
1177
5a2468f5
JM
1178struct packet_config
1179 {
bb572ddd
DJ
1180 const char *name;
1181 const char *title;
4082afcc
PA
1182
1183 /* If auto, GDB auto-detects support for this packet or feature,
1184 either through qSupported, or by trying the packet and looking
1185 at the response. If true, GDB assumes the target supports this
ca4f7f8b
PA
1186 packet. If false, the packet is disabled. Configs that don't
1187 have an associated command always have this set to auto. */
7f19b9a2 1188 enum auto_boolean detect;
4082afcc
PA
1189
1190 /* Does the target support this packet? */
5a2468f5
JM
1191 enum packet_support support;
1192 };
1193
d471ea57 1194/* Analyze a packet's return value and update the packet config
23860348 1195 accordingly. */
d471ea57
AC
1196
1197enum packet_result
1198{
1199 PACKET_ERROR,
1200 PACKET_OK,
1201 PACKET_UNKNOWN
1202};
1203
4082afcc
PA
1204static enum packet_support packet_config_support (struct packet_config *config);
1205static enum packet_support packet_support (int packet);
5a2468f5
JM
1206
1207static void
fba45db2 1208show_packet_config_cmd (struct packet_config *config)
5a2468f5
JM
1209{
1210 char *support = "internal-error";
a744cf53 1211
4082afcc 1212 switch (packet_config_support (config))
5a2468f5
JM
1213 {
1214 case PACKET_ENABLE:
1215 support = "enabled";
1216 break;
1217 case PACKET_DISABLE:
1218 support = "disabled";
1219 break;
1220 case PACKET_SUPPORT_UNKNOWN:
1221 support = "unknown";
1222 break;
1223 }
1224 switch (config->detect)
1225 {
7f19b9a2 1226 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1227 printf_filtered (_("Support for the `%s' packet "
1228 "is auto-detected, currently %s.\n"),
37a105a1 1229 config->name, support);
5a2468f5 1230 break;
7f19b9a2
AC
1231 case AUTO_BOOLEAN_TRUE:
1232 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1233 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1234 config->name, support);
8e248173 1235 break;
5a2468f5
JM
1236 }
1237}
1238
1239static void
bb572ddd
DJ
1240add_packet_config_cmd (struct packet_config *config, const char *name,
1241 const char *title, int legacy)
d471ea57 1242{
5a2468f5
JM
1243 char *set_doc;
1244 char *show_doc;
d471ea57 1245 char *cmd_name;
3ed07be4 1246
5a2468f5
JM
1247 config->name = name;
1248 config->title = title;
b435e160
AC
1249 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1250 name, title);
3e43a32a
MS
1251 show_doc = xstrprintf ("Show current use of remote "
1252 "protocol `%s' (%s) packet",
b435e160 1253 name, title);
d471ea57 1254 /* set/show TITLE-packet {auto,on,off} */
b435e160 1255 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1256 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1257 &config->detect, set_doc,
1258 show_doc, NULL, /* help_doc */
4082afcc 1259 NULL,
bb572ddd
DJ
1260 show_remote_protocol_packet_cmd,
1261 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1262 /* The command code copies the documentation strings. */
1263 xfree (set_doc);
1264 xfree (show_doc);
23860348 1265 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1266 if (legacy)
1267 {
1268 char *legacy_name;
a744cf53 1269
b435e160 1270 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1271 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1272 &remote_set_cmdlist);
d471ea57 1273 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1274 &remote_show_cmdlist);
d471ea57 1275 }
5a2468f5
JM
1276}
1277
d471ea57 1278static enum packet_result
a76d924d 1279packet_check_result (const char *buf)
5a2468f5 1280{
d471ea57 1281 if (buf[0] != '\0')
5a2468f5 1282 {
d471ea57 1283 /* The stub recognized the packet request. Check that the
23860348 1284 operation succeeded. */
a76d924d
DJ
1285 if (buf[0] == 'E'
1286 && isxdigit (buf[1]) && isxdigit (buf[2])
1287 && buf[3] == '\0')
1288 /* "Enn" - definitly an error. */
1289 return PACKET_ERROR;
1290
1291 /* Always treat "E." as an error. This will be used for
1292 more verbose error messages, such as E.memtypes. */
1293 if (buf[0] == 'E' && buf[1] == '.')
1294 return PACKET_ERROR;
1295
1296 /* The packet may or may not be OK. Just assume it is. */
1297 return PACKET_OK;
1298 }
1299 else
1300 /* The stub does not support the packet. */
1301 return PACKET_UNKNOWN;
1302}
1303
1304static enum packet_result
1305packet_ok (const char *buf, struct packet_config *config)
1306{
1307 enum packet_result result;
1308
4082afcc
PA
1309 if (config->detect != AUTO_BOOLEAN_TRUE
1310 && config->support == PACKET_DISABLE)
1311 internal_error (__FILE__, __LINE__,
1312 _("packet_ok: attempt to use a disabled packet"));
1313
a76d924d
DJ
1314 result = packet_check_result (buf);
1315 switch (result)
1316 {
1317 case PACKET_OK:
1318 case PACKET_ERROR:
1319 /* The stub recognized the packet request. */
4082afcc 1320 if (config->support == PACKET_SUPPORT_UNKNOWN)
d471ea57 1321 {
d471ea57
AC
1322 if (remote_debug)
1323 fprintf_unfiltered (gdb_stdlog,
4082afcc
PA
1324 "Packet %s (%s) is supported\n",
1325 config->name, config->title);
d471ea57 1326 config->support = PACKET_ENABLE;
d471ea57 1327 }
a76d924d
DJ
1328 break;
1329 case PACKET_UNKNOWN:
23860348 1330 /* The stub does not support the packet. */
4082afcc
PA
1331 if (config->detect == AUTO_BOOLEAN_AUTO
1332 && config->support == PACKET_ENABLE)
d471ea57 1333 {
4082afcc
PA
1334 /* If the stub previously indicated that the packet was
1335 supported then there is a protocol error. */
1336 error (_("Protocol error: %s (%s) conflicting enabled responses."),
1337 config->name, config->title);
1338 }
1339 else if (config->detect == AUTO_BOOLEAN_TRUE)
1340 {
1341 /* The user set it wrong. */
1342 error (_("Enabled packet %s (%s) not recognized by stub"),
1343 config->name, config->title);
d471ea57 1344 }
4082afcc
PA
1345
1346 if (remote_debug)
1347 fprintf_unfiltered (gdb_stdlog,
1348 "Packet %s (%s) is NOT supported\n",
1349 config->name, config->title);
1350 config->support = PACKET_DISABLE;
a76d924d 1351 break;
5a2468f5 1352 }
a76d924d
DJ
1353
1354 return result;
5a2468f5
JM
1355}
1356
444abaca
DJ
1357enum {
1358 PACKET_vCont = 0,
1359 PACKET_X,
1360 PACKET_qSymbol,
1361 PACKET_P,
1362 PACKET_p,
1363 PACKET_Z0,
1364 PACKET_Z1,
1365 PACKET_Z2,
1366 PACKET_Z3,
1367 PACKET_Z4,
15a201c8 1368 PACKET_vFile_setfs,
a6b151f1
DJ
1369 PACKET_vFile_open,
1370 PACKET_vFile_pread,
1371 PACKET_vFile_pwrite,
1372 PACKET_vFile_close,
1373 PACKET_vFile_unlink,
b9e7b9c3 1374 PACKET_vFile_readlink,
0a93529c 1375 PACKET_vFile_fstat,
0876f84a 1376 PACKET_qXfer_auxv,
23181151 1377 PACKET_qXfer_features,
c78fa86a 1378 PACKET_qXfer_exec_file,
cfa9d6d9 1379 PACKET_qXfer_libraries,
2268b414 1380 PACKET_qXfer_libraries_svr4,
fd79ecee 1381 PACKET_qXfer_memory_map,
0e7f50da
UW
1382 PACKET_qXfer_spu_read,
1383 PACKET_qXfer_spu_write,
07e059b5 1384 PACKET_qXfer_osdata,
dc146f7c 1385 PACKET_qXfer_threads,
0fb4aa4b 1386 PACKET_qXfer_statictrace_read,
b3b9301e 1387 PACKET_qXfer_traceframe_info,
169081d0 1388 PACKET_qXfer_uib,
711e434b 1389 PACKET_qGetTIBAddr,
444abaca 1390 PACKET_qGetTLSAddr,
be2a5f71 1391 PACKET_qSupported,
bd3eecc3 1392 PACKET_qTStatus,
89be2091 1393 PACKET_QPassSignals,
82075af2 1394 PACKET_QCatchSyscalls,
9b224c5e 1395 PACKET_QProgramSignals,
936d2992 1396 PACKET_qCRC,
08388c79 1397 PACKET_qSearch_memory,
2d717e4f
DJ
1398 PACKET_vAttach,
1399 PACKET_vRun,
a6f3e723 1400 PACKET_QStartNoAckMode,
82f73884 1401 PACKET_vKill,
4aa995e1
PA
1402 PACKET_qXfer_siginfo_read,
1403 PACKET_qXfer_siginfo_write,
0b16c5cf 1404 PACKET_qAttached,
4082afcc
PA
1405
1406 /* Support for conditional tracepoints. */
782b2b07 1407 PACKET_ConditionalTracepoints,
4082afcc
PA
1408
1409 /* Support for target-side breakpoint conditions. */
3788aec7 1410 PACKET_ConditionalBreakpoints,
4082afcc
PA
1411
1412 /* Support for target-side breakpoint commands. */
d3ce09f5 1413 PACKET_BreakpointCommands,
4082afcc
PA
1414
1415 /* Support for fast tracepoints. */
7a697b8d 1416 PACKET_FastTracepoints,
4082afcc
PA
1417
1418 /* Support for static tracepoints. */
0fb4aa4b 1419 PACKET_StaticTracepoints,
4082afcc
PA
1420
1421 /* Support for installing tracepoints while a trace experiment is
1422 running. */
1e4d1764 1423 PACKET_InstallInTrace,
4082afcc 1424
40ab02ce
MS
1425 PACKET_bc,
1426 PACKET_bs,
409873ef 1427 PACKET_TracepointSource,
d914c394 1428 PACKET_QAllow,
78d85199 1429 PACKET_qXfer_fdpic,
03583c20 1430 PACKET_QDisableRandomization,
d1feda86 1431 PACKET_QAgent,
f6f899bf 1432 PACKET_QTBuffer_size,
9accd112
MM
1433 PACKET_Qbtrace_off,
1434 PACKET_Qbtrace_bts,
b20a6524 1435 PACKET_Qbtrace_pt,
9accd112 1436 PACKET_qXfer_btrace,
4082afcc
PA
1437
1438 /* Support for the QNonStop packet. */
1439 PACKET_QNonStop,
1440
65706a29
PA
1441 /* Support for the QThreadEvents packet. */
1442 PACKET_QThreadEvents,
1443
4082afcc
PA
1444 /* Support for multi-process extensions. */
1445 PACKET_multiprocess_feature,
1446
1447 /* Support for enabling and disabling tracepoints while a trace
1448 experiment is running. */
1449 PACKET_EnableDisableTracepoints_feature,
1450
1451 /* Support for collecting strings using the tracenz bytecode. */
1452 PACKET_tracenz_feature,
1453
1454 /* Support for continuing to run a trace experiment while GDB is
1455 disconnected. */
1456 PACKET_DisconnectedTracing_feature,
1457
1458 /* Support for qXfer:libraries-svr4:read with a non-empty annex. */
1459 PACKET_augmented_libraries_svr4_read_feature,
1460
f4abbc16
MM
1461 /* Support for the qXfer:btrace-conf:read packet. */
1462 PACKET_qXfer_btrace_conf,
1463
d33501a5
MM
1464 /* Support for the Qbtrace-conf:bts:size packet. */
1465 PACKET_Qbtrace_conf_bts_size,
1466
f7e6eed5
PA
1467 /* Support for swbreak+ feature. */
1468 PACKET_swbreak_feature,
1469
1470 /* Support for hwbreak+ feature. */
1471 PACKET_hwbreak_feature,
1472
89245bc0
DB
1473 /* Support for fork events. */
1474 PACKET_fork_event_feature,
1475
1476 /* Support for vfork events. */
1477 PACKET_vfork_event_feature,
1478
b20a6524
MM
1479 /* Support for the Qbtrace-conf:pt:size packet. */
1480 PACKET_Qbtrace_conf_pt_size,
1481
94585166
DB
1482 /* Support for exec events. */
1483 PACKET_exec_event_feature,
1484
750ce8d1
YQ
1485 /* Support for query supported vCont actions. */
1486 PACKET_vContSupported,
1487
de979965
PA
1488 /* Support remote CTRL-C. */
1489 PACKET_vCtrlC,
1490
f2faf941
PA
1491 /* Support TARGET_WAITKIND_NO_RESUMED. */
1492 PACKET_no_resumed,
1493
444abaca
DJ
1494 PACKET_MAX
1495};
506fb367 1496
444abaca 1497static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97 1498
f7e6eed5
PA
1499/* Returns the packet's corresponding "set remote foo-packet" command
1500 state. See struct packet_config for more details. */
1501
1502static enum auto_boolean
1503packet_set_cmd_state (int packet)
1504{
1505 return remote_protocol_packets[packet].detect;
1506}
1507
4082afcc
PA
1508/* Returns whether a given packet or feature is supported. This takes
1509 into account the state of the corresponding "set remote foo-packet"
1510 command, which may be used to bypass auto-detection. */
dc8acb97 1511
4082afcc
PA
1512static enum packet_support
1513packet_config_support (struct packet_config *config)
1514{
1515 switch (config->detect)
444abaca 1516 {
4082afcc
PA
1517 case AUTO_BOOLEAN_TRUE:
1518 return PACKET_ENABLE;
1519 case AUTO_BOOLEAN_FALSE:
1520 return PACKET_DISABLE;
1521 case AUTO_BOOLEAN_AUTO:
1522 return config->support;
1523 default:
1524 gdb_assert_not_reached (_("bad switch"));
444abaca 1525 }
4082afcc
PA
1526}
1527
1528/* Same as packet_config_support, but takes the packet's enum value as
1529 argument. */
1530
1531static enum packet_support
1532packet_support (int packet)
1533{
1534 struct packet_config *config = &remote_protocol_packets[packet];
1535
1536 return packet_config_support (config);
dc8acb97
MS
1537}
1538
5a2468f5 1539static void
444abaca
DJ
1540show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1541 struct cmd_list_element *c,
1542 const char *value)
5a2468f5 1543{
444abaca 1544 struct packet_config *packet;
5a2468f5 1545
444abaca
DJ
1546 for (packet = remote_protocol_packets;
1547 packet < &remote_protocol_packets[PACKET_MAX];
1548 packet++)
1549 {
1550 if (&packet->detect == c->var)
1551 {
1552 show_packet_config_cmd (packet);
1553 return;
1554 }
1555 }
9b20d036 1556 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1557 c->name);
5a2468f5
JM
1558}
1559
d471ea57
AC
1560/* Should we try one of the 'Z' requests? */
1561
1562enum Z_packet_type
1563{
1564 Z_PACKET_SOFTWARE_BP,
1565 Z_PACKET_HARDWARE_BP,
1566 Z_PACKET_WRITE_WP,
1567 Z_PACKET_READ_WP,
1568 Z_PACKET_ACCESS_WP,
1569 NR_Z_PACKET_TYPES
1570};
96baa820 1571
d471ea57 1572/* For compatibility with older distributions. Provide a ``set remote
23860348 1573 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1574
7f19b9a2 1575static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1576
1577static void
fba45db2
KB
1578set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1579 struct cmd_list_element *c)
96baa820 1580{
d471ea57 1581 int i;
a744cf53 1582
d471ea57 1583 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
4082afcc 1584 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
96baa820
JM
1585}
1586
1587static void
08546159
AC
1588show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1589 struct cmd_list_element *c,
1590 const char *value)
96baa820 1591{
d471ea57 1592 int i;
a744cf53 1593
d471ea57
AC
1594 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1595 {
444abaca 1596 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1597 }
96baa820
JM
1598}
1599
4082afcc
PA
1600/* Returns true if the multi-process extensions are in effect. */
1601
1602static int
1603remote_multi_process_p (struct remote_state *rs)
1604{
1605 return packet_support (PACKET_multiprocess_feature) == PACKET_ENABLE;
1606}
1607
de0d863e
DB
1608/* Returns true if fork events are supported. */
1609
1610static int
1611remote_fork_event_p (struct remote_state *rs)
1612{
1613 return packet_support (PACKET_fork_event_feature) == PACKET_ENABLE;
1614}
1615
c269dbdb
DB
1616/* Returns true if vfork events are supported. */
1617
1618static int
1619remote_vfork_event_p (struct remote_state *rs)
1620{
1621 return packet_support (PACKET_vfork_event_feature) == PACKET_ENABLE;
1622}
1623
d46addbb
DB
1624/* Returns true if exec events are supported. */
1625
1626static int
1627remote_exec_event_p (struct remote_state *rs)
1628{
1629 return packet_support (PACKET_exec_event_feature) == PACKET_ENABLE;
1630}
1631
cbb8991c
DB
1632/* Insert fork catchpoint target routine. If fork events are enabled
1633 then return success, nothing more to do. */
1634
1635static int
1636remote_insert_fork_catchpoint (struct target_ops *ops, int pid)
1637{
1638 struct remote_state *rs = get_remote_state ();
1639
1640 return !remote_fork_event_p (rs);
1641}
1642
1643/* Remove fork catchpoint target routine. Nothing to do, just
1644 return success. */
1645
1646static int
1647remote_remove_fork_catchpoint (struct target_ops *ops, int pid)
1648{
1649 return 0;
1650}
1651
1652/* Insert vfork catchpoint target routine. If vfork events are enabled
1653 then return success, nothing more to do. */
1654
1655static int
1656remote_insert_vfork_catchpoint (struct target_ops *ops, int pid)
1657{
1658 struct remote_state *rs = get_remote_state ();
1659
1660 return !remote_vfork_event_p (rs);
1661}
1662
1663/* Remove vfork catchpoint target routine. Nothing to do, just
1664 return success. */
1665
1666static int
1667remote_remove_vfork_catchpoint (struct target_ops *ops, int pid)
1668{
1669 return 0;
1670}
1671
d46addbb
DB
1672/* Insert exec catchpoint target routine. If exec events are
1673 enabled, just return success. */
1674
1675static int
1676remote_insert_exec_catchpoint (struct target_ops *ops, int pid)
1677{
1678 struct remote_state *rs = get_remote_state ();
1679
1680 return !remote_exec_event_p (rs);
1681}
1682
1683/* Remove exec catchpoint target routine. Nothing to do, just
1684 return success. */
1685
1686static int
1687remote_remove_exec_catchpoint (struct target_ops *ops, int pid)
1688{
1689 return 0;
1690}
1691
23860348 1692/* Tokens for use by the asynchronous signal handlers for SIGINT. */
934b9bac
JK
1693static struct async_signal_handler *async_sigint_remote_twice_token;
1694static struct async_signal_handler *async_sigint_remote_token;
43ff13b4 1695
74531fed
PA
1696\f
1697/* Asynchronous signal handle registered as event loop source for
1698 when we have pending events ready to be passed to the core. */
1699
1700static struct async_event_handler *remote_async_inferior_event_token;
1701
c906108c
SS
1702\f
1703
79d7f229
PA
1704static ptid_t magic_null_ptid;
1705static ptid_t not_sent_ptid;
1706static ptid_t any_thread_ptid;
1707
0b16c5cf
PA
1708/* Find out if the stub attached to PID (and hence GDB should offer to
1709 detach instead of killing it when bailing out). */
1710
1711static int
1712remote_query_attached (int pid)
1713{
1714 struct remote_state *rs = get_remote_state ();
bba74b36 1715 size_t size = get_remote_packet_size ();
0b16c5cf 1716
4082afcc 1717 if (packet_support (PACKET_qAttached) == PACKET_DISABLE)
0b16c5cf
PA
1718 return 0;
1719
1720 if (remote_multi_process_p (rs))
bba74b36 1721 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 1722 else
bba74b36 1723 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
1724
1725 putpkt (rs->buf);
1726 getpkt (&rs->buf, &rs->buf_size, 0);
1727
1728 switch (packet_ok (rs->buf,
1554e9be 1729 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1730 {
1731 case PACKET_OK:
1732 if (strcmp (rs->buf, "1") == 0)
1733 return 1;
1734 break;
1735 case PACKET_ERROR:
1736 warning (_("Remote failure reply: %s"), rs->buf);
1737 break;
1738 case PACKET_UNKNOWN:
1739 break;
1740 }
1741
1742 return 0;
1743}
1744
49c62f2e
PA
1745/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1746 has been invented by GDB, instead of reported by the target. Since
1747 we can be connected to a remote system before before knowing about
1748 any inferior, mark the target with execution when we find the first
1749 inferior. If ATTACHED is 1, then we had just attached to this
1750 inferior. If it is 0, then we just created this inferior. If it
1751 is -1, then try querying the remote stub to find out if it had
1b6e6f5c
GB
1752 attached to the inferior or not. If TRY_OPEN_EXEC is true then
1753 attempt to open this inferior's executable as the main executable
1754 if no main executable is open already. */
1941c569
PA
1755
1756static struct inferior *
1b6e6f5c
GB
1757remote_add_inferior (int fake_pid_p, int pid, int attached,
1758 int try_open_exec)
1941c569 1759{
1941c569
PA
1760 struct inferior *inf;
1761
0b16c5cf
PA
1762 /* Check whether this process we're learning about is to be
1763 considered attached, or if is to be considered to have been
1764 spawned by the stub. */
1765 if (attached == -1)
1766 attached = remote_query_attached (pid);
1767
f5656ead 1768 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
1769 {
1770 /* If the target shares code across all inferiors, then every
1771 attach adds a new inferior. */
1772 inf = add_inferior (pid);
1773
1774 /* ... and every inferior is bound to the same program space.
1775 However, each inferior may still have its own address
1776 space. */
1777 inf->aspace = maybe_new_address_space ();
1778 inf->pspace = current_program_space;
1779 }
1780 else
1781 {
1782 /* In the traditional debugging scenario, there's a 1-1 match
1783 between program/address spaces. We simply bind the inferior
1784 to the program space's address space. */
1785 inf = current_inferior ();
1786 inferior_appeared (inf, pid);
1787 }
1941c569 1788
0b16c5cf 1789 inf->attach_flag = attached;
49c62f2e 1790 inf->fake_pid_p = fake_pid_p;
0b16c5cf 1791
1b6e6f5c
GB
1792 /* If no main executable is currently open then attempt to
1793 open the file that was executed to create this inferior. */
835205d0 1794 if (try_open_exec && get_exec_file (0) == NULL)
1b6e6f5c
GB
1795 exec_file_locate_attach (pid, 1);
1796
1941c569
PA
1797 return inf;
1798}
1799
1800/* Add thread PTID to GDB's thread list. Tag it as executing/running
1801 according to RUNNING. */
1802
c906108c 1803static void
0d5b594f 1804remote_add_thread (ptid_t ptid, int running, int executing)
c906108c 1805{
b7ea362b
PA
1806 struct remote_state *rs = get_remote_state ();
1807
1808 /* GDB historically didn't pull threads in the initial connection
1809 setup. If the remote target doesn't even have a concept of
1810 threads (e.g., a bare-metal target), even if internally we
1811 consider that a single-threaded target, mentioning a new thread
1812 might be confusing to the user. Be silent then, preserving the
1813 age old behavior. */
1814 if (rs->starting_up)
1815 add_thread_silent (ptid);
1816 else
1817 add_thread (ptid);
1941c569 1818
0d5b594f 1819 set_executing (ptid, executing);
1941c569
PA
1820 set_running (ptid, running);
1821}
1822
1823/* Come here when we learn about a thread id from the remote target.
1824 It may be the first time we hear about such thread, so take the
1825 opportunity to add it to GDB's thread list. In case this is the
1826 first time we're noticing its corresponding inferior, add it to
0d5b594f
PA
1827 GDB's inferior list as well. EXECUTING indicates whether the
1828 thread is (internally) executing or stopped. */
1941c569
PA
1829
1830static void
0d5b594f 1831remote_notice_new_inferior (ptid_t currthread, int executing)
1941c569 1832{
0d5b594f
PA
1833 /* In non-stop mode, we assume new found threads are (externally)
1834 running until proven otherwise with a stop reply. In all-stop,
1835 we can only get here if all threads are stopped. */
1836 int running = target_is_non_stop_p () ? 1 : 0;
1837
c906108c
SS
1838 /* If this is a new thread, add it to GDB's thread list.
1839 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1840
1841 if (in_thread_list (currthread) && is_exited (currthread))
1842 {
1843 /* We're seeing an event on a thread id we knew had exited.
1844 This has to be a new thread reusing the old id. Add it. */
0d5b594f 1845 remote_add_thread (currthread, running, executing);
82f73884
PA
1846 return;
1847 }
1848
79d7f229 1849 if (!in_thread_list (currthread))
c0a2216e 1850 {
1941c569 1851 struct inferior *inf = NULL;
bad34192 1852 int pid = ptid_get_pid (currthread);
1941c569 1853
bad34192
PA
1854 if (ptid_is_pid (inferior_ptid)
1855 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1856 {
1857 /* inferior_ptid has no thread member yet. This can happen
1858 with the vAttach -> remote_wait,"TAAthread:" path if the
1859 stub doesn't support qC. This is the first stop reported
1860 after an attach, so this is the main thread. Update the
1861 ptid in the thread list. */
bad34192
PA
1862 if (in_thread_list (pid_to_ptid (pid)))
1863 thread_change_ptid (inferior_ptid, currthread);
1864 else
1865 {
0d5b594f 1866 remote_add_thread (currthread, running, executing);
bad34192
PA
1867 inferior_ptid = currthread;
1868 }
dc146f7c 1869 return;
c0a2216e 1870 }
82f73884
PA
1871
1872 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1873 {
1874 /* inferior_ptid is not set yet. This can happen with the
1875 vRun -> remote_wait,"TAAthread:" path if the stub
1876 doesn't support qC. This is the first stop reported
1877 after an attach, so this is the main thread. Update the
1878 ptid in the thread list. */
dc146f7c 1879 thread_change_ptid (inferior_ptid, currthread);
82f73884 1880 return;
c0a2216e 1881 }
82f73884 1882
29c87f7f
PA
1883 /* When connecting to a target remote, or to a target
1884 extended-remote which already was debugging an inferior, we
1885 may not know about it yet. Add it before adding its child
1886 thread, so notifications are emitted in a sensible order. */
1887 if (!in_inferior_list (ptid_get_pid (currthread)))
49c62f2e
PA
1888 {
1889 struct remote_state *rs = get_remote_state ();
1890 int fake_pid_p = !remote_multi_process_p (rs);
1891
1892 inf = remote_add_inferior (fake_pid_p,
1b6e6f5c 1893 ptid_get_pid (currthread), -1, 1);
49c62f2e 1894 }
29c87f7f 1895
82f73884 1896 /* This is really a new thread. Add it. */
0d5b594f 1897 remote_add_thread (currthread, running, executing);
1941c569
PA
1898
1899 /* If we found a new inferior, let the common code do whatever
1900 it needs to with it (e.g., read shared libraries, insert
b7ea362b
PA
1901 breakpoints), unless we're just setting up an all-stop
1902 connection. */
1941c569 1903 if (inf != NULL)
b7ea362b
PA
1904 {
1905 struct remote_state *rs = get_remote_state ();
1906
6efcd9a8 1907 if (!rs->starting_up)
0d5b594f 1908 notice_new_inferior (currthread, executing, 0);
b7ea362b 1909 }
c0a2216e 1910 }
c906108c
SS
1911}
1912
dc146f7c
VP
1913/* Return the private thread data, creating it if necessary. */
1914
70221824 1915static struct private_thread_info *
dc146f7c
VP
1916demand_private_info (ptid_t ptid)
1917{
1918 struct thread_info *info = find_thread_ptid (ptid);
1919
1920 gdb_assert (info);
1921
fe978cb0 1922 if (!info->priv)
dc146f7c 1923 {
8d749320 1924 info->priv = XNEW (struct private_thread_info);
dc146f7c 1925 info->private_dtor = free_private_thread_info;
fe978cb0 1926 info->priv->core = -1;
8020350c
DB
1927 info->priv->extra = NULL;
1928 info->priv->name = NULL;
dc146f7c
VP
1929 }
1930
fe978cb0 1931 return info->priv;
dc146f7c
VP
1932}
1933
74531fed
PA
1934/* Call this function as a result of
1935 1) A halt indication (T packet) containing a thread id
1936 2) A direct query of currthread
0df8b418 1937 3) Successful execution of set thread */
74531fed
PA
1938
1939static void
47f8a51d 1940record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 1941{
47f8a51d 1942 rs->general_thread = currthread;
74531fed
PA
1943}
1944
89be2091
DJ
1945/* If 'QPassSignals' is supported, tell the remote stub what signals
1946 it can simply pass through to the inferior without reporting. */
1947
1948static void
94bedb42
TT
1949remote_pass_signals (struct target_ops *self,
1950 int numsigs, unsigned char *pass_signals)
89be2091 1951{
4082afcc 1952 if (packet_support (PACKET_QPassSignals) != PACKET_DISABLE)
89be2091
DJ
1953 {
1954 char *pass_packet, *p;
89be2091 1955 int count = 0, i;
747dc59d 1956 struct remote_state *rs = get_remote_state ();
89be2091
DJ
1957
1958 gdb_assert (numsigs < 256);
1959 for (i = 0; i < numsigs; i++)
1960 {
2455069d 1961 if (pass_signals[i])
89be2091
DJ
1962 count++;
1963 }
224c3ddb 1964 pass_packet = (char *) xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
89be2091
DJ
1965 strcpy (pass_packet, "QPassSignals:");
1966 p = pass_packet + strlen (pass_packet);
1967 for (i = 0; i < numsigs; i++)
1968 {
2455069d 1969 if (pass_signals[i])
89be2091
DJ
1970 {
1971 if (i >= 16)
1972 *p++ = tohex (i >> 4);
1973 *p++ = tohex (i & 15);
1974 if (count)
1975 *p++ = ';';
1976 else
1977 break;
1978 count--;
1979 }
1980 }
1981 *p = 0;
747dc59d 1982 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 1983 {
89be2091
DJ
1984 putpkt (pass_packet);
1985 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 1986 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
1987 if (rs->last_pass_packet)
1988 xfree (rs->last_pass_packet);
1989 rs->last_pass_packet = pass_packet;
89be2091
DJ
1990 }
1991 else
1992 xfree (pass_packet);
1993 }
1994}
1995
82075af2
JS
1996/* If 'QCatchSyscalls' is supported, tell the remote stub
1997 to report syscalls to GDB. */
1998
1999static int
2000remote_set_syscall_catchpoint (struct target_ops *self,
2001 int pid, int needed, int any_count,
2002 int table_size, int *table)
2003{
2004 char *catch_packet;
2005 enum packet_result result;
2006 int n_sysno = 0;
2007
2008 if (packet_support (PACKET_QCatchSyscalls) == PACKET_DISABLE)
2009 {
2010 /* Not supported. */
2011 return 1;
2012 }
2013
2014 if (needed && !any_count)
2015 {
2016 int i;
2017
2018 /* Count how many syscalls are to be caught (table[sysno] != 0). */
2019 for (i = 0; i < table_size; i++)
2020 {
2021 if (table[i] != 0)
2022 n_sysno++;
2023 }
2024 }
2025
2026 if (remote_debug)
2027 {
2028 fprintf_unfiltered (gdb_stdlog,
2029 "remote_set_syscall_catchpoint "
2030 "pid %d needed %d any_count %d n_sysno %d\n",
2031 pid, needed, any_count, n_sysno);
2032 }
2033
2034 if (needed)
2035 {
2036 /* Prepare a packet with the sysno list, assuming max 8+1
2037 characters for a sysno. If the resulting packet size is too
2038 big, fallback on the non-selective packet. */
2039 const int maxpktsz = strlen ("QCatchSyscalls:1") + n_sysno * 9 + 1;
2040
c0518081 2041 catch_packet = (char *) xmalloc (maxpktsz);
82075af2
JS
2042 strcpy (catch_packet, "QCatchSyscalls:1");
2043 if (!any_count)
2044 {
2045 int i;
2046 char *p;
2047
2048 p = catch_packet;
2049 p += strlen (p);
2050
2051 /* Add in catch_packet each syscall to be caught (table[i] != 0). */
2052 for (i = 0; i < table_size; i++)
2053 {
2054 if (table[i] != 0)
2055 p += xsnprintf (p, catch_packet + maxpktsz - p, ";%x", i);
2056 }
2057 }
2058 if (strlen (catch_packet) > get_remote_packet_size ())
2059 {
2060 /* catch_packet too big. Fallback to less efficient
2061 non selective mode, with GDB doing the filtering. */
2062 catch_packet[sizeof ("QCatchSyscalls:1") - 1] = 0;
2063 }
2064 }
2065 else
2066 catch_packet = xstrdup ("QCatchSyscalls:0");
2067
2068 {
2069 struct cleanup *old_chain = make_cleanup (xfree, catch_packet);
2070 struct remote_state *rs = get_remote_state ();
2071
2072 putpkt (catch_packet);
2073 getpkt (&rs->buf, &rs->buf_size, 0);
2074 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_QCatchSyscalls]);
2075 do_cleanups (old_chain);
2076 if (result == PACKET_OK)
2077 return 0;
2078 else
2079 return -1;
2080 }
2081}
2082
9b224c5e
PA
2083/* If 'QProgramSignals' is supported, tell the remote stub what
2084 signals it should pass through to the inferior when detaching. */
2085
2086static void
daf5e9b6
TT
2087remote_program_signals (struct target_ops *self,
2088 int numsigs, unsigned char *signals)
9b224c5e 2089{
4082afcc 2090 if (packet_support (PACKET_QProgramSignals) != PACKET_DISABLE)
9b224c5e
PA
2091 {
2092 char *packet, *p;
2093 int count = 0, i;
5e4a05c4 2094 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
2095
2096 gdb_assert (numsigs < 256);
2097 for (i = 0; i < numsigs; i++)
2098 {
2099 if (signals[i])
2100 count++;
2101 }
224c3ddb 2102 packet = (char *) xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
9b224c5e
PA
2103 strcpy (packet, "QProgramSignals:");
2104 p = packet + strlen (packet);
2105 for (i = 0; i < numsigs; i++)
2106 {
2107 if (signal_pass_state (i))
2108 {
2109 if (i >= 16)
2110 *p++ = tohex (i >> 4);
2111 *p++ = tohex (i & 15);
2112 if (count)
2113 *p++ = ';';
2114 else
2115 break;
2116 count--;
2117 }
2118 }
2119 *p = 0;
5e4a05c4
TT
2120 if (!rs->last_program_signals_packet
2121 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 2122 {
9b224c5e
PA
2123 putpkt (packet);
2124 getpkt (&rs->buf, &rs->buf_size, 0);
8dc5b319 2125 packet_ok (rs->buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
2126 xfree (rs->last_program_signals_packet);
2127 rs->last_program_signals_packet = packet;
9b224c5e
PA
2128 }
2129 else
2130 xfree (packet);
2131 }
2132}
2133
79d7f229
PA
2134/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
2135 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
2136 thread. If GEN is set, set the general thread, if not, then set
2137 the step/continue thread. */
c906108c 2138static void
79d7f229 2139set_thread (struct ptid ptid, int gen)
c906108c 2140{
d01949b6 2141 struct remote_state *rs = get_remote_state ();
47f8a51d 2142 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 2143 char *buf = rs->buf;
79d7f229 2144 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 2145
79d7f229 2146 if (ptid_equal (state, ptid))
c906108c
SS
2147 return;
2148
79d7f229
PA
2149 *buf++ = 'H';
2150 *buf++ = gen ? 'g' : 'c';
2151 if (ptid_equal (ptid, magic_null_ptid))
2152 xsnprintf (buf, endbuf - buf, "0");
2153 else if (ptid_equal (ptid, any_thread_ptid))
2154 xsnprintf (buf, endbuf - buf, "0");
2155 else if (ptid_equal (ptid, minus_one_ptid))
2156 xsnprintf (buf, endbuf - buf, "-1");
2157 else
82f73884 2158 write_ptid (buf, endbuf, ptid);
79d7f229 2159 putpkt (rs->buf);
6d820c5c 2160 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2161 if (gen)
47f8a51d 2162 rs->general_thread = ptid;
c906108c 2163 else
47f8a51d 2164 rs->continue_thread = ptid;
c906108c 2165}
79d7f229
PA
2166
2167static void
2168set_general_thread (struct ptid ptid)
2169{
2170 set_thread (ptid, 1);
2171}
2172
2173static void
2174set_continue_thread (struct ptid ptid)
2175{
2176 set_thread (ptid, 0);
2177}
2178
3c9c4b83
PA
2179/* Change the remote current process. Which thread within the process
2180 ends up selected isn't important, as long as it is the same process
2181 as what INFERIOR_PTID points to.
2182
2183 This comes from that fact that there is no explicit notion of
2184 "selected process" in the protocol. The selected process for
2185 general operations is the process the selected general thread
2186 belongs to. */
2187
2188static void
2189set_general_process (void)
2190{
2191 struct remote_state *rs = get_remote_state ();
2192
2193 /* If the remote can't handle multiple processes, don't bother. */
8020350c 2194 if (!remote_multi_process_p (rs))
3c9c4b83
PA
2195 return;
2196
2197 /* We only need to change the remote current thread if it's pointing
2198 at some other process. */
47f8a51d 2199 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
2200 set_general_thread (inferior_ptid);
2201}
2202
c906108c 2203\f
7d1a114c
PA
2204/* Return nonzero if this is the main thread that we made up ourselves
2205 to model non-threaded targets as single-threaded. */
c906108c
SS
2206
2207static int
7d1a114c 2208remote_thread_always_alive (struct target_ops *ops, ptid_t ptid)
c906108c 2209{
c0a2216e
PA
2210 if (ptid_equal (ptid, magic_null_ptid))
2211 /* The main thread is always alive. */
2212 return 1;
2213
ba348170 2214 if (ptid_get_pid (ptid) != 0 && ptid_get_lwp (ptid) == 0)
c0a2216e
PA
2215 /* The main thread is always alive. This can happen after a
2216 vAttach, if the remote side doesn't support
2217 multi-threading. */
2218 return 1;
2219
7d1a114c
PA
2220 return 0;
2221}
2222
2223/* Return nonzero if the thread PTID is still alive on the remote
2224 system. */
2225
2226static int
2227remote_thread_alive (struct target_ops *ops, ptid_t ptid)
2228{
2229 struct remote_state *rs = get_remote_state ();
2230 char *p, *endp;
2231
2232 /* Check if this is a thread that we made up ourselves to model
2233 non-threaded targets as single-threaded. */
2234 if (remote_thread_always_alive (ops, ptid))
2235 return 1;
2236
82f73884
PA
2237 p = rs->buf;
2238 endp = rs->buf + get_remote_packet_size ();
2239
2240 *p++ = 'T';
2241 write_ptid (p, endp, ptid);
2242
2e9f7625 2243 putpkt (rs->buf);
6d820c5c 2244 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2245 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
2246}
2247
79efa585
SM
2248/* Return a pointer to a thread name if we know it and NULL otherwise.
2249 The thread_info object owns the memory for the name. */
2250
2251static const char *
2252remote_thread_name (struct target_ops *ops, struct thread_info *info)
2253{
2254 if (info->priv != NULL)
2255 return info->priv->name;
2256
2257 return NULL;
2258}
2259
c906108c
SS
2260/* About these extended threadlist and threadinfo packets. They are
2261 variable length packets but, the fields within them are often fixed
2262 length. They are redundent enough to send over UDP as is the
2263 remote protocol in general. There is a matching unit test module
2264 in libstub. */
2265
23860348 2266/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 2267 libstub protocol encoding, and remote.c. It is not particularly
23860348 2268 changable. */
cce74817
JM
2269
2270/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 2271 Plan to fix this. */
cce74817 2272
23860348 2273typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 2274
9d1f7ab2 2275/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 2276 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
2277
2278struct gdb_ext_thread_info
c5aa993b 2279 {
23860348 2280 threadref threadid; /* External form of thread reference. */
2bc416ba 2281 int active; /* Has state interesting to GDB?
23860348 2282 regs, stack. */
2bc416ba 2283 char display[256]; /* Brief state display, name,
cedea757 2284 blocked/suspended. */
23860348 2285 char shortname[32]; /* To be used to name threads. */
2bc416ba 2286 char more_display[256]; /* Long info, statistics, queue depth,
23860348 2287 whatever. */
c5aa993b 2288 };
cce74817
JM
2289
2290/* The volume of remote transfers can be limited by submitting
2291 a mask containing bits specifying the desired information.
2292 Use a union of these values as the 'selection' parameter to
0df8b418 2293 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
2294
2295#define TAG_THREADID 1
2296#define TAG_EXISTS 2
2297#define TAG_DISPLAY 4
2298#define TAG_THREADNAME 8
c5aa993b 2299#define TAG_MOREDISPLAY 16
cce74817 2300
23860348 2301#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 2302
a14ed312 2303static char *unpack_nibble (char *buf, int *val);
cce74817 2304
a14ed312 2305static char *unpack_byte (char *buf, int *value);
cce74817 2306
a14ed312 2307static char *pack_int (char *buf, int value);
cce74817 2308
a14ed312 2309static char *unpack_int (char *buf, int *value);
cce74817 2310
a14ed312 2311static char *unpack_string (char *src, char *dest, int length);
cce74817 2312
23860348 2313static char *pack_threadid (char *pkt, threadref *id);
cce74817 2314
23860348 2315static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 2316
23860348 2317void int_to_threadref (threadref *id, int value);
cce74817 2318
23860348 2319static int threadref_to_int (threadref *ref);
cce74817 2320
23860348 2321static void copy_threadref (threadref *dest, threadref *src);
cce74817 2322
23860348 2323static int threadmatch (threadref *dest, threadref *src);
cce74817 2324
2bc416ba 2325static char *pack_threadinfo_request (char *pkt, int mode,
23860348 2326 threadref *id);
cce74817 2327
a14ed312 2328static int remote_unpack_thread_info_response (char *pkt,
23860348 2329 threadref *expectedref,
a14ed312
KB
2330 struct gdb_ext_thread_info
2331 *info);
cce74817
JM
2332
2333
2bc416ba 2334static int remote_get_threadinfo (threadref *threadid,
23860348 2335 int fieldset, /*TAG mask */
a14ed312 2336 struct gdb_ext_thread_info *info);
cce74817 2337
a14ed312
KB
2338static char *pack_threadlist_request (char *pkt, int startflag,
2339 int threadcount,
23860348 2340 threadref *nextthread);
cce74817 2341
a14ed312
KB
2342static int parse_threadlist_response (char *pkt,
2343 int result_limit,
23860348 2344 threadref *original_echo,
2bc416ba 2345 threadref *resultlist,
23860348 2346 int *doneflag);
cce74817 2347
a14ed312 2348static int remote_get_threadlist (int startflag,
23860348 2349 threadref *nextthread,
a14ed312
KB
2350 int result_limit,
2351 int *done,
2bc416ba 2352 int *result_count,
23860348 2353 threadref *threadlist);
cce74817 2354
23860348 2355typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 2356
a14ed312
KB
2357static int remote_threadlist_iterator (rmt_thread_action stepfunction,
2358 void *context, int looplimit);
cce74817 2359
23860348 2360static int remote_newthread_step (threadref *ref, void *context);
cce74817 2361
82f73884
PA
2362
2363/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
2364 buffer we're allowed to write to. Returns
2365 BUF+CHARACTERS_WRITTEN. */
2366
2367static char *
2368write_ptid (char *buf, const char *endbuf, ptid_t ptid)
2369{
2370 int pid, tid;
2371 struct remote_state *rs = get_remote_state ();
2372
2373 if (remote_multi_process_p (rs))
2374 {
2375 pid = ptid_get_pid (ptid);
2376 if (pid < 0)
2377 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2378 else
2379 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2380 }
ba348170 2381 tid = ptid_get_lwp (ptid);
82f73884
PA
2382 if (tid < 0)
2383 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2384 else
2385 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2386
2387 return buf;
2388}
2389
2390/* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2391 passed the last parsed char. Returns null_ptid on error. */
2392
2393static ptid_t
2394read_ptid (char *buf, char **obuf)
2395{
2396 char *p = buf;
2397 char *pp;
2398 ULONGEST pid = 0, tid = 0;
82f73884
PA
2399
2400 if (*p == 'p')
2401 {
2402 /* Multi-process ptid. */
2403 pp = unpack_varlen_hex (p + 1, &pid);
2404 if (*pp != '.')
b37520b6 2405 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2406
2407 p = pp;
2408 pp = unpack_varlen_hex (p + 1, &tid);
2409 if (obuf)
2410 *obuf = pp;
ba348170 2411 return ptid_build (pid, tid, 0);
82f73884
PA
2412 }
2413
2414 /* No multi-process. Just a tid. */
2415 pp = unpack_varlen_hex (p, &tid);
2416
c9f35b34
KB
2417 /* Return null_ptid when no thread id is found. */
2418 if (p == pp)
2419 {
2420 if (obuf)
2421 *obuf = pp;
2422 return null_ptid;
2423 }
2424
82f73884 2425 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2426 what's in inferior_ptid, unless it's null at this point. If so,
2427 then since there's no way to know the pid of the reported
2428 threads, use the magic number. */
2429 if (ptid_equal (inferior_ptid, null_ptid))
2430 pid = ptid_get_pid (magic_null_ptid);
2431 else
2432 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2433
2434 if (obuf)
2435 *obuf = pp;
ba348170 2436 return ptid_build (pid, tid, 0);
82f73884
PA
2437}
2438
c906108c 2439static int
fba45db2 2440stubhex (int ch)
c906108c
SS
2441{
2442 if (ch >= 'a' && ch <= 'f')
2443 return ch - 'a' + 10;
2444 if (ch >= '0' && ch <= '9')
2445 return ch - '0';
2446 if (ch >= 'A' && ch <= 'F')
2447 return ch - 'A' + 10;
2448 return -1;
2449}
2450
2451static int
fba45db2 2452stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2453{
2454 int nibble;
2455 int retval = 0;
2456
2457 while (fieldlength)
2458 {
2459 nibble = stubhex (*buff++);
2460 retval |= nibble;
2461 fieldlength--;
2462 if (fieldlength)
2463 retval = retval << 4;
2464 }
2465 return retval;
2466}
2467
c906108c 2468static char *
fba45db2 2469unpack_nibble (char *buf, int *val)
c906108c 2470{
b7589f7d 2471 *val = fromhex (*buf++);
c906108c
SS
2472 return buf;
2473}
2474
c906108c 2475static char *
fba45db2 2476unpack_byte (char *buf, int *value)
c906108c
SS
2477{
2478 *value = stub_unpack_int (buf, 2);
2479 return buf + 2;
2480}
2481
2482static char *
fba45db2 2483pack_int (char *buf, int value)
c906108c
SS
2484{
2485 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2486 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2487 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2488 buf = pack_hex_byte (buf, (value & 0xff));
2489 return buf;
2490}
2491
2492static char *
fba45db2 2493unpack_int (char *buf, int *value)
c906108c
SS
2494{
2495 *value = stub_unpack_int (buf, 8);
2496 return buf + 8;
2497}
2498
23860348 2499#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2500static char *pack_string (char *pkt, char *string);
c906108c
SS
2501
2502static char *
fba45db2 2503pack_string (char *pkt, char *string)
c906108c
SS
2504{
2505 char ch;
2506 int len;
2507
2508 len = strlen (string);
2509 if (len > 200)
23860348 2510 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2511 pkt = pack_hex_byte (pkt, len);
2512 while (len-- > 0)
2513 {
2514 ch = *string++;
2515 if ((ch == '\0') || (ch == '#'))
23860348 2516 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2517 *pkt++ = ch;
2518 }
2519 return pkt;
2520}
2521#endif /* 0 (unused) */
2522
2523static char *
fba45db2 2524unpack_string (char *src, char *dest, int length)
c906108c
SS
2525{
2526 while (length--)
2527 *dest++ = *src++;
2528 *dest = '\0';
2529 return src;
2530}
2531
2532static char *
fba45db2 2533pack_threadid (char *pkt, threadref *id)
c906108c
SS
2534{
2535 char *limit;
2536 unsigned char *altid;
2537
2538 altid = (unsigned char *) id;
2539 limit = pkt + BUF_THREAD_ID_SIZE;
2540 while (pkt < limit)
2541 pkt = pack_hex_byte (pkt, *altid++);
2542 return pkt;
2543}
2544
2545
2546static char *
fba45db2 2547unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2548{
2549 char *altref;
2550 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2551 int x, y;
2552
2553 altref = (char *) id;
2554
2555 while (inbuf < limit)
2556 {
2557 x = stubhex (*inbuf++);
2558 y = stubhex (*inbuf++);
2559 *altref++ = (x << 4) | y;
2560 }
2561 return inbuf;
2562}
2563
2564/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2565 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2566 to use 64bit thread references internally. This is an adapter
2567 function. */
2568
2569void
fba45db2 2570int_to_threadref (threadref *id, int value)
c906108c
SS
2571{
2572 unsigned char *scan;
2573
2574 scan = (unsigned char *) id;
2575 {
2576 int i = 4;
2577 while (i--)
2578 *scan++ = 0;
2579 }
2580 *scan++ = (value >> 24) & 0xff;
2581 *scan++ = (value >> 16) & 0xff;
2582 *scan++ = (value >> 8) & 0xff;
2583 *scan++ = (value & 0xff);
2584}
2585
2586static int
fba45db2 2587threadref_to_int (threadref *ref)
c906108c
SS
2588{
2589 int i, value = 0;
2590 unsigned char *scan;
2591
cfd77fa1 2592 scan = *ref;
c906108c
SS
2593 scan += 4;
2594 i = 4;
2595 while (i-- > 0)
2596 value = (value << 8) | ((*scan++) & 0xff);
2597 return value;
2598}
2599
2600static void
fba45db2 2601copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2602{
2603 int i;
2604 unsigned char *csrc, *cdest;
2605
2606 csrc = (unsigned char *) src;
2607 cdest = (unsigned char *) dest;
2608 i = 8;
2609 while (i--)
2610 *cdest++ = *csrc++;
2611}
2612
2613static int
fba45db2 2614threadmatch (threadref *dest, threadref *src)
c906108c 2615{
23860348 2616 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2617#if 0
2618 unsigned char *srcp, *destp;
2619 int i, result;
2620 srcp = (char *) src;
2621 destp = (char *) dest;
2622
2623 result = 1;
2624 while (i-- > 0)
2625 result &= (*srcp++ == *destp++) ? 1 : 0;
2626 return result;
2627#endif
2628 return 1;
2629}
2630
2631/*
c5aa993b
JM
2632 threadid:1, # always request threadid
2633 context_exists:2,
2634 display:4,
2635 unique_name:8,
2636 more_display:16
2637 */
c906108c
SS
2638
2639/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2640
2641static char *
fba45db2 2642pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2643{
23860348
MS
2644 *pkt++ = 'q'; /* Info Query */
2645 *pkt++ = 'P'; /* process or thread info */
2646 pkt = pack_int (pkt, mode); /* mode */
c906108c 2647 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2648 *pkt = '\0'; /* terminate */
c906108c
SS
2649 return pkt;
2650}
2651
23860348 2652/* These values tag the fields in a thread info response packet. */
c906108c 2653/* Tagging the fields allows us to request specific fields and to
23860348 2654 add more fields as time goes by. */
c906108c 2655
23860348 2656#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 2657#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 2658 fetch registers and its stack? */
c5aa993b 2659#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 2660#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 2661#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 2662 the process. */
c906108c
SS
2663
2664static int
fba45db2
KB
2665remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2666 struct gdb_ext_thread_info *info)
c906108c 2667{
d01949b6 2668 struct remote_state *rs = get_remote_state ();
c906108c 2669 int mask, length;
cfd77fa1 2670 int tag;
c906108c 2671 threadref ref;
6d820c5c 2672 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
2673 int retval = 1;
2674
23860348 2675 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
2676 info->active = 0;
2677 info->display[0] = '\0';
2678 info->shortname[0] = '\0';
2679 info->more_display[0] = '\0';
2680
23860348
MS
2681 /* Assume the characters indicating the packet type have been
2682 stripped. */
c906108c
SS
2683 pkt = unpack_int (pkt, &mask); /* arg mask */
2684 pkt = unpack_threadid (pkt, &ref);
2685
2686 if (mask == 0)
8a3fe4f8 2687 warning (_("Incomplete response to threadinfo request."));
c906108c 2688 if (!threadmatch (&ref, expectedref))
23860348 2689 { /* This is an answer to a different request. */
8a3fe4f8 2690 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
2691 return 0;
2692 }
2693 copy_threadref (&info->threadid, &ref);
2694
23860348 2695 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 2696
23860348
MS
2697 /* Packets are terminated with nulls. */
2698 while ((pkt < limit) && mask && *pkt)
c906108c
SS
2699 {
2700 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
2701 pkt = unpack_byte (pkt, &length); /* length */
2702 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 2703 {
8a3fe4f8 2704 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
2705 retval = 0;
2706 break;
2707 }
2708 if (tag == TAG_THREADID)
2709 {
2710 if (length != 16)
2711 {
8a3fe4f8 2712 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
2713 retval = 0;
2714 break;
2715 }
2716 pkt = unpack_threadid (pkt, &ref);
2717 mask = mask & ~TAG_THREADID;
2718 continue;
2719 }
2720 if (tag == TAG_EXISTS)
2721 {
2722 info->active = stub_unpack_int (pkt, length);
2723 pkt += length;
2724 mask = mask & ~(TAG_EXISTS);
2725 if (length > 8)
2726 {
8a3fe4f8 2727 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
2728 retval = 0;
2729 break;
2730 }
2731 continue;
2732 }
2733 if (tag == TAG_THREADNAME)
2734 {
2735 pkt = unpack_string (pkt, &info->shortname[0], length);
2736 mask = mask & ~TAG_THREADNAME;
2737 continue;
2738 }
2739 if (tag == TAG_DISPLAY)
2740 {
2741 pkt = unpack_string (pkt, &info->display[0], length);
2742 mask = mask & ~TAG_DISPLAY;
2743 continue;
2744 }
2745 if (tag == TAG_MOREDISPLAY)
2746 {
2747 pkt = unpack_string (pkt, &info->more_display[0], length);
2748 mask = mask & ~TAG_MOREDISPLAY;
2749 continue;
2750 }
8a3fe4f8 2751 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2752 break; /* Not a tag we know about. */
c906108c
SS
2753 }
2754 return retval;
2755}
2756
2757static int
fba45db2
KB
2758remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2759 struct gdb_ext_thread_info *info)
c906108c 2760{
d01949b6 2761 struct remote_state *rs = get_remote_state ();
c906108c 2762 int result;
c906108c 2763
2e9f7625
DJ
2764 pack_threadinfo_request (rs->buf, fieldset, threadid);
2765 putpkt (rs->buf);
6d820c5c 2766 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2767
2768 if (rs->buf[0] == '\0')
2769 return 0;
2770
2e9f7625 2771 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2772 threadid, info);
c906108c
SS
2773 return result;
2774}
2775
c906108c
SS
2776/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2777
2778static char *
fba45db2
KB
2779pack_threadlist_request (char *pkt, int startflag, int threadcount,
2780 threadref *nextthread)
c906108c
SS
2781{
2782 *pkt++ = 'q'; /* info query packet */
2783 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2784 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2785 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2786 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2787 *pkt = '\0';
2788 return pkt;
2789}
2790
2791/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2792
2793static int
fba45db2
KB
2794parse_threadlist_response (char *pkt, int result_limit,
2795 threadref *original_echo, threadref *resultlist,
2796 int *doneflag)
c906108c 2797{
d01949b6 2798 struct remote_state *rs = get_remote_state ();
c906108c
SS
2799 char *limit;
2800 int count, resultcount, done;
2801
2802 resultcount = 0;
2803 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2804 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2805 /* done parse past here */
c906108c
SS
2806 pkt = unpack_byte (pkt, &count); /* count field */
2807 pkt = unpack_nibble (pkt, &done);
2808 /* The first threadid is the argument threadid. */
2809 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2810 while ((count-- > 0) && (pkt < limit))
2811 {
2812 pkt = unpack_threadid (pkt, resultlist++);
2813 if (resultcount++ >= result_limit)
2814 break;
2815 }
2816 if (doneflag)
2817 *doneflag = done;
2818 return resultcount;
2819}
2820
6dc54d91
PA
2821/* Fetch the next batch of threads from the remote. Returns -1 if the
2822 qL packet is not supported, 0 on error and 1 on success. */
2823
c906108c 2824static int
fba45db2
KB
2825remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2826 int *done, int *result_count, threadref *threadlist)
c906108c 2827{
d01949b6 2828 struct remote_state *rs = get_remote_state ();
c906108c
SS
2829 int result = 1;
2830
23860348 2831 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
2832 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2833 >= get_remote_packet_size ())
ea9c271d 2834 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2835
6d820c5c
DJ
2836 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2837 putpkt (rs->buf);
2838 getpkt (&rs->buf, &rs->buf_size, 0);
d8f2712d 2839 if (*rs->buf == '\0')
6dc54d91
PA
2840 {
2841 /* Packet not supported. */
2842 return -1;
2843 }
2844
2845 *result_count =
2846 parse_threadlist_response (rs->buf + 2, result_limit,
2847 &rs->echo_nextthread, threadlist, done);
c906108c 2848
0d031856 2849 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 2850 {
23860348
MS
2851 /* FIXME: This is a good reason to drop the packet. */
2852 /* Possably, there is a duplicate response. */
c906108c
SS
2853 /* Possabilities :
2854 retransmit immediatly - race conditions
2855 retransmit after timeout - yes
2856 exit
2857 wait for packet, then exit
2858 */
8a3fe4f8 2859 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2860 return 0; /* I choose simply exiting. */
c906108c
SS
2861 }
2862 if (*result_count <= 0)
2863 {
2864 if (*done != 1)
2865 {
8a3fe4f8 2866 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2867 result = 0;
2868 }
2869 return result; /* break; */
2870 }
2871 if (*result_count > result_limit)
2872 {
2873 *result_count = 0;
8a3fe4f8 2874 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2875 return 0;
2876 }
2877 return result;
2878}
2879
6dc54d91
PA
2880/* Fetch the list of remote threads, with the qL packet, and call
2881 STEPFUNCTION for each thread found. Stops iterating and returns 1
2882 if STEPFUNCTION returns true. Stops iterating and returns 0 if the
2883 STEPFUNCTION returns false. If the packet is not supported,
2884 returns -1. */
c906108c 2885
c906108c 2886static int
fba45db2
KB
2887remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2888 int looplimit)
c906108c 2889{
0d031856 2890 struct remote_state *rs = get_remote_state ();
c906108c
SS
2891 int done, i, result_count;
2892 int startflag = 1;
2893 int result = 1;
2894 int loopcount = 0;
c906108c
SS
2895
2896 done = 0;
2897 while (!done)
2898 {
2899 if (loopcount++ > looplimit)
2900 {
2901 result = 0;
8a3fe4f8 2902 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2903 break;
2904 }
6dc54d91
PA
2905 result = remote_get_threadlist (startflag, &rs->nextthread,
2906 MAXTHREADLISTRESULTS,
2907 &done, &result_count,
2908 rs->resultthreadlist);
2909 if (result <= 0)
2910 break;
23860348 2911 /* Clear for later iterations. */
c906108c
SS
2912 startflag = 0;
2913 /* Setup to resume next batch of thread references, set nextthread. */
2914 if (result_count >= 1)
0d031856
TT
2915 copy_threadref (&rs->nextthread,
2916 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
2917 i = 0;
2918 while (result_count--)
6dc54d91
PA
2919 {
2920 if (!(*stepfunction) (&rs->resultthreadlist[i++], context))
2921 {
2922 result = 0;
2923 break;
2924 }
2925 }
c906108c
SS
2926 }
2927 return result;
2928}
2929
6dc54d91
PA
2930/* A thread found on the remote target. */
2931
2932typedef struct thread_item
2933{
2934 /* The thread's PTID. */
2935 ptid_t ptid;
2936
2937 /* The thread's extra info. May be NULL. */
2938 char *extra;
2939
79efa585
SM
2940 /* The thread's name. May be NULL. */
2941 char *name;
2942
6dc54d91
PA
2943 /* The core the thread was running on. -1 if not known. */
2944 int core;
2945} thread_item_t;
2946DEF_VEC_O(thread_item_t);
2947
2948/* Context passed around to the various methods listing remote
2949 threads. As new threads are found, they're added to the ITEMS
2950 vector. */
2951
2952struct threads_listing_context
2953{
2954 /* The threads found on the remote target. */
2955 VEC (thread_item_t) *items;
2956};
2957
80134cf5
PA
2958/* Discard the contents of the constructed thread listing context. */
2959
2960static void
2961clear_threads_listing_context (void *p)
2962{
19ba03f4
SM
2963 struct threads_listing_context *context
2964 = (struct threads_listing_context *) p;
80134cf5
PA
2965 int i;
2966 struct thread_item *item;
2967
2968 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
79efa585
SM
2969 {
2970 xfree (item->extra);
2971 xfree (item->name);
2972 }
80134cf5
PA
2973
2974 VEC_free (thread_item_t, context->items);
2975}
2976
cbb8991c
DB
2977/* Remove the thread specified as the related_pid field of WS
2978 from the CONTEXT list. */
2979
2980static void
2981threads_listing_context_remove (struct target_waitstatus *ws,
2982 struct threads_listing_context *context)
2983{
2984 struct thread_item *item;
2985 int i;
2986 ptid_t child_ptid = ws->value.related_pid;
2987
2988 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2989 {
2990 if (ptid_equal (item->ptid, child_ptid))
2991 {
2992 VEC_ordered_remove (thread_item_t, context->items, i);
2993 break;
2994 }
2995 }
2996}
2997
c906108c 2998static int
6dc54d91 2999remote_newthread_step (threadref *ref, void *data)
c906108c 3000{
19ba03f4
SM
3001 struct threads_listing_context *context
3002 = (struct threads_listing_context *) data;
6dc54d91 3003 struct thread_item item;
79d7f229 3004 int pid = ptid_get_pid (inferior_ptid);
39f77062 3005
6dc54d91
PA
3006 item.ptid = ptid_build (pid, threadref_to_int (ref), 0);
3007 item.core = -1;
2e3b657e 3008 item.name = NULL;
6dc54d91
PA
3009 item.extra = NULL;
3010
3011 VEC_safe_push (thread_item_t, context->items, &item);
3012
c906108c
SS
3013 return 1; /* continue iterator */
3014}
3015
3016#define CRAZY_MAX_THREADS 1000
3017
39f77062
KB
3018static ptid_t
3019remote_current_thread (ptid_t oldpid)
c906108c 3020{
d01949b6 3021 struct remote_state *rs = get_remote_state ();
c906108c
SS
3022
3023 putpkt ("qC");
6d820c5c 3024 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3025 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c9f35b34
KB
3026 {
3027 char *obuf;
3028 ptid_t result;
3029
3030 result = read_ptid (&rs->buf[2], &obuf);
3031 if (*obuf != '\0' && remote_debug)
3032 fprintf_unfiltered (gdb_stdlog,
3033 "warning: garbage in qC reply\n");
3034
3035 return result;
3036 }
c906108c
SS
3037 else
3038 return oldpid;
3039}
3040
6dc54d91 3041/* List remote threads using the deprecated qL packet. */
cce74817 3042
6dc54d91
PA
3043static int
3044remote_get_threads_with_ql (struct target_ops *ops,
3045 struct threads_listing_context *context)
c906108c 3046{
6dc54d91
PA
3047 if (remote_threadlist_iterator (remote_newthread_step, context,
3048 CRAZY_MAX_THREADS) >= 0)
3049 return 1;
3050
3051 return 0;
c906108c
SS
3052}
3053
dc146f7c
VP
3054#if defined(HAVE_LIBEXPAT)
3055
dc146f7c
VP
3056static void
3057start_thread (struct gdb_xml_parser *parser,
3058 const struct gdb_xml_element *element,
3059 void *user_data, VEC(gdb_xml_value_s) *attributes)
3060{
19ba03f4
SM
3061 struct threads_listing_context *data
3062 = (struct threads_listing_context *) user_data;
dc146f7c
VP
3063
3064 struct thread_item item;
3065 char *id;
3d2c1d41 3066 struct gdb_xml_value *attr;
dc146f7c 3067
19ba03f4 3068 id = (char *) xml_find_attribute (attributes, "id")->value;
dc146f7c
VP
3069 item.ptid = read_ptid (id, NULL);
3070
3d2c1d41
PA
3071 attr = xml_find_attribute (attributes, "core");
3072 if (attr != NULL)
3073 item.core = *(ULONGEST *) attr->value;
dc146f7c
VP
3074 else
3075 item.core = -1;
3076
79efa585 3077 attr = xml_find_attribute (attributes, "name");
e1961661 3078 item.name = attr != NULL ? xstrdup ((const char *) attr->value) : NULL;
79efa585 3079
dc146f7c
VP
3080 item.extra = 0;
3081
3082 VEC_safe_push (thread_item_t, data->items, &item);
3083}
3084
3085static void
3086end_thread (struct gdb_xml_parser *parser,
3087 const struct gdb_xml_element *element,
3088 void *user_data, const char *body_text)
3089{
19ba03f4
SM
3090 struct threads_listing_context *data
3091 = (struct threads_listing_context *) user_data;
dc146f7c
VP
3092
3093 if (body_text && *body_text)
2ae2a0b7 3094 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
dc146f7c
VP
3095}
3096
3097const struct gdb_xml_attribute thread_attributes[] = {
3098 { "id", GDB_XML_AF_NONE, NULL, NULL },
3099 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
79efa585 3100 { "name", GDB_XML_AF_OPTIONAL, NULL, NULL },
dc146f7c
VP
3101 { NULL, GDB_XML_AF_NONE, NULL, NULL }
3102};
3103
3104const struct gdb_xml_element thread_children[] = {
3105 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3106};
3107
3108const struct gdb_xml_element threads_children[] = {
3109 { "thread", thread_attributes, thread_children,
3110 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
3111 start_thread, end_thread },
3112 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3113};
3114
3115const struct gdb_xml_element threads_elements[] = {
3116 { "threads", NULL, threads_children,
3117 GDB_XML_EF_NONE, NULL, NULL },
3118 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
3119};
3120
3121#endif
3122
6dc54d91 3123/* List remote threads using qXfer:threads:read. */
9d1f7ab2 3124
6dc54d91
PA
3125static int
3126remote_get_threads_with_qxfer (struct target_ops *ops,
3127 struct threads_listing_context *context)
0f71a2f6 3128{
dc146f7c 3129#if defined(HAVE_LIBEXPAT)
4082afcc 3130 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c 3131 {
6dc54d91 3132 char *xml = target_read_stralloc (ops, TARGET_OBJECT_THREADS, NULL);
dc146f7c 3133 struct cleanup *back_to = make_cleanup (xfree, xml);
efc0eabd 3134
6dc54d91 3135 if (xml != NULL && *xml != '\0')
dc146f7c 3136 {
6dc54d91
PA
3137 gdb_xml_parse_quick (_("threads"), "threads.dtd",
3138 threads_elements, xml, context);
dc146f7c
VP
3139 }
3140
3141 do_cleanups (back_to);
6dc54d91 3142 return 1;
dc146f7c
VP
3143 }
3144#endif
3145
6dc54d91
PA
3146 return 0;
3147}
3148
3149/* List remote threads using qfThreadInfo/qsThreadInfo. */
3150
3151static int
3152remote_get_threads_with_qthreadinfo (struct target_ops *ops,
3153 struct threads_listing_context *context)
3154{
3155 struct remote_state *rs = get_remote_state ();
3156
b80fafe3 3157 if (rs->use_threadinfo_query)
9d1f7ab2 3158 {
6dc54d91
PA
3159 char *bufp;
3160
9d1f7ab2 3161 putpkt ("qfThreadInfo");
6d820c5c 3162 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3163 bufp = rs->buf;
9d1f7ab2 3164 if (bufp[0] != '\0') /* q packet recognized */
802188a7 3165 {
9d1f7ab2
MS
3166 while (*bufp++ == 'm') /* reply contains one or more TID */
3167 {
3168 do
3169 {
6dc54d91
PA
3170 struct thread_item item;
3171
3172 item.ptid = read_ptid (bufp, &bufp);
3173 item.core = -1;
2e3b657e 3174 item.name = NULL;
6dc54d91
PA
3175 item.extra = NULL;
3176
3177 VEC_safe_push (thread_item_t, context->items, &item);
9d1f7ab2
MS
3178 }
3179 while (*bufp++ == ','); /* comma-separated list */
3180 putpkt ("qsThreadInfo");
6d820c5c 3181 getpkt (&rs->buf, &rs->buf_size, 0);
6dc54d91 3182 bufp = rs->buf;
9d1f7ab2 3183 }
6dc54d91
PA
3184 return 1;
3185 }
3186 else
3187 {
3188 /* Packet not recognized. */
3189 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
3190 }
3191 }
3192
6dc54d91
PA
3193 return 0;
3194}
3195
e8032dde 3196/* Implement the to_update_thread_list function for the remote
6dc54d91
PA
3197 targets. */
3198
3199static void
e8032dde 3200remote_update_thread_list (struct target_ops *ops)
6dc54d91 3201{
6dc54d91
PA
3202 struct threads_listing_context context;
3203 struct cleanup *old_chain;
ab970af1 3204 int got_list = 0;
e8032dde 3205
6dc54d91
PA
3206 context.items = NULL;
3207 old_chain = make_cleanup (clear_threads_listing_context, &context);
3208
3209 /* We have a few different mechanisms to fetch the thread list. Try
3210 them all, starting with the most preferred one first, falling
3211 back to older methods. */
3212 if (remote_get_threads_with_qxfer (ops, &context)
3213 || remote_get_threads_with_qthreadinfo (ops, &context)
3214 || remote_get_threads_with_ql (ops, &context))
3215 {
3216 int i;
3217 struct thread_item *item;
ab970af1
PA
3218 struct thread_info *tp, *tmp;
3219
3220 got_list = 1;
3221
7d1a114c
PA
3222 if (VEC_empty (thread_item_t, context.items)
3223 && remote_thread_always_alive (ops, inferior_ptid))
3224 {
3225 /* Some targets don't really support threads, but still
3226 reply an (empty) thread list in response to the thread
3227 listing packets, instead of replying "packet not
3228 supported". Exit early so we don't delete the main
3229 thread. */
3230 do_cleanups (old_chain);
3231 return;
3232 }
3233
ab970af1
PA
3234 /* CONTEXT now holds the current thread list on the remote
3235 target end. Delete GDB-side threads no longer found on the
3236 target. */
8a06aea7 3237 ALL_THREADS_SAFE (tp, tmp)
cbb8991c 3238 {
ab970af1
PA
3239 for (i = 0;
3240 VEC_iterate (thread_item_t, context.items, i, item);
3241 ++i)
3242 {
3243 if (ptid_equal (item->ptid, tp->ptid))
3244 break;
3245 }
3246
3247 if (i == VEC_length (thread_item_t, context.items))
3248 {
3249 /* Not found. */
3250 delete_thread (tp->ptid);
3251 }
cbb8991c
DB
3252 }
3253
3254 /* Remove any unreported fork child threads from CONTEXT so
3255 that we don't interfere with follow fork, which is where
3256 creation of such threads is handled. */
3257 remove_new_fork_children (&context);
74531fed 3258
ab970af1 3259 /* And now add threads we don't know about yet to our list. */
6dc54d91
PA
3260 for (i = 0;
3261 VEC_iterate (thread_item_t, context.items, i, item);
3262 ++i)
3263 {
3264 if (!ptid_equal (item->ptid, null_ptid))
3265 {
3266 struct private_thread_info *info;
3267 /* In non-stop mode, we assume new found threads are
0d5b594f
PA
3268 executing until proven otherwise with a stop reply.
3269 In all-stop, we can only get here if all threads are
6dc54d91 3270 stopped. */
0d5b594f 3271 int executing = target_is_non_stop_p () ? 1 : 0;
6dc54d91 3272
0d5b594f 3273 remote_notice_new_inferior (item->ptid, executing);
6dc54d91
PA
3274
3275 info = demand_private_info (item->ptid);
3276 info->core = item->core;
3277 info->extra = item->extra;
3278 item->extra = NULL;
79efa585
SM
3279 info->name = item->name;
3280 item->name = NULL;
6dc54d91
PA
3281 }
3282 }
3283 }
3284
ab970af1
PA
3285 if (!got_list)
3286 {
3287 /* If no thread listing method is supported, then query whether
3288 each known thread is alive, one by one, with the T packet.
3289 If the target doesn't support threads at all, then this is a
3290 no-op. See remote_thread_alive. */
3291 prune_threads ();
3292 }
3293
6dc54d91 3294 do_cleanups (old_chain);
9d1f7ab2
MS
3295}
3296
802188a7 3297/*
9d1f7ab2
MS
3298 * Collect a descriptive string about the given thread.
3299 * The target may say anything it wants to about the thread
3300 * (typically info about its blocked / runnable state, name, etc.).
3301 * This string will appear in the info threads display.
802188a7 3302 *
9d1f7ab2
MS
3303 * Optional: targets are not required to implement this function.
3304 */
3305
3306static char *
c15906d8 3307remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
9d1f7ab2 3308{
d01949b6 3309 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
3310 int result;
3311 int set;
3312 threadref id;
3313 struct gdb_ext_thread_info threadinfo;
23860348 3314 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
3315 int n = 0; /* position in display_buf */
3316
5d93a237 3317 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 3318 internal_error (__FILE__, __LINE__,
e2e0b3e5 3319 _("remote_threads_extra_info"));
9d1f7ab2 3320
60e569b9 3321 if (ptid_equal (tp->ptid, magic_null_ptid)
ba348170 3322 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_lwp (tp->ptid) == 0))
60e569b9
PA
3323 /* This is the main thread which was added by GDB. The remote
3324 server doesn't know about it. */
3325 return NULL;
3326
4082afcc 3327 if (packet_support (PACKET_qXfer_threads) == PACKET_ENABLE)
dc146f7c
VP
3328 {
3329 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 3330
fe978cb0
PA
3331 if (info && info->priv)
3332 return info->priv->extra;
dc146f7c
VP
3333 else
3334 return NULL;
3335 }
3336
b80fafe3 3337 if (rs->use_threadextra_query)
9d1f7ab2 3338 {
82f73884
PA
3339 char *b = rs->buf;
3340 char *endb = rs->buf + get_remote_packet_size ();
3341
3342 xsnprintf (b, endb - b, "qThreadExtraInfo,");
3343 b += strlen (b);
3344 write_ptid (b, endb, tp->ptid);
3345
2e9f7625 3346 putpkt (rs->buf);
6d820c5c 3347 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3348 if (rs->buf[0] != 0)
9d1f7ab2 3349 {
2e9f7625
DJ
3350 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
3351 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 3352 display_buf [result] = '\0';
9d1f7ab2
MS
3353 return display_buf;
3354 }
0f71a2f6 3355 }
9d1f7ab2
MS
3356
3357 /* If the above query fails, fall back to the old method. */
b80fafe3 3358 rs->use_threadextra_query = 0;
9d1f7ab2
MS
3359 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
3360 | TAG_MOREDISPLAY | TAG_DISPLAY;
ba348170 3361 int_to_threadref (&id, ptid_get_lwp (tp->ptid));
9d1f7ab2
MS
3362 if (remote_get_threadinfo (&id, set, &threadinfo))
3363 if (threadinfo.active)
0f71a2f6 3364 {
9d1f7ab2 3365 if (*threadinfo.shortname)
2bc416ba 3366 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 3367 " Name: %s,", threadinfo.shortname);
9d1f7ab2 3368 if (*threadinfo.display)
2bc416ba 3369 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3370 " State: %s,", threadinfo.display);
9d1f7ab2 3371 if (*threadinfo.more_display)
2bc416ba 3372 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 3373 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
3374
3375 if (n > 0)
c5aa993b 3376 {
23860348 3377 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
3378 if (',' == display_buf[n-1])
3379 display_buf[n-1] = ' ';
3380 return display_buf;
c5aa993b 3381 }
0f71a2f6 3382 }
9d1f7ab2 3383 return NULL;
0f71a2f6 3384}
c906108c 3385\f
c5aa993b 3386
0fb4aa4b 3387static int
61fc905d 3388remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
0fb4aa4b
PA
3389 struct static_tracepoint_marker *marker)
3390{
3391 struct remote_state *rs = get_remote_state ();
3392 char *p = rs->buf;
3393
bba74b36 3394 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
3395 p += strlen (p);
3396 p += hexnumstr (p, addr);
3397 putpkt (rs->buf);
3398 getpkt (&rs->buf, &rs->buf_size, 0);
3399 p = rs->buf;
3400
3401 if (*p == 'E')
3402 error (_("Remote failure reply: %s"), p);
3403
3404 if (*p++ == 'm')
3405 {
3406 parse_static_tracepoint_marker_definition (p, &p, marker);
3407 return 1;
3408 }
3409
3410 return 0;
3411}
3412
0fb4aa4b 3413static VEC(static_tracepoint_marker_p) *
c686c57f
TT
3414remote_static_tracepoint_markers_by_strid (struct target_ops *self,
3415 const char *strid)
0fb4aa4b
PA
3416{
3417 struct remote_state *rs = get_remote_state ();
3418 VEC(static_tracepoint_marker_p) *markers = NULL;
3419 struct static_tracepoint_marker *marker = NULL;
3420 struct cleanup *old_chain;
3421 char *p;
3422
3423 /* Ask for a first packet of static tracepoint marker
3424 definition. */
3425 putpkt ("qTfSTM");
3426 getpkt (&rs->buf, &rs->buf_size, 0);
3427 p = rs->buf;
3428 if (*p == 'E')
3429 error (_("Remote failure reply: %s"), p);
3430
3431 old_chain = make_cleanup (free_current_marker, &marker);
3432
3433 while (*p++ == 'm')
3434 {
3435 if (marker == NULL)
3436 marker = XCNEW (struct static_tracepoint_marker);
3437
3438 do
3439 {
3440 parse_static_tracepoint_marker_definition (p, &p, marker);
3441
3442 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
3443 {
3444 VEC_safe_push (static_tracepoint_marker_p,
3445 markers, marker);
3446 marker = NULL;
3447 }
3448 else
3449 {
3450 release_static_tracepoint_marker (marker);
3451 memset (marker, 0, sizeof (*marker));
3452 }
3453 }
3454 while (*p++ == ','); /* comma-separated list */
3455 /* Ask for another packet of static tracepoint definition. */
3456 putpkt ("qTsSTM");
3457 getpkt (&rs->buf, &rs->buf_size, 0);
3458 p = rs->buf;
3459 }
3460
3461 do_cleanups (old_chain);
3462 return markers;
3463}
3464
3465\f
10760264
JB
3466/* Implement the to_get_ada_task_ptid function for the remote targets. */
3467
3468static ptid_t
1e6b91a4 3469remote_get_ada_task_ptid (struct target_ops *self, long lwp, long thread)
10760264 3470{
ba348170 3471 return ptid_build (ptid_get_pid (inferior_ptid), lwp, 0);
10760264
JB
3472}
3473\f
3474
24b06219 3475/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3476
3477static void
fba45db2 3478extended_remote_restart (void)
c906108c 3479{
d01949b6 3480 struct remote_state *rs = get_remote_state ();
c906108c
SS
3481
3482 /* Send the restart command; for reasons I don't understand the
3483 remote side really expects a number after the "R". */
ea9c271d 3484 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3485 putpkt (rs->buf);
c906108c 3486
ad9a8f3f 3487 remote_fileio_reset ();
c906108c
SS
3488}
3489\f
3490/* Clean up connection to a remote debugger. */
3491
c906108c 3492static void
de90e03d 3493remote_close (struct target_ops *self)
c906108c 3494{
5d93a237
TT
3495 struct remote_state *rs = get_remote_state ();
3496
3497 if (rs->remote_desc == NULL)
d3fd5342
PA
3498 return; /* already closed */
3499
3500 /* Make sure we leave stdin registered in the event loop, and we
3501 don't leave the async SIGINT signal handler installed. */
e3594fd1 3502 remote_terminal_ours (self);
ce5ce7ed 3503
5d93a237
TT
3504 serial_close (rs->remote_desc);
3505 rs->remote_desc = NULL;
ce5ce7ed
PA
3506
3507 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3508 of all the inferiors and their threads we were controlling.
3509 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3510 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3511 inferior_ptid = null_ptid;
f67fd822 3512 discard_all_inferiors ();
ce5ce7ed 3513
f48ff2a7
YQ
3514 /* We are closing the remote target, so we should discard
3515 everything of this target. */
bcc75809 3516 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3517
3518 if (remote_async_inferior_event_token)
3519 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3520
5965e028 3521 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3522
3523 trace_reset_local_state ();
c906108c
SS
3524}
3525
23860348 3526/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3527
3528static void
fba45db2 3529get_offsets (void)
c906108c 3530{
d01949b6 3531 struct remote_state *rs = get_remote_state ();
2e9f7625 3532 char *buf;
085dd6e6 3533 char *ptr;
31d99776
DJ
3534 int lose, num_segments = 0, do_sections, do_segments;
3535 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3536 struct section_offsets *offs;
31d99776
DJ
3537 struct symfile_segment_data *data;
3538
3539 if (symfile_objfile == NULL)
3540 return;
c906108c
SS
3541
3542 putpkt ("qOffsets");
6d820c5c 3543 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3544 buf = rs->buf;
c906108c
SS
3545
3546 if (buf[0] == '\000')
3547 return; /* Return silently. Stub doesn't support
23860348 3548 this command. */
c906108c
SS
3549 if (buf[0] == 'E')
3550 {
8a3fe4f8 3551 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3552 return;
3553 }
3554
3555 /* Pick up each field in turn. This used to be done with scanf, but
3556 scanf will make trouble if CORE_ADDR size doesn't match
3557 conversion directives correctly. The following code will work
3558 with any size of CORE_ADDR. */
3559 text_addr = data_addr = bss_addr = 0;
3560 ptr = buf;
3561 lose = 0;
3562
61012eef 3563 if (startswith (ptr, "Text="))
c906108c
SS
3564 {
3565 ptr += 5;
3566 /* Don't use strtol, could lose on big values. */
3567 while (*ptr && *ptr != ';')
3568 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3569
61012eef 3570 if (startswith (ptr, ";Data="))
31d99776
DJ
3571 {
3572 ptr += 6;
3573 while (*ptr && *ptr != ';')
3574 data_addr = (data_addr << 4) + fromhex (*ptr++);
3575 }
3576 else
3577 lose = 1;
3578
61012eef 3579 if (!lose && startswith (ptr, ";Bss="))
31d99776
DJ
3580 {
3581 ptr += 5;
3582 while (*ptr && *ptr != ';')
3583 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3584
31d99776
DJ
3585 if (bss_addr != data_addr)
3586 warning (_("Target reported unsupported offsets: %s"), buf);
3587 }
3588 else
3589 lose = 1;
3590 }
61012eef 3591 else if (startswith (ptr, "TextSeg="))
c906108c 3592 {
31d99776
DJ
3593 ptr += 8;
3594 /* Don't use strtol, could lose on big values. */
c906108c 3595 while (*ptr && *ptr != ';')
31d99776
DJ
3596 text_addr = (text_addr << 4) + fromhex (*ptr++);
3597 num_segments = 1;
3598
61012eef 3599 if (startswith (ptr, ";DataSeg="))
31d99776
DJ
3600 {
3601 ptr += 9;
3602 while (*ptr && *ptr != ';')
3603 data_addr = (data_addr << 4) + fromhex (*ptr++);
3604 num_segments++;
3605 }
c906108c
SS
3606 }
3607 else
3608 lose = 1;
3609
3610 if (lose)
8a3fe4f8 3611 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3612 else if (*ptr != '\0')
3613 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3614
802188a7 3615 offs = ((struct section_offsets *)
a39a16c4 3616 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3617 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3618 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3619
31d99776
DJ
3620 data = get_symfile_segment_data (symfile_objfile->obfd);
3621 do_segments = (data != NULL);
3622 do_sections = num_segments == 0;
c906108c 3623
28c32713 3624 if (num_segments > 0)
31d99776 3625 {
31d99776
DJ
3626 segments[0] = text_addr;
3627 segments[1] = data_addr;
3628 }
28c32713
JB
3629 /* If we have two segments, we can still try to relocate everything
3630 by assuming that the .text and .data offsets apply to the whole
3631 text and data segments. Convert the offsets given in the packet
3632 to base addresses for symfile_map_offsets_to_segments. */
3633 else if (data && data->num_segments == 2)
3634 {
3635 segments[0] = data->segment_bases[0] + text_addr;
3636 segments[1] = data->segment_bases[1] + data_addr;
3637 num_segments = 2;
3638 }
8d385431
DJ
3639 /* If the object file has only one segment, assume that it is text
3640 rather than data; main programs with no writable data are rare,
3641 but programs with no code are useless. Of course the code might
3642 have ended up in the data segment... to detect that we would need
3643 the permissions here. */
3644 else if (data && data->num_segments == 1)
3645 {
3646 segments[0] = data->segment_bases[0] + text_addr;
3647 num_segments = 1;
3648 }
28c32713
JB
3649 /* There's no way to relocate by segment. */
3650 else
3651 do_segments = 0;
31d99776
DJ
3652
3653 if (do_segments)
3654 {
3655 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3656 offs, num_segments, segments);
3657
3658 if (ret == 0 && !do_sections)
3e43a32a
MS
3659 error (_("Can not handle qOffsets TextSeg "
3660 "response with this symbol file"));
31d99776
DJ
3661
3662 if (ret > 0)
3663 do_sections = 0;
3664 }
c906108c 3665
9ef895d6
DJ
3666 if (data)
3667 free_symfile_segment_data (data);
31d99776
DJ
3668
3669 if (do_sections)
3670 {
3671 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3672
3e43a32a
MS
3673 /* This is a temporary kludge to force data and bss to use the
3674 same offsets because that's what nlmconv does now. The real
3675 solution requires changes to the stub and remote.c that I
3676 don't have time to do right now. */
31d99776
DJ
3677
3678 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3679 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3680 }
c906108c
SS
3681
3682 objfile_relocate (symfile_objfile, offs);
3683}
3684
9a7071a8
JB
3685/* Send interrupt_sequence to remote target. */
3686static void
eeae04df 3687send_interrupt_sequence (void)
9a7071a8 3688{
5d93a237
TT
3689 struct remote_state *rs = get_remote_state ();
3690
9a7071a8 3691 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 3692 remote_serial_write ("\x03", 1);
9a7071a8 3693 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 3694 serial_send_break (rs->remote_desc);
9a7071a8
JB
3695 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3696 {
5d93a237 3697 serial_send_break (rs->remote_desc);
c33e31fd 3698 remote_serial_write ("g", 1);
9a7071a8
JB
3699 }
3700 else
3701 internal_error (__FILE__, __LINE__,
3702 _("Invalid value for interrupt_sequence_mode: %s."),
3703 interrupt_sequence_mode);
3704}
3705
3405876a
PA
3706
3707/* If STOP_REPLY is a T stop reply, look for the "thread" register,
3708 and extract the PTID. Returns NULL_PTID if not found. */
3709
3710static ptid_t
3711stop_reply_extract_thread (char *stop_reply)
3712{
3713 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3714 {
3715 char *p;
3716
3717 /* Txx r:val ; r:val (...) */
3718 p = &stop_reply[3];
3719
3720 /* Look for "register" named "thread". */
3721 while (*p != '\0')
3722 {
3723 char *p1;
3724
3725 p1 = strchr (p, ':');
3726 if (p1 == NULL)
3727 return null_ptid;
3728
3729 if (strncmp (p, "thread", p1 - p) == 0)
3730 return read_ptid (++p1, &p);
3731
3732 p1 = strchr (p, ';');
3733 if (p1 == NULL)
3734 return null_ptid;
3735 p1++;
3736
3737 p = p1;
3738 }
3739 }
3740
3741 return null_ptid;
3742}
3743
b7ea362b
PA
3744/* Determine the remote side's current thread. If we have a stop
3745 reply handy (in WAIT_STATUS), maybe it's a T stop reply with a
3746 "thread" register we can extract the current thread from. If not,
3747 ask the remote which is the current thread with qC. The former
3748 method avoids a roundtrip. */
3749
3750static ptid_t
3751get_current_thread (char *wait_status)
3752{
6a49a997 3753 ptid_t ptid = null_ptid;
b7ea362b
PA
3754
3755 /* Note we don't use remote_parse_stop_reply as that makes use of
3756 the target architecture, which we haven't yet fully determined at
3757 this point. */
3758 if (wait_status != NULL)
3759 ptid = stop_reply_extract_thread (wait_status);
3760 if (ptid_equal (ptid, null_ptid))
3761 ptid = remote_current_thread (inferior_ptid);
3762
3763 return ptid;
3764}
3765
49c62f2e
PA
3766/* Query the remote target for which is the current thread/process,
3767 add it to our tables, and update INFERIOR_PTID. The caller is
3768 responsible for setting the state such that the remote end is ready
3405876a
PA
3769 to return the current thread.
3770
3771 This function is called after handling the '?' or 'vRun' packets,
3772 whose response is a stop reply from which we can also try
3773 extracting the thread. If the target doesn't support the explicit
3774 qC query, we infer the current thread from that stop reply, passed
3775 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
3776
3777static void
3405876a 3778add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
3779{
3780 struct remote_state *rs = get_remote_state ();
3781 int fake_pid_p = 0;
6a49a997 3782 ptid_t ptid;
49c62f2e
PA
3783
3784 inferior_ptid = null_ptid;
3785
b7ea362b
PA
3786 /* Now, if we have thread information, update inferior_ptid. */
3787 ptid = get_current_thread (wait_status);
3405876a 3788
49c62f2e
PA
3789 if (!ptid_equal (ptid, null_ptid))
3790 {
3791 if (!remote_multi_process_p (rs))
3792 fake_pid_p = 1;
3793
3794 inferior_ptid = ptid;
3795 }
3796 else
3797 {
3798 /* Without this, some commands which require an active target
3799 (such as kill) won't work. This variable serves (at least)
3800 double duty as both the pid of the target process (if it has
3801 such), and as a flag indicating that a target is active. */
3802 inferior_ptid = magic_null_ptid;
3803 fake_pid_p = 1;
3804 }
3805
1b6e6f5c 3806 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1, 1);
49c62f2e
PA
3807
3808 /* Add the main thread. */
3809 add_thread_silent (inferior_ptid);
3810}
3811
6efcd9a8
PA
3812/* Print info about a thread that was found already stopped on
3813 connection. */
3814
3815static void
3816print_one_stopped_thread (struct thread_info *thread)
3817{
3818 struct target_waitstatus *ws = &thread->suspend.waitstatus;
3819
3820 switch_to_thread (thread->ptid);
3821 stop_pc = get_frame_pc (get_current_frame ());
3822 set_current_sal_from_frame (get_current_frame ());
3823
3824 thread->suspend.waitstatus_pending_p = 0;
3825
3826 if (ws->kind == TARGET_WAITKIND_STOPPED)
3827 {
3828 enum gdb_signal sig = ws->value.sig;
3829
3830 if (signal_print_state (sig))
3831 observer_notify_signal_received (sig);
3832 }
3833 observer_notify_normal_stop (NULL, 1);
3834}
3835
221e1a37
PA
3836/* Process all initial stop replies the remote side sent in response
3837 to the ? packet. These indicate threads that were already stopped
3838 on initial connection. We mark these threads as stopped and print
3839 their current frame before giving the user the prompt. */
3840
3841static void
6efcd9a8 3842process_initial_stop_replies (int from_tty)
221e1a37
PA
3843{
3844 int pending_stop_replies = stop_reply_queue_length ();
6efcd9a8
PA
3845 struct inferior *inf;
3846 struct thread_info *thread;
3847 struct thread_info *selected = NULL;
3848 struct thread_info *lowest_stopped = NULL;
3849 struct thread_info *first = NULL;
221e1a37
PA
3850
3851 /* Consume the initial pending events. */
3852 while (pending_stop_replies-- > 0)
3853 {
3854 ptid_t waiton_ptid = minus_one_ptid;
3855 ptid_t event_ptid;
3856 struct target_waitstatus ws;
3857 int ignore_event = 0;
6efcd9a8 3858 struct thread_info *thread;
221e1a37
PA
3859
3860 memset (&ws, 0, sizeof (ws));
3861 event_ptid = target_wait (waiton_ptid, &ws, TARGET_WNOHANG);
3862 if (remote_debug)
3863 print_target_wait_results (waiton_ptid, event_ptid, &ws);
3864
3865 switch (ws.kind)
3866 {
3867 case TARGET_WAITKIND_IGNORE:
3868 case TARGET_WAITKIND_NO_RESUMED:
3869 case TARGET_WAITKIND_SIGNALLED:
3870 case TARGET_WAITKIND_EXITED:
3871 /* We shouldn't see these, but if we do, just ignore. */
3872 if (remote_debug)
3873 fprintf_unfiltered (gdb_stdlog, "remote: event ignored\n");
3874 ignore_event = 1;
3875 break;
3876
3877 case TARGET_WAITKIND_EXECD:
3878 xfree (ws.value.execd_pathname);
3879 break;
3880 default:
3881 break;
3882 }
3883
3884 if (ignore_event)
3885 continue;
3886
6efcd9a8 3887 thread = find_thread_ptid (event_ptid);
221e1a37
PA
3888
3889 if (ws.kind == TARGET_WAITKIND_STOPPED)
3890 {
3891 enum gdb_signal sig = ws.value.sig;
3892
3893 /* Stubs traditionally report SIGTRAP as initial signal,
3894 instead of signal 0. Suppress it. */
3895 if (sig == GDB_SIGNAL_TRAP)
3896 sig = GDB_SIGNAL_0;
6efcd9a8
PA
3897 thread->suspend.stop_signal = sig;
3898 ws.value.sig = sig;
3899 }
221e1a37 3900
6efcd9a8
PA
3901 thread->suspend.waitstatus = ws;
3902
3903 if (ws.kind != TARGET_WAITKIND_STOPPED
3904 || ws.value.sig != GDB_SIGNAL_0)
3905 thread->suspend.waitstatus_pending_p = 1;
3906
3907 set_executing (event_ptid, 0);
3908 set_running (event_ptid, 0);
3909 }
3910
3911 /* "Notice" the new inferiors before anything related to
3912 registers/memory. */
3913 ALL_INFERIORS (inf)
3914 {
3915 if (inf->pid == 0)
3916 continue;
3917
3918 inf->needs_setup = 1;
3919
3920 if (non_stop)
3921 {
3922 thread = any_live_thread_of_process (inf->pid);
3923 notice_new_inferior (thread->ptid,
3924 thread->state == THREAD_RUNNING,
3925 from_tty);
3926 }
3927 }
3928
3929 /* If all-stop on top of non-stop, pause all threads. Note this
3930 records the threads' stop pc, so must be done after "noticing"
3931 the inferiors. */
3932 if (!non_stop)
3933 {
3934 stop_all_threads ();
3935
3936 /* If all threads of an inferior were already stopped, we
3937 haven't setup the inferior yet. */
3938 ALL_INFERIORS (inf)
3939 {
3940 if (inf->pid == 0)
3941 continue;
221e1a37 3942
6efcd9a8
PA
3943 if (inf->needs_setup)
3944 {
3945 thread = any_live_thread_of_process (inf->pid);
3946 switch_to_thread_no_regs (thread);
3947 setup_inferior (0);
3948 }
3949 }
221e1a37 3950 }
6efcd9a8
PA
3951
3952 /* Now go over all threads that are stopped, and print their current
3953 frame. If all-stop, then if there's a signalled thread, pick
3954 that as current. */
3955 ALL_NON_EXITED_THREADS (thread)
3956 {
6efcd9a8
PA
3957 if (first == NULL)
3958 first = thread;
3959
3960 if (!non_stop)
3961 set_running (thread->ptid, 0);
3962 else if (thread->state != THREAD_STOPPED)
3963 continue;
3964
6efcd9a8
PA
3965 if (selected == NULL
3966 && thread->suspend.waitstatus_pending_p)
3967 selected = thread;
3968
5d5658a1
PA
3969 if (lowest_stopped == NULL
3970 || thread->inf->num < lowest_stopped->inf->num
3971 || thread->per_inf_num < lowest_stopped->per_inf_num)
6efcd9a8
PA
3972 lowest_stopped = thread;
3973
3974 if (non_stop)
3975 print_one_stopped_thread (thread);
3976 }
3977
3978 /* In all-stop, we only print the status of one thread, and leave
3979 others with their status pending. */
3980 if (!non_stop)
3981 {
3982 thread = selected;
3983 if (thread == NULL)
3984 thread = lowest_stopped;
3985 if (thread == NULL)
3986 thread = first;
3987
3988 print_one_stopped_thread (thread);
3989 }
3990
3991 /* For "info program". */
3992 thread = inferior_thread ();
3993 if (thread->state == THREAD_STOPPED)
3994 set_last_target_status (inferior_ptid, thread->suspend.waitstatus);
221e1a37
PA
3995}
3996
9cbc821d 3997static void
04bd08de 3998remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
c906108c 3999{
c8d104ad
PA
4000 struct remote_state *rs = get_remote_state ();
4001 struct packet_config *noack_config;
2d717e4f 4002 char *wait_status = NULL;
8621d6a9 4003
23860348 4004 immediate_quit++; /* Allow user to interrupt it. */
522002f9 4005 QUIT;
c906108c 4006
9a7071a8
JB
4007 if (interrupt_on_connect)
4008 send_interrupt_sequence ();
4009
57e12211 4010 /* Ack any packet which the remote side has already sent. */
5d93a237 4011 serial_write (rs->remote_desc, "+", 1);
57e12211 4012
1e51243a
PA
4013 /* Signal other parts that we're going through the initial setup,
4014 and so things may not be stable yet. */
4015 rs->starting_up = 1;
4016
c8d104ad
PA
4017 /* The first packet we send to the target is the optional "supported
4018 packets" request. If the target can answer this, it will tell us
4019 which later probes to skip. */
4020 remote_query_supported ();
4021
d914c394 4022 /* If the stub wants to get a QAllow, compose one and send it. */
4082afcc 4023 if (packet_support (PACKET_QAllow) != PACKET_DISABLE)
c378d69d 4024 remote_set_permissions (target);
d914c394 4025
c8d104ad
PA
4026 /* Next, we possibly activate noack mode.
4027
4028 If the QStartNoAckMode packet configuration is set to AUTO,
4029 enable noack mode if the stub reported a wish for it with
4030 qSupported.
4031
4032 If set to TRUE, then enable noack mode even if the stub didn't
4033 report it in qSupported. If the stub doesn't reply OK, the
4034 session ends with an error.
4035
4036 If FALSE, then don't activate noack mode, regardless of what the
4037 stub claimed should be the default with qSupported. */
4038
4039 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
4082afcc 4040 if (packet_config_support (noack_config) != PACKET_DISABLE)
c8d104ad
PA
4041 {
4042 putpkt ("QStartNoAckMode");
4043 getpkt (&rs->buf, &rs->buf_size, 0);
4044 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
4045 rs->noack_mode = 1;
4046 }
4047
04bd08de 4048 if (extended_p)
5fe04517
PA
4049 {
4050 /* Tell the remote that we are using the extended protocol. */
4051 putpkt ("!");
4052 getpkt (&rs->buf, &rs->buf_size, 0);
4053 }
4054
9b224c5e
PA
4055 /* Let the target know which signals it is allowed to pass down to
4056 the program. */
4057 update_signals_program_target ();
4058
d962ef82
DJ
4059 /* Next, if the target can specify a description, read it. We do
4060 this before anything involving memory or registers. */
4061 target_find_description ();
4062
6c95b8df
PA
4063 /* Next, now that we know something about the target, update the
4064 address spaces in the program spaces. */
4065 update_address_spaces ();
4066
50c71eaf
PA
4067 /* On OSs where the list of libraries is global to all
4068 processes, we fetch them early. */
f5656ead 4069 if (gdbarch_has_global_solist (target_gdbarch ()))
04bd08de 4070 solib_add (NULL, from_tty, target, auto_solib_add);
50c71eaf 4071
6efcd9a8 4072 if (target_is_non_stop_p ())
74531fed 4073 {
4082afcc 4074 if (packet_support (PACKET_QNonStop) != PACKET_ENABLE)
3e43a32a
MS
4075 error (_("Non-stop mode requested, but remote "
4076 "does not support non-stop"));
74531fed
PA
4077
4078 putpkt ("QNonStop:1");
4079 getpkt (&rs->buf, &rs->buf_size, 0);
4080
4081 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4082 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
4083
4084 /* Find about threads and processes the stub is already
4085 controlling. We default to adding them in the running state.
4086 The '?' query below will then tell us about which threads are
4087 stopped. */
e8032dde 4088 remote_update_thread_list (target);
74531fed 4089 }
4082afcc 4090 else if (packet_support (PACKET_QNonStop) == PACKET_ENABLE)
74531fed
PA
4091 {
4092 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 4093 Request it explicitly. */
74531fed
PA
4094 putpkt ("QNonStop:0");
4095 getpkt (&rs->buf, &rs->buf_size, 0);
4096
4097 if (strcmp (rs->buf, "OK") != 0)
9b20d036 4098 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
4099 }
4100
a0743c90
YQ
4101 /* Upload TSVs regardless of whether the target is running or not. The
4102 remote stub, such as GDBserver, may have some predefined or builtin
4103 TSVs, even if the target is not running. */
8bd200f1 4104 if (remote_get_trace_status (target, current_trace_status ()) != -1)
a0743c90
YQ
4105 {
4106 struct uploaded_tsv *uploaded_tsvs = NULL;
4107
181e3713 4108 remote_upload_trace_state_variables (target, &uploaded_tsvs);
a0743c90
YQ
4109 merge_uploaded_trace_state_variables (&uploaded_tsvs);
4110 }
4111
2d717e4f
DJ
4112 /* Check whether the target is running now. */
4113 putpkt ("?");
4114 getpkt (&rs->buf, &rs->buf_size, 0);
4115
6efcd9a8 4116 if (!target_is_non_stop_p ())
2d717e4f 4117 {
74531fed 4118 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 4119 {
04bd08de 4120 if (!extended_p)
74531fed 4121 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
4122
4123 /* We're connected, but not running. Drop out before we
4124 call start_remote. */
e278ad5b 4125 rs->starting_up = 0;
c35b1492 4126 return;
2d717e4f
DJ
4127 }
4128 else
74531fed 4129 {
74531fed 4130 /* Save the reply for later. */
224c3ddb 4131 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
4132 strcpy (wait_status, rs->buf);
4133 }
4134
b7ea362b 4135 /* Fetch thread list. */
e8032dde 4136 target_update_thread_list ();
b7ea362b 4137
74531fed
PA
4138 /* Let the stub know that we want it to return the thread. */
4139 set_continue_thread (minus_one_ptid);
4140
b7ea362b
PA
4141 if (thread_count () == 0)
4142 {
4143 /* Target has no concept of threads at all. GDB treats
4144 non-threaded target as single-threaded; add a main
4145 thread. */
4146 add_current_inferior_and_thread (wait_status);
4147 }
4148 else
4149 {
4150 /* We have thread information; select the thread the target
4151 says should be current. If we're reconnecting to a
4152 multi-threaded program, this will ideally be the thread
4153 that last reported an event before GDB disconnected. */
4154 inferior_ptid = get_current_thread (wait_status);
4155 if (ptid_equal (inferior_ptid, null_ptid))
4156 {
4157 /* Odd... The target was able to list threads, but not
4158 tell us which thread was current (no "thread"
4159 register in T stop reply?). Just pick the first
4160 thread in the thread list then. */
c9f35b34
KB
4161
4162 if (remote_debug)
4163 fprintf_unfiltered (gdb_stdlog,
4164 "warning: couldn't determine remote "
4165 "current thread; picking first in list.\n");
4166
b7ea362b
PA
4167 inferior_ptid = thread_list->ptid;
4168 }
4169 }
74531fed 4170
6e586cc5
YQ
4171 /* init_wait_for_inferior should be called before get_offsets in order
4172 to manage `inserted' flag in bp loc in a correct state.
4173 breakpoint_init_inferior, called from init_wait_for_inferior, set
4174 `inserted' flag to 0, while before breakpoint_re_set, called from
4175 start_remote, set `inserted' flag to 1. In the initialization of
4176 inferior, breakpoint_init_inferior should be called first, and then
4177 breakpoint_re_set can be called. If this order is broken, state of
4178 `inserted' flag is wrong, and cause some problems on breakpoint
4179 manipulation. */
4180 init_wait_for_inferior ();
4181
74531fed
PA
4182 get_offsets (); /* Get text, data & bss offsets. */
4183
d962ef82
DJ
4184 /* If we could not find a description using qXfer, and we know
4185 how to do it some other way, try again. This is not
4186 supported for non-stop; it could be, but it is tricky if
4187 there are no stopped threads when we connect. */
04bd08de 4188 if (remote_read_description_p (target)
f5656ead 4189 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
4190 {
4191 target_clear_description ();
4192 target_find_description ();
4193 }
4194
74531fed
PA
4195 /* Use the previously fetched status. */
4196 gdb_assert (wait_status != NULL);
4197 strcpy (rs->buf, wait_status);
4198 rs->cached_wait_status = 1;
4199
4200 immediate_quit--;
04bd08de 4201 start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
4202 }
4203 else
4204 {
68c97600
PA
4205 /* Clear WFI global state. Do this before finding about new
4206 threads and inferiors, and setting the current inferior.
4207 Otherwise we would clear the proceed status of the current
4208 inferior when we want its stop_soon state to be preserved
4209 (see notice_new_inferior). */
4210 init_wait_for_inferior ();
4211
74531fed
PA
4212 /* In non-stop, we will either get an "OK", meaning that there
4213 are no stopped threads at this time; or, a regular stop
4214 reply. In the latter case, there may be more than one thread
4215 stopped --- we pull them all out using the vStopped
4216 mechanism. */
4217 if (strcmp (rs->buf, "OK") != 0)
4218 {
722247f1 4219 struct notif_client *notif = &notif_client_stop;
2d717e4f 4220
722247f1
YQ
4221 /* remote_notif_get_pending_replies acks this one, and gets
4222 the rest out. */
f48ff2a7 4223 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
4224 = remote_notif_parse (notif, rs->buf);
4225 remote_notif_get_pending_events (notif);
74531fed 4226 }
2d717e4f 4227
74531fed
PA
4228 if (thread_count () == 0)
4229 {
04bd08de 4230 if (!extended_p)
74531fed 4231 error (_("The target is not running (try extended-remote?)"));
82f73884 4232
c35b1492
PA
4233 /* We're connected, but not running. Drop out before we
4234 call start_remote. */
e278ad5b 4235 rs->starting_up = 0;
c35b1492
PA
4236 return;
4237 }
74531fed 4238
74531fed
PA
4239 /* In non-stop mode, any cached wait status will be stored in
4240 the stop reply queue. */
4241 gdb_assert (wait_status == NULL);
f0223081 4242
2455069d 4243 /* Report all signals during attach/startup. */
94bedb42 4244 remote_pass_signals (target, 0, NULL);
221e1a37
PA
4245
4246 /* If there are already stopped threads, mark them stopped and
4247 report their stops before giving the prompt to the user. */
6efcd9a8 4248 process_initial_stop_replies (from_tty);
221e1a37
PA
4249
4250 if (target_can_async_p ())
4251 target_async (1);
74531fed 4252 }
c8d104ad 4253
c8d104ad
PA
4254 /* If we connected to a live target, do some additional setup. */
4255 if (target_has_execution)
4256 {
f4ccffad 4257 if (symfile_objfile) /* No use without a symbol-file. */
36d25514 4258 remote_check_symbols ();
c8d104ad 4259 }
50c71eaf 4260
d5551862
SS
4261 /* Possibly the target has been engaged in a trace run started
4262 previously; find out where things are at. */
8bd200f1 4263 if (remote_get_trace_status (target, current_trace_status ()) != -1)
d5551862 4264 {
00bf0b85 4265 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 4266
00bf0b85
SS
4267 if (current_trace_status ()->running)
4268 printf_filtered (_("Trace is already running on the target.\n"));
4269
ab6617cc 4270 remote_upload_tracepoints (target, &uploaded_tps);
00bf0b85
SS
4271
4272 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
4273 }
4274
1e51243a
PA
4275 /* The thread and inferior lists are now synchronized with the
4276 target, our symbols have been relocated, and we're merged the
4277 target's tracepoints with ours. We're done with basic start
4278 up. */
4279 rs->starting_up = 0;
4280
a25a5a45
PA
4281 /* Maybe breakpoints are global and need to be inserted now. */
4282 if (breakpoints_should_be_inserted_now ())
50c71eaf 4283 insert_breakpoints ();
c906108c
SS
4284}
4285
4286/* Open a connection to a remote debugger.
4287 NAME is the filename used for communication. */
4288
4289static void
014f9477 4290remote_open (const char *name, int from_tty)
c906108c 4291{
75c99385 4292 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
4293}
4294
c906108c
SS
4295/* Open a connection to a remote debugger using the extended
4296 remote gdb protocol. NAME is the filename used for communication. */
4297
4298static void
014f9477 4299extended_remote_open (const char *name, int from_tty)
c906108c 4300{
75c99385 4301 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
4302}
4303
ca4f7f8b
PA
4304/* Reset all packets back to "unknown support". Called when opening a
4305 new connection to a remote target. */
c906108c 4306
d471ea57 4307static void
ca4f7f8b 4308reset_all_packet_configs_support (void)
d471ea57
AC
4309{
4310 int i;
a744cf53 4311
444abaca 4312 for (i = 0; i < PACKET_MAX; i++)
4082afcc 4313 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
d471ea57
AC
4314}
4315
ca4f7f8b
PA
4316/* Initialize all packet configs. */
4317
4318static void
4319init_all_packet_configs (void)
4320{
4321 int i;
4322
4323 for (i = 0; i < PACKET_MAX; i++)
4324 {
4325 remote_protocol_packets[i].detect = AUTO_BOOLEAN_AUTO;
4326 remote_protocol_packets[i].support = PACKET_SUPPORT_UNKNOWN;
4327 }
4328}
4329
23860348 4330/* Symbol look-up. */
dc8acb97
MS
4331
4332static void
36d25514 4333remote_check_symbols (void)
dc8acb97 4334{
d01949b6 4335 struct remote_state *rs = get_remote_state ();
dc8acb97 4336 char *msg, *reply, *tmp;
dc8acb97 4337 int end;
28170b88 4338 long reply_size;
a5c0808e 4339 struct cleanup *old_chain;
dc8acb97 4340
63154eca
PA
4341 /* The remote side has no concept of inferiors that aren't running
4342 yet, it only knows about running processes. If we're connected
4343 but our current inferior is not running, we should not invite the
4344 remote target to request symbol lookups related to its
4345 (unrelated) current process. */
4346 if (!target_has_execution)
4347 return;
4348
4082afcc 4349 if (packet_support (PACKET_qSymbol) == PACKET_DISABLE)
dc8acb97
MS
4350 return;
4351
63154eca
PA
4352 /* Make sure the remote is pointing at the right process. Note
4353 there's no way to select "no process". */
3c9c4b83
PA
4354 set_general_process ();
4355
6d820c5c
DJ
4356 /* Allocate a message buffer. We can't reuse the input buffer in RS,
4357 because we need both at the same time. */
224c3ddb 4358 msg = (char *) xmalloc (get_remote_packet_size ());
a5c0808e 4359 old_chain = make_cleanup (xfree, msg);
28170b88
MK
4360 reply = (char *) xmalloc (get_remote_packet_size ());
4361 make_cleanup (free_current_contents, &reply);
4362 reply_size = get_remote_packet_size ();
6d820c5c 4363
23860348 4364 /* Invite target to request symbol lookups. */
dc8acb97
MS
4365
4366 putpkt ("qSymbol::");
28170b88
MK
4367 getpkt (&reply, &reply_size, 0);
4368 packet_ok (reply, &remote_protocol_packets[PACKET_qSymbol]);
dc8acb97 4369
61012eef 4370 while (startswith (reply, "qSymbol:"))
dc8acb97 4371 {
77e371c0
TT
4372 struct bound_minimal_symbol sym;
4373
dc8acb97 4374 tmp = &reply[8];
cfd77fa1 4375 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
4376 msg[end] = '\0';
4377 sym = lookup_minimal_symbol (msg, NULL, NULL);
3b7344d5 4378 if (sym.minsym == NULL)
ea9c271d 4379 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 4380 else
2bbe3cc1 4381 {
f5656ead 4382 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
77e371c0 4383 CORE_ADDR sym_addr = BMSYMBOL_VALUE_ADDRESS (sym);
2bbe3cc1
DJ
4384
4385 /* If this is a function address, return the start of code
4386 instead of any data function descriptor. */
f5656ead 4387 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
4388 sym_addr,
4389 &current_target);
4390
4391 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 4392 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
4393 }
4394
dc8acb97 4395 putpkt (msg);
28170b88 4396 getpkt (&reply, &reply_size, 0);
dc8acb97 4397 }
a5c0808e
PA
4398
4399 do_cleanups (old_chain);
dc8acb97
MS
4400}
4401
9db8d71f 4402static struct serial *
baa336ce 4403remote_serial_open (const char *name)
9db8d71f
DJ
4404{
4405 static int udp_warning = 0;
4406
4407 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
4408 of in ser-tcp.c, because it is the remote protocol assuming that the
4409 serial connection is reliable and not the serial connection promising
4410 to be. */
61012eef 4411 if (!udp_warning && startswith (name, "udp:"))
9db8d71f 4412 {
3e43a32a
MS
4413 warning (_("The remote protocol may be unreliable over UDP.\n"
4414 "Some events may be lost, rendering further debugging "
4415 "impossible."));
9db8d71f
DJ
4416 udp_warning = 1;
4417 }
4418
4419 return serial_open (name);
4420}
4421
d914c394
SS
4422/* Inform the target of our permission settings. The permission flags
4423 work without this, but if the target knows the settings, it can do
4424 a couple things. First, it can add its own check, to catch cases
4425 that somehow manage to get by the permissions checks in target
4426 methods. Second, if the target is wired to disallow particular
4427 settings (for instance, a system in the field that is not set up to
4428 be able to stop at a breakpoint), it can object to any unavailable
4429 permissions. */
4430
4431void
c378d69d 4432remote_set_permissions (struct target_ops *self)
d914c394
SS
4433{
4434 struct remote_state *rs = get_remote_state ();
4435
bba74b36
YQ
4436 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
4437 "WriteReg:%x;WriteMem:%x;"
4438 "InsertBreak:%x;InsertTrace:%x;"
4439 "InsertFastTrace:%x;Stop:%x",
4440 may_write_registers, may_write_memory,
4441 may_insert_breakpoints, may_insert_tracepoints,
4442 may_insert_fast_tracepoints, may_stop);
d914c394
SS
4443 putpkt (rs->buf);
4444 getpkt (&rs->buf, &rs->buf_size, 0);
4445
4446 /* If the target didn't like the packet, warn the user. Do not try
4447 to undo the user's settings, that would just be maddening. */
4448 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 4449 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
4450}
4451
be2a5f71
DJ
4452/* This type describes each known response to the qSupported
4453 packet. */
4454struct protocol_feature
4455{
4456 /* The name of this protocol feature. */
4457 const char *name;
4458
4459 /* The default for this protocol feature. */
4460 enum packet_support default_support;
4461
4462 /* The function to call when this feature is reported, or after
4463 qSupported processing if the feature is not supported.
4464 The first argument points to this structure. The second
4465 argument indicates whether the packet requested support be
4466 enabled, disabled, or probed (or the default, if this function
4467 is being called at the end of processing and this feature was
4468 not reported). The third argument may be NULL; if not NULL, it
4469 is a NUL-terminated string taken from the packet following
4470 this feature's name and an equals sign. */
4471 void (*func) (const struct protocol_feature *, enum packet_support,
4472 const char *);
4473
4474 /* The corresponding packet for this feature. Only used if
4475 FUNC is remote_supported_packet. */
4476 int packet;
4477};
4478
be2a5f71
DJ
4479static void
4480remote_supported_packet (const struct protocol_feature *feature,
4481 enum packet_support support,
4482 const char *argument)
4483{
4484 if (argument)
4485 {
4486 warning (_("Remote qSupported response supplied an unexpected value for"
4487 " \"%s\"."), feature->name);
4488 return;
4489 }
4490
4082afcc 4491 remote_protocol_packets[feature->packet].support = support;
be2a5f71 4492}
be2a5f71
DJ
4493
4494static void
4495remote_packet_size (const struct protocol_feature *feature,
4496 enum packet_support support, const char *value)
4497{
4498 struct remote_state *rs = get_remote_state ();
4499
4500 int packet_size;
4501 char *value_end;
4502
4503 if (support != PACKET_ENABLE)
4504 return;
4505
4506 if (value == NULL || *value == '\0')
4507 {
4508 warning (_("Remote target reported \"%s\" without a size."),
4509 feature->name);
4510 return;
4511 }
4512
4513 errno = 0;
4514 packet_size = strtol (value, &value_end, 16);
4515 if (errno != 0 || *value_end != '\0' || packet_size < 0)
4516 {
4517 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
4518 feature->name, value);
4519 return;
4520 }
4521
be2a5f71
DJ
4522 /* Record the new maximum packet size. */
4523 rs->explicit_packet_size = packet_size;
4524}
4525
dc473cfb 4526static const struct protocol_feature remote_protocol_features[] = {
0876f84a 4527 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 4528 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 4529 PACKET_qXfer_auxv },
c78fa86a
GB
4530 { "qXfer:exec-file:read", PACKET_DISABLE, remote_supported_packet,
4531 PACKET_qXfer_exec_file },
23181151
DJ
4532 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
4533 PACKET_qXfer_features },
cfa9d6d9
DJ
4534 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
4535 PACKET_qXfer_libraries },
2268b414
JK
4536 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4537 PACKET_qXfer_libraries_svr4 },
ced63ec0 4538 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4082afcc 4539 remote_supported_packet, PACKET_augmented_libraries_svr4_read_feature },
fd79ecee 4540 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4541 PACKET_qXfer_memory_map },
4de6483e
UW
4542 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4543 PACKET_qXfer_spu_read },
4544 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4545 PACKET_qXfer_spu_write },
07e059b5
VP
4546 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4547 PACKET_qXfer_osdata },
dc146f7c
VP
4548 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4549 PACKET_qXfer_threads },
b3b9301e
PA
4550 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4551 PACKET_qXfer_traceframe_info },
89be2091
DJ
4552 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4553 PACKET_QPassSignals },
82075af2
JS
4554 { "QCatchSyscalls", PACKET_DISABLE, remote_supported_packet,
4555 PACKET_QCatchSyscalls },
9b224c5e
PA
4556 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4557 PACKET_QProgramSignals },
a6f3e723
SL
4558 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4559 PACKET_QStartNoAckMode },
4082afcc
PA
4560 { "multiprocess", PACKET_DISABLE, remote_supported_packet,
4561 PACKET_multiprocess_feature },
4562 { "QNonStop", PACKET_DISABLE, remote_supported_packet, PACKET_QNonStop },
4aa995e1
PA
4563 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4564 PACKET_qXfer_siginfo_read },
4565 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4566 PACKET_qXfer_siginfo_write },
4082afcc 4567 { "ConditionalTracepoints", PACKET_DISABLE, remote_supported_packet,
782b2b07 4568 PACKET_ConditionalTracepoints },
4082afcc 4569 { "ConditionalBreakpoints", PACKET_DISABLE, remote_supported_packet,
3788aec7 4570 PACKET_ConditionalBreakpoints },
4082afcc 4571 { "BreakpointCommands", PACKET_DISABLE, remote_supported_packet,
d3ce09f5 4572 PACKET_BreakpointCommands },
4082afcc 4573 { "FastTracepoints", PACKET_DISABLE, remote_supported_packet,
7a697b8d 4574 PACKET_FastTracepoints },
4082afcc 4575 { "StaticTracepoints", PACKET_DISABLE, remote_supported_packet,
0fb4aa4b 4576 PACKET_StaticTracepoints },
4082afcc 4577 {"InstallInTrace", PACKET_DISABLE, remote_supported_packet,
1e4d1764 4578 PACKET_InstallInTrace},
4082afcc
PA
4579 { "DisconnectedTracing", PACKET_DISABLE, remote_supported_packet,
4580 PACKET_DisconnectedTracing_feature },
40ab02ce
MS
4581 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4582 PACKET_bc },
4583 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4584 PACKET_bs },
409873ef
SS
4585 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4586 PACKET_TracepointSource },
d914c394
SS
4587 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4588 PACKET_QAllow },
4082afcc
PA
4589 { "EnableDisableTracepoints", PACKET_DISABLE, remote_supported_packet,
4590 PACKET_EnableDisableTracepoints_feature },
78d85199
YQ
4591 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4592 PACKET_qXfer_fdpic },
169081d0
TG
4593 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4594 PACKET_qXfer_uib },
03583c20
UW
4595 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4596 PACKET_QDisableRandomization },
d1feda86 4597 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4598 { "QTBuffer:size", PACKET_DISABLE,
4599 remote_supported_packet, PACKET_QTBuffer_size},
4082afcc 4600 { "tracenz", PACKET_DISABLE, remote_supported_packet, PACKET_tracenz_feature },
9accd112
MM
4601 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4602 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
b20a6524 4603 { "Qbtrace:pt", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_pt },
9accd112 4604 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
f4abbc16
MM
4605 PACKET_qXfer_btrace },
4606 { "qXfer:btrace-conf:read", PACKET_DISABLE, remote_supported_packet,
d33501a5
MM
4607 PACKET_qXfer_btrace_conf },
4608 { "Qbtrace-conf:bts:size", PACKET_DISABLE, remote_supported_packet,
f7e6eed5
PA
4609 PACKET_Qbtrace_conf_bts_size },
4610 { "swbreak", PACKET_DISABLE, remote_supported_packet, PACKET_swbreak_feature },
0a93529c 4611 { "hwbreak", PACKET_DISABLE, remote_supported_packet, PACKET_hwbreak_feature },
89245bc0
DB
4612 { "fork-events", PACKET_DISABLE, remote_supported_packet,
4613 PACKET_fork_event_feature },
4614 { "vfork-events", PACKET_DISABLE, remote_supported_packet,
4615 PACKET_vfork_event_feature },
94585166
DB
4616 { "exec-events", PACKET_DISABLE, remote_supported_packet,
4617 PACKET_exec_event_feature },
b20a6524 4618 { "Qbtrace-conf:pt:size", PACKET_DISABLE, remote_supported_packet,
750ce8d1 4619 PACKET_Qbtrace_conf_pt_size },
65706a29
PA
4620 { "vContSupported", PACKET_DISABLE, remote_supported_packet, PACKET_vContSupported },
4621 { "QThreadEvents", PACKET_DISABLE, remote_supported_packet, PACKET_QThreadEvents },
f2faf941 4622 { "no-resumed", PACKET_DISABLE, remote_supported_packet, PACKET_no_resumed },
be2a5f71
DJ
4623};
4624
c8d5aac9
L
4625static char *remote_support_xml;
4626
4627/* Register string appended to "xmlRegisters=" in qSupported query. */
4628
4629void
6e39997a 4630register_remote_support_xml (const char *xml)
c8d5aac9
L
4631{
4632#if defined(HAVE_LIBEXPAT)
4633 if (remote_support_xml == NULL)
c4f7c687 4634 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4635 else
4636 {
4637 char *copy = xstrdup (remote_support_xml + 13);
4638 char *p = strtok (copy, ",");
4639
4640 do
4641 {
4642 if (strcmp (p, xml) == 0)
4643 {
4644 /* already there */
4645 xfree (copy);
4646 return;
4647 }
4648 }
4649 while ((p = strtok (NULL, ",")) != NULL);
4650 xfree (copy);
4651
94b0dee1
PA
4652 remote_support_xml = reconcat (remote_support_xml,
4653 remote_support_xml, ",", xml,
4654 (char *) NULL);
c8d5aac9
L
4655 }
4656#endif
4657}
4658
4659static char *
4660remote_query_supported_append (char *msg, const char *append)
4661{
4662 if (msg)
94b0dee1 4663 return reconcat (msg, msg, ";", append, (char *) NULL);
c8d5aac9
L
4664 else
4665 return xstrdup (append);
4666}
4667
be2a5f71
DJ
4668static void
4669remote_query_supported (void)
4670{
4671 struct remote_state *rs = get_remote_state ();
4672 char *next;
4673 int i;
4674 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4675
4676 /* The packet support flags are handled differently for this packet
4677 than for most others. We treat an error, a disabled packet, and
4678 an empty response identically: any features which must be reported
4679 to be used will be automatically disabled. An empty buffer
4680 accomplishes this, since that is also the representation for a list
4681 containing no features. */
4682
4683 rs->buf[0] = 0;
4082afcc 4684 if (packet_support (PACKET_qSupported) != PACKET_DISABLE)
be2a5f71 4685 {
c8d5aac9 4686 char *q = NULL;
94b0dee1 4687 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
c8d5aac9 4688
73b8c1fd
PA
4689 if (packet_set_cmd_state (PACKET_multiprocess_feature) != AUTO_BOOLEAN_FALSE)
4690 q = remote_query_supported_append (q, "multiprocess+");
c8d5aac9 4691
f7e6eed5
PA
4692 if (packet_set_cmd_state (PACKET_swbreak_feature) != AUTO_BOOLEAN_FALSE)
4693 q = remote_query_supported_append (q, "swbreak+");
4694 if (packet_set_cmd_state (PACKET_hwbreak_feature) != AUTO_BOOLEAN_FALSE)
4695 q = remote_query_supported_append (q, "hwbreak+");
4696
dde08ee1
PA
4697 q = remote_query_supported_append (q, "qRelocInsn+");
4698
8020350c
DB
4699 if (packet_set_cmd_state (PACKET_fork_event_feature)
4700 != AUTO_BOOLEAN_FALSE)
4701 q = remote_query_supported_append (q, "fork-events+");
4702 if (packet_set_cmd_state (PACKET_vfork_event_feature)
4703 != AUTO_BOOLEAN_FALSE)
4704 q = remote_query_supported_append (q, "vfork-events+");
4705 if (packet_set_cmd_state (PACKET_exec_event_feature)
4706 != AUTO_BOOLEAN_FALSE)
4707 q = remote_query_supported_append (q, "exec-events+");
89245bc0 4708
750ce8d1
YQ
4709 if (packet_set_cmd_state (PACKET_vContSupported) != AUTO_BOOLEAN_FALSE)
4710 q = remote_query_supported_append (q, "vContSupported+");
4711
65706a29
PA
4712 if (packet_set_cmd_state (PACKET_QThreadEvents) != AUTO_BOOLEAN_FALSE)
4713 q = remote_query_supported_append (q, "QThreadEvents+");
4714
f2faf941
PA
4715 if (packet_set_cmd_state (PACKET_no_resumed) != AUTO_BOOLEAN_FALSE)
4716 q = remote_query_supported_append (q, "no-resumed+");
4717
b35d5edb
PA
4718 /* Keep this one last to work around a gdbserver <= 7.10 bug in
4719 the qSupported:xmlRegisters=i386 handling. */
4720 if (remote_support_xml != NULL)
4721 q = remote_query_supported_append (q, remote_support_xml);
4722
dde08ee1
PA
4723 q = reconcat (q, "qSupported:", q, (char *) NULL);
4724 putpkt (q);
82f73884 4725
94b0dee1
PA
4726 do_cleanups (old_chain);
4727
be2a5f71
DJ
4728 getpkt (&rs->buf, &rs->buf_size, 0);
4729
4730 /* If an error occured, warn, but do not return - just reset the
4731 buffer to empty and go on to disable features. */
4732 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4733 == PACKET_ERROR)
4734 {
4735 warning (_("Remote failure reply: %s"), rs->buf);
4736 rs->buf[0] = 0;
4737 }
4738 }
4739
4740 memset (seen, 0, sizeof (seen));
4741
4742 next = rs->buf;
4743 while (*next)
4744 {
4745 enum packet_support is_supported;
4746 char *p, *end, *name_end, *value;
4747
4748 /* First separate out this item from the rest of the packet. If
4749 there's another item after this, we overwrite the separator
4750 (terminated strings are much easier to work with). */
4751 p = next;
4752 end = strchr (p, ';');
4753 if (end == NULL)
4754 {
4755 end = p + strlen (p);
4756 next = end;
4757 }
4758 else
4759 {
89be2091
DJ
4760 *end = '\0';
4761 next = end + 1;
4762
be2a5f71
DJ
4763 if (end == p)
4764 {
4765 warning (_("empty item in \"qSupported\" response"));
4766 continue;
4767 }
be2a5f71
DJ
4768 }
4769
4770 name_end = strchr (p, '=');
4771 if (name_end)
4772 {
4773 /* This is a name=value entry. */
4774 is_supported = PACKET_ENABLE;
4775 value = name_end + 1;
4776 *name_end = '\0';
4777 }
4778 else
4779 {
4780 value = NULL;
4781 switch (end[-1])
4782 {
4783 case '+':
4784 is_supported = PACKET_ENABLE;
4785 break;
4786
4787 case '-':
4788 is_supported = PACKET_DISABLE;
4789 break;
4790
4791 case '?':
4792 is_supported = PACKET_SUPPORT_UNKNOWN;
4793 break;
4794
4795 default:
3e43a32a
MS
4796 warning (_("unrecognized item \"%s\" "
4797 "in \"qSupported\" response"), p);
be2a5f71
DJ
4798 continue;
4799 }
4800 end[-1] = '\0';
4801 }
4802
4803 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4804 if (strcmp (remote_protocol_features[i].name, p) == 0)
4805 {
4806 const struct protocol_feature *feature;
4807
4808 seen[i] = 1;
4809 feature = &remote_protocol_features[i];
4810 feature->func (feature, is_supported, value);
4811 break;
4812 }
4813 }
4814
4815 /* If we increased the packet size, make sure to increase the global
4816 buffer size also. We delay this until after parsing the entire
4817 qSupported packet, because this is the same buffer we were
4818 parsing. */
4819 if (rs->buf_size < rs->explicit_packet_size)
4820 {
4821 rs->buf_size = rs->explicit_packet_size;
224c3ddb 4822 rs->buf = (char *) xrealloc (rs->buf, rs->buf_size);
be2a5f71
DJ
4823 }
4824
4825 /* Handle the defaults for unmentioned features. */
4826 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4827 if (!seen[i])
4828 {
4829 const struct protocol_feature *feature;
4830
4831 feature = &remote_protocol_features[i];
4832 feature->func (feature, feature->default_support, NULL);
4833 }
4834}
4835
78a095c3
JK
4836/* Remove any of the remote.c targets from target stack. Upper targets depend
4837 on it so remove them first. */
4838
4839static void
4840remote_unpush_target (void)
4841{
915ef8b1 4842 pop_all_targets_at_and_above (process_stratum);
78a095c3 4843}
be2a5f71 4844
c906108c 4845static void
014f9477 4846remote_open_1 (const char *name, int from_tty,
3e43a32a 4847 struct target_ops *target, int extended_p)
c906108c 4848{
d01949b6 4849 struct remote_state *rs = get_remote_state ();
a6f3e723 4850
c906108c 4851 if (name == 0)
8a3fe4f8 4852 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 4853 "serial device is attached to the remote system\n"
8a3fe4f8 4854 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 4855
23860348 4856 /* See FIXME above. */
c6ebd6cf 4857 if (!target_async_permitted)
92d1e331 4858 wait_forever_enabled_p = 1;
6426a772 4859
2d717e4f 4860 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
4861 Ask this question first, before target_preopen has a chance to kill
4862 anything. */
5d93a237 4863 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 4864 {
78a095c3
JK
4865 if (from_tty
4866 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
4867 error (_("Still connected."));
4868 }
4869
78a095c3 4870 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
4871 target_preopen (from_tty);
4872
89be2091 4873 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
4874 xfree (rs->last_pass_packet);
4875 rs->last_pass_packet = NULL;
89be2091 4876
9b224c5e
PA
4877 /* Make sure we send the program signals list the next time we
4878 resume. */
5e4a05c4
TT
4879 xfree (rs->last_program_signals_packet);
4880 rs->last_program_signals_packet = NULL;
9b224c5e 4881
ad9a8f3f 4882 remote_fileio_reset ();
1dd41f16
NS
4883 reopen_exec_file ();
4884 reread_symbols ();
4885
5d93a237
TT
4886 rs->remote_desc = remote_serial_open (name);
4887 if (!rs->remote_desc)
c906108c
SS
4888 perror_with_name (name);
4889
4890 if (baud_rate != -1)
4891 {
5d93a237 4892 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 4893 {
9b74d5d3
KB
4894 /* The requested speed could not be set. Error out to
4895 top level after closing remote_desc. Take care to
4896 set remote_desc to NULL to avoid closing remote_desc
4897 more than once. */
5d93a237
TT
4898 serial_close (rs->remote_desc);
4899 rs->remote_desc = NULL;
c906108c
SS
4900 perror_with_name (name);
4901 }
4902 }
4903
236af5e3 4904 serial_setparity (rs->remote_desc, serial_parity);
5d93a237 4905 serial_raw (rs->remote_desc);
c906108c
SS
4906
4907 /* If there is something sitting in the buffer we might take it as a
4908 response to a command, which would be bad. */
5d93a237 4909 serial_flush_input (rs->remote_desc);
c906108c
SS
4910
4911 if (from_tty)
4912 {
4913 puts_filtered ("Remote debugging using ");
4914 puts_filtered (name);
4915 puts_filtered ("\n");
4916 }
23860348 4917 push_target (target); /* Switch to using remote target now. */
c906108c 4918
74531fed
PA
4919 /* Register extra event sources in the event loop. */
4920 remote_async_inferior_event_token
4921 = create_async_event_handler (remote_async_inferior_event_handler,
4922 NULL);
5965e028 4923 rs->notif_state = remote_notif_state_allocate ();
74531fed 4924
be2a5f71
DJ
4925 /* Reset the target state; these things will be queried either by
4926 remote_query_supported or as they are needed. */
ca4f7f8b 4927 reset_all_packet_configs_support ();
74531fed 4928 rs->cached_wait_status = 0;
be2a5f71 4929 rs->explicit_packet_size = 0;
a6f3e723 4930 rs->noack_mode = 0;
82f73884 4931 rs->extended = extended_p;
e24a49d8 4932 rs->waiting_for_stop_reply = 0;
3a29589a 4933 rs->ctrlc_pending_p = 0;
802188a7 4934
47f8a51d
TT
4935 rs->general_thread = not_sent_ptid;
4936 rs->continue_thread = not_sent_ptid;
262e1174 4937 rs->remote_traceframe_number = -1;
c906108c 4938
9d1f7ab2 4939 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
4940 rs->use_threadinfo_query = 1;
4941 rs->use_threadextra_query = 1;
9d1f7ab2 4942
80152258
PA
4943 readahead_cache_invalidate ();
4944
c6ebd6cf 4945 if (target_async_permitted)
92d1e331 4946 {
23860348 4947 /* With this target we start out by owning the terminal. */
92d1e331
DJ
4948 remote_async_terminal_ours_p = 1;
4949
4950 /* FIXME: cagney/1999-09-23: During the initial connection it is
4951 assumed that the target is already ready and able to respond to
0df8b418 4952 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 4953 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 4954 around this. Eventually a mechanism that allows
92d1e331 4955 wait_for_inferior() to expect/get timeouts will be
23860348 4956 implemented. */
92d1e331
DJ
4957 wait_forever_enabled_p = 0;
4958 }
4959
23860348 4960 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 4961 no_shared_libraries (NULL, 0);
f78f6cf1 4962
74531fed
PA
4963 /* Start afresh. */
4964 init_thread_list ();
4965
36918e70 4966 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
4967 target (we'd otherwise be in an inconsistent state) and then
4968 propogate the error on up the exception chain. This ensures that
4969 the caller doesn't stumble along blindly assuming that the
4970 function succeeded. The CLI doesn't have this problem but other
4971 UI's, such as MI do.
36918e70
AC
4972
4973 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4974 this function should return an error indication letting the
ce2826aa 4975 caller restore the previous state. Unfortunately the command
36918e70
AC
4976 ``target remote'' is directly wired to this function making that
4977 impossible. On a positive note, the CLI side of this problem has
4978 been fixed - the function set_cmd_context() makes it possible for
4979 all the ``target ....'' commands to share a common callback
4980 function. See cli-dump.c. */
109c3e39 4981 {
2d717e4f 4982
492d29ea 4983 TRY
04bd08de
TT
4984 {
4985 remote_start_remote (from_tty, target, extended_p);
4986 }
492d29ea 4987 CATCH (ex, RETURN_MASK_ALL)
109c3e39 4988 {
c8d104ad
PA
4989 /* Pop the partially set up target - unless something else did
4990 already before throwing the exception. */
5d93a237 4991 if (rs->remote_desc != NULL)
78a095c3 4992 remote_unpush_target ();
c6ebd6cf 4993 if (target_async_permitted)
109c3e39
AC
4994 wait_forever_enabled_p = 1;
4995 throw_exception (ex);
4996 }
492d29ea 4997 END_CATCH
109c3e39 4998 }
c906108c 4999
f4abbc16
MM
5000 remote_btrace_reset ();
5001
c6ebd6cf 5002 if (target_async_permitted)
92d1e331 5003 wait_forever_enabled_p = 1;
43ff13b4
JM
5004}
5005
de0d863e
DB
5006/* Detach the specified process. */
5007
5008static void
5009remote_detach_pid (int pid)
5010{
5011 struct remote_state *rs = get_remote_state ();
5012
5013 if (remote_multi_process_p (rs))
5014 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
5015 else
5016 strcpy (rs->buf, "D");
5017
5018 putpkt (rs->buf);
5019 getpkt (&rs->buf, &rs->buf_size, 0);
5020
5021 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
5022 ;
5023 else if (rs->buf[0] == '\0')
5024 error (_("Remote doesn't know how to detach"));
5025 else
5026 error (_("Can't detach process."));
5027}
5028
5029/* This detaches a program to which we previously attached, using
5030 inferior_ptid to identify the process. After this is done, GDB
5031 can be used to debug some other program. We better not have left
5032 any breakpoints in the target program or it'll die when it hits
5033 one. */
c906108c
SS
5034
5035static void
de0d863e 5036remote_detach_1 (const char *args, int from_tty)
c906108c 5037{
82f73884 5038 int pid = ptid_get_pid (inferior_ptid);
d01949b6 5039 struct remote_state *rs = get_remote_state ();
de0d863e
DB
5040 struct thread_info *tp = find_thread_ptid (inferior_ptid);
5041 int is_fork_parent;
c906108c
SS
5042
5043 if (args)
8a3fe4f8 5044 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 5045
2d717e4f
DJ
5046 if (!target_has_execution)
5047 error (_("No process to detach from."));
5048
7cee1e54
PA
5049 if (from_tty)
5050 {
5051 char *exec_file = get_exec_file (0);
5052 if (exec_file == NULL)
5053 exec_file = "";
5054 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
5055 target_pid_to_str (pid_to_ptid (pid)));
5056 gdb_flush (gdb_stdout);
5057 }
5058
c906108c 5059 /* Tell the remote target to detach. */
de0d863e 5060 remote_detach_pid (pid);
82f73884 5061
8020350c
DB
5062 /* Exit only if this is the only active inferior. */
5063 if (from_tty && !rs->extended && number_of_live_inferiors () == 1)
7cee1e54 5064 puts_filtered (_("Ending remote debugging.\n"));
82f73884 5065
de0d863e
DB
5066 /* Check to see if we are detaching a fork parent. Note that if we
5067 are detaching a fork child, tp == NULL. */
5068 is_fork_parent = (tp != NULL
5069 && tp->pending_follow.kind == TARGET_WAITKIND_FORKED);
5070
5071 /* If doing detach-on-fork, we don't mourn, because that will delete
5072 breakpoints that should be available for the followed inferior. */
5073 if (!is_fork_parent)
5074 target_mourn_inferior ();
5075 else
5076 {
5077 inferior_ptid = null_ptid;
5078 detach_inferior (pid);
5079 }
2d717e4f
DJ
5080}
5081
5082static void
52554a0e 5083remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5084{
de0d863e 5085 remote_detach_1 (args, from_tty);
2d717e4f
DJ
5086}
5087
5088static void
52554a0e 5089extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f 5090{
de0d863e
DB
5091 remote_detach_1 (args, from_tty);
5092}
5093
5094/* Target follow-fork function for remote targets. On entry, and
5095 at return, the current inferior is the fork parent.
5096
5097 Note that although this is currently only used for extended-remote,
5098 it is named remote_follow_fork in anticipation of using it for the
5099 remote target as well. */
5100
5101static int
5102remote_follow_fork (struct target_ops *ops, int follow_child,
5103 int detach_fork)
5104{
5105 struct remote_state *rs = get_remote_state ();
c269dbdb 5106 enum target_waitkind kind = inferior_thread ()->pending_follow.kind;
de0d863e 5107
c269dbdb
DB
5108 if ((kind == TARGET_WAITKIND_FORKED && remote_fork_event_p (rs))
5109 || (kind == TARGET_WAITKIND_VFORKED && remote_vfork_event_p (rs)))
de0d863e
DB
5110 {
5111 /* When following the parent and detaching the child, we detach
5112 the child here. For the case of following the child and
5113 detaching the parent, the detach is done in the target-
5114 independent follow fork code in infrun.c. We can't use
5115 target_detach when detaching an unfollowed child because
5116 the client side doesn't know anything about the child. */
5117 if (detach_fork && !follow_child)
5118 {
5119 /* Detach the fork child. */
5120 ptid_t child_ptid;
5121 pid_t child_pid;
5122
5123 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
5124 child_pid = ptid_get_pid (child_ptid);
5125
5126 remote_detach_pid (child_pid);
5127 detach_inferior (child_pid);
5128 }
5129 }
5130 return 0;
c906108c
SS
5131}
5132
94585166
DB
5133/* Target follow-exec function for remote targets. Save EXECD_PATHNAME
5134 in the program space of the new inferior. On entry and at return the
5135 current inferior is the exec'ing inferior. INF is the new exec'd
5136 inferior, which may be the same as the exec'ing inferior unless
5137 follow-exec-mode is "new". */
5138
5139static void
5140remote_follow_exec (struct target_ops *ops,
5141 struct inferior *inf, char *execd_pathname)
5142{
5143 /* We know that this is a target file name, so if it has the "target:"
5144 prefix we strip it off before saving it in the program space. */
5145 if (is_target_filename (execd_pathname))
5146 execd_pathname += strlen (TARGET_SYSROOT_PREFIX);
5147
5148 set_pspace_remote_exec_file (inf->pspace, execd_pathname);
5149}
5150
6ad8ae5c
DJ
5151/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
5152
43ff13b4 5153static void
fee354ee 5154remote_disconnect (struct target_ops *target, const char *args, int from_tty)
43ff13b4 5155{
43ff13b4 5156 if (args)
2d717e4f 5157 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 5158
8020350c
DB
5159 /* Make sure we unpush even the extended remote targets. Calling
5160 target_mourn_inferior won't unpush, and remote_mourn won't
5161 unpush if there is more than one inferior left. */
5162 unpush_target (target);
5163 generic_mourn_inferior ();
2d717e4f 5164
43ff13b4
JM
5165 if (from_tty)
5166 puts_filtered ("Ending remote debugging.\n");
5167}
5168
2d717e4f
DJ
5169/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
5170 be chatty about it. */
5171
5172static void
20f796c9
GB
5173extended_remote_attach (struct target_ops *target, const char *args,
5174 int from_tty)
2d717e4f
DJ
5175{
5176 struct remote_state *rs = get_remote_state ();
be86555c 5177 int pid;
96ef3384 5178 char *wait_status = NULL;
2d717e4f 5179
74164c56 5180 pid = parse_pid_to_attach (args);
2d717e4f 5181
74164c56
JK
5182 /* Remote PID can be freely equal to getpid, do not check it here the same
5183 way as in other targets. */
2d717e4f 5184
4082afcc 5185 if (packet_support (PACKET_vAttach) == PACKET_DISABLE)
2d717e4f
DJ
5186 error (_("This target does not support attaching to a process"));
5187
7cee1e54
PA
5188 if (from_tty)
5189 {
5190 char *exec_file = get_exec_file (0);
5191
5192 if (exec_file)
5193 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
5194 target_pid_to_str (pid_to_ptid (pid)));
5195 else
5196 printf_unfiltered (_("Attaching to %s\n"),
5197 target_pid_to_str (pid_to_ptid (pid)));
5198
5199 gdb_flush (gdb_stdout);
5200 }
5201
bba74b36 5202 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
5203 putpkt (rs->buf);
5204 getpkt (&rs->buf, &rs->buf_size, 0);
5205
4082afcc
PA
5206 switch (packet_ok (rs->buf,
5207 &remote_protocol_packets[PACKET_vAttach]))
2d717e4f 5208 {
4082afcc 5209 case PACKET_OK:
6efcd9a8 5210 if (!target_is_non_stop_p ())
74531fed
PA
5211 {
5212 /* Save the reply for later. */
224c3ddb 5213 wait_status = (char *) alloca (strlen (rs->buf) + 1);
74531fed
PA
5214 strcpy (wait_status, rs->buf);
5215 }
5216 else if (strcmp (rs->buf, "OK") != 0)
5217 error (_("Attaching to %s failed with: %s"),
5218 target_pid_to_str (pid_to_ptid (pid)),
5219 rs->buf);
4082afcc
PA
5220 break;
5221 case PACKET_UNKNOWN:
5222 error (_("This target does not support attaching to a process"));
5223 default:
5224 error (_("Attaching to %s failed"),
5225 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 5226 }
2d717e4f 5227
1b6e6f5c 5228 set_current_inferior (remote_add_inferior (0, pid, 1, 0));
bad34192 5229
2d717e4f 5230 inferior_ptid = pid_to_ptid (pid);
79d7f229 5231
6efcd9a8 5232 if (target_is_non_stop_p ())
bad34192
PA
5233 {
5234 struct thread_info *thread;
79d7f229 5235
bad34192 5236 /* Get list of threads. */
e8032dde 5237 remote_update_thread_list (target);
82f73884 5238
bad34192
PA
5239 thread = first_thread_of_process (pid);
5240 if (thread)
5241 inferior_ptid = thread->ptid;
5242 else
5243 inferior_ptid = pid_to_ptid (pid);
5244
5245 /* Invalidate our notion of the remote current thread. */
47f8a51d 5246 record_currthread (rs, minus_one_ptid);
bad34192 5247 }
74531fed 5248 else
bad34192
PA
5249 {
5250 /* Now, if we have thread information, update inferior_ptid. */
5251 inferior_ptid = remote_current_thread (inferior_ptid);
5252
5253 /* Add the main thread to the thread list. */
5254 add_thread_silent (inferior_ptid);
5255 }
c0a2216e 5256
96ef3384
UW
5257 /* Next, if the target can specify a description, read it. We do
5258 this before anything involving memory or registers. */
5259 target_find_description ();
5260
6efcd9a8 5261 if (!target_is_non_stop_p ())
74531fed
PA
5262 {
5263 /* Use the previously fetched status. */
5264 gdb_assert (wait_status != NULL);
5265
5266 if (target_can_async_p ())
5267 {
722247f1
YQ
5268 struct notif_event *reply
5269 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 5270
722247f1 5271 push_stop_reply ((struct stop_reply *) reply);
74531fed 5272
6a3753b3 5273 target_async (1);
74531fed
PA
5274 }
5275 else
5276 {
5277 gdb_assert (wait_status != NULL);
5278 strcpy (rs->buf, wait_status);
5279 rs->cached_wait_status = 1;
5280 }
5281 }
5282 else
5283 gdb_assert (wait_status == NULL);
2d717e4f
DJ
5284}
5285
b9c1d481
AS
5286/* Implementation of the to_post_attach method. */
5287
5288static void
5289extended_remote_post_attach (struct target_ops *ops, int pid)
5290{
6efcd9a8
PA
5291 /* Get text, data & bss offsets. */
5292 get_offsets ();
5293
b9c1d481
AS
5294 /* In certain cases GDB might not have had the chance to start
5295 symbol lookup up until now. This could happen if the debugged
5296 binary is not using shared libraries, the vsyscall page is not
5297 present (on Linux) and the binary itself hadn't changed since the
5298 debugging process was started. */
5299 if (symfile_objfile != NULL)
5300 remote_check_symbols();
5301}
5302
c906108c 5303\f
506fb367
DJ
5304/* Check for the availability of vCont. This function should also check
5305 the response. */
c906108c
SS
5306
5307static void
6d820c5c 5308remote_vcont_probe (struct remote_state *rs)
c906108c 5309{
2e9f7625 5310 char *buf;
6d820c5c 5311
2e9f7625
DJ
5312 strcpy (rs->buf, "vCont?");
5313 putpkt (rs->buf);
6d820c5c 5314 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5315 buf = rs->buf;
c906108c 5316
506fb367 5317 /* Make sure that the features we assume are supported. */
61012eef 5318 if (startswith (buf, "vCont"))
506fb367
DJ
5319 {
5320 char *p = &buf[5];
750ce8d1 5321 int support_c, support_C;
506fb367 5322
750ce8d1
YQ
5323 rs->supports_vCont.s = 0;
5324 rs->supports_vCont.S = 0;
506fb367
DJ
5325 support_c = 0;
5326 support_C = 0;
d458bd84 5327 rs->supports_vCont.t = 0;
c1e36e3e 5328 rs->supports_vCont.r = 0;
506fb367
DJ
5329 while (p && *p == ';')
5330 {
5331 p++;
5332 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5333 rs->supports_vCont.s = 1;
506fb367 5334 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
750ce8d1 5335 rs->supports_vCont.S = 1;
506fb367
DJ
5336 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
5337 support_c = 1;
5338 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
5339 support_C = 1;
74531fed 5340 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 5341 rs->supports_vCont.t = 1;
c1e36e3e
PA
5342 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
5343 rs->supports_vCont.r = 1;
506fb367
DJ
5344
5345 p = strchr (p, ';');
5346 }
c906108c 5347
750ce8d1
YQ
5348 /* If c, and C are not all supported, we can't use vCont. Clearing
5349 BUF will make packet_ok disable the packet. */
5350 if (!support_c || !support_C)
506fb367
DJ
5351 buf[0] = 0;
5352 }
c906108c 5353
444abaca 5354 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 5355}
c906108c 5356
0d8f58ca
PA
5357/* Helper function for building "vCont" resumptions. Write a
5358 resumption to P. ENDP points to one-passed-the-end of the buffer
5359 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
5360 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
5361 resumed thread should be single-stepped and/or signalled. If PTID
5362 equals minus_one_ptid, then all threads are resumed; if PTID
5363 represents a process, then all threads of the process are resumed;
5364 the thread to be stepped and/or signalled is given in the global
5365 INFERIOR_PTID. */
5366
5367static char *
5368append_resumption (char *p, char *endp,
2ea28649 5369 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
5370{
5371 struct remote_state *rs = get_remote_state ();
5372
a493e3e2 5373 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 5374 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
5375 else if (step
5376 /* GDB is willing to range step. */
5377 && use_range_stepping
5378 /* Target supports range stepping. */
5379 && rs->supports_vCont.r
5380 /* We don't currently support range stepping multiple
5381 threads with a wildcard (though the protocol allows it,
5382 so stubs shouldn't make an active effort to forbid
5383 it). */
5384 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
5385 {
5386 struct thread_info *tp;
5387
5388 if (ptid_equal (ptid, minus_one_ptid))
5389 {
5390 /* If we don't know about the target thread's tid, then
5391 we're resuming magic_null_ptid (see caller). */
5392 tp = find_thread_ptid (magic_null_ptid);
5393 }
5394 else
5395 tp = find_thread_ptid (ptid);
5396 gdb_assert (tp != NULL);
5397
5398 if (tp->control.may_range_step)
5399 {
5400 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
5401
5402 p += xsnprintf (p, endp - p, ";r%s,%s",
5403 phex_nz (tp->control.step_range_start,
5404 addr_size),
5405 phex_nz (tp->control.step_range_end,
5406 addr_size));
5407 }
5408 else
5409 p += xsnprintf (p, endp - p, ";s");
5410 }
0d8f58ca
PA
5411 else if (step)
5412 p += xsnprintf (p, endp - p, ";s");
a493e3e2 5413 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
5414 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
5415 else
5416 p += xsnprintf (p, endp - p, ";c");
5417
5418 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
5419 {
5420 ptid_t nptid;
5421
5422 /* All (-1) threads of process. */
ba348170 5423 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
0d8f58ca
PA
5424
5425 p += xsnprintf (p, endp - p, ":");
5426 p = write_ptid (p, endp, nptid);
5427 }
5428 else if (!ptid_equal (ptid, minus_one_ptid))
5429 {
5430 p += xsnprintf (p, endp - p, ":");
5431 p = write_ptid (p, endp, ptid);
5432 }
5433
5434 return p;
5435}
5436
799a2abe
PA
5437/* Clear the thread's private info on resume. */
5438
5439static void
5440resume_clear_thread_private_info (struct thread_info *thread)
5441{
5442 if (thread->priv != NULL)
5443 {
5444 thread->priv->stop_reason = TARGET_STOPPED_BY_NO_REASON;
5445 thread->priv->watch_data_address = 0;
5446 }
5447}
5448
e5ef252a
PA
5449/* Append a vCont continue-with-signal action for threads that have a
5450 non-zero stop signal. */
5451
5452static char *
5453append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
5454{
5455 struct thread_info *thread;
5456
034f788c 5457 ALL_NON_EXITED_THREADS (thread)
e5ef252a
PA
5458 if (ptid_match (thread->ptid, ptid)
5459 && !ptid_equal (inferior_ptid, thread->ptid)
70509625 5460 && thread->suspend.stop_signal != GDB_SIGNAL_0)
e5ef252a
PA
5461 {
5462 p = append_resumption (p, endp, thread->ptid,
5463 0, thread->suspend.stop_signal);
5464 thread->suspend.stop_signal = GDB_SIGNAL_0;
799a2abe 5465 resume_clear_thread_private_info (thread);
e5ef252a
PA
5466 }
5467
5468 return p;
5469}
5470
506fb367
DJ
5471/* Resume the remote inferior by using a "vCont" packet. The thread
5472 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
5473 resumed thread should be single-stepped and/or signalled. If PTID
5474 equals minus_one_ptid, then all threads are resumed; the thread to
5475 be stepped and/or signalled is given in the global INFERIOR_PTID.
5476 This function returns non-zero iff it resumes the inferior.
44eaed12 5477
506fb367
DJ
5478 This function issues a strict subset of all possible vCont commands at the
5479 moment. */
44eaed12 5480
506fb367 5481static int
2ea28649 5482remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
5483{
5484 struct remote_state *rs = get_remote_state ();
82f73884
PA
5485 char *p;
5486 char *endp;
44eaed12 5487
4082afcc 5488 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
6d820c5c 5489 remote_vcont_probe (rs);
44eaed12 5490
4082afcc 5491 if (packet_support (PACKET_vCont) == PACKET_DISABLE)
6d820c5c 5492 return 0;
44eaed12 5493
82f73884
PA
5494 p = rs->buf;
5495 endp = rs->buf + get_remote_packet_size ();
5496
506fb367
DJ
5497 /* If we could generate a wider range of packets, we'd have to worry
5498 about overflowing BUF. Should there be a generic
5499 "multi-part-packet" packet? */
5500
0d8f58ca
PA
5501 p += xsnprintf (p, endp - p, "vCont");
5502
79d7f229 5503 if (ptid_equal (ptid, magic_null_ptid))
c906108c 5504 {
79d7f229
PA
5505 /* MAGIC_NULL_PTID means that we don't have any active threads,
5506 so we don't have any TID numbers the inferior will
5507 understand. Make sure to only send forms that do not specify
5508 a TID. */
a9cbf802 5509 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 5510 }
0d8f58ca 5511 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 5512 {
0d8f58ca
PA
5513 /* Resume all threads (of all processes, or of a single
5514 process), with preference for INFERIOR_PTID. This assumes
5515 inferior_ptid belongs to the set of all threads we are about
5516 to resume. */
a493e3e2 5517 if (step || siggnal != GDB_SIGNAL_0)
82f73884 5518 {
0d8f58ca
PA
5519 /* Step inferior_ptid, with or without signal. */
5520 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 5521 }
0d8f58ca 5522
e5ef252a
PA
5523 /* Also pass down any pending signaled resumption for other
5524 threads not the current. */
5525 p = append_pending_thread_resumptions (p, endp, ptid);
5526
0d8f58ca 5527 /* And continue others without a signal. */
a493e3e2 5528 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
5529 }
5530 else
506fb367
DJ
5531 {
5532 /* Scheduler locking; resume only PTID. */
a9cbf802 5533 append_resumption (p, endp, ptid, step, siggnal);
506fb367 5534 }
c906108c 5535
82f73884
PA
5536 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
5537 putpkt (rs->buf);
506fb367 5538
6efcd9a8 5539 if (target_is_non_stop_p ())
74531fed
PA
5540 {
5541 /* In non-stop, the stub replies to vCont with "OK". The stop
5542 reply will be reported asynchronously by means of a `%Stop'
5543 notification. */
5544 getpkt (&rs->buf, &rs->buf_size, 0);
5545 if (strcmp (rs->buf, "OK") != 0)
5546 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
5547 }
5548
506fb367 5549 return 1;
c906108c 5550}
43ff13b4 5551
506fb367
DJ
5552/* Tell the remote machine to resume. */
5553
43ff13b4 5554static void
28439f5e 5555remote_resume (struct target_ops *ops,
2ea28649 5556 ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 5557{
d01949b6 5558 struct remote_state *rs = get_remote_state ();
2e9f7625 5559 char *buf;
799a2abe 5560 struct thread_info *thread;
43ff13b4 5561
722247f1
YQ
5562 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
5563 (explained in remote-notif.c:handle_notification) so
5564 remote_notif_process is not called. We need find a place where
5565 it is safe to start a 'vNotif' sequence. It is good to do it
5566 before resuming inferior, because inferior was stopped and no RSP
5567 traffic at that moment. */
6efcd9a8 5568 if (!target_is_non_stop_p ())
5965e028 5569 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 5570
b73be471 5571 rs->last_sent_signal = siggnal;
280ceea3 5572 rs->last_sent_step = step;
43ff13b4 5573
506fb367 5574 /* The vCont packet doesn't need to specify threads via Hc. */
40ab02ce
MS
5575 /* No reverse support (yet) for vCont. */
5576 if (execution_direction != EXEC_REVERSE)
5577 if (remote_vcont_resume (ptid, step, siggnal))
5578 goto done;
506fb367 5579
79d7f229
PA
5580 /* All other supported resume packets do use Hc, so set the continue
5581 thread. */
5582 if (ptid_equal (ptid, minus_one_ptid))
5583 set_continue_thread (any_thread_ptid);
506fb367 5584 else
79d7f229 5585 set_continue_thread (ptid);
506fb367 5586
799a2abe
PA
5587 ALL_NON_EXITED_THREADS (thread)
5588 resume_clear_thread_private_info (thread);
5589
2e9f7625 5590 buf = rs->buf;
b2175913
MS
5591 if (execution_direction == EXEC_REVERSE)
5592 {
5593 /* We don't pass signals to the target in reverse exec mode. */
a493e3e2 5594 if (info_verbose && siggnal != GDB_SIGNAL_0)
7ea6d463 5595 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
b2175913 5596 siggnal);
40ab02ce 5597
4082afcc 5598 if (step && packet_support (PACKET_bs) == PACKET_DISABLE)
40ab02ce 5599 error (_("Remote reverse-step not supported."));
4082afcc 5600 if (!step && packet_support (PACKET_bc) == PACKET_DISABLE)
08c93ed9 5601 error (_("Remote reverse-continue not supported."));
40ab02ce 5602
b2175913
MS
5603 strcpy (buf, step ? "bs" : "bc");
5604 }
a493e3e2 5605 else if (siggnal != GDB_SIGNAL_0)
43ff13b4
JM
5606 {
5607 buf[0] = step ? 'S' : 'C';
c5aa993b 5608 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
506fb367 5609 buf[2] = tohex (((int) siggnal) & 0xf);
43ff13b4
JM
5610 buf[3] = '\0';
5611 }
5612 else
c5aa993b 5613 strcpy (buf, step ? "s" : "c");
506fb367 5614
44eaed12 5615 putpkt (buf);
43ff13b4 5616
75c99385 5617 done:
2acceee2 5618 /* We are about to start executing the inferior, let's register it
0df8b418
MS
5619 with the event loop. NOTE: this is the one place where all the
5620 execution commands end up. We could alternatively do this in each
23860348 5621 of the execution commands in infcmd.c. */
2acceee2
JM
5622 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
5623 into infcmd.c in order to allow inferior function calls to work
23860348 5624 NOT asynchronously. */
362646f5 5625 if (target_can_async_p ())
6a3753b3 5626 target_async (1);
e24a49d8
PA
5627
5628 /* We've just told the target to resume. The remote server will
5629 wait for the inferior to stop, and then send a stop reply. In
5630 the mean time, we can't start another command/query ourselves
74531fed
PA
5631 because the stub wouldn't be ready to process it. This applies
5632 only to the base all-stop protocol, however. In non-stop (which
5633 only supports vCont), the stub replies with an "OK", and is
5634 immediate able to process further serial input. */
6efcd9a8 5635 if (!target_is_non_stop_p ())
74531fed 5636 rs->waiting_for_stop_reply = 1;
43ff13b4 5637}
c906108c 5638\f
43ff13b4
JM
5639
5640/* Set up the signal handler for SIGINT, while the target is
23860348 5641 executing, ovewriting the 'regular' SIGINT signal handler. */
43ff13b4 5642static void
934b9bac 5643async_initialize_sigint_signal_handler (void)
43ff13b4 5644{
934b9bac 5645 signal (SIGINT, async_handle_remote_sigint);
43ff13b4
JM
5646}
5647
23860348 5648/* Signal handler for SIGINT, while the target is executing. */
43ff13b4 5649static void
934b9bac 5650async_handle_remote_sigint (int sig)
43ff13b4 5651{
934b9bac 5652 signal (sig, async_handle_remote_sigint_twice);
b2ee242b
PA
5653 /* Note we need to go through gdb_call_async_signal_handler in order
5654 to wake up the event loop on Windows. */
5655 gdb_call_async_signal_handler (async_sigint_remote_token, 0);
43ff13b4
JM
5656}
5657
5658/* Signal handler for SIGINT, installed after SIGINT has already been
5659 sent once. It will take effect the second time that the user sends
23860348 5660 a ^C. */
43ff13b4 5661static void
934b9bac 5662async_handle_remote_sigint_twice (int sig)
43ff13b4 5663{
934b9bac 5664 signal (sig, async_handle_remote_sigint);
b2ee242b
PA
5665 /* See note in async_handle_remote_sigint. */
5666 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 0);
43ff13b4
JM
5667}
5668
abc56d60
PA
5669/* Implementation of to_check_pending_interrupt. */
5670
5671static void
5672remote_check_pending_interrupt (struct target_ops *self)
5673{
5674 struct async_signal_handler *token = async_sigint_remote_twice_token;
5675
5676 if (async_signal_handler_is_marked (token))
5677 {
5678 clear_async_signal_handler (token);
5679 call_async_signal_handler (token);
5680 }
5681}
5682
6426a772 5683/* Perform the real interruption of the target execution, in response
23860348 5684 to a ^C. */
c5aa993b 5685static void
fba45db2 5686async_remote_interrupt (gdb_client_data arg)
43ff13b4
JM
5687{
5688 if (remote_debug)
248fd3bf 5689 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
43ff13b4 5690
de979965 5691 target_interrupt (inferior_ptid);
43ff13b4
JM
5692}
5693
0df8b418 5694/* Perform interrupt, if the first attempt did not succeed. Just give
23860348 5695 up on the target alltogether. */
47e1ce27 5696static void
fba45db2 5697async_remote_interrupt_twice (gdb_client_data arg)
43ff13b4 5698{
2df3850c 5699 if (remote_debug)
248fd3bf 5700 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
b803fb0f
DJ
5701
5702 interrupt_query ();
43ff13b4
JM
5703}
5704
5705/* Reinstall the usual SIGINT handlers, after the target has
23860348 5706 stopped. */
6426a772 5707static void
934b9bac 5708async_cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
5709{
5710 signal (SIGINT, handle_sigint);
43ff13b4
JM
5711}
5712
c906108c
SS
5713/* Send ^C to target to halt it. Target will respond, and send us a
5714 packet. */
507f3c78 5715static void (*ofunc) (int);
c906108c 5716
bfedc46a
PA
5717/* The command line interface's interrupt routine. This function is installed
5718 as a signal handler for SIGINT. The first time a user requests an
5719 interrupt, we call remote_interrupt to send a break or ^C. If there is no
7a292a7a 5720 response from the target (it didn't stop when the user requested it),
23860348 5721 we ask the user if he'd like to detach from the target. */
bfedc46a 5722
c906108c 5723static void
934b9bac 5724sync_remote_interrupt (int signo)
c906108c 5725{
23860348 5726 /* If this doesn't work, try more severe steps. */
934b9bac 5727 signal (signo, sync_remote_interrupt_twice);
7a292a7a 5728
934b9bac 5729 gdb_call_async_signal_handler (async_sigint_remote_token, 1);
7a292a7a
SS
5730}
5731
5732/* The user typed ^C twice. */
5733
5734static void
934b9bac 5735sync_remote_interrupt_twice (int signo)
7a292a7a
SS
5736{
5737 signal (signo, ofunc);
934b9bac
JK
5738 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1);
5739 signal (signo, sync_remote_interrupt);
c906108c 5740}
7a292a7a 5741
74531fed
PA
5742/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5743 thread, all threads of a remote process, or all threads of all
5744 processes. */
5745
5746static void
5747remote_stop_ns (ptid_t ptid)
5748{
5749 struct remote_state *rs = get_remote_state ();
5750 char *p = rs->buf;
5751 char *endp = rs->buf + get_remote_packet_size ();
74531fed 5752
4082afcc 5753 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
74531fed
PA
5754 remote_vcont_probe (rs);
5755
d458bd84 5756 if (!rs->supports_vCont.t)
74531fed
PA
5757 error (_("Remote server does not support stopping threads"));
5758
f91d3df5
PA
5759 if (ptid_equal (ptid, minus_one_ptid)
5760 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
5761 p += xsnprintf (p, endp - p, "vCont;t");
5762 else
5763 {
5764 ptid_t nptid;
5765
74531fed
PA
5766 p += xsnprintf (p, endp - p, "vCont;t:");
5767
5768 if (ptid_is_pid (ptid))
5769 /* All (-1) threads of process. */
ba348170 5770 nptid = ptid_build (ptid_get_pid (ptid), -1, 0);
74531fed
PA
5771 else
5772 {
5773 /* Small optimization: if we already have a stop reply for
5774 this thread, no use in telling the stub we want this
5775 stopped. */
5776 if (peek_stop_reply (ptid))
5777 return;
5778
5779 nptid = ptid;
5780 }
5781
a9cbf802 5782 write_ptid (p, endp, nptid);
74531fed
PA
5783 }
5784
5785 /* In non-stop, we get an immediate OK reply. The stop reply will
5786 come in asynchronously by notification. */
5787 putpkt (rs->buf);
5788 getpkt (&rs->buf, &rs->buf_size, 0);
5789 if (strcmp (rs->buf, "OK") != 0)
5790 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5791}
5792
bfedc46a
PA
5793/* All-stop version of target_interrupt. Sends a break or a ^C to
5794 interrupt the remote target. It is undefined which thread of which
5795 process reports the interrupt. */
74531fed
PA
5796
5797static void
de979965 5798remote_interrupt_as (void)
74531fed
PA
5799{
5800 struct remote_state *rs = get_remote_state ();
5801
3a29589a
DJ
5802 rs->ctrlc_pending_p = 1;
5803
74531fed
PA
5804 /* If the inferior is stopped already, but the core didn't know
5805 about it yet, just ignore the request. The cached wait status
5806 will be collected in remote_wait. */
5807 if (rs->cached_wait_status)
5808 return;
5809
9a7071a8
JB
5810 /* Send interrupt_sequence to remote target. */
5811 send_interrupt_sequence ();
74531fed
PA
5812}
5813
de979965
PA
5814/* Non-stop version of target_interrupt. Uses `vCtrlC' to interrupt
5815 the remote target. It is undefined which thread of which process
e42de8c7
PA
5816 reports the interrupt. Throws an error if the packet is not
5817 supported by the server. */
de979965 5818
e42de8c7 5819static void
de979965
PA
5820remote_interrupt_ns (void)
5821{
5822 struct remote_state *rs = get_remote_state ();
5823 char *p = rs->buf;
5824 char *endp = rs->buf + get_remote_packet_size ();
5825
5826 xsnprintf (p, endp - p, "vCtrlC");
5827
5828 /* In non-stop, we get an immediate OK reply. The stop reply will
5829 come in asynchronously by notification. */
5830 putpkt (rs->buf);
5831 getpkt (&rs->buf, &rs->buf_size, 0);
5832
5833 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vCtrlC]))
5834 {
5835 case PACKET_OK:
5836 break;
5837 case PACKET_UNKNOWN:
e42de8c7 5838 error (_("No support for interrupting the remote target."));
de979965
PA
5839 case PACKET_ERROR:
5840 error (_("Interrupting target failed: %s"), rs->buf);
5841 }
de979965
PA
5842}
5843
bfedc46a 5844/* Implement the to_stop function for the remote targets. */
74531fed 5845
c906108c 5846static void
1eab8a48 5847remote_stop (struct target_ops *self, ptid_t ptid)
c906108c 5848{
7a292a7a 5849 if (remote_debug)
0f71a2f6 5850 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 5851
6efcd9a8 5852 if (target_is_non_stop_p ())
74531fed 5853 remote_stop_ns (ptid);
c906108c 5854 else
bfedc46a
PA
5855 {
5856 /* We don't currently have a way to transparently pause the
5857 remote target in all-stop mode. Interrupt it instead. */
de979965 5858 remote_interrupt_as ();
bfedc46a
PA
5859 }
5860}
5861
5862/* Implement the to_interrupt function for the remote targets. */
5863
5864static void
5865remote_interrupt (struct target_ops *self, ptid_t ptid)
5866{
e42de8c7
PA
5867 struct remote_state *rs = get_remote_state ();
5868
bfedc46a
PA
5869 if (remote_debug)
5870 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
5871
e42de8c7
PA
5872 if (target_is_non_stop_p ())
5873 remote_interrupt_ns ();
bfedc46a 5874 else
e42de8c7 5875 remote_interrupt_as ();
c906108c
SS
5876}
5877
93692b58
PA
5878/* Implement the to_pass_ctrlc function for the remote targets. */
5879
5880static void
5881remote_pass_ctrlc (struct target_ops *self)
5882{
5883 struct remote_state *rs = get_remote_state ();
5884
5885 if (remote_debug)
5886 fprintf_unfiltered (gdb_stdlog, "remote_pass_ctrlc called\n");
5887
5888 /* If we're starting up, we're not fully synced yet. Quit
5889 immediately. */
5890 if (rs->starting_up)
5891 quit ();
5892 /* If ^C has already been sent once, offer to disconnect. */
5893 else if (rs->ctrlc_pending_p)
5894 interrupt_query ();
5895 else
5896 target_interrupt (inferior_ptid);
5897}
5898
c906108c
SS
5899/* Ask the user what to do when an interrupt is received. */
5900
5901static void
fba45db2 5902interrupt_query (void)
c906108c 5903{
abc56d60
PA
5904 struct remote_state *rs = get_remote_state ();
5905 struct cleanup *old_chain;
5906
5907 old_chain = make_cleanup_restore_target_terminal ();
c906108c
SS
5908 target_terminal_ours ();
5909
abc56d60 5910 if (rs->waiting_for_stop_reply && rs->ctrlc_pending_p)
74531fed 5911 {
abc56d60
PA
5912 if (query (_("The target is not responding to interrupt requests.\n"
5913 "Stop debugging it? ")))
74531fed 5914 {
78a095c3 5915 remote_unpush_target ();
abc56d60 5916 throw_error (TARGET_CLOSE_ERROR, _("Disconnected from target."));
74531fed
PA
5917 }
5918 }
abc56d60
PA
5919 else
5920 {
5921 if (query (_("Interrupted while waiting for the program.\n"
5922 "Give up waiting? ")))
5923 quit ();
5924 }
c906108c 5925
abc56d60 5926 do_cleanups (old_chain);
c906108c
SS
5927}
5928
6426a772
JM
5929/* Enable/disable target terminal ownership. Most targets can use
5930 terminal groups to control terminal ownership. Remote targets are
5931 different in that explicit transfer of ownership to/from GDB/target
23860348 5932 is required. */
6426a772
JM
5933
5934static void
d2f640d4 5935remote_terminal_inferior (struct target_ops *self)
6426a772 5936{
c6ebd6cf 5937 if (!target_async_permitted)
75c99385
PA
5938 /* Nothing to do. */
5939 return;
5940
d9d2d8b6
PA
5941 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5942 idempotent. The event-loop GDB talking to an asynchronous target
5943 with a synchronous command calls this function from both
5944 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5945 transfer the terminal to the target when it shouldn't this guard
5946 can go away. */
6426a772
JM
5947 if (!remote_async_terminal_ours_p)
5948 return;
5949 delete_file_handler (input_fd);
5950 remote_async_terminal_ours_p = 0;
934b9bac 5951 async_initialize_sigint_signal_handler ();
6426a772
JM
5952 /* NOTE: At this point we could also register our selves as the
5953 recipient of all input. Any characters typed could then be
23860348 5954 passed on down to the target. */
6426a772
JM
5955}
5956
5957static void
e3594fd1 5958remote_terminal_ours (struct target_ops *self)
6426a772 5959{
c6ebd6cf 5960 if (!target_async_permitted)
75c99385
PA
5961 /* Nothing to do. */
5962 return;
5963
5964 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
5965 if (remote_async_terminal_ours_p)
5966 return;
934b9bac 5967 async_cleanup_sigint_signal_handler (NULL);
6426a772
JM
5968 add_file_handler (input_fd, stdin_event_handler, 0);
5969 remote_async_terminal_ours_p = 1;
5970}
5971
176a6961 5972static void
917317f4 5973remote_console_output (char *msg)
c906108c
SS
5974{
5975 char *p;
5976
c5aa993b 5977 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
5978 {
5979 char tb[2];
5980 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 5981
c906108c
SS
5982 tb[0] = c;
5983 tb[1] = 0;
43ff13b4 5984 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 5985 }
00db5b94
PA
5986 gdb_flush (gdb_stdtarg);
5987}
74531fed
PA
5988
5989typedef struct cached_reg
5990{
5991 int num;
5992 gdb_byte data[MAX_REGISTER_SIZE];
5993} cached_reg_t;
5994
5995DEF_VEC_O(cached_reg_t);
5996
722247f1 5997typedef struct stop_reply
74531fed 5998{
722247f1 5999 struct notif_event base;
74531fed 6000
722247f1 6001 /* The identifier of the thread about this event */
74531fed
PA
6002 ptid_t ptid;
6003
340e3c99 6004 /* The remote state this event is associated with. When the remote
bcc75809
YQ
6005 connection, represented by a remote_state object, is closed,
6006 all the associated stop_reply events should be released. */
6007 struct remote_state *rs;
6008
74531fed
PA
6009 struct target_waitstatus ws;
6010
15148d6a
PA
6011 /* Expedited registers. This makes remote debugging a bit more
6012 efficient for those targets that provide critical registers as
6013 part of their normal status mechanism (as another roundtrip to
6014 fetch them is avoided). */
74531fed
PA
6015 VEC(cached_reg_t) *regcache;
6016
f7e6eed5
PA
6017 enum target_stop_reason stop_reason;
6018
74531fed
PA
6019 CORE_ADDR watch_data_address;
6020
dc146f7c 6021 int core;
722247f1 6022} *stop_reply_p;
a744cf53 6023
722247f1
YQ
6024DECLARE_QUEUE_P (stop_reply_p);
6025DEFINE_QUEUE_P (stop_reply_p);
6026/* The list of already fetched and acknowledged stop events. This
6027 queue is used for notification Stop, and other notifications
6028 don't need queue for their events, because the notification events
6029 of Stop can't be consumed immediately, so that events should be
6030 queued first, and be consumed by remote_wait_{ns,as} one per
6031 time. Other notifications can consume their events immediately,
6032 so queue is not needed for them. */
6033static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
6034
6035static void
6036stop_reply_xfree (struct stop_reply *r)
6037{
f48ff2a7 6038 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
6039}
6040
221e1a37
PA
6041/* Return the length of the stop reply queue. */
6042
6043static int
6044stop_reply_queue_length (void)
6045{
6046 return QUEUE_length (stop_reply_p, stop_reply_queue);
6047}
6048
722247f1
YQ
6049static void
6050remote_notif_stop_parse (struct notif_client *self, char *buf,
6051 struct notif_event *event)
6052{
6053 remote_parse_stop_reply (buf, (struct stop_reply *) event);
6054}
6055
6056static void
6057remote_notif_stop_ack (struct notif_client *self, char *buf,
6058 struct notif_event *event)
6059{
6060 struct stop_reply *stop_reply = (struct stop_reply *) event;
6061
6062 /* acknowledge */
6063 putpkt ((char *) self->ack_command);
6064
6065 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
6066 /* We got an unknown stop reply. */
6067 error (_("Unknown stop reply"));
6068
6069 push_stop_reply (stop_reply);
6070}
6071
6072static int
6073remote_notif_stop_can_get_pending_events (struct notif_client *self)
6074{
6075 /* We can't get pending events in remote_notif_process for
6076 notification stop, and we have to do this in remote_wait_ns
6077 instead. If we fetch all queued events from stub, remote stub
6078 may exit and we have no chance to process them back in
6079 remote_wait_ns. */
6080 mark_async_event_handler (remote_async_inferior_event_token);
6081 return 0;
6082}
6083
6084static void
6085stop_reply_dtr (struct notif_event *event)
6086{
6087 struct stop_reply *r = (struct stop_reply *) event;
6088
6089 VEC_free (cached_reg_t, r->regcache);
6090}
6091
6092static struct notif_event *
6093remote_notif_stop_alloc_reply (void)
6094{
8d749320
SM
6095 /* We cast to a pointer to the "base class". */
6096 struct notif_event *r = (struct notif_event *) XNEW (struct stop_reply);
722247f1
YQ
6097
6098 r->dtr = stop_reply_dtr;
6099
6100 return r;
6101}
6102
6103/* A client of notification Stop. */
6104
6105struct notif_client notif_client_stop =
6106{
6107 "Stop",
6108 "vStopped",
6109 remote_notif_stop_parse,
6110 remote_notif_stop_ack,
6111 remote_notif_stop_can_get_pending_events,
6112 remote_notif_stop_alloc_reply,
f48ff2a7 6113 REMOTE_NOTIF_STOP,
722247f1
YQ
6114};
6115
6116/* A parameter to pass data in and out. */
6117
6118struct queue_iter_param
6119{
6120 void *input;
6121 struct stop_reply *output;
6122};
6123
cbb8991c
DB
6124/* Determine if THREAD is a pending fork parent thread. ARG contains
6125 the pid of the process that owns the threads we want to check, or
6126 -1 if we want to check all threads. */
6127
6128static int
6129is_pending_fork_parent (struct target_waitstatus *ws, int event_pid,
6130 ptid_t thread_ptid)
6131{
6132 if (ws->kind == TARGET_WAITKIND_FORKED
6133 || ws->kind == TARGET_WAITKIND_VFORKED)
6134 {
6135 if (event_pid == -1 || event_pid == ptid_get_pid (thread_ptid))
6136 return 1;
6137 }
6138
6139 return 0;
6140}
6141
6142/* Check whether EVENT is a fork event, and if it is, remove the
6143 fork child from the context list passed in DATA. */
6144
6145static int
6146remove_child_of_pending_fork (QUEUE (stop_reply_p) *q,
6147 QUEUE_ITER (stop_reply_p) *iter,
6148 stop_reply_p event,
6149 void *data)
6150{
19ba03f4
SM
6151 struct queue_iter_param *param = (struct queue_iter_param *) data;
6152 struct threads_listing_context *context
6153 = (struct threads_listing_context *) param->input;
cbb8991c
DB
6154
6155 if (event->ws.kind == TARGET_WAITKIND_FORKED
65706a29
PA
6156 || event->ws.kind == TARGET_WAITKIND_VFORKED
6157 || event->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
6158 threads_listing_context_remove (&event->ws, context);
cbb8991c
DB
6159
6160 return 1;
6161}
6162
6163/* If CONTEXT contains any fork child threads that have not been
6164 reported yet, remove them from the CONTEXT list. If such a
6165 thread exists it is because we are stopped at a fork catchpoint
6166 and have not yet called follow_fork, which will set up the
6167 host-side data structures for the new process. */
6168
6169static void
6170remove_new_fork_children (struct threads_listing_context *context)
6171{
6172 struct thread_info * thread;
6173 int pid = -1;
6174 struct notif_client *notif = &notif_client_stop;
6175 struct queue_iter_param param;
6176
6177 /* For any threads stopped at a fork event, remove the corresponding
6178 fork child threads from the CONTEXT list. */
6179 ALL_NON_EXITED_THREADS (thread)
6180 {
4041ed77
DB
6181 struct target_waitstatus *ws;
6182
6183 if (thread->suspend.waitstatus_pending_p)
6184 ws = &thread->suspend.waitstatus;
6185 else
6186 ws = &thread->pending_follow;
cbb8991c
DB
6187
6188 if (is_pending_fork_parent (ws, pid, thread->ptid))
6189 {
6190 threads_listing_context_remove (ws, context);
6191 }
6192 }
6193
6194 /* Check for any pending fork events (not reported or processed yet)
6195 in process PID and remove those fork child threads from the
6196 CONTEXT list as well. */
6197 remote_notif_get_pending_events (notif);
6198 param.input = context;
6199 param.output = NULL;
6200 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6201 remove_child_of_pending_fork, &param);
6202}
6203
f48ff2a7
YQ
6204/* Remove stop replies in the queue if its pid is equal to the given
6205 inferior's pid. */
722247f1
YQ
6206
6207static int
f48ff2a7
YQ
6208remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
6209 QUEUE_ITER (stop_reply_p) *iter,
6210 stop_reply_p event,
6211 void *data)
722247f1 6212{
19ba03f4
SM
6213 struct queue_iter_param *param = (struct queue_iter_param *) data;
6214 struct inferior *inf = (struct inferior *) param->input;
722247f1 6215
f48ff2a7 6216 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
6217 {
6218 stop_reply_xfree (event);
6219 QUEUE_remove_elem (stop_reply_p, q, iter);
6220 }
6221
6222 return 1;
6223}
6224
f48ff2a7 6225/* Discard all pending stop replies of inferior INF. */
c906108c 6226
74531fed 6227static void
5f4cf0bb 6228discard_pending_stop_replies (struct inferior *inf)
c906108c 6229{
722247f1 6230 struct queue_iter_param param;
f48ff2a7
YQ
6231 struct stop_reply *reply;
6232 struct remote_state *rs = get_remote_state ();
6233 struct remote_notif_state *rns = rs->notif_state;
6234
6235 /* This function can be notified when an inferior exists. When the
6236 target is not remote, the notification state is NULL. */
6237 if (rs->remote_desc == NULL)
6238 return;
6239
6240 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 6241
74531fed 6242 /* Discard the in-flight notification. */
f48ff2a7 6243 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 6244 {
722247f1 6245 stop_reply_xfree (reply);
f48ff2a7 6246 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 6247 }
c906108c 6248
722247f1
YQ
6249 param.input = inf;
6250 param.output = NULL;
74531fed
PA
6251 /* Discard the stop replies we have already pulled with
6252 vStopped. */
722247f1 6253 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
6254 remove_stop_reply_for_inferior, &param);
6255}
6256
bcc75809
YQ
6257/* If its remote state is equal to the given remote state,
6258 remove EVENT from the stop reply queue. */
6259
6260static int
6261remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
6262 QUEUE_ITER (stop_reply_p) *iter,
6263 stop_reply_p event,
6264 void *data)
6265{
19ba03f4
SM
6266 struct queue_iter_param *param = (struct queue_iter_param *) data;
6267 struct remote_state *rs = (struct remote_state *) param->input;
bcc75809
YQ
6268
6269 if (event->rs == rs)
6270 {
6271 stop_reply_xfree (event);
6272 QUEUE_remove_elem (stop_reply_p, q, iter);
6273 }
6274
6275 return 1;
6276}
6277
6278/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
6279
6280static void
bcc75809 6281discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
6282{
6283 struct queue_iter_param param;
6284
bcc75809 6285 param.input = rs;
f48ff2a7
YQ
6286 param.output = NULL;
6287 /* Discard the stop replies we have already pulled with
6288 vStopped. */
6289 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 6290 remove_stop_reply_of_remote_state, &param);
722247f1 6291}
74531fed 6292
722247f1
YQ
6293/* A parameter to pass data in and out. */
6294
6295static int
6296remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
6297 QUEUE_ITER (stop_reply_p) *iter,
6298 stop_reply_p event,
6299 void *data)
6300{
19ba03f4
SM
6301 struct queue_iter_param *param = (struct queue_iter_param *) data;
6302 ptid_t *ptid = (ptid_t *) param->input;
722247f1
YQ
6303
6304 if (ptid_match (event->ptid, *ptid))
6305 {
6306 param->output = event;
6307 QUEUE_remove_elem (stop_reply_p, q, iter);
6308 return 0;
c8e38a49 6309 }
722247f1
YQ
6310
6311 return 1;
74531fed 6312}
43ff13b4 6313
722247f1
YQ
6314/* Remove the first reply in 'stop_reply_queue' which matches
6315 PTID. */
2e9f7625 6316
722247f1
YQ
6317static struct stop_reply *
6318remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 6319{
722247f1
YQ
6320 struct queue_iter_param param;
6321
6322 param.input = &ptid;
6323 param.output = NULL;
6324
6325 QUEUE_iterate (stop_reply_p, stop_reply_queue,
6326 remote_notif_remove_once_on_match, &param);
6327 if (notif_debug)
6328 fprintf_unfiltered (gdb_stdlog,
6329 "notif: discard queued event: 'Stop' in %s\n",
6330 target_pid_to_str (ptid));
a744cf53 6331
722247f1 6332 return param.output;
74531fed 6333}
75c99385 6334
74531fed
PA
6335/* Look for a queued stop reply belonging to PTID. If one is found,
6336 remove it from the queue, and return it. Returns NULL if none is
6337 found. If there are still queued events left to process, tell the
6338 event loop to get back to target_wait soon. */
e24a49d8 6339
74531fed
PA
6340static struct stop_reply *
6341queued_stop_reply (ptid_t ptid)
6342{
722247f1 6343 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 6344
722247f1 6345 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
6346 /* There's still at least an event left. */
6347 mark_async_event_handler (remote_async_inferior_event_token);
6348
722247f1 6349 return r;
74531fed
PA
6350}
6351
6352/* Push a fully parsed stop reply in the stop reply queue. Since we
6353 know that we now have at least one queued event left to pass to the
6354 core side, tell the event loop to get back to target_wait soon. */
6355
6356static void
6357push_stop_reply (struct stop_reply *new_event)
6358{
722247f1 6359 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 6360
722247f1
YQ
6361 if (notif_debug)
6362 fprintf_unfiltered (gdb_stdlog,
6363 "notif: push 'Stop' %s to queue %d\n",
6364 target_pid_to_str (new_event->ptid),
6365 QUEUE_length (stop_reply_p,
6366 stop_reply_queue));
74531fed
PA
6367
6368 mark_async_event_handler (remote_async_inferior_event_token);
6369}
6370
722247f1
YQ
6371static int
6372stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
6373 QUEUE_ITER (stop_reply_p) *iter,
6374 struct stop_reply *event,
6375 void *data)
6376{
19ba03f4 6377 ptid_t *ptid = (ptid_t *) data;
722247f1
YQ
6378
6379 return !(ptid_equal (*ptid, event->ptid)
6380 && event->ws.kind == TARGET_WAITKIND_STOPPED);
6381}
6382
74531fed
PA
6383/* Returns true if we have a stop reply for PTID. */
6384
6385static int
6386peek_stop_reply (ptid_t ptid)
6387{
722247f1
YQ
6388 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
6389 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
6390}
6391
26d56a93
SL
6392/* Helper for remote_parse_stop_reply. Return nonzero if the substring
6393 starting with P and ending with PEND matches PREFIX. */
6394
6395static int
6396strprefix (const char *p, const char *pend, const char *prefix)
6397{
6398 for ( ; p < pend; p++, prefix++)
6399 if (*p != *prefix)
6400 return 0;
6401 return *prefix == '\0';
6402}
6403
74531fed
PA
6404/* Parse the stop reply in BUF. Either the function succeeds, and the
6405 result is stored in EVENT, or throws an error. */
6406
6407static void
6408remote_parse_stop_reply (char *buf, struct stop_reply *event)
6409{
6410 struct remote_arch_state *rsa = get_remote_arch_state ();
6411 ULONGEST addr;
6412 char *p;
94585166 6413 int skipregs = 0;
74531fed
PA
6414
6415 event->ptid = null_ptid;
bcc75809 6416 event->rs = get_remote_state ();
74531fed
PA
6417 event->ws.kind = TARGET_WAITKIND_IGNORE;
6418 event->ws.value.integer = 0;
f7e6eed5 6419 event->stop_reason = TARGET_STOPPED_BY_NO_REASON;
74531fed 6420 event->regcache = NULL;
dc146f7c 6421 event->core = -1;
74531fed
PA
6422
6423 switch (buf[0])
6424 {
6425 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
6426 /* Expedited reply, containing Signal, {regno, reg} repeat. */
6427 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
6428 ss = signal number
6429 n... = register number
6430 r... = register contents
6431 */
6432
6433 p = &buf[3]; /* after Txx */
6434 while (*p)
6435 {
6436 char *p1;
cea39f65 6437 int fieldsize;
43ff13b4 6438
1f10ba14
PA
6439 p1 = strchr (p, ':');
6440 if (p1 == NULL)
6441 error (_("Malformed packet(a) (missing colon): %s\n\
6442Packet: '%s'\n"),
6443 p, buf);
6444 if (p == p1)
6445 error (_("Malformed packet(a) (missing register number): %s\n\
6446Packet: '%s'\n"),
6447 p, buf);
3c3bea1c 6448
1f10ba14
PA
6449 /* Some "registers" are actually extended stop information.
6450 Note if you're adding a new entry here: GDB 7.9 and
6451 earlier assume that all register "numbers" that start
6452 with an hex digit are real register numbers. Make sure
6453 the server only sends such a packet if it knows the
6454 client understands it. */
c8e38a49 6455
26d56a93 6456 if (strprefix (p, p1, "thread"))
1f10ba14 6457 event->ptid = read_ptid (++p1, &p);
82075af2
JS
6458 else if (strprefix (p, p1, "syscall_entry"))
6459 {
6460 ULONGEST sysno;
6461
6462 event->ws.kind = TARGET_WAITKIND_SYSCALL_ENTRY;
6463 p = unpack_varlen_hex (++p1, &sysno);
6464 event->ws.value.syscall_number = (int) sysno;
6465 }
6466 else if (strprefix (p, p1, "syscall_return"))
6467 {
6468 ULONGEST sysno;
6469
6470 event->ws.kind = TARGET_WAITKIND_SYSCALL_RETURN;
6471 p = unpack_varlen_hex (++p1, &sysno);
6472 event->ws.value.syscall_number = (int) sysno;
6473 }
26d56a93
SL
6474 else if (strprefix (p, p1, "watch")
6475 || strprefix (p, p1, "rwatch")
6476 || strprefix (p, p1, "awatch"))
cea39f65 6477 {
f7e6eed5 6478 event->stop_reason = TARGET_STOPPED_BY_WATCHPOINT;
1f10ba14
PA
6479 p = unpack_varlen_hex (++p1, &addr);
6480 event->watch_data_address = (CORE_ADDR) addr;
cea39f65 6481 }
26d56a93 6482 else if (strprefix (p, p1, "swbreak"))
f7e6eed5
PA
6483 {
6484 event->stop_reason = TARGET_STOPPED_BY_SW_BREAKPOINT;
6485
6486 /* Make sure the stub doesn't forget to indicate support
6487 with qSupported. */
6488 if (packet_support (PACKET_swbreak_feature) != PACKET_ENABLE)
6489 error (_("Unexpected swbreak stop reason"));
6490
6491 /* The value part is documented as "must be empty",
6492 though we ignore it, in case we ever decide to make
6493 use of it in a backward compatible way. */
8424cc97 6494 p = strchrnul (p1 + 1, ';');
f7e6eed5 6495 }
26d56a93 6496 else if (strprefix (p, p1, "hwbreak"))
f7e6eed5
PA
6497 {
6498 event->stop_reason = TARGET_STOPPED_BY_HW_BREAKPOINT;
6499
6500 /* Make sure the stub doesn't forget to indicate support
6501 with qSupported. */
6502 if (packet_support (PACKET_hwbreak_feature) != PACKET_ENABLE)
6503 error (_("Unexpected hwbreak stop reason"));
6504
6505 /* See above. */
8424cc97 6506 p = strchrnul (p1 + 1, ';');
f7e6eed5 6507 }
26d56a93 6508 else if (strprefix (p, p1, "library"))
cea39f65 6509 {
1f10ba14 6510 event->ws.kind = TARGET_WAITKIND_LOADED;
8424cc97 6511 p = strchrnul (p1 + 1, ';');
1f10ba14 6512 }
26d56a93 6513 else if (strprefix (p, p1, "replaylog"))
1f10ba14
PA
6514 {
6515 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
6516 /* p1 will indicate "begin" or "end", but it makes
6517 no difference for now, so ignore it. */
8424cc97 6518 p = strchrnul (p1 + 1, ';');
1f10ba14 6519 }
26d56a93 6520 else if (strprefix (p, p1, "core"))
1f10ba14
PA
6521 {
6522 ULONGEST c;
a744cf53 6523
1f10ba14
PA
6524 p = unpack_varlen_hex (++p1, &c);
6525 event->core = c;
cea39f65 6526 }
26d56a93 6527 else if (strprefix (p, p1, "fork"))
de0d863e
DB
6528 {
6529 event->ws.value.related_pid = read_ptid (++p1, &p);
6530 event->ws.kind = TARGET_WAITKIND_FORKED;
6531 }
26d56a93 6532 else if (strprefix (p, p1, "vfork"))
c269dbdb
DB
6533 {
6534 event->ws.value.related_pid = read_ptid (++p1, &p);
6535 event->ws.kind = TARGET_WAITKIND_VFORKED;
6536 }
26d56a93 6537 else if (strprefix (p, p1, "vforkdone"))
c269dbdb
DB
6538 {
6539 event->ws.kind = TARGET_WAITKIND_VFORK_DONE;
8424cc97 6540 p = strchrnul (p1 + 1, ';');
c269dbdb 6541 }
6ab24463 6542 else if (strprefix (p, p1, "exec"))
94585166
DB
6543 {
6544 ULONGEST ignored;
6545 char pathname[PATH_MAX];
6546 int pathlen;
6547
6548 /* Determine the length of the execd pathname. */
6549 p = unpack_varlen_hex (++p1, &ignored);
6550 pathlen = (p - p1) / 2;
6551
6552 /* Save the pathname for event reporting and for
6553 the next run command. */
6554 hex2bin (p1, (gdb_byte *) pathname, pathlen);
6555 pathname[pathlen] = '\0';
6556
6557 /* This is freed during event handling. */
6558 event->ws.value.execd_pathname = xstrdup (pathname);
6559 event->ws.kind = TARGET_WAITKIND_EXECD;
6560
6561 /* Skip the registers included in this packet, since
6562 they may be for an architecture different from the
6563 one used by the original program. */
6564 skipregs = 1;
6565 }
65706a29
PA
6566 else if (strprefix (p, p1, "create"))
6567 {
6568 event->ws.kind = TARGET_WAITKIND_THREAD_CREATED;
8424cc97 6569 p = strchrnul (p1 + 1, ';');
65706a29 6570 }
cea39f65
MS
6571 else
6572 {
1f10ba14
PA
6573 ULONGEST pnum;
6574 char *p_temp;
6575
94585166
DB
6576 if (skipregs)
6577 {
8424cc97 6578 p = strchrnul (p1 + 1, ';');
94585166
DB
6579 p++;
6580 continue;
6581 }
6582
1f10ba14
PA
6583 /* Maybe a real ``P'' register number. */
6584 p_temp = unpack_varlen_hex (p, &pnum);
6585 /* If the first invalid character is the colon, we got a
6586 register number. Otherwise, it's an unknown stop
6587 reason. */
6588 if (p_temp == p1)
6589 {
6590 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
6591 cached_reg_t cached_reg;
43ff13b4 6592
1f10ba14
PA
6593 if (reg == NULL)
6594 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 6595Packet: '%s'\n"),
1f10ba14 6596 hex_string (pnum), p, buf);
c8e38a49 6597
1f10ba14 6598 cached_reg.num = reg->regnum;
4100683b 6599
1f10ba14
PA
6600 p = p1 + 1;
6601 fieldsize = hex2bin (p, cached_reg.data,
6602 register_size (target_gdbarch (),
6603 reg->regnum));
6604 p += 2 * fieldsize;
6605 if (fieldsize < register_size (target_gdbarch (),
6606 reg->regnum))
6607 warning (_("Remote reply is too short: %s"), buf);
74531fed 6608
1f10ba14
PA
6609 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
6610 }
6611 else
6612 {
6613 /* Not a number. Silently skip unknown optional
6614 info. */
8424cc97 6615 p = strchrnul (p1 + 1, ';');
1f10ba14 6616 }
cea39f65 6617 }
c8e38a49 6618
cea39f65
MS
6619 if (*p != ';')
6620 error (_("Remote register badly formatted: %s\nhere: %s"),
6621 buf, p);
6622 ++p;
6623 }
5b5596ff
PA
6624
6625 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
6626 break;
6627
c8e38a49
PA
6628 /* fall through */
6629 case 'S': /* Old style status, just signal only. */
3a09da41
PA
6630 {
6631 int sig;
6632
6633 event->ws.kind = TARGET_WAITKIND_STOPPED;
6634 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
6635 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
6636 event->ws.value.sig = (enum gdb_signal) sig;
6637 else
6638 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
6639 }
c8e38a49 6640 break;
65706a29
PA
6641 case 'w': /* Thread exited. */
6642 {
6643 char *p;
6644 ULONGEST value;
6645
6646 event->ws.kind = TARGET_WAITKIND_THREAD_EXITED;
6647 p = unpack_varlen_hex (&buf[1], &value);
6648 event->ws.value.integer = value;
6649 if (*p != ';')
6650 error (_("stop reply packet badly formatted: %s"), buf);
974eac9d 6651 event->ptid = read_ptid (++p, NULL);
65706a29
PA
6652 break;
6653 }
c8e38a49
PA
6654 case 'W': /* Target exited. */
6655 case 'X':
6656 {
6657 char *p;
6658 int pid;
6659 ULONGEST value;
82f73884 6660
c8e38a49
PA
6661 /* GDB used to accept only 2 hex chars here. Stubs should
6662 only send more if they detect GDB supports multi-process
6663 support. */
6664 p = unpack_varlen_hex (&buf[1], &value);
82f73884 6665
c8e38a49
PA
6666 if (buf[0] == 'W')
6667 {
6668 /* The remote process exited. */
74531fed
PA
6669 event->ws.kind = TARGET_WAITKIND_EXITED;
6670 event->ws.value.integer = value;
c8e38a49
PA
6671 }
6672 else
6673 {
6674 /* The remote process exited with a signal. */
74531fed 6675 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
6676 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
6677 event->ws.value.sig = (enum gdb_signal) value;
6678 else
6679 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 6680 }
82f73884 6681
c8e38a49
PA
6682 /* If no process is specified, assume inferior_ptid. */
6683 pid = ptid_get_pid (inferior_ptid);
6684 if (*p == '\0')
6685 ;
6686 else if (*p == ';')
6687 {
6688 p++;
6689
0b24eb2d 6690 if (*p == '\0')
82f73884 6691 ;
61012eef 6692 else if (startswith (p, "process:"))
82f73884 6693 {
c8e38a49 6694 ULONGEST upid;
a744cf53 6695
c8e38a49
PA
6696 p += sizeof ("process:") - 1;
6697 unpack_varlen_hex (p, &upid);
6698 pid = upid;
82f73884
PA
6699 }
6700 else
6701 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 6702 }
c8e38a49
PA
6703 else
6704 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
6705 event->ptid = pid_to_ptid (pid);
6706 }
6707 break;
f2faf941
PA
6708 case 'N':
6709 event->ws.kind = TARGET_WAITKIND_NO_RESUMED;
6710 event->ptid = minus_one_ptid;
6711 break;
74531fed
PA
6712 }
6713
6efcd9a8 6714 if (target_is_non_stop_p () && ptid_equal (event->ptid, null_ptid))
74531fed
PA
6715 error (_("No process or thread specified in stop reply: %s"), buf);
6716}
6717
722247f1
YQ
6718/* When the stub wants to tell GDB about a new notification reply, it
6719 sends a notification (%Stop, for example). Those can come it at
6720 any time, hence, we have to make sure that any pending
6721 putpkt/getpkt sequence we're making is finished, before querying
6722 the stub for more events with the corresponding ack command
6723 (vStopped, for example). E.g., if we started a vStopped sequence
6724 immediately upon receiving the notification, something like this
6725 could happen:
74531fed
PA
6726
6727 1.1) --> Hg 1
6728 1.2) <-- OK
6729 1.3) --> g
6730 1.4) <-- %Stop
6731 1.5) --> vStopped
6732 1.6) <-- (registers reply to step #1.3)
6733
6734 Obviously, the reply in step #1.6 would be unexpected to a vStopped
6735 query.
6736
796cb314 6737 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
6738 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
6739 doing whatever we were doing:
6740
6741 2.1) --> Hg 1
6742 2.2) <-- OK
6743 2.3) --> g
6744 2.4) <-- %Stop
6745 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
6746 2.5) <-- (registers reply to step #2.3)
6747
6748 Eventualy after step #2.5, we return to the event loop, which
6749 notices there's an event on the
6750 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
6751 associated callback --- the function below. At this point, we're
6752 always safe to start a vStopped sequence. :
6753
6754 2.6) --> vStopped
6755 2.7) <-- T05 thread:2
6756 2.8) --> vStopped
6757 2.9) --> OK
6758*/
6759
722247f1
YQ
6760void
6761remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
6762{
6763 struct remote_state *rs = get_remote_state ();
74531fed 6764
f48ff2a7 6765 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 6766 {
722247f1
YQ
6767 if (notif_debug)
6768 fprintf_unfiltered (gdb_stdlog,
6769 "notif: process: '%s' ack pending event\n",
6770 nc->name);
74531fed 6771
722247f1 6772 /* acknowledge */
f48ff2a7
YQ
6773 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
6774 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
6775
6776 while (1)
6777 {
6778 getpkt (&rs->buf, &rs->buf_size, 0);
6779 if (strcmp (rs->buf, "OK") == 0)
6780 break;
6781 else
722247f1 6782 remote_notif_ack (nc, rs->buf);
74531fed
PA
6783 }
6784 }
722247f1
YQ
6785 else
6786 {
6787 if (notif_debug)
6788 fprintf_unfiltered (gdb_stdlog,
6789 "notif: process: '%s' no pending reply\n",
6790 nc->name);
6791 }
74531fed
PA
6792}
6793
74531fed
PA
6794/* Called when it is decided that STOP_REPLY holds the info of the
6795 event that is to be returned to the core. This function always
6796 destroys STOP_REPLY. */
6797
6798static ptid_t
6799process_stop_reply (struct stop_reply *stop_reply,
6800 struct target_waitstatus *status)
6801{
6802 ptid_t ptid;
6803
6804 *status = stop_reply->ws;
6805 ptid = stop_reply->ptid;
6806
6807 /* If no thread/process was reported by the stub, assume the current
6808 inferior. */
6809 if (ptid_equal (ptid, null_ptid))
6810 ptid = inferior_ptid;
6811
5f3563ea 6812 if (status->kind != TARGET_WAITKIND_EXITED
f2faf941
PA
6813 && status->kind != TARGET_WAITKIND_SIGNALLED
6814 && status->kind != TARGET_WAITKIND_NO_RESUMED)
74531fed 6815 {
799a2abe 6816 struct private_thread_info *remote_thr;
ee154bee 6817
5f3563ea
PA
6818 /* Expedited registers. */
6819 if (stop_reply->regcache)
6820 {
217f1f79 6821 struct regcache *regcache
f5656ead 6822 = get_thread_arch_regcache (ptid, target_gdbarch ());
5f3563ea
PA
6823 cached_reg_t *reg;
6824 int ix;
6825
6826 for (ix = 0;
6827 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
6828 ix++)
217f1f79 6829 regcache_raw_supply (regcache, reg->num, reg->data);
5f3563ea
PA
6830 VEC_free (cached_reg_t, stop_reply->regcache);
6831 }
74531fed 6832
1941c569 6833 remote_notice_new_inferior (ptid, 0);
799a2abe
PA
6834 remote_thr = demand_private_info (ptid);
6835 remote_thr->core = stop_reply->core;
6836 remote_thr->stop_reason = stop_reply->stop_reason;
6837 remote_thr->watch_data_address = stop_reply->watch_data_address;
74531fed
PA
6838 }
6839
74531fed
PA
6840 stop_reply_xfree (stop_reply);
6841 return ptid;
6842}
6843
6844/* The non-stop mode version of target_wait. */
6845
6846static ptid_t
47608cb1 6847remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
6848{
6849 struct remote_state *rs = get_remote_state ();
74531fed
PA
6850 struct stop_reply *stop_reply;
6851 int ret;
fee9eda9 6852 int is_notif = 0;
74531fed
PA
6853
6854 /* If in non-stop mode, get out of getpkt even if a
6855 notification is received. */
6856
6857 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 6858 0 /* forever */, &is_notif);
74531fed
PA
6859 while (1)
6860 {
fee9eda9 6861 if (ret != -1 && !is_notif)
74531fed
PA
6862 switch (rs->buf[0])
6863 {
6864 case 'E': /* Error of some sort. */
6865 /* We're out of sync with the target now. Did it continue
6866 or not? We can't tell which thread it was in non-stop,
6867 so just ignore this. */
6868 warning (_("Remote failure reply: %s"), rs->buf);
6869 break;
6870 case 'O': /* Console output. */
6871 remote_console_output (rs->buf + 1);
6872 break;
6873 default:
6874 warning (_("Invalid remote reply: %s"), rs->buf);
6875 break;
6876 }
6877
6878 /* Acknowledge a pending stop reply that may have arrived in the
6879 mean time. */
f48ff2a7 6880 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 6881 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
6882
6883 /* If indeed we noticed a stop reply, we're done. */
6884 stop_reply = queued_stop_reply (ptid);
6885 if (stop_reply != NULL)
6886 return process_stop_reply (stop_reply, status);
6887
47608cb1 6888 /* Still no event. If we're just polling for an event, then
74531fed 6889 return to the event loop. */
47608cb1 6890 if (options & TARGET_WNOHANG)
74531fed
PA
6891 {
6892 status->kind = TARGET_WAITKIND_IGNORE;
6893 return minus_one_ptid;
6894 }
6895
47608cb1 6896 /* Otherwise do a blocking wait. */
74531fed 6897 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 6898 1 /* forever */, &is_notif);
74531fed
PA
6899 }
6900}
6901
6902/* Wait until the remote machine stops, then return, storing status in
6903 STATUS just as `wait' would. */
6904
6905static ptid_t
47608cb1 6906remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
6907{
6908 struct remote_state *rs = get_remote_state ();
74531fed 6909 ptid_t event_ptid = null_ptid;
cea39f65 6910 char *buf;
74531fed
PA
6911 struct stop_reply *stop_reply;
6912
47608cb1
PA
6913 again:
6914
74531fed
PA
6915 status->kind = TARGET_WAITKIND_IGNORE;
6916 status->value.integer = 0;
6917
6918 stop_reply = queued_stop_reply (ptid);
6919 if (stop_reply != NULL)
6920 return process_stop_reply (stop_reply, status);
6921
6922 if (rs->cached_wait_status)
6923 /* Use the cached wait status, but only once. */
6924 rs->cached_wait_status = 0;
6925 else
6926 {
6927 int ret;
722247f1 6928 int is_notif;
567420d1
PA
6929 int forever = ((options & TARGET_WNOHANG) == 0
6930 && wait_forever_enabled_p);
6931
6932 if (!rs->waiting_for_stop_reply)
6933 {
6934 status->kind = TARGET_WAITKIND_NO_RESUMED;
6935 return minus_one_ptid;
6936 }
74531fed
PA
6937
6938 if (!target_is_async_p ())
6939 {
934b9bac 6940 ofunc = signal (SIGINT, sync_remote_interrupt);
74531fed
PA
6941 /* If the user hit C-c before this packet, or between packets,
6942 pretend that it was hit right here. */
522002f9 6943 if (check_quit_flag ())
abf009ef 6944 sync_remote_interrupt (SIGINT);
74531fed
PA
6945 }
6946
6947 /* FIXME: cagney/1999-09-27: If we're in async mode we should
6948 _never_ wait for ever -> test on target_is_async_p().
6949 However, before we do that we need to ensure that the caller
6950 knows how to take the target into/out of async mode. */
722247f1 6951 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
567420d1 6952 forever, &is_notif);
722247f1 6953
5e1b953b
SDJ
6954 if (!target_is_async_p ())
6955 signal (SIGINT, ofunc);
6956
722247f1
YQ
6957 /* GDB gets a notification. Return to core as this event is
6958 not interesting. */
6959 if (ret != -1 && is_notif)
6960 return minus_one_ptid;
567420d1
PA
6961
6962 if (ret == -1 && (options & TARGET_WNOHANG) != 0)
6963 return minus_one_ptid;
74531fed
PA
6964 }
6965
6966 buf = rs->buf;
6967
3a29589a
DJ
6968 /* Assume that the target has acknowledged Ctrl-C unless we receive
6969 an 'F' or 'O' packet. */
6970 if (buf[0] != 'F' && buf[0] != 'O')
6971 rs->ctrlc_pending_p = 0;
6972
74531fed
PA
6973 switch (buf[0])
6974 {
6975 case 'E': /* Error of some sort. */
6976 /* We're out of sync with the target now. Did it continue or
6977 not? Not is more likely, so report a stop. */
29090fb6
LM
6978 rs->waiting_for_stop_reply = 0;
6979
74531fed
PA
6980 warning (_("Remote failure reply: %s"), buf);
6981 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 6982 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
6983 break;
6984 case 'F': /* File-I/O request. */
e42e5352
YQ
6985 /* GDB may access the inferior memory while handling the File-I/O
6986 request, but we don't want GDB accessing memory while waiting
6987 for a stop reply. See the comments in putpkt_binary. Set
6988 waiting_for_stop_reply to 0 temporarily. */
6989 rs->waiting_for_stop_reply = 0;
3a29589a
DJ
6990 remote_fileio_request (buf, rs->ctrlc_pending_p);
6991 rs->ctrlc_pending_p = 0;
e42e5352
YQ
6992 /* GDB handled the File-I/O request, and the target is running
6993 again. Keep waiting for events. */
6994 rs->waiting_for_stop_reply = 1;
74531fed 6995 break;
f2faf941 6996 case 'N': case 'T': case 'S': case 'X': case 'W':
74531fed 6997 {
29090fb6
LM
6998 struct stop_reply *stop_reply;
6999
7000 /* There is a stop reply to handle. */
7001 rs->waiting_for_stop_reply = 0;
7002
7003 stop_reply
722247f1
YQ
7004 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
7005 rs->buf);
74531fed 7006
74531fed 7007 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
7008 break;
7009 }
7010 case 'O': /* Console output. */
7011 remote_console_output (buf + 1);
c8e38a49
PA
7012 break;
7013 case '\0':
b73be471 7014 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
7015 {
7016 /* Zero length reply means that we tried 'S' or 'C' and the
7017 remote system doesn't support it. */
7018 target_terminal_ours_for_output ();
7019 printf_filtered
7020 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
7021 gdb_signal_to_name (rs->last_sent_signal));
7022 rs->last_sent_signal = GDB_SIGNAL_0;
c8e38a49
PA
7023 target_terminal_inferior ();
7024
280ceea3 7025 strcpy ((char *) buf, rs->last_sent_step ? "s" : "c");
c8e38a49 7026 putpkt ((char *) buf);
c8e38a49 7027 break;
43ff13b4 7028 }
c8e38a49
PA
7029 /* else fallthrough */
7030 default:
7031 warning (_("Invalid remote reply: %s"), buf);
c8e38a49 7032 break;
43ff13b4 7033 }
c8e38a49 7034
f2faf941
PA
7035 if (status->kind == TARGET_WAITKIND_NO_RESUMED)
7036 return minus_one_ptid;
7037 else if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
7038 {
7039 /* Nothing interesting happened. If we're doing a non-blocking
7040 poll, we're done. Otherwise, go back to waiting. */
7041 if (options & TARGET_WNOHANG)
7042 return minus_one_ptid;
7043 else
7044 goto again;
7045 }
74531fed
PA
7046 else if (status->kind != TARGET_WAITKIND_EXITED
7047 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
7048 {
7049 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 7050 record_currthread (rs, event_ptid);
82f73884
PA
7051 else
7052 event_ptid = inferior_ptid;
43ff13b4 7053 }
74531fed
PA
7054 else
7055 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 7056 record_currthread (rs, minus_one_ptid);
79d7f229 7057
82f73884 7058 return event_ptid;
43ff13b4
JM
7059}
7060
74531fed
PA
7061/* Wait until the remote machine stops, then return, storing status in
7062 STATUS just as `wait' would. */
7063
c8e38a49 7064static ptid_t
117de6a9 7065remote_wait (struct target_ops *ops,
47608cb1 7066 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
7067{
7068 ptid_t event_ptid;
7069
6efcd9a8 7070 if (target_is_non_stop_p ())
47608cb1 7071 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 7072 else
47608cb1 7073 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 7074
d9d41e78 7075 if (target_is_async_p ())
c8e38a49 7076 {
74531fed
PA
7077 /* If there are are events left in the queue tell the event loop
7078 to return here. */
722247f1 7079 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 7080 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 7081 }
c8e38a49
PA
7082
7083 return event_ptid;
7084}
7085
74ca34ce 7086/* Fetch a single register using a 'p' packet. */
c906108c 7087
b96ec7ac 7088static int
56be3814 7089fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac
AC
7090{
7091 struct remote_state *rs = get_remote_state ();
2e9f7625 7092 char *buf, *p;
b96ec7ac
AC
7093 char regp[MAX_REGISTER_SIZE];
7094 int i;
7095
4082afcc 7096 if (packet_support (PACKET_p) == PACKET_DISABLE)
74ca34ce
DJ
7097 return 0;
7098
7099 if (reg->pnum == -1)
7100 return 0;
7101
2e9f7625 7102 p = rs->buf;
fcad0fa4 7103 *p++ = 'p';
74ca34ce 7104 p += hexnumstr (p, reg->pnum);
fcad0fa4 7105 *p++ = '\0';
1f4437a4
MS
7106 putpkt (rs->buf);
7107 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 7108
2e9f7625
DJ
7109 buf = rs->buf;
7110
74ca34ce
DJ
7111 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
7112 {
7113 case PACKET_OK:
7114 break;
7115 case PACKET_UNKNOWN:
7116 return 0;
7117 case PACKET_ERROR:
27a9c0bf
MS
7118 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
7119 gdbarch_register_name (get_regcache_arch (regcache),
7120 reg->regnum),
7121 buf);
74ca34ce 7122 }
3f9a994c
JB
7123
7124 /* If this register is unfetchable, tell the regcache. */
7125 if (buf[0] == 'x')
8480adf2 7126 {
56be3814 7127 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 7128 return 1;
b96ec7ac 7129 }
b96ec7ac 7130
3f9a994c
JB
7131 /* Otherwise, parse and supply the value. */
7132 p = buf;
7133 i = 0;
7134 while (p[0] != 0)
7135 {
7136 if (p[1] == 0)
74ca34ce 7137 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
7138
7139 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
7140 p += 2;
7141 }
56be3814 7142 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 7143 return 1;
b96ec7ac
AC
7144}
7145
74ca34ce
DJ
7146/* Fetch the registers included in the target's 'g' packet. */
7147
29709017
DJ
7148static int
7149send_g_packet (void)
c906108c 7150{
d01949b6 7151 struct remote_state *rs = get_remote_state ();
cea39f65 7152 int buf_len;
c906108c 7153
bba74b36 7154 xsnprintf (rs->buf, get_remote_packet_size (), "g");
74ca34ce 7155 remote_send (&rs->buf, &rs->buf_size);
c906108c 7156
29709017
DJ
7157 /* We can get out of synch in various cases. If the first character
7158 in the buffer is not a hex character, assume that has happened
7159 and try to fetch another packet to read. */
7160 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
7161 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
7162 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
7163 && rs->buf[0] != 'x') /* New: unavailable register value. */
7164 {
7165 if (remote_debug)
7166 fprintf_unfiltered (gdb_stdlog,
7167 "Bad register packet; fetching a new packet\n");
7168 getpkt (&rs->buf, &rs->buf_size, 0);
7169 }
7170
74ca34ce
DJ
7171 buf_len = strlen (rs->buf);
7172
7173 /* Sanity check the received packet. */
7174 if (buf_len % 2 != 0)
7175 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
7176
7177 return buf_len / 2;
7178}
7179
7180static void
56be3814 7181process_g_packet (struct regcache *regcache)
29709017 7182{
4a22f64d 7183 struct gdbarch *gdbarch = get_regcache_arch (regcache);
29709017
DJ
7184 struct remote_state *rs = get_remote_state ();
7185 struct remote_arch_state *rsa = get_remote_arch_state ();
7186 int i, buf_len;
7187 char *p;
7188 char *regs;
7189
7190 buf_len = strlen (rs->buf);
7191
7192 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce
DJ
7193 if (buf_len > 2 * rsa->sizeof_g_packet)
7194 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
7195
7196 /* Save the size of the packet sent to us by the target. It is used
7197 as a heuristic when determining the max size of packets that the
7198 target can safely receive. */
7199 if (rsa->actual_register_packet_size == 0)
7200 rsa->actual_register_packet_size = buf_len;
7201
7202 /* If this is smaller than we guessed the 'g' packet would be,
7203 update our records. A 'g' reply that doesn't include a register's
7204 value implies either that the register is not available, or that
7205 the 'p' packet must be used. */
7206 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 7207 {
74ca34ce
DJ
7208 rsa->sizeof_g_packet = buf_len / 2;
7209
4a22f64d 7210 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 7211 {
74ca34ce
DJ
7212 if (rsa->regs[i].pnum == -1)
7213 continue;
7214
7215 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
7216 rsa->regs[i].in_g_packet = 0;
b96ec7ac 7217 else
74ca34ce 7218 rsa->regs[i].in_g_packet = 1;
b96ec7ac 7219 }
74ca34ce 7220 }
b323314b 7221
224c3ddb 7222 regs = (char *) alloca (rsa->sizeof_g_packet);
c906108c
SS
7223
7224 /* Unimplemented registers read as all bits zero. */
ea9c271d 7225 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 7226
c906108c
SS
7227 /* Reply describes registers byte by byte, each byte encoded as two
7228 hex characters. Suck them all up, then supply them to the
7229 register cacheing/storage mechanism. */
7230
74ca34ce 7231 p = rs->buf;
ea9c271d 7232 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 7233 {
74ca34ce
DJ
7234 if (p[0] == 0 || p[1] == 0)
7235 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
7236 internal_error (__FILE__, __LINE__,
9b20d036 7237 _("unexpected end of 'g' packet reply"));
74ca34ce 7238
c906108c 7239 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 7240 regs[i] = 0; /* 'x' */
c906108c
SS
7241 else
7242 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
7243 p += 2;
7244 }
7245
a744cf53
MS
7246 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
7247 {
7248 struct packet_reg *r = &rsa->regs[i];
7249
7250 if (r->in_g_packet)
7251 {
7252 if (r->offset * 2 >= strlen (rs->buf))
7253 /* This shouldn't happen - we adjusted in_g_packet above. */
7254 internal_error (__FILE__, __LINE__,
9b20d036 7255 _("unexpected end of 'g' packet reply"));
a744cf53
MS
7256 else if (rs->buf[r->offset * 2] == 'x')
7257 {
7258 gdb_assert (r->offset * 2 < strlen (rs->buf));
7259 /* The register isn't available, mark it as such (at
7260 the same time setting the value to zero). */
7261 regcache_raw_supply (regcache, r->regnum, NULL);
7262 }
7263 else
7264 regcache_raw_supply (regcache, r->regnum,
7265 regs + r->offset);
7266 }
7267 }
c906108c
SS
7268}
7269
29709017 7270static void
56be3814 7271fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
7272{
7273 send_g_packet ();
56be3814 7274 process_g_packet (regcache);
29709017
DJ
7275}
7276
e6e4e701
PA
7277/* Make the remote selected traceframe match GDB's selected
7278 traceframe. */
7279
7280static void
7281set_remote_traceframe (void)
7282{
7283 int newnum;
262e1174 7284 struct remote_state *rs = get_remote_state ();
e6e4e701 7285
262e1174 7286 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
7287 return;
7288
7289 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 7290 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
7291
7292 newnum = target_trace_find (tfind_number,
7293 get_traceframe_number (), 0, 0, NULL);
7294
7295 /* Should not happen. If it does, all bets are off. */
7296 if (newnum != get_traceframe_number ())
7297 warning (_("could not set remote traceframe"));
7298}
7299
74ca34ce 7300static void
28439f5e
PA
7301remote_fetch_registers (struct target_ops *ops,
7302 struct regcache *regcache, int regnum)
74ca34ce 7303{
74ca34ce
DJ
7304 struct remote_arch_state *rsa = get_remote_arch_state ();
7305 int i;
7306
e6e4e701 7307 set_remote_traceframe ();
79d7f229 7308 set_general_thread (inferior_ptid);
74ca34ce
DJ
7309
7310 if (regnum >= 0)
7311 {
7312 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
a744cf53 7313
74ca34ce
DJ
7314 gdb_assert (reg != NULL);
7315
7316 /* If this register might be in the 'g' packet, try that first -
7317 we are likely to read more than one register. If this is the
7318 first 'g' packet, we might be overly optimistic about its
7319 contents, so fall back to 'p'. */
7320 if (reg->in_g_packet)
7321 {
56be3814 7322 fetch_registers_using_g (regcache);
74ca34ce
DJ
7323 if (reg->in_g_packet)
7324 return;
7325 }
7326
56be3814 7327 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
7328 return;
7329
7330 /* This register is not available. */
56be3814 7331 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
7332
7333 return;
7334 }
7335
56be3814 7336 fetch_registers_using_g (regcache);
74ca34ce 7337
4a22f64d 7338 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 7339 if (!rsa->regs[i].in_g_packet)
56be3814 7340 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
7341 {
7342 /* This register is not available. */
56be3814 7343 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
7344 }
7345}
7346
c906108c
SS
7347/* Prepare to store registers. Since we may send them all (using a
7348 'G' request), we have to read out the ones we don't want to change
7349 first. */
7350
c5aa993b 7351static void
f32dbf8c 7352remote_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 7353{
ea9c271d 7354 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 7355 int i;
cfd77fa1 7356 gdb_byte buf[MAX_REGISTER_SIZE];
cf0e1e0d 7357
c906108c 7358 /* Make sure the entire registers array is valid. */
4082afcc 7359 switch (packet_support (PACKET_P))
5a2468f5
JM
7360 {
7361 case PACKET_DISABLE:
7362 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 7363 /* Make sure all the necessary registers are cached. */
4a22f64d 7364 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ea9c271d 7365 if (rsa->regs[i].in_g_packet)
316f2060 7366 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5a2468f5
JM
7367 break;
7368 case PACKET_ENABLE:
7369 break;
7370 }
7371}
7372
ad10f812 7373/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 7374 packet was not recognized. */
5a2468f5
JM
7375
7376static int
1f4437a4
MS
7377store_register_using_P (const struct regcache *regcache,
7378 struct packet_reg *reg)
5a2468f5 7379{
4a22f64d 7380 struct gdbarch *gdbarch = get_regcache_arch (regcache);
d01949b6 7381 struct remote_state *rs = get_remote_state ();
5a2468f5 7382 /* Try storing a single register. */
6d820c5c 7383 char *buf = rs->buf;
cfd77fa1 7384 gdb_byte regp[MAX_REGISTER_SIZE];
5a2468f5 7385 char *p;
5a2468f5 7386
4082afcc 7387 if (packet_support (PACKET_P) == PACKET_DISABLE)
74ca34ce
DJ
7388 return 0;
7389
7390 if (reg->pnum == -1)
7391 return 0;
7392
ea9c271d 7393 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 7394 p = buf + strlen (buf);
56be3814 7395 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 7396 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
7397 putpkt (rs->buf);
7398 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 7399
74ca34ce
DJ
7400 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
7401 {
7402 case PACKET_OK:
7403 return 1;
7404 case PACKET_ERROR:
27a9c0bf
MS
7405 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
7406 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
7407 case PACKET_UNKNOWN:
7408 return 0;
7409 default:
7410 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
7411 }
c906108c
SS
7412}
7413
23860348
MS
7414/* Store register REGNUM, or all registers if REGNUM == -1, from the
7415 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
7416
7417static void
56be3814 7418store_registers_using_G (const struct regcache *regcache)
c906108c 7419{
d01949b6 7420 struct remote_state *rs = get_remote_state ();
ea9c271d 7421 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 7422 gdb_byte *regs;
c906108c
SS
7423 char *p;
7424
193cb69f
AC
7425 /* Extract all the registers in the regcache copying them into a
7426 local buffer. */
7427 {
b323314b 7428 int i;
a744cf53 7429
224c3ddb 7430 regs = (gdb_byte *) alloca (rsa->sizeof_g_packet);
ea9c271d 7431 memset (regs, 0, rsa->sizeof_g_packet);
4a22f64d 7432 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
193cb69f 7433 {
ea9c271d 7434 struct packet_reg *r = &rsa->regs[i];
a744cf53 7435
b323314b 7436 if (r->in_g_packet)
56be3814 7437 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
7438 }
7439 }
c906108c
SS
7440
7441 /* Command describes registers byte by byte,
7442 each byte encoded as two hex characters. */
6d820c5c 7443 p = rs->buf;
193cb69f 7444 *p++ = 'G';
74ca34ce
DJ
7445 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
7446 updated. */
7447 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
7448 putpkt (rs->buf);
7449 getpkt (&rs->buf, &rs->buf_size, 0);
7450 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
7451 error (_("Could not write registers; remote failure reply '%s'"),
7452 rs->buf);
c906108c 7453}
74ca34ce
DJ
7454
7455/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
7456 of the register cache buffer. FIXME: ignores errors. */
7457
7458static void
28439f5e
PA
7459remote_store_registers (struct target_ops *ops,
7460 struct regcache *regcache, int regnum)
74ca34ce 7461{
74ca34ce
DJ
7462 struct remote_arch_state *rsa = get_remote_arch_state ();
7463 int i;
7464
e6e4e701 7465 set_remote_traceframe ();
79d7f229 7466 set_general_thread (inferior_ptid);
74ca34ce
DJ
7467
7468 if (regnum >= 0)
7469 {
7470 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
a744cf53 7471
74ca34ce
DJ
7472 gdb_assert (reg != NULL);
7473
7474 /* Always prefer to store registers using the 'P' packet if
7475 possible; we often change only a small number of registers.
7476 Sometimes we change a larger number; we'd need help from a
7477 higher layer to know to use 'G'. */
56be3814 7478 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
7479 return;
7480
7481 /* For now, don't complain if we have no way to write the
7482 register. GDB loses track of unavailable registers too
7483 easily. Some day, this may be an error. We don't have
0df8b418 7484 any way to read the register, either... */
74ca34ce
DJ
7485 if (!reg->in_g_packet)
7486 return;
7487
56be3814 7488 store_registers_using_G (regcache);
74ca34ce
DJ
7489 return;
7490 }
7491
56be3814 7492 store_registers_using_G (regcache);
74ca34ce 7493
4a22f64d 7494 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 7495 if (!rsa->regs[i].in_g_packet)
56be3814 7496 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
7497 /* See above for why we do not issue an error here. */
7498 continue;
7499}
c906108c
SS
7500\f
7501
7502/* Return the number of hex digits in num. */
7503
7504static int
fba45db2 7505hexnumlen (ULONGEST num)
c906108c
SS
7506{
7507 int i;
7508
7509 for (i = 0; num != 0; i++)
7510 num >>= 4;
7511
7512 return max (i, 1);
7513}
7514
2df3850c 7515/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
7516
7517static int
fba45db2 7518hexnumstr (char *buf, ULONGEST num)
c906108c 7519{
c906108c 7520 int len = hexnumlen (num);
a744cf53 7521
2df3850c
JM
7522 return hexnumnstr (buf, num, len);
7523}
7524
c906108c 7525
2df3850c 7526/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 7527
2df3850c 7528static int
fba45db2 7529hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
7530{
7531 int i;
7532
7533 buf[width] = '\0';
7534
7535 for (i = width - 1; i >= 0; i--)
c906108c 7536 {
c5aa993b 7537 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
7538 num >>= 4;
7539 }
7540
2df3850c 7541 return width;
c906108c
SS
7542}
7543
23860348 7544/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
7545
7546static CORE_ADDR
fba45db2 7547remote_address_masked (CORE_ADDR addr)
c906108c 7548{
883b9c6c 7549 unsigned int address_size = remote_address_size;
a744cf53 7550
911c95a5
UW
7551 /* If "remoteaddresssize" was not set, default to target address size. */
7552 if (!address_size)
f5656ead 7553 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
7554
7555 if (address_size > 0
7556 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
7557 {
7558 /* Only create a mask when that mask can safely be constructed
23860348 7559 in a ULONGEST variable. */
c906108c 7560 ULONGEST mask = 1;
a744cf53 7561
911c95a5 7562 mask = (mask << address_size) - 1;
c906108c
SS
7563 addr &= mask;
7564 }
7565 return addr;
7566}
7567
7568/* Determine whether the remote target supports binary downloading.
7569 This is accomplished by sending a no-op memory write of zero length
7570 to the target at the specified address. It does not suffice to send
23860348
MS
7571 the whole packet, since many stubs strip the eighth bit and
7572 subsequently compute a wrong checksum, which causes real havoc with
7573 remote_write_bytes.
7a292a7a 7574
96baa820 7575 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 7576 clean. In cases like this, the user should clear "remote
23860348 7577 X-packet". */
96baa820 7578
c906108c 7579static void
fba45db2 7580check_binary_download (CORE_ADDR addr)
c906108c 7581{
d01949b6 7582 struct remote_state *rs = get_remote_state ();
24b06219 7583
4082afcc 7584 switch (packet_support (PACKET_X))
c906108c 7585 {
96baa820
JM
7586 case PACKET_DISABLE:
7587 break;
7588 case PACKET_ENABLE:
7589 break;
7590 case PACKET_SUPPORT_UNKNOWN:
7591 {
96baa820 7592 char *p;
802188a7 7593
2e9f7625 7594 p = rs->buf;
96baa820
JM
7595 *p++ = 'X';
7596 p += hexnumstr (p, (ULONGEST) addr);
7597 *p++ = ',';
7598 p += hexnumstr (p, (ULONGEST) 0);
7599 *p++ = ':';
7600 *p = '\0';
802188a7 7601
2e9f7625 7602 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 7603 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 7604
2e9f7625 7605 if (rs->buf[0] == '\0')
96baa820
JM
7606 {
7607 if (remote_debug)
7608 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
7609 "binary downloading NOT "
7610 "supported by target\n");
444abaca 7611 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
7612 }
7613 else
7614 {
7615 if (remote_debug)
7616 fprintf_unfiltered (gdb_stdlog,
64b9b334 7617 "binary downloading supported by target\n");
444abaca 7618 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
7619 }
7620 break;
7621 }
c906108c
SS
7622 }
7623}
7624
124e13d9
SM
7625/* Helper function to resize the payload in order to try to get a good
7626 alignment. We try to write an amount of data such that the next write will
7627 start on an address aligned on REMOTE_ALIGN_WRITES. */
7628
7629static int
7630align_for_efficient_write (int todo, CORE_ADDR memaddr)
7631{
7632 return ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
7633}
7634
c906108c
SS
7635/* Write memory data directly to the remote machine.
7636 This does not inform the data cache; the data cache uses this.
a76d924d 7637 HEADER is the starting part of the packet.
c906108c
SS
7638 MEMADDR is the address in the remote memory space.
7639 MYADDR is the address of the buffer in our space.
124e13d9
SM
7640 LEN_UNITS is the number of addressable units to write.
7641 UNIT_SIZE is the length in bytes of an addressable unit.
a76d924d
DJ
7642 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
7643 should send data as binary ('X'), or hex-encoded ('M').
7644
7645 The function creates packet of the form
7646 <HEADER><ADDRESS>,<LENGTH>:<DATA>
7647
124e13d9 7648 where encoding of <DATA> is terminated by PACKET_FORMAT.
a76d924d
DJ
7649
7650 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
7651 are omitted.
7652
9b409511 7653 Return the transferred status, error or OK (an
124e13d9
SM
7654 'enum target_xfer_status' value). Save the number of addressable units
7655 transferred in *XFERED_LEN_UNITS. Only transfer a single packet.
7656
7657 On a platform with an addressable memory size of 2 bytes (UNIT_SIZE == 2), an
7658 exchange between gdb and the stub could look like (?? in place of the
7659 checksum):
7660
7661 -> $m1000,4#??
7662 <- aaaabbbbccccdddd
7663
7664 -> $M1000,3:eeeeffffeeee#??
7665 <- OK
7666
7667 -> $m1000,4#??
7668 <- eeeeffffeeeedddd */
c906108c 7669
9b409511 7670static enum target_xfer_status
a76d924d 7671remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
124e13d9
SM
7672 const gdb_byte *myaddr, ULONGEST len_units,
7673 int unit_size, ULONGEST *xfered_len_units,
7674 char packet_format, int use_length)
c906108c 7675{
6d820c5c 7676 struct remote_state *rs = get_remote_state ();
cfd77fa1 7677 char *p;
a76d924d
DJ
7678 char *plen = NULL;
7679 int plenlen = 0;
124e13d9
SM
7680 int todo_units;
7681 int units_written;
7682 int payload_capacity_bytes;
7683 int payload_length_bytes;
a76d924d
DJ
7684
7685 if (packet_format != 'X' && packet_format != 'M')
7686 internal_error (__FILE__, __LINE__,
9b20d036 7687 _("remote_write_bytes_aux: bad packet format"));
c906108c 7688
124e13d9 7689 if (len_units == 0)
9b409511 7690 return TARGET_XFER_EOF;
b2182ed2 7691
124e13d9 7692 payload_capacity_bytes = get_memory_write_packet_size ();
2bc416ba 7693
6d820c5c
DJ
7694 /* The packet buffer will be large enough for the payload;
7695 get_memory_packet_size ensures this. */
a76d924d 7696 rs->buf[0] = '\0';
c906108c 7697
a257b5bb 7698 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
7699 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
7700
124e13d9 7701 payload_capacity_bytes -= strlen ("$,:#NN");
a76d924d 7702 if (!use_length)
0df8b418 7703 /* The comma won't be used. */
124e13d9
SM
7704 payload_capacity_bytes += 1;
7705 payload_capacity_bytes -= strlen (header);
7706 payload_capacity_bytes -= hexnumlen (memaddr);
c906108c 7707
a76d924d 7708 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 7709
a76d924d
DJ
7710 strcat (rs->buf, header);
7711 p = rs->buf + strlen (header);
7712
7713 /* Compute a best guess of the number of bytes actually transfered. */
7714 if (packet_format == 'X')
c906108c 7715 {
23860348 7716 /* Best guess at number of bytes that will fit. */
124e13d9 7717 todo_units = min (len_units, payload_capacity_bytes / unit_size);
a76d924d 7718 if (use_length)
124e13d9
SM
7719 payload_capacity_bytes -= hexnumlen (todo_units);
7720 todo_units = min (todo_units, payload_capacity_bytes / unit_size);
a76d924d
DJ
7721 }
7722 else
7723 {
124e13d9
SM
7724 /* Number of bytes that will fit. */
7725 todo_units = min (len_units, (payload_capacity_bytes / unit_size) / 2);
a76d924d 7726 if (use_length)
124e13d9
SM
7727 payload_capacity_bytes -= hexnumlen (todo_units);
7728 todo_units = min (todo_units, (payload_capacity_bytes / unit_size) / 2);
917317f4 7729 }
a76d924d 7730
124e13d9 7731 if (todo_units <= 0)
3de11b2e 7732 internal_error (__FILE__, __LINE__,
405f8e94 7733 _("minimum packet size too small to write data"));
802188a7 7734
6765f3e5
DJ
7735 /* If we already need another packet, then try to align the end
7736 of this packet to a useful boundary. */
124e13d9
SM
7737 if (todo_units > 2 * REMOTE_ALIGN_WRITES && todo_units < len_units)
7738 todo_units = align_for_efficient_write (todo_units, memaddr);
6765f3e5 7739
a257b5bb 7740 /* Append "<memaddr>". */
917317f4
JM
7741 memaddr = remote_address_masked (memaddr);
7742 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 7743
a76d924d
DJ
7744 if (use_length)
7745 {
7746 /* Append ",". */
7747 *p++ = ',';
802188a7 7748
124e13d9
SM
7749 /* Append the length and retain its location and size. It may need to be
7750 adjusted once the packet body has been created. */
a76d924d 7751 plen = p;
124e13d9 7752 plenlen = hexnumstr (p, (ULONGEST) todo_units);
a76d924d
DJ
7753 p += plenlen;
7754 }
a257b5bb
AC
7755
7756 /* Append ":". */
917317f4
JM
7757 *p++ = ':';
7758 *p = '\0';
802188a7 7759
a257b5bb 7760 /* Append the packet body. */
a76d924d 7761 if (packet_format == 'X')
917317f4 7762 {
917317f4
JM
7763 /* Binary mode. Send target system values byte by byte, in
7764 increasing byte addresses. Only escape certain critical
7765 characters. */
124e13d9
SM
7766 payload_length_bytes =
7767 remote_escape_output (myaddr, todo_units, unit_size, (gdb_byte *) p,
7768 &units_written, payload_capacity_bytes);
6765f3e5 7769
124e13d9 7770 /* If not all TODO units fit, then we'll need another packet. Make
9b7194bc
DJ
7771 a second try to keep the end of the packet aligned. Don't do
7772 this if the packet is tiny. */
124e13d9 7773 if (units_written < todo_units && units_written > 2 * REMOTE_ALIGN_WRITES)
6765f3e5 7774 {
124e13d9
SM
7775 int new_todo_units;
7776
7777 new_todo_units = align_for_efficient_write (units_written, memaddr);
7778
7779 if (new_todo_units != units_written)
7780 payload_length_bytes =
7781 remote_escape_output (myaddr, new_todo_units, unit_size,
7782 (gdb_byte *) p, &units_written,
7783 payload_capacity_bytes);
6765f3e5
DJ
7784 }
7785
124e13d9
SM
7786 p += payload_length_bytes;
7787 if (use_length && units_written < todo_units)
c906108c 7788 {
802188a7 7789 /* Escape chars have filled up the buffer prematurely,
124e13d9 7790 and we have actually sent fewer units than planned.
917317f4
JM
7791 Fix-up the length field of the packet. Use the same
7792 number of characters as before. */
124e13d9
SM
7793 plen += hexnumnstr (plen, (ULONGEST) units_written,
7794 plenlen);
917317f4 7795 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 7796 }
a76d924d
DJ
7797 }
7798 else
7799 {
917317f4
JM
7800 /* Normal mode: Send target system values byte by byte, in
7801 increasing byte addresses. Each byte is encoded as a two hex
7802 value. */
124e13d9
SM
7803 p += 2 * bin2hex (myaddr, p, todo_units * unit_size);
7804 units_written = todo_units;
c906108c 7805 }
802188a7 7806
2e9f7625 7807 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 7808 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 7809
2e9f7625 7810 if (rs->buf[0] == 'E')
00d84524 7811 return TARGET_XFER_E_IO;
802188a7 7812
124e13d9
SM
7813 /* Return UNITS_WRITTEN, not TODO_UNITS, in case escape chars caused us to
7814 send fewer units than we'd planned. */
7815 *xfered_len_units = (ULONGEST) units_written;
9b409511 7816 return TARGET_XFER_OK;
c906108c
SS
7817}
7818
a76d924d
DJ
7819/* Write memory data directly to the remote machine.
7820 This does not inform the data cache; the data cache uses this.
7821 MEMADDR is the address in the remote memory space.
7822 MYADDR is the address of the buffer in our space.
7823 LEN is the number of bytes.
7824
9b409511
YQ
7825 Return the transferred status, error or OK (an
7826 'enum target_xfer_status' value). Save the number of bytes
7827 transferred in *XFERED_LEN. Only transfer a single packet. */
a76d924d 7828
9b409511
YQ
7829static enum target_xfer_status
7830remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ULONGEST len,
124e13d9 7831 int unit_size, ULONGEST *xfered_len)
a76d924d
DJ
7832{
7833 char *packet_format = 0;
7834
7835 /* Check whether the target supports binary download. */
7836 check_binary_download (memaddr);
7837
4082afcc 7838 switch (packet_support (PACKET_X))
a76d924d
DJ
7839 {
7840 case PACKET_ENABLE:
7841 packet_format = "X";
7842 break;
7843 case PACKET_DISABLE:
7844 packet_format = "M";
7845 break;
7846 case PACKET_SUPPORT_UNKNOWN:
7847 internal_error (__FILE__, __LINE__,
7848 _("remote_write_bytes: bad internal state"));
7849 default:
7850 internal_error (__FILE__, __LINE__, _("bad switch"));
7851 }
7852
7853 return remote_write_bytes_aux (packet_format,
124e13d9 7854 memaddr, myaddr, len, unit_size, xfered_len,
9b409511 7855 packet_format[0], 1);
a76d924d
DJ
7856}
7857
9217e74e
YQ
7858/* Read memory data directly from the remote machine.
7859 This does not use the data cache; the data cache uses this.
7860 MEMADDR is the address in the remote memory space.
7861 MYADDR is the address of the buffer in our space.
124e13d9
SM
7862 LEN_UNITS is the number of addressable memory units to read..
7863 UNIT_SIZE is the length in bytes of an addressable unit.
9217e74e
YQ
7864
7865 Return the transferred status, error or OK (an
7866 'enum target_xfer_status' value). Save the number of bytes
124e13d9
SM
7867 transferred in *XFERED_LEN_UNITS.
7868
7869 See the comment of remote_write_bytes_aux for an example of
7870 memory read/write exchange between gdb and the stub. */
9217e74e
YQ
7871
7872static enum target_xfer_status
124e13d9
SM
7873remote_read_bytes_1 (CORE_ADDR memaddr, gdb_byte *myaddr, ULONGEST len_units,
7874 int unit_size, ULONGEST *xfered_len_units)
9217e74e
YQ
7875{
7876 struct remote_state *rs = get_remote_state ();
124e13d9 7877 int buf_size_bytes; /* Max size of packet output buffer. */
9217e74e 7878 char *p;
124e13d9
SM
7879 int todo_units;
7880 int decoded_bytes;
9217e74e 7881
124e13d9 7882 buf_size_bytes = get_memory_read_packet_size ();
9217e74e
YQ
7883 /* The packet buffer will be large enough for the payload;
7884 get_memory_packet_size ensures this. */
7885
124e13d9
SM
7886 /* Number of units that will fit. */
7887 todo_units = min (len_units, (buf_size_bytes / unit_size) / 2);
9217e74e
YQ
7888
7889 /* Construct "m"<memaddr>","<len>". */
7890 memaddr = remote_address_masked (memaddr);
7891 p = rs->buf;
7892 *p++ = 'm';
7893 p += hexnumstr (p, (ULONGEST) memaddr);
7894 *p++ = ',';
124e13d9 7895 p += hexnumstr (p, (ULONGEST) todo_units);
9217e74e
YQ
7896 *p = '\0';
7897 putpkt (rs->buf);
7898 getpkt (&rs->buf, &rs->buf_size, 0);
7899 if (rs->buf[0] == 'E'
7900 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
7901 && rs->buf[3] == '\0')
7902 return TARGET_XFER_E_IO;
7903 /* Reply describes memory byte by byte, each byte encoded as two hex
7904 characters. */
7905 p = rs->buf;
124e13d9 7906 decoded_bytes = hex2bin (p, myaddr, todo_units * unit_size);
9217e74e 7907 /* Return what we have. Let higher layers handle partial reads. */
124e13d9 7908 *xfered_len_units = (ULONGEST) (decoded_bytes / unit_size);
9217e74e
YQ
7909 return TARGET_XFER_OK;
7910}
7911
b55fbac4
YQ
7912/* Using the set of read-only target sections of remote, read live
7913 read-only memory.
8acf9577
YQ
7914
7915 For interface/parameters/return description see target.h,
7916 to_xfer_partial. */
7917
7918static enum target_xfer_status
b55fbac4
YQ
7919remote_xfer_live_readonly_partial (struct target_ops *ops, gdb_byte *readbuf,
7920 ULONGEST memaddr, ULONGEST len,
124e13d9 7921 int unit_size, ULONGEST *xfered_len)
8acf9577
YQ
7922{
7923 struct target_section *secp;
7924 struct target_section_table *table;
7925
7926 secp = target_section_by_addr (ops, memaddr);
7927 if (secp != NULL
7928 && (bfd_get_section_flags (secp->the_bfd_section->owner,
7929 secp->the_bfd_section)
7930 & SEC_READONLY))
7931 {
7932 struct target_section *p;
7933 ULONGEST memend = memaddr + len;
7934
7935 table = target_get_section_table (ops);
7936
7937 for (p = table->sections; p < table->sections_end; p++)
7938 {
7939 if (memaddr >= p->addr)
7940 {
7941 if (memend <= p->endaddr)
7942 {
7943 /* Entire transfer is within this section. */
124e13d9 7944 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 7945 xfered_len);
8acf9577
YQ
7946 }
7947 else if (memaddr >= p->endaddr)
7948 {
7949 /* This section ends before the transfer starts. */
7950 continue;
7951 }
7952 else
7953 {
7954 /* This section overlaps the transfer. Just do half. */
7955 len = p->endaddr - memaddr;
124e13d9 7956 return remote_read_bytes_1 (memaddr, readbuf, len, unit_size,
b55fbac4 7957 xfered_len);
8acf9577
YQ
7958 }
7959 }
7960 }
7961 }
7962
7963 return TARGET_XFER_EOF;
7964}
7965
9217e74e
YQ
7966/* Similar to remote_read_bytes_1, but it reads from the remote stub
7967 first if the requested memory is unavailable in traceframe.
7968 Otherwise, fall back to remote_read_bytes_1. */
c906108c 7969
9b409511 7970static enum target_xfer_status
8acf9577 7971remote_read_bytes (struct target_ops *ops, CORE_ADDR memaddr,
124e13d9
SM
7972 gdb_byte *myaddr, ULONGEST len, int unit_size,
7973 ULONGEST *xfered_len)
c906108c 7974{
6b6aa828 7975 if (len == 0)
96c4f946 7976 return TARGET_XFER_EOF;
b2182ed2 7977
8acf9577
YQ
7978 if (get_traceframe_number () != -1)
7979 {
7980 VEC(mem_range_s) *available;
7981
7982 /* If we fail to get the set of available memory, then the
7983 target does not support querying traceframe info, and so we
7984 attempt reading from the traceframe anyway (assuming the
7985 target implements the old QTro packet then). */
7986 if (traceframe_available_memory (&available, memaddr, len))
7987 {
7988 struct cleanup *old_chain;
7989
7990 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
7991
7992 if (VEC_empty (mem_range_s, available)
7993 || VEC_index (mem_range_s, available, 0)->start != memaddr)
7994 {
7995 enum target_xfer_status res;
7996
7997 /* Don't read into the traceframe's available
7998 memory. */
7999 if (!VEC_empty (mem_range_s, available))
8000 {
8001 LONGEST oldlen = len;
8002
8003 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
8004 gdb_assert (len <= oldlen);
8005 }
8006
8007 do_cleanups (old_chain);
8008
8009 /* This goes through the topmost target again. */
b55fbac4 8010 res = remote_xfer_live_readonly_partial (ops, myaddr, memaddr,
124e13d9 8011 len, unit_size, xfered_len);
8acf9577
YQ
8012 if (res == TARGET_XFER_OK)
8013 return TARGET_XFER_OK;
8014 else
8015 {
8016 /* No use trying further, we know some memory starting
8017 at MEMADDR isn't available. */
8018 *xfered_len = len;
8019 return TARGET_XFER_UNAVAILABLE;
8020 }
8021 }
8022
8023 /* Don't try to read more than how much is available, in
8024 case the target implements the deprecated QTro packet to
8025 cater for older GDBs (the target's knowledge of read-only
8026 sections may be outdated by now). */
8027 len = VEC_index (mem_range_s, available, 0)->length;
8028
8029 do_cleanups (old_chain);
8030 }
8031 }
8032
124e13d9 8033 return remote_read_bytes_1 (memaddr, myaddr, len, unit_size, xfered_len);
c906108c 8034}
74531fed 8035
c906108c 8036\f
c906108c 8037
a76d924d
DJ
8038/* Sends a packet with content determined by the printf format string
8039 FORMAT and the remaining arguments, then gets the reply. Returns
8040 whether the packet was a success, a failure, or unknown. */
8041
77b64a49
PA
8042static enum packet_result remote_send_printf (const char *format, ...)
8043 ATTRIBUTE_PRINTF (1, 2);
8044
2c0b251b 8045static enum packet_result
a76d924d
DJ
8046remote_send_printf (const char *format, ...)
8047{
8048 struct remote_state *rs = get_remote_state ();
8049 int max_size = get_remote_packet_size ();
a76d924d 8050 va_list ap;
a744cf53 8051
a76d924d
DJ
8052 va_start (ap, format);
8053
8054 rs->buf[0] = '\0';
8055 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 8056 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
8057
8058 if (putpkt (rs->buf) < 0)
8059 error (_("Communication problem with target."));
8060
8061 rs->buf[0] = '\0';
8062 getpkt (&rs->buf, &rs->buf_size, 0);
8063
8064 return packet_check_result (rs->buf);
8065}
8066
8067static void
8068restore_remote_timeout (void *p)
8069{
8070 int value = *(int *)p;
a744cf53 8071
a76d924d
DJ
8072 remote_timeout = value;
8073}
8074
8075/* Flash writing can take quite some time. We'll set
8076 effectively infinite timeout for flash operations.
8077 In future, we'll need to decide on a better approach. */
8078static const int remote_flash_timeout = 1000;
8079
8080static void
8081remote_flash_erase (struct target_ops *ops,
8082 ULONGEST address, LONGEST length)
8083{
f5656ead 8084 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d
DJ
8085 int saved_remote_timeout = remote_timeout;
8086 enum packet_result ret;
a76d924d
DJ
8087 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8088 &saved_remote_timeout);
a744cf53 8089
a76d924d
DJ
8090 remote_timeout = remote_flash_timeout;
8091
8092 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 8093 phex (address, addr_size),
a76d924d
DJ
8094 phex (length, 4));
8095 switch (ret)
8096 {
8097 case PACKET_UNKNOWN:
8098 error (_("Remote target does not support flash erase"));
8099 case PACKET_ERROR:
8100 error (_("Error erasing flash with vFlashErase packet"));
8101 default:
8102 break;
8103 }
8104
8105 do_cleanups (back_to);
8106}
8107
9b409511
YQ
8108static enum target_xfer_status
8109remote_flash_write (struct target_ops *ops, ULONGEST address,
8110 ULONGEST length, ULONGEST *xfered_len,
8111 const gdb_byte *data)
a76d924d
DJ
8112{
8113 int saved_remote_timeout = remote_timeout;
9b409511 8114 enum target_xfer_status ret;
a76d924d 8115 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
9b409511 8116 &saved_remote_timeout);
a76d924d
DJ
8117
8118 remote_timeout = remote_flash_timeout;
124e13d9 8119 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 1,
9b409511 8120 xfered_len,'X', 0);
a76d924d
DJ
8121 do_cleanups (back_to);
8122
8123 return ret;
8124}
8125
8126static void
8127remote_flash_done (struct target_ops *ops)
8128{
8129 int saved_remote_timeout = remote_timeout;
8130 int ret;
8131 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
8132 &saved_remote_timeout);
8133
8134 remote_timeout = remote_flash_timeout;
8135 ret = remote_send_printf ("vFlashDone");
8136 do_cleanups (back_to);
8137
8138 switch (ret)
8139 {
8140 case PACKET_UNKNOWN:
8141 error (_("Remote target does not support vFlashDone"));
8142 case PACKET_ERROR:
8143 error (_("Error finishing flash operation"));
8144 default:
8145 break;
8146 }
8147}
8148
c906108c 8149static void
fba45db2 8150remote_files_info (struct target_ops *ignore)
c906108c
SS
8151{
8152 puts_filtered ("Debugging a target over a serial line.\n");
8153}
8154\f
8155/* Stuff for dealing with the packets which are part of this protocol.
8156 See comment at top of file for details. */
8157
1927e618
PA
8158/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
8159 error to higher layers. Called when a serial error is detected.
8160 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
8161 the system error message for errno at function entry and final dot
8162 for output compatibility with throw_perror_with_name. */
1927e618
PA
8163
8164static void
8165unpush_and_perror (const char *string)
8166{
d6cb50a2 8167 int saved_errno = errno;
1927e618
PA
8168
8169 remote_unpush_target ();
d6cb50a2
JK
8170 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
8171 safe_strerror (saved_errno));
1927e618
PA
8172}
8173
0876f84a 8174/* Read a single character from the remote end. */
c906108c
SS
8175
8176static int
fba45db2 8177readchar (int timeout)
c906108c
SS
8178{
8179 int ch;
5d93a237 8180 struct remote_state *rs = get_remote_state ();
c906108c 8181
5d93a237 8182 ch = serial_readchar (rs->remote_desc, timeout);
c906108c 8183
2acceee2 8184 if (ch >= 0)
0876f84a 8185 return ch;
2acceee2
JM
8186
8187 switch ((enum serial_rc) ch)
c906108c
SS
8188 {
8189 case SERIAL_EOF:
78a095c3 8190 remote_unpush_target ();
598d3636 8191 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 8192 /* no return */
c906108c 8193 case SERIAL_ERROR:
1927e618
PA
8194 unpush_and_perror (_("Remote communication error. "
8195 "Target disconnected."));
2acceee2 8196 /* no return */
c906108c 8197 case SERIAL_TIMEOUT:
2acceee2 8198 break;
c906108c 8199 }
2acceee2 8200 return ch;
c906108c
SS
8201}
8202
c33e31fd
PA
8203/* Wrapper for serial_write that closes the target and throws if
8204 writing fails. */
8205
8206static void
8207remote_serial_write (const char *str, int len)
8208{
5d93a237
TT
8209 struct remote_state *rs = get_remote_state ();
8210
8211 if (serial_write (rs->remote_desc, str, len))
c33e31fd 8212 {
1927e618
PA
8213 unpush_and_perror (_("Remote communication error. "
8214 "Target disconnected."));
c33e31fd
PA
8215 }
8216}
8217
6d820c5c
DJ
8218/* Send the command in *BUF to the remote machine, and read the reply
8219 into *BUF. Report an error if we get an error reply. Resize
8220 *BUF using xrealloc if necessary to hold the result, and update
8221 *SIZEOF_BUF. */
c906108c
SS
8222
8223static void
6d820c5c
DJ
8224remote_send (char **buf,
8225 long *sizeof_buf)
c906108c 8226{
6d820c5c 8227 putpkt (*buf);
c2d11a7d 8228 getpkt (buf, sizeof_buf, 0);
c906108c 8229
6d820c5c
DJ
8230 if ((*buf)[0] == 'E')
8231 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
8232}
8233
6e5abd65
PA
8234/* Return a pointer to an xmalloc'ed string representing an escaped
8235 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
8236 etc. The caller is responsible for releasing the returned
8237 memory. */
8238
8239static char *
8240escape_buffer (const char *buf, int n)
8241{
8242 struct cleanup *old_chain;
8243 struct ui_file *stb;
8244 char *str;
6e5abd65
PA
8245
8246 stb = mem_fileopen ();
8247 old_chain = make_cleanup_ui_file_delete (stb);
8248
6ef284bd 8249 fputstrn_unfiltered (buf, n, '\\', stb);
759ef836 8250 str = ui_file_xstrdup (stb, NULL);
6e5abd65
PA
8251 do_cleanups (old_chain);
8252 return str;
8253}
8254
c906108c
SS
8255/* Display a null-terminated packet on stdout, for debugging, using C
8256 string notation. */
8257
8258static void
baa336ce 8259print_packet (const char *buf)
c906108c
SS
8260{
8261 puts_filtered ("\"");
43e526b9 8262 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
8263 puts_filtered ("\"");
8264}
8265
8266int
baa336ce 8267putpkt (const char *buf)
c906108c
SS
8268{
8269 return putpkt_binary (buf, strlen (buf));
8270}
8271
8272/* Send a packet to the remote machine, with error checking. The data
23860348 8273 of the packet is in BUF. The string in BUF can be at most
ea9c271d 8274 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
8275 and for a possible /0 if we are debugging (remote_debug) and want
8276 to print the sent packet as a string. */
c906108c
SS
8277
8278static int
baa336ce 8279putpkt_binary (const char *buf, int cnt)
c906108c 8280{
2d717e4f 8281 struct remote_state *rs = get_remote_state ();
c906108c
SS
8282 int i;
8283 unsigned char csum = 0;
224c3ddb 8284 char *buf2 = (char *) xmalloc (cnt + 6);
a5c0808e 8285 struct cleanup *old_chain = make_cleanup (xfree, buf2);
085dd6e6 8286
c906108c
SS
8287 int ch;
8288 int tcount = 0;
8289 char *p;
8290
e24a49d8
PA
8291 /* Catch cases like trying to read memory or listing threads while
8292 we're waiting for a stop reply. The remote server wouldn't be
8293 ready to handle this request, so we'd hang and timeout. We don't
8294 have to worry about this in synchronous mode, because in that
8295 case it's not possible to issue a command while the target is
74531fed
PA
8296 running. This is not a problem in non-stop mode, because in that
8297 case, the stub is always ready to process serial input. */
6efcd9a8
PA
8298 if (!target_is_non_stop_p ()
8299 && target_is_async_p ()
8300 && rs->waiting_for_stop_reply)
9597b22a
DE
8301 {
8302 error (_("Cannot execute this command while the target is running.\n"
8303 "Use the \"interrupt\" command to stop the target\n"
8304 "and then try again."));
8305 }
e24a49d8 8306
2d717e4f
DJ
8307 /* We're sending out a new packet. Make sure we don't look at a
8308 stale cached response. */
8309 rs->cached_wait_status = 0;
8310
c906108c
SS
8311 /* Copy the packet into buffer BUF2, encapsulating it
8312 and giving it a checksum. */
8313
c906108c
SS
8314 p = buf2;
8315 *p++ = '$';
8316
8317 for (i = 0; i < cnt; i++)
8318 {
8319 csum += buf[i];
8320 *p++ = buf[i];
8321 }
8322 *p++ = '#';
8323 *p++ = tohex ((csum >> 4) & 0xf);
8324 *p++ = tohex (csum & 0xf);
8325
8326 /* Send it over and over until we get a positive ack. */
8327
8328 while (1)
8329 {
8330 int started_error_output = 0;
8331
8332 if (remote_debug)
8333 {
6e5abd65
PA
8334 struct cleanup *old_chain;
8335 char *str;
8336
c906108c 8337 *p = '\0';
6e5abd65
PA
8338 str = escape_buffer (buf2, p - buf2);
8339 old_chain = make_cleanup (xfree, str);
8340 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
0f71a2f6 8341 gdb_flush (gdb_stdlog);
6e5abd65 8342 do_cleanups (old_chain);
c906108c 8343 }
c33e31fd 8344 remote_serial_write (buf2, p - buf2);
c906108c 8345
a6f3e723
SL
8346 /* If this is a no acks version of the remote protocol, send the
8347 packet and move on. */
8348 if (rs->noack_mode)
8349 break;
8350
74531fed
PA
8351 /* Read until either a timeout occurs (-2) or '+' is read.
8352 Handle any notification that arrives in the mean time. */
c906108c
SS
8353 while (1)
8354 {
8355 ch = readchar (remote_timeout);
8356
c5aa993b 8357 if (remote_debug)
c906108c
SS
8358 {
8359 switch (ch)
8360 {
8361 case '+':
1216fa2c 8362 case '-':
c906108c
SS
8363 case SERIAL_TIMEOUT:
8364 case '$':
74531fed 8365 case '%':
c906108c
SS
8366 if (started_error_output)
8367 {
8368 putchar_unfiltered ('\n');
8369 started_error_output = 0;
8370 }
8371 }
8372 }
8373
8374 switch (ch)
8375 {
8376 case '+':
8377 if (remote_debug)
0f71a2f6 8378 fprintf_unfiltered (gdb_stdlog, "Ack\n");
a5c0808e 8379 do_cleanups (old_chain);
c906108c 8380 return 1;
1216fa2c
AC
8381 case '-':
8382 if (remote_debug)
8383 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 8384 /* FALLTHROUGH */
c906108c 8385 case SERIAL_TIMEOUT:
c5aa993b 8386 tcount++;
c906108c 8387 if (tcount > 3)
a5c0808e
PA
8388 {
8389 do_cleanups (old_chain);
8390 return 0;
8391 }
23860348 8392 break; /* Retransmit buffer. */
c906108c
SS
8393 case '$':
8394 {
40e3f985 8395 if (remote_debug)
2bc416ba 8396 fprintf_unfiltered (gdb_stdlog,
23860348 8397 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
8398 /* It's probably an old response sent because an ACK
8399 was lost. Gobble up the packet and ack it so it
8400 doesn't get retransmitted when we resend this
8401 packet. */
6d820c5c 8402 skip_frame ();
c33e31fd 8403 remote_serial_write ("+", 1);
23860348 8404 continue; /* Now, go look for +. */
c906108c 8405 }
74531fed
PA
8406
8407 case '%':
8408 {
8409 int val;
8410
8411 /* If we got a notification, handle it, and go back to looking
8412 for an ack. */
8413 /* We've found the start of a notification. Now
8414 collect the data. */
8415 val = read_frame (&rs->buf, &rs->buf_size);
8416 if (val >= 0)
8417 {
8418 if (remote_debug)
8419 {
6e5abd65
PA
8420 struct cleanup *old_chain;
8421 char *str;
8422
8423 str = escape_buffer (rs->buf, val);
8424 old_chain = make_cleanup (xfree, str);
8425 fprintf_unfiltered (gdb_stdlog,
8426 " Notification received: %s\n",
8427 str);
8428 do_cleanups (old_chain);
74531fed 8429 }
5965e028 8430 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
8431 /* We're in sync now, rewait for the ack. */
8432 tcount = 0;
8433 }
8434 else
8435 {
8436 if (remote_debug)
8437 {
8438 if (!started_error_output)
8439 {
8440 started_error_output = 1;
8441 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
8442 }
8443 fputc_unfiltered (ch & 0177, gdb_stdlog);
8444 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
8445 }
8446 }
8447 continue;
8448 }
8449 /* fall-through */
c906108c
SS
8450 default:
8451 if (remote_debug)
8452 {
8453 if (!started_error_output)
8454 {
8455 started_error_output = 1;
0f71a2f6 8456 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 8457 }
0f71a2f6 8458 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
8459 }
8460 continue;
8461 }
23860348 8462 break; /* Here to retransmit. */
c906108c
SS
8463 }
8464
8465#if 0
8466 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
8467 able to get out next time we call QUIT, without anything as
8468 violent as interrupt_query. If we want to provide a way out of
8469 here without getting to the next QUIT, it should be based on
8470 hitting ^C twice as in remote_wait. */
c906108c
SS
8471 if (quit_flag)
8472 {
8473 quit_flag = 0;
8474 interrupt_query ();
8475 }
8476#endif
8477 }
a5c0808e
PA
8478
8479 do_cleanups (old_chain);
a6f3e723 8480 return 0;
c906108c
SS
8481}
8482
6d820c5c
DJ
8483/* Come here after finding the start of a frame when we expected an
8484 ack. Do our best to discard the rest of this packet. */
8485
8486static void
8487skip_frame (void)
8488{
8489 int c;
8490
8491 while (1)
8492 {
8493 c = readchar (remote_timeout);
8494 switch (c)
8495 {
8496 case SERIAL_TIMEOUT:
8497 /* Nothing we can do. */
8498 return;
8499 case '#':
8500 /* Discard the two bytes of checksum and stop. */
8501 c = readchar (remote_timeout);
8502 if (c >= 0)
8503 c = readchar (remote_timeout);
8504
8505 return;
8506 case '*': /* Run length encoding. */
8507 /* Discard the repeat count. */
8508 c = readchar (remote_timeout);
8509 if (c < 0)
8510 return;
8511 break;
8512 default:
8513 /* A regular character. */
8514 break;
8515 }
8516 }
8517}
8518
c906108c 8519/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
8520 into *BUF, verifying the checksum, length, and handling run-length
8521 compression. NUL terminate the buffer. If there is not enough room,
8522 expand *BUF using xrealloc.
c906108c 8523
c2d11a7d
JM
8524 Returns -1 on error, number of characters in buffer (ignoring the
8525 trailing NULL) on success. (could be extended to return one of the
23860348 8526 SERIAL status indications). */
c2d11a7d
JM
8527
8528static long
6d820c5c
DJ
8529read_frame (char **buf_p,
8530 long *sizeof_buf)
c906108c
SS
8531{
8532 unsigned char csum;
c2d11a7d 8533 long bc;
c906108c 8534 int c;
6d820c5c 8535 char *buf = *buf_p;
a6f3e723 8536 struct remote_state *rs = get_remote_state ();
c906108c
SS
8537
8538 csum = 0;
c2d11a7d 8539 bc = 0;
c906108c
SS
8540
8541 while (1)
8542 {
8543 c = readchar (remote_timeout);
c906108c
SS
8544 switch (c)
8545 {
8546 case SERIAL_TIMEOUT:
8547 if (remote_debug)
0f71a2f6 8548 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 8549 return -1;
c906108c
SS
8550 case '$':
8551 if (remote_debug)
0f71a2f6
JM
8552 fputs_filtered ("Saw new packet start in middle of old one\n",
8553 gdb_stdlog);
23860348 8554 return -1; /* Start a new packet, count retries. */
c906108c
SS
8555 case '#':
8556 {
8557 unsigned char pktcsum;
e1b09194
AC
8558 int check_0 = 0;
8559 int check_1 = 0;
c906108c 8560
c2d11a7d 8561 buf[bc] = '\0';
c906108c 8562
e1b09194
AC
8563 check_0 = readchar (remote_timeout);
8564 if (check_0 >= 0)
8565 check_1 = readchar (remote_timeout);
802188a7 8566
e1b09194
AC
8567 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
8568 {
8569 if (remote_debug)
2bc416ba 8570 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 8571 gdb_stdlog);
e1b09194
AC
8572 return -1;
8573 }
8574 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
8575 {
8576 if (remote_debug)
2bc416ba 8577 fputs_filtered ("Communication error in checksum\n",
23860348 8578 gdb_stdlog);
40e3f985
FN
8579 return -1;
8580 }
c906108c 8581
a6f3e723
SL
8582 /* Don't recompute the checksum; with no ack packets we
8583 don't have any way to indicate a packet retransmission
8584 is necessary. */
8585 if (rs->noack_mode)
8586 return bc;
8587
e1b09194 8588 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 8589 if (csum == pktcsum)
c2d11a7d 8590 return bc;
c906108c 8591
c5aa993b 8592 if (remote_debug)
c906108c 8593 {
6e5abd65
PA
8594 struct cleanup *old_chain;
8595 char *str;
8596
8597 str = escape_buffer (buf, bc);
8598 old_chain = make_cleanup (xfree, str);
8599 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
8600 "Bad checksum, sentsum=0x%x, "
8601 "csum=0x%x, buf=%s\n",
6e5abd65
PA
8602 pktcsum, csum, str);
8603 do_cleanups (old_chain);
c906108c 8604 }
c2d11a7d 8605 /* Number of characters in buffer ignoring trailing
23860348 8606 NULL. */
c2d11a7d 8607 return -1;
c906108c 8608 }
23860348 8609 case '*': /* Run length encoding. */
c2c6d25f
JM
8610 {
8611 int repeat;
c906108c 8612
a744cf53 8613 csum += c;
b4501125
AC
8614 c = readchar (remote_timeout);
8615 csum += c;
23860348 8616 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 8617
23860348 8618 /* The character before ``*'' is repeated. */
c2d11a7d 8619
6d820c5c 8620 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 8621 {
6d820c5c
DJ
8622 if (bc + repeat - 1 >= *sizeof_buf - 1)
8623 {
8624 /* Make some more room in the buffer. */
8625 *sizeof_buf += repeat;
224c3ddb 8626 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c
DJ
8627 buf = *buf_p;
8628 }
8629
c2d11a7d
JM
8630 memset (&buf[bc], buf[bc - 1], repeat);
8631 bc += repeat;
c2c6d25f
JM
8632 continue;
8633 }
8634
c2d11a7d 8635 buf[bc] = '\0';
6d820c5c 8636 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 8637 return -1;
c2c6d25f 8638 }
c906108c 8639 default:
6d820c5c 8640 if (bc >= *sizeof_buf - 1)
c906108c 8641 {
6d820c5c
DJ
8642 /* Make some more room in the buffer. */
8643 *sizeof_buf *= 2;
224c3ddb 8644 *buf_p = (char *) xrealloc (*buf_p, *sizeof_buf);
6d820c5c 8645 buf = *buf_p;
c906108c
SS
8646 }
8647
6d820c5c
DJ
8648 buf[bc++] = c;
8649 csum += c;
8650 continue;
c906108c
SS
8651 }
8652 }
8653}
8654
8655/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
8656 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8657 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8658 rather than timing out; this is used (in synchronous mode) to wait
8659 for a target that is is executing user code to stop. */
d9fcf2fb
JM
8660/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
8661 don't have to change all the calls to getpkt to deal with the
8662 return value, because at the moment I don't know what the right
23860348 8663 thing to do it for those. */
c906108c 8664void
6d820c5c
DJ
8665getpkt (char **buf,
8666 long *sizeof_buf,
c2d11a7d 8667 int forever)
d9fcf2fb 8668{
54887903 8669 getpkt_sane (buf, sizeof_buf, forever);
d9fcf2fb
JM
8670}
8671
8672
8673/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
8674 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
8675 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
8676 rather than timing out; this is used (in synchronous mode) to wait
8677 for a target that is is executing user code to stop. If FOREVER ==
8678 0, this function is allowed to time out gracefully and return an
74531fed
PA
8679 indication of this to the caller. Otherwise return the number of
8680 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
8681 enough reason to return to the caller. *IS_NOTIF is an output
8682 boolean that indicates whether *BUF holds a notification or not
8683 (a regular packet). */
74531fed 8684
3172dc30 8685static int
74531fed 8686getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 8687 int expecting_notif, int *is_notif)
c906108c 8688{
2d717e4f 8689 struct remote_state *rs = get_remote_state ();
c906108c
SS
8690 int c;
8691 int tries;
8692 int timeout;
df4b58fe 8693 int val = -1;
c906108c 8694
2d717e4f
DJ
8695 /* We're reading a new response. Make sure we don't look at a
8696 previously cached response. */
8697 rs->cached_wait_status = 0;
8698
6d820c5c 8699 strcpy (*buf, "timeout");
c906108c
SS
8700
8701 if (forever)
74531fed
PA
8702 timeout = watchdog > 0 ? watchdog : -1;
8703 else if (expecting_notif)
8704 timeout = 0; /* There should already be a char in the buffer. If
8705 not, bail out. */
c906108c
SS
8706 else
8707 timeout = remote_timeout;
8708
8709#define MAX_TRIES 3
8710
74531fed
PA
8711 /* Process any number of notifications, and then return when
8712 we get a packet. */
8713 for (;;)
c906108c 8714 {
d9c43928 8715 /* If we get a timeout or bad checksum, retry up to MAX_TRIES
74531fed
PA
8716 times. */
8717 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 8718 {
74531fed
PA
8719 /* This can loop forever if the remote side sends us
8720 characters continuously, but if it pauses, we'll get
8721 SERIAL_TIMEOUT from readchar because of timeout. Then
8722 we'll count that as a retry.
8723
8724 Note that even when forever is set, we will only wait
8725 forever prior to the start of a packet. After that, we
8726 expect characters to arrive at a brisk pace. They should
8727 show up within remote_timeout intervals. */
8728 do
8729 c = readchar (timeout);
8730 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
8731
8732 if (c == SERIAL_TIMEOUT)
8733 {
74531fed
PA
8734 if (expecting_notif)
8735 return -1; /* Don't complain, it's normal to not get
8736 anything in this case. */
8737
23860348 8738 if (forever) /* Watchdog went off? Kill the target. */
c906108c 8739 {
2acceee2 8740 QUIT;
78a095c3 8741 remote_unpush_target ();
598d3636
JK
8742 throw_error (TARGET_CLOSE_ERROR,
8743 _("Watchdog timeout has expired. "
8744 "Target detached."));
c906108c 8745 }
c906108c 8746 if (remote_debug)
0f71a2f6 8747 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 8748 }
74531fed
PA
8749 else
8750 {
8751 /* We've found the start of a packet or notification.
8752 Now collect the data. */
8753 val = read_frame (buf, sizeof_buf);
8754 if (val >= 0)
8755 break;
8756 }
8757
c33e31fd 8758 remote_serial_write ("-", 1);
c906108c 8759 }
c906108c 8760
74531fed
PA
8761 if (tries > MAX_TRIES)
8762 {
8763 /* We have tried hard enough, and just can't receive the
8764 packet/notification. Give up. */
8765 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 8766
74531fed
PA
8767 /* Skip the ack char if we're in no-ack mode. */
8768 if (!rs->noack_mode)
c33e31fd 8769 remote_serial_write ("+", 1);
74531fed
PA
8770 return -1;
8771 }
c906108c 8772
74531fed
PA
8773 /* If we got an ordinary packet, return that to our caller. */
8774 if (c == '$')
c906108c
SS
8775 {
8776 if (remote_debug)
43e526b9 8777 {
6e5abd65
PA
8778 struct cleanup *old_chain;
8779 char *str;
8780
8781 str = escape_buffer (*buf, val);
8782 old_chain = make_cleanup (xfree, str);
8783 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
8784 do_cleanups (old_chain);
43e526b9 8785 }
a6f3e723
SL
8786
8787 /* Skip the ack char if we're in no-ack mode. */
8788 if (!rs->noack_mode)
c33e31fd 8789 remote_serial_write ("+", 1);
fee9eda9
YQ
8790 if (is_notif != NULL)
8791 *is_notif = 0;
0876f84a 8792 return val;
c906108c
SS
8793 }
8794
74531fed
PA
8795 /* If we got a notification, handle it, and go back to looking
8796 for a packet. */
8797 else
8798 {
8799 gdb_assert (c == '%');
8800
8801 if (remote_debug)
8802 {
6e5abd65
PA
8803 struct cleanup *old_chain;
8804 char *str;
8805
8806 str = escape_buffer (*buf, val);
8807 old_chain = make_cleanup (xfree, str);
8808 fprintf_unfiltered (gdb_stdlog,
8809 " Notification received: %s\n",
8810 str);
8811 do_cleanups (old_chain);
74531fed 8812 }
fee9eda9
YQ
8813 if (is_notif != NULL)
8814 *is_notif = 1;
c906108c 8815
5965e028 8816 handle_notification (rs->notif_state, *buf);
c906108c 8817
74531fed 8818 /* Notifications require no acknowledgement. */
a6f3e723 8819
74531fed 8820 if (expecting_notif)
fee9eda9 8821 return val;
74531fed
PA
8822 }
8823 }
8824}
8825
8826static int
8827getpkt_sane (char **buf, long *sizeof_buf, int forever)
8828{
fee9eda9 8829 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
8830}
8831
8832static int
fee9eda9
YQ
8833getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
8834 int *is_notif)
74531fed 8835{
fee9eda9
YQ
8836 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
8837 is_notif);
c906108c 8838}
74531fed 8839
cbb8991c
DB
8840/* Check whether EVENT is a fork event for the process specified
8841 by the pid passed in DATA, and if it is, kill the fork child. */
8842
8843static int
8844kill_child_of_pending_fork (QUEUE (stop_reply_p) *q,
8845 QUEUE_ITER (stop_reply_p) *iter,
8846 stop_reply_p event,
8847 void *data)
8848{
19ba03f4 8849 struct queue_iter_param *param = (struct queue_iter_param *) data;
cbb8991c
DB
8850 int parent_pid = *(int *) param->input;
8851
8852 if (is_pending_fork_parent (&event->ws, parent_pid, event->ptid))
8853 {
8854 struct remote_state *rs = get_remote_state ();
8855 int child_pid = ptid_get_pid (event->ws.value.related_pid);
8856 int res;
8857
8858 res = remote_vkill (child_pid, rs);
8859 if (res != 0)
8860 error (_("Can't kill fork child process %d"), child_pid);
8861 }
8862
8863 return 1;
8864}
8865
8866/* Kill any new fork children of process PID that haven't been
8867 processed by follow_fork. */
8868
8869static void
8870kill_new_fork_children (int pid, struct remote_state *rs)
8871{
8872 struct thread_info *thread;
8873 struct notif_client *notif = &notif_client_stop;
8874 struct queue_iter_param param;
8875
8876 /* Kill the fork child threads of any threads in process PID
8877 that are stopped at a fork event. */
8878 ALL_NON_EXITED_THREADS (thread)
8879 {
8880 struct target_waitstatus *ws = &thread->pending_follow;
8881
8882 if (is_pending_fork_parent (ws, pid, thread->ptid))
8883 {
8884 struct remote_state *rs = get_remote_state ();
8885 int child_pid = ptid_get_pid (ws->value.related_pid);
8886 int res;
8887
8888 res = remote_vkill (child_pid, rs);
8889 if (res != 0)
8890 error (_("Can't kill fork child process %d"), child_pid);
8891 }
8892 }
8893
8894 /* Check for any pending fork events (not reported or processed yet)
8895 in process PID and kill those fork child threads as well. */
8896 remote_notif_get_pending_events (notif);
8897 param.input = &pid;
8898 param.output = NULL;
8899 QUEUE_iterate (stop_reply_p, stop_reply_queue,
8900 kill_child_of_pending_fork, &param);
8901}
8902
c906108c 8903\f
8020350c
DB
8904/* Target hook to kill the current inferior. */
8905
c906108c 8906static void
7d85a9c0 8907remote_kill (struct target_ops *ops)
43ff13b4 8908{
8020350c
DB
8909 int res = -1;
8910 int pid = ptid_get_pid (inferior_ptid);
8911 struct remote_state *rs = get_remote_state ();
0fdf84ca 8912
8020350c 8913 if (packet_support (PACKET_vKill) != PACKET_DISABLE)
0fdf84ca 8914 {
8020350c
DB
8915 /* If we're stopped while forking and we haven't followed yet,
8916 kill the child task. We need to do this before killing the
8917 parent task because if this is a vfork then the parent will
8918 be sleeping. */
8919 kill_new_fork_children (pid, rs);
8920
8921 res = remote_vkill (pid, rs);
8922 if (res == 0)
0fdf84ca 8923 {
8020350c 8924 target_mourn_inferior ();
0fdf84ca
PA
8925 return;
8926 }
8020350c 8927 }
0fdf84ca 8928
8020350c
DB
8929 /* If we are in 'target remote' mode and we are killing the only
8930 inferior, then we will tell gdbserver to exit and unpush the
8931 target. */
8932 if (res == -1 && !remote_multi_process_p (rs)
8933 && number_of_live_inferiors () == 1)
8934 {
8935 remote_kill_k ();
8936
8937 /* We've killed the remote end, we get to mourn it. If we are
8938 not in extended mode, mourning the inferior also unpushes
8939 remote_ops from the target stack, which closes the remote
8940 connection. */
8941 target_mourn_inferior ();
8942
8943 return;
0fdf84ca 8944 }
43ff13b4 8945
8020350c 8946 error (_("Can't kill process"));
43ff13b4
JM
8947}
8948
8020350c
DB
8949/* Send a kill request to the target using the 'vKill' packet. */
8950
82f73884
PA
8951static int
8952remote_vkill (int pid, struct remote_state *rs)
8953{
4082afcc 8954 if (packet_support (PACKET_vKill) == PACKET_DISABLE)
82f73884
PA
8955 return -1;
8956
8957 /* Tell the remote target to detach. */
bba74b36 8958 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
8959 putpkt (rs->buf);
8960 getpkt (&rs->buf, &rs->buf_size, 0);
8961
4082afcc
PA
8962 switch (packet_ok (rs->buf,
8963 &remote_protocol_packets[PACKET_vKill]))
8964 {
8965 case PACKET_OK:
8966 return 0;
8967 case PACKET_ERROR:
8968 return 1;
8969 case PACKET_UNKNOWN:
8970 return -1;
8971 default:
8972 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
8973 }
82f73884
PA
8974}
8975
8020350c
DB
8976/* Send a kill request to the target using the 'k' packet. */
8977
82f73884 8978static void
8020350c 8979remote_kill_k (void)
82f73884 8980{
8020350c
DB
8981 /* Catch errors so the user can quit from gdb even when we
8982 aren't on speaking terms with the remote system. */
8983 TRY
82f73884 8984 {
82f73884 8985 putpkt ("k");
82f73884 8986 }
8020350c
DB
8987 CATCH (ex, RETURN_MASK_ERROR)
8988 {
8989 if (ex.error == TARGET_CLOSE_ERROR)
8990 {
8991 /* If we got an (EOF) error that caused the target
8992 to go away, then we're done, that's what we wanted.
8993 "k" is susceptible to cause a premature EOF, given
8994 that the remote server isn't actually required to
8995 reply to "k", and it can happen that it doesn't
8996 even get to reply ACK to the "k". */
8997 return;
8998 }
82f73884 8999
8020350c
DB
9000 /* Otherwise, something went wrong. We didn't actually kill
9001 the target. Just propagate the exception, and let the
9002 user or higher layers decide what to do. */
9003 throw_exception (ex);
9004 }
9005 END_CATCH
82f73884
PA
9006}
9007
c906108c 9008static void
20f796c9 9009remote_mourn (struct target_ops *target)
c906108c 9010{
8020350c 9011 struct remote_state *rs = get_remote_state ();
ce5ce7ed 9012
8020350c
DB
9013 /* In 'target remote' mode with one inferior, we close the connection. */
9014 if (!rs->extended && number_of_live_inferiors () <= 1)
9015 {
9016 unpush_target (target);
c906108c 9017
8020350c
DB
9018 /* remote_close takes care of doing most of the clean up. */
9019 generic_mourn_inferior ();
9020 return;
9021 }
c906108c 9022
e24a49d8
PA
9023 /* In case we got here due to an error, but we're going to stay
9024 connected. */
9025 rs->waiting_for_stop_reply = 0;
9026
dc1981d7
PA
9027 /* If the current general thread belonged to the process we just
9028 detached from or has exited, the remote side current general
9029 thread becomes undefined. Considering a case like this:
9030
9031 - We just got here due to a detach.
9032 - The process that we're detaching from happens to immediately
9033 report a global breakpoint being hit in non-stop mode, in the
9034 same thread we had selected before.
9035 - GDB attaches to this process again.
9036 - This event happens to be the next event we handle.
9037
9038 GDB would consider that the current general thread didn't need to
9039 be set on the stub side (with Hg), since for all it knew,
9040 GENERAL_THREAD hadn't changed.
9041
9042 Notice that although in all-stop mode, the remote server always
9043 sets the current thread to the thread reporting the stop event,
9044 that doesn't happen in non-stop mode; in non-stop, the stub *must
9045 not* change the current thread when reporting a breakpoint hit,
9046 due to the decoupling of event reporting and event handling.
9047
9048 To keep things simple, we always invalidate our notion of the
9049 current thread. */
47f8a51d 9050 record_currthread (rs, minus_one_ptid);
dc1981d7 9051
8020350c 9052 /* Call common code to mark the inferior as not running. */
48aa3c27
PA
9053 generic_mourn_inferior ();
9054
d729566a 9055 if (!have_inferiors ())
2d717e4f 9056 {
82f73884
PA
9057 if (!remote_multi_process_p (rs))
9058 {
9059 /* Check whether the target is running now - some remote stubs
9060 automatically restart after kill. */
9061 putpkt ("?");
9062 getpkt (&rs->buf, &rs->buf_size, 0);
9063
9064 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
9065 {
3e43a32a
MS
9066 /* Assume that the target has been restarted. Set
9067 inferior_ptid so that bits of core GDB realizes
9068 there's something here, e.g., so that the user can
9069 say "kill" again. */
82f73884
PA
9070 inferior_ptid = magic_null_ptid;
9071 }
82f73884 9072 }
2d717e4f
DJ
9073 }
9074}
c906108c 9075
03583c20 9076static int
2bfc0540 9077extended_remote_supports_disable_randomization (struct target_ops *self)
03583c20 9078{
4082afcc 9079 return packet_support (PACKET_QDisableRandomization) == PACKET_ENABLE;
03583c20
UW
9080}
9081
9082static void
9083extended_remote_disable_randomization (int val)
9084{
9085 struct remote_state *rs = get_remote_state ();
9086 char *reply;
9087
bba74b36
YQ
9088 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
9089 val);
03583c20
UW
9090 putpkt (rs->buf);
9091 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
9092 if (*reply == '\0')
9093 error (_("Target does not support QDisableRandomization."));
9094 if (strcmp (reply, "OK") != 0)
9095 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
9096}
9097
2d717e4f
DJ
9098static int
9099extended_remote_run (char *args)
9100{
9101 struct remote_state *rs = get_remote_state ();
2d717e4f 9102 int len;
94585166 9103 const char *remote_exec_file = get_remote_exec_file ();
c906108c 9104
2d717e4f
DJ
9105 /* If the user has disabled vRun support, or we have detected that
9106 support is not available, do not try it. */
4082afcc 9107 if (packet_support (PACKET_vRun) == PACKET_DISABLE)
2d717e4f 9108 return -1;
424163ea 9109
2d717e4f
DJ
9110 strcpy (rs->buf, "vRun;");
9111 len = strlen (rs->buf);
c906108c 9112
2d717e4f
DJ
9113 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
9114 error (_("Remote file name too long for run packet"));
9f1b45b0
TT
9115 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len,
9116 strlen (remote_exec_file));
2d717e4f 9117
d1a41061 9118 gdb_assert (args != NULL);
2d717e4f
DJ
9119 if (*args)
9120 {
9121 struct cleanup *back_to;
9122 int i;
9123 char **argv;
9124
d1a41061 9125 argv = gdb_buildargv (args);
6e366df1 9126 back_to = make_cleanup_freeargv (argv);
2d717e4f
DJ
9127 for (i = 0; argv[i] != NULL; i++)
9128 {
9129 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
9130 error (_("Argument list too long for run packet"));
9131 rs->buf[len++] = ';';
9f1b45b0
TT
9132 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len,
9133 strlen (argv[i]));
2d717e4f
DJ
9134 }
9135 do_cleanups (back_to);
9136 }
9137
9138 rs->buf[len++] = '\0';
9139
9140 putpkt (rs->buf);
9141 getpkt (&rs->buf, &rs->buf_size, 0);
9142
4082afcc 9143 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]))
2d717e4f 9144 {
4082afcc 9145 case PACKET_OK:
3405876a 9146 /* We have a wait response. All is well. */
2d717e4f 9147 return 0;
4082afcc
PA
9148 case PACKET_UNKNOWN:
9149 return -1;
9150 case PACKET_ERROR:
2d717e4f
DJ
9151 if (remote_exec_file[0] == '\0')
9152 error (_("Running the default executable on the remote target failed; "
9153 "try \"set remote exec-file\"?"));
9154 else
9155 error (_("Running \"%s\" on the remote target failed"),
9156 remote_exec_file);
4082afcc
PA
9157 default:
9158 gdb_assert_not_reached (_("bad switch"));
2d717e4f 9159 }
c906108c
SS
9160}
9161
2d717e4f
DJ
9162/* In the extended protocol we want to be able to do things like
9163 "run" and have them basically work as expected. So we need
9164 a special create_inferior function. We support changing the
9165 executable file and the command line arguments, but not the
9166 environment. */
9167
43ff13b4 9168static void
77a19445
TT
9169extended_remote_create_inferior (struct target_ops *ops,
9170 char *exec_file, char *args,
9171 char **env, int from_tty)
43ff13b4 9172{
3405876a
PA
9173 int run_worked;
9174 char *stop_reply;
9175 struct remote_state *rs = get_remote_state ();
94585166 9176 const char *remote_exec_file = get_remote_exec_file ();
3405876a 9177
43ff13b4 9178 /* If running asynchronously, register the target file descriptor
23860348 9179 with the event loop. */
75c99385 9180 if (target_can_async_p ())
6a3753b3 9181 target_async (1);
43ff13b4 9182
03583c20 9183 /* Disable address space randomization if requested (and supported). */
2bfc0540 9184 if (extended_remote_supports_disable_randomization (ops))
03583c20
UW
9185 extended_remote_disable_randomization (disable_randomization);
9186
43ff13b4 9187 /* Now restart the remote server. */
3405876a
PA
9188 run_worked = extended_remote_run (args) != -1;
9189 if (!run_worked)
2d717e4f
DJ
9190 {
9191 /* vRun was not supported. Fail if we need it to do what the
9192 user requested. */
9193 if (remote_exec_file[0])
9194 error (_("Remote target does not support \"set remote exec-file\""));
9195 if (args[0])
9196 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 9197
2d717e4f
DJ
9198 /* Fall back to "R". */
9199 extended_remote_restart ();
9200 }
424163ea 9201
6c95b8df
PA
9202 if (!have_inferiors ())
9203 {
9204 /* Clean up from the last time we ran, before we mark the target
9205 running again. This will mark breakpoints uninserted, and
9206 get_offsets may insert breakpoints. */
9207 init_thread_list ();
9208 init_wait_for_inferior ();
9209 }
45280a52 9210
3405876a
PA
9211 /* vRun's success return is a stop reply. */
9212 stop_reply = run_worked ? rs->buf : NULL;
9213 add_current_inferior_and_thread (stop_reply);
c0a2216e 9214
2d717e4f
DJ
9215 /* Get updated offsets, if the stub uses qOffsets. */
9216 get_offsets ();
2d717e4f 9217}
c906108c 9218\f
c5aa993b 9219
b775012e
LM
9220/* Given a location's target info BP_TGT and the packet buffer BUF, output
9221 the list of conditions (in agent expression bytecode format), if any, the
9222 target needs to evaluate. The output is placed into the packet buffer
bba74b36 9223 started from BUF and ended at BUF_END. */
b775012e
LM
9224
9225static int
9226remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
9227 struct bp_target_info *bp_tgt, char *buf,
9228 char *buf_end)
b775012e
LM
9229{
9230 struct agent_expr *aexpr = NULL;
9231 int i, ix;
b775012e
LM
9232
9233 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
9234 return 0;
9235
9236 buf += strlen (buf);
bba74b36 9237 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
9238 buf++;
9239
9240 /* Send conditions to the target and free the vector. */
9241 for (ix = 0;
9242 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
9243 ix++)
9244 {
bba74b36 9245 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e
LM
9246 buf += strlen (buf);
9247 for (i = 0; i < aexpr->len; ++i)
9248 buf = pack_hex_byte (buf, aexpr->buf[i]);
9249 *buf = '\0';
9250 }
b775012e
LM
9251 return 0;
9252}
9253
d3ce09f5
SS
9254static void
9255remote_add_target_side_commands (struct gdbarch *gdbarch,
9256 struct bp_target_info *bp_tgt, char *buf)
9257{
9258 struct agent_expr *aexpr = NULL;
9259 int i, ix;
9260
9261 if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
9262 return;
9263
9264 buf += strlen (buf);
9265
9266 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
9267 buf += strlen (buf);
9268
9269 /* Concatenate all the agent expressions that are commands into the
9270 cmds parameter. */
9271 for (ix = 0;
9272 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
9273 ix++)
9274 {
9275 sprintf (buf, "X%x,", aexpr->len);
9276 buf += strlen (buf);
9277 for (i = 0; i < aexpr->len; ++i)
9278 buf = pack_hex_byte (buf, aexpr->buf[i]);
9279 *buf = '\0';
9280 }
d3ce09f5
SS
9281}
9282
8181d85f
DJ
9283/* Insert a breakpoint. On targets that have software breakpoint
9284 support, we ask the remote target to do the work; on targets
9285 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
9286
9287static int
3db08215
MM
9288remote_insert_breakpoint (struct target_ops *ops,
9289 struct gdbarch *gdbarch,
a6d9a66e 9290 struct bp_target_info *bp_tgt)
c906108c 9291{
d471ea57
AC
9292 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
9293 If it succeeds, then set the support to PACKET_ENABLE. If it
9294 fails, and the user has explicitly requested the Z support then
23860348 9295 report an error, otherwise, mark it disabled and go on. */
802188a7 9296
4082afcc 9297 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9298 {
0d5ed153 9299 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 9300 struct remote_state *rs;
bba74b36 9301 char *p, *endbuf;
7c0f6dcc 9302 int bpsize;
4fff2411 9303
28439a30
PA
9304 /* Make sure the remote is pointing at the right process, if
9305 necessary. */
9306 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9307 set_general_process ();
9308
a1dcb23a 9309 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
4fff2411
JZ
9310
9311 rs = get_remote_state ();
9312 p = rs->buf;
bba74b36 9313 endbuf = rs->buf + get_remote_packet_size ();
802188a7 9314
96baa820
JM
9315 *(p++) = 'Z';
9316 *(p++) = '0';
9317 *(p++) = ',';
7c0f6dcc 9318 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 9319 p += hexnumstr (p, addr);
bba74b36 9320 xsnprintf (p, endbuf - p, ",%d", bpsize);
802188a7 9321
efcc2da7 9322 if (remote_supports_cond_breakpoints (ops))
bba74b36 9323 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 9324
78eff0ec 9325 if (remote_can_run_breakpoint_commands (ops))
d3ce09f5
SS
9326 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9327
6d820c5c
DJ
9328 putpkt (rs->buf);
9329 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9330
6d820c5c 9331 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 9332 {
d471ea57
AC
9333 case PACKET_ERROR:
9334 return -1;
9335 case PACKET_OK:
7c0f6dcc
JL
9336 bp_tgt->placed_address = addr;
9337 bp_tgt->placed_size = bpsize;
d471ea57
AC
9338 return 0;
9339 case PACKET_UNKNOWN:
9340 break;
96baa820
JM
9341 }
9342 }
c906108c 9343
0000e5cc
PA
9344 /* If this breakpoint has target-side commands but this stub doesn't
9345 support Z0 packets, throw error. */
9346 if (!VEC_empty (agent_expr_p, bp_tgt->tcommands))
9347 throw_error (NOT_SUPPORTED_ERROR, _("\
9348Target doesn't support breakpoints that have target side commands."));
9349
3db08215 9350 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
c906108c
SS
9351}
9352
9353static int
3db08215
MM
9354remote_remove_breakpoint (struct target_ops *ops,
9355 struct gdbarch *gdbarch,
a6d9a66e 9356 struct bp_target_info *bp_tgt)
c906108c 9357{
8181d85f 9358 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 9359 struct remote_state *rs = get_remote_state ();
96baa820 9360
4082afcc 9361 if (packet_support (PACKET_Z0) != PACKET_DISABLE)
96baa820 9362 {
6d820c5c 9363 char *p = rs->buf;
bba74b36 9364 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 9365
28439a30
PA
9366 /* Make sure the remote is pointing at the right process, if
9367 necessary. */
9368 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9369 set_general_process ();
9370
96baa820
JM
9371 *(p++) = 'z';
9372 *(p++) = '0';
9373 *(p++) = ',';
9374
8181d85f
DJ
9375 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
9376 p += hexnumstr (p, addr);
bba74b36 9377 xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
802188a7 9378
6d820c5c
DJ
9379 putpkt (rs->buf);
9380 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9381
6d820c5c 9382 return (rs->buf[0] == 'E');
96baa820
JM
9383 }
9384
3db08215 9385 return memory_remove_breakpoint (ops, gdbarch, bp_tgt);
c906108c
SS
9386}
9387
f486487f 9388static enum Z_packet_type
d471ea57
AC
9389watchpoint_to_Z_packet (int type)
9390{
9391 switch (type)
9392 {
9393 case hw_write:
bb858e6a 9394 return Z_PACKET_WRITE_WP;
d471ea57
AC
9395 break;
9396 case hw_read:
bb858e6a 9397 return Z_PACKET_READ_WP;
d471ea57
AC
9398 break;
9399 case hw_access:
bb858e6a 9400 return Z_PACKET_ACCESS_WP;
d471ea57
AC
9401 break;
9402 default:
8e65ff28 9403 internal_error (__FILE__, __LINE__,
e2e0b3e5 9404 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
9405 }
9406}
9407
3c3bea1c 9408static int
f486487f
SM
9409remote_insert_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9410 enum target_hw_bp_type type, struct expression *cond)
96baa820 9411{
d01949b6 9412 struct remote_state *rs = get_remote_state ();
bba74b36 9413 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9414 char *p;
d471ea57 9415 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 9416
4082afcc 9417 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
85d721b8 9418 return 1;
802188a7 9419
28439a30
PA
9420 /* Make sure the remote is pointing at the right process, if
9421 necessary. */
9422 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9423 set_general_process ();
9424
bba74b36 9425 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 9426 p = strchr (rs->buf, '\0');
96baa820
JM
9427 addr = remote_address_masked (addr);
9428 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9429 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 9430
6d820c5c
DJ
9431 putpkt (rs->buf);
9432 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9433
6d820c5c 9434 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9435 {
9436 case PACKET_ERROR:
d471ea57 9437 return -1;
85d721b8
PA
9438 case PACKET_UNKNOWN:
9439 return 1;
d471ea57
AC
9440 case PACKET_OK:
9441 return 0;
9442 }
8e65ff28 9443 internal_error (__FILE__, __LINE__,
e2e0b3e5 9444 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
9445}
9446
283002cf
MR
9447static int
9448remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
9449 CORE_ADDR start, int length)
9450{
9451 CORE_ADDR diff = remote_address_masked (addr - start);
9452
9453 return diff < length;
9454}
9455
d471ea57 9456
3c3bea1c 9457static int
f486487f
SM
9458remote_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len,
9459 enum target_hw_bp_type type, struct expression *cond)
96baa820 9460{
d01949b6 9461 struct remote_state *rs = get_remote_state ();
bba74b36 9462 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 9463 char *p;
d471ea57
AC
9464 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
9465
4082afcc 9466 if (packet_support (PACKET_Z0 + packet) == PACKET_DISABLE)
5cffb350 9467 return -1;
802188a7 9468
28439a30
PA
9469 /* Make sure the remote is pointing at the right process, if
9470 necessary. */
9471 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9472 set_general_process ();
9473
bba74b36 9474 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 9475 p = strchr (rs->buf, '\0');
96baa820
JM
9476 addr = remote_address_masked (addr);
9477 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9478 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
9479 putpkt (rs->buf);
9480 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9481
6d820c5c 9482 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
9483 {
9484 case PACKET_ERROR:
9485 case PACKET_UNKNOWN:
9486 return -1;
9487 case PACKET_OK:
9488 return 0;
9489 }
8e65ff28 9490 internal_error (__FILE__, __LINE__,
e2e0b3e5 9491 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
9492}
9493
3c3bea1c 9494
501eef12 9495int remote_hw_watchpoint_limit = -1;
480a3f21 9496int remote_hw_watchpoint_length_limit = -1;
501eef12 9497int remote_hw_breakpoint_limit = -1;
d471ea57 9498
480a3f21 9499static int
31568a15
TT
9500remote_region_ok_for_hw_watchpoint (struct target_ops *self,
9501 CORE_ADDR addr, int len)
480a3f21
PW
9502{
9503 if (remote_hw_watchpoint_length_limit == 0)
9504 return 0;
9505 else if (remote_hw_watchpoint_length_limit < 0)
9506 return 1;
9507 else if (len <= remote_hw_watchpoint_length_limit)
9508 return 1;
9509 else
9510 return 0;
9511}
9512
b9362cc7 9513static int
5461485a 9514remote_check_watch_resources (struct target_ops *self,
f486487f 9515 enum bptype type, int cnt, int ot)
96baa820 9516{
3c3bea1c
GS
9517 if (type == bp_hardware_breakpoint)
9518 {
9519 if (remote_hw_breakpoint_limit == 0)
9520 return 0;
501eef12
AC
9521 else if (remote_hw_breakpoint_limit < 0)
9522 return 1;
3c3bea1c
GS
9523 else if (cnt <= remote_hw_breakpoint_limit)
9524 return 1;
9525 }
9526 else
9527 {
9528 if (remote_hw_watchpoint_limit == 0)
9529 return 0;
501eef12
AC
9530 else if (remote_hw_watchpoint_limit < 0)
9531 return 1;
3c3bea1c
GS
9532 else if (ot)
9533 return -1;
9534 else if (cnt <= remote_hw_watchpoint_limit)
9535 return 1;
9536 }
9537 return -1;
9538}
9539
f7e6eed5
PA
9540/* The to_stopped_by_sw_breakpoint method of target remote. */
9541
9542static int
9543remote_stopped_by_sw_breakpoint (struct target_ops *ops)
9544{
799a2abe 9545 struct thread_info *thread = inferior_thread ();
f7e6eed5 9546
799a2abe
PA
9547 return (thread->priv != NULL
9548 && thread->priv->stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT);
f7e6eed5
PA
9549}
9550
9551/* The to_supports_stopped_by_sw_breakpoint method of target
9552 remote. */
9553
9554static int
9555remote_supports_stopped_by_sw_breakpoint (struct target_ops *ops)
9556{
f7e6eed5
PA
9557 return (packet_support (PACKET_swbreak_feature) == PACKET_ENABLE);
9558}
9559
9560/* The to_stopped_by_hw_breakpoint method of target remote. */
9561
9562static int
9563remote_stopped_by_hw_breakpoint (struct target_ops *ops)
9564{
799a2abe 9565 struct thread_info *thread = inferior_thread ();
f7e6eed5 9566
799a2abe
PA
9567 return (thread->priv != NULL
9568 && thread->priv->stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT);
f7e6eed5
PA
9569}
9570
9571/* The to_supports_stopped_by_hw_breakpoint method of target
9572 remote. */
9573
9574static int
9575remote_supports_stopped_by_hw_breakpoint (struct target_ops *ops)
9576{
f7e6eed5
PA
9577 return (packet_support (PACKET_hwbreak_feature) == PACKET_ENABLE);
9578}
9579
b9362cc7 9580static int
6a109b6b 9581remote_stopped_by_watchpoint (struct target_ops *ops)
3c3bea1c 9582{
799a2abe 9583 struct thread_info *thread = inferior_thread ();
ee154bee 9584
799a2abe
PA
9585 return (thread->priv != NULL
9586 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT);
3c3bea1c
GS
9587}
9588
4aa7a7f5
JJ
9589static int
9590remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 9591{
799a2abe 9592 struct thread_info *thread = inferior_thread ();
a744cf53 9593
799a2abe
PA
9594 if (thread->priv != NULL
9595 && thread->priv->stop_reason == TARGET_STOPPED_BY_WATCHPOINT)
4aa7a7f5 9596 {
799a2abe
PA
9597 *addr_p = thread->priv->watch_data_address;
9598 return 1;
4aa7a7f5
JJ
9599 }
9600
799a2abe 9601 return 0;
3c3bea1c
GS
9602}
9603
9604
9605static int
23a26771 9606remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 9607 struct bp_target_info *bp_tgt)
3c3bea1c 9608{
0d5ed153 9609 CORE_ADDR addr = bp_tgt->reqstd_address;
4fff2411 9610 struct remote_state *rs;
bba74b36 9611 char *p, *endbuf;
dd61ec5c 9612 char *message;
0d5ed153 9613 int bpsize;
802188a7 9614
c8189ed1 9615 /* The length field should be set to the size of a breakpoint
8181d85f 9616 instruction, even though we aren't inserting one ourselves. */
c8189ed1 9617
0d5ed153 9618 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
3c3bea1c 9619
4082afcc 9620 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 9621 return -1;
2bc416ba 9622
28439a30
PA
9623 /* Make sure the remote is pointing at the right process, if
9624 necessary. */
9625 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9626 set_general_process ();
9627
4fff2411
JZ
9628 rs = get_remote_state ();
9629 p = rs->buf;
bba74b36 9630 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 9631
96baa820
JM
9632 *(p++) = 'Z';
9633 *(p++) = '1';
9634 *(p++) = ',';
802188a7 9635
0d5ed153 9636 addr = remote_address_masked (addr);
96baa820 9637 p += hexnumstr (p, (ULONGEST) addr);
0d5ed153 9638 xsnprintf (p, endbuf - p, ",%x", bpsize);
96baa820 9639
efcc2da7 9640 if (remote_supports_cond_breakpoints (self))
bba74b36 9641 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 9642
78eff0ec 9643 if (remote_can_run_breakpoint_commands (self))
d3ce09f5
SS
9644 remote_add_target_side_commands (gdbarch, bp_tgt, p);
9645
6d820c5c
DJ
9646 putpkt (rs->buf);
9647 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 9648
6d820c5c 9649 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
9650 {
9651 case PACKET_ERROR:
dd61ec5c
MW
9652 if (rs->buf[1] == '.')
9653 {
9654 message = strchr (rs->buf + 2, '.');
9655 if (message)
0316657e 9656 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
9657 }
9658 return -1;
d471ea57
AC
9659 case PACKET_UNKNOWN:
9660 return -1;
9661 case PACKET_OK:
0d5ed153
MR
9662 bp_tgt->placed_address = addr;
9663 bp_tgt->placed_size = bpsize;
d471ea57
AC
9664 return 0;
9665 }
8e65ff28 9666 internal_error (__FILE__, __LINE__,
e2e0b3e5 9667 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
9668}
9669
d471ea57 9670
802188a7 9671static int
a64dc96c 9672remote_remove_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch,
a6d9a66e 9673 struct bp_target_info *bp_tgt)
96baa820 9674{
8181d85f 9675 CORE_ADDR addr;
d01949b6 9676 struct remote_state *rs = get_remote_state ();
6d820c5c 9677 char *p = rs->buf;
bba74b36 9678 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 9679
4082afcc 9680 if (packet_support (PACKET_Z1) == PACKET_DISABLE)
5cffb350 9681 return -1;
802188a7 9682
28439a30
PA
9683 /* Make sure the remote is pointing at the right process, if
9684 necessary. */
9685 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
9686 set_general_process ();
9687
96baa820
JM
9688 *(p++) = 'z';
9689 *(p++) = '1';
9690 *(p++) = ',';
802188a7 9691
8181d85f 9692 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 9693 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 9694 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
96baa820 9695
6d820c5c
DJ
9696 putpkt (rs->buf);
9697 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 9698
6d820c5c 9699 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
9700 {
9701 case PACKET_ERROR:
9702 case PACKET_UNKNOWN:
9703 return -1;
9704 case PACKET_OK:
9705 return 0;
9706 }
8e65ff28 9707 internal_error (__FILE__, __LINE__,
e2e0b3e5 9708 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 9709}
96baa820 9710
4a5e7a5b
PA
9711/* Verify memory using the "qCRC:" request. */
9712
9713static int
9714remote_verify_memory (struct target_ops *ops,
9715 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
9716{
9717 struct remote_state *rs = get_remote_state ();
9718 unsigned long host_crc, target_crc;
9719 char *tmp;
9720
936d2992
PA
9721 /* It doesn't make sense to use qCRC if the remote target is
9722 connected but not running. */
9723 if (target_has_execution && packet_support (PACKET_qCRC) != PACKET_DISABLE)
9724 {
9725 enum packet_result result;
28439a30 9726
936d2992
PA
9727 /* Make sure the remote is pointing at the right process. */
9728 set_general_process ();
4a5e7a5b 9729
936d2992
PA
9730 /* FIXME: assumes lma can fit into long. */
9731 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
9732 (long) lma, (long) size);
9733 putpkt (rs->buf);
4a5e7a5b 9734
936d2992
PA
9735 /* Be clever; compute the host_crc before waiting for target
9736 reply. */
9737 host_crc = xcrc32 (data, size, 0xffffffff);
9738
9739 getpkt (&rs->buf, &rs->buf_size, 0);
4a5e7a5b 9740
936d2992
PA
9741 result = packet_ok (rs->buf,
9742 &remote_protocol_packets[PACKET_qCRC]);
9743 if (result == PACKET_ERROR)
9744 return -1;
9745 else if (result == PACKET_OK)
9746 {
9747 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
9748 target_crc = target_crc * 16 + fromhex (*tmp);
4a5e7a5b 9749
936d2992
PA
9750 return (host_crc == target_crc);
9751 }
9752 }
4a5e7a5b 9753
936d2992 9754 return simple_verify_memory (ops, data, lma, size);
4a5e7a5b
PA
9755}
9756
c906108c
SS
9757/* compare-sections command
9758
9759 With no arguments, compares each loadable section in the exec bfd
9760 with the same memory range on the target, and reports mismatches.
4a5e7a5b 9761 Useful for verifying the image on the target against the exec file. */
e514a9d6 9762
c906108c 9763static void
fba45db2 9764compare_sections_command (char *args, int from_tty)
c906108c
SS
9765{
9766 asection *s;
c906108c 9767 struct cleanup *old_chain;
948f8e3d 9768 gdb_byte *sectdata;
ce359b09 9769 const char *sectname;
c906108c
SS
9770 bfd_size_type size;
9771 bfd_vma lma;
9772 int matched = 0;
9773 int mismatched = 0;
4a5e7a5b 9774 int res;
95cf3b38 9775 int read_only = 0;
c906108c
SS
9776
9777 if (!exec_bfd)
8a3fe4f8 9778 error (_("command cannot be used without an exec file"));
c906108c 9779
28439a30
PA
9780 /* Make sure the remote is pointing at the right process. */
9781 set_general_process ();
9782
95cf3b38
DT
9783 if (args != NULL && strcmp (args, "-r") == 0)
9784 {
9785 read_only = 1;
9786 args = NULL;
9787 }
9788
c5aa993b 9789 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
9790 {
9791 if (!(s->flags & SEC_LOAD))
0df8b418 9792 continue; /* Skip non-loadable section. */
c906108c 9793
95cf3b38
DT
9794 if (read_only && (s->flags & SEC_READONLY) == 0)
9795 continue; /* Skip writeable sections */
9796
2c500098 9797 size = bfd_get_section_size (s);
c906108c 9798 if (size == 0)
0df8b418 9799 continue; /* Skip zero-length section. */
c906108c 9800
ce359b09 9801 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 9802 if (args && strcmp (args, sectname) != 0)
0df8b418 9803 continue; /* Not the section selected by user. */
c906108c 9804
0df8b418 9805 matched = 1; /* Do this section. */
c906108c 9806 lma = s->lma;
c906108c 9807
224c3ddb 9808 sectdata = (gdb_byte *) xmalloc (size);
b8c9b27d 9809 old_chain = make_cleanup (xfree, sectdata);
c906108c 9810 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
c906108c 9811
4a5e7a5b
PA
9812 res = target_verify_memory (sectdata, lma, size);
9813
9814 if (res == -1)
5af949e3 9815 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
9816 paddress (target_gdbarch (), lma),
9817 paddress (target_gdbarch (), lma + size));
c906108c 9818
5af949e3 9819 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
9820 paddress (target_gdbarch (), lma),
9821 paddress (target_gdbarch (), lma + size));
4a5e7a5b 9822 if (res)
c906108c
SS
9823 printf_filtered ("matched.\n");
9824 else
c5aa993b
JM
9825 {
9826 printf_filtered ("MIS-MATCHED!\n");
9827 mismatched++;
9828 }
c906108c
SS
9829
9830 do_cleanups (old_chain);
9831 }
9832 if (mismatched > 0)
936d2992 9833 warning (_("One or more sections of the target image does not match\n\
8a3fe4f8 9834the loaded file\n"));
c906108c 9835 if (args && !matched)
a3f17187 9836 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
9837}
9838
0e7f50da
UW
9839/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
9840 into remote target. The number of bytes written to the remote
9841 target is returned, or -1 for error. */
9842
9b409511 9843static enum target_xfer_status
0e7f50da
UW
9844remote_write_qxfer (struct target_ops *ops, const char *object_name,
9845 const char *annex, const gdb_byte *writebuf,
9b409511 9846 ULONGEST offset, LONGEST len, ULONGEST *xfered_len,
0e7f50da
UW
9847 struct packet_config *packet)
9848{
9849 int i, buf_len;
9850 ULONGEST n;
0e7f50da
UW
9851 struct remote_state *rs = get_remote_state ();
9852 int max_size = get_memory_write_packet_size ();
9853
9854 if (packet->support == PACKET_DISABLE)
2ed4b548 9855 return TARGET_XFER_E_IO;
0e7f50da
UW
9856
9857 /* Insert header. */
9858 i = snprintf (rs->buf, max_size,
9859 "qXfer:%s:write:%s:%s:",
9860 object_name, annex ? annex : "",
9861 phex_nz (offset, sizeof offset));
9862 max_size -= (i + 1);
9863
9864 /* Escape as much data as fits into rs->buf. */
9865 buf_len = remote_escape_output
124e13d9 9866 (writebuf, len, 1, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
9867
9868 if (putpkt_binary (rs->buf, i + buf_len) < 0
9869 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9870 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 9871 return TARGET_XFER_E_IO;
0e7f50da
UW
9872
9873 unpack_varlen_hex (rs->buf, &n);
9b409511
YQ
9874
9875 *xfered_len = n;
9876 return TARGET_XFER_OK;
0e7f50da
UW
9877}
9878
0876f84a
DJ
9879/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
9880 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
9881 number of bytes read is returned, or 0 for EOF, or -1 for error.
9882 The number of bytes read may be less than LEN without indicating an
9883 EOF. PACKET is checked and updated to indicate whether the remote
9884 target supports this object. */
9885
9b409511 9886static enum target_xfer_status
0876f84a
DJ
9887remote_read_qxfer (struct target_ops *ops, const char *object_name,
9888 const char *annex,
9889 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
9b409511 9890 ULONGEST *xfered_len,
0876f84a
DJ
9891 struct packet_config *packet)
9892{
0876f84a 9893 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
9894 LONGEST i, n, packet_len;
9895
9896 if (packet->support == PACKET_DISABLE)
2ed4b548 9897 return TARGET_XFER_E_IO;
0876f84a
DJ
9898
9899 /* Check whether we've cached an end-of-object packet that matches
9900 this request. */
8e88304f 9901 if (rs->finished_object)
0876f84a 9902 {
8e88304f
TT
9903 if (strcmp (object_name, rs->finished_object) == 0
9904 && strcmp (annex ? annex : "", rs->finished_annex) == 0
9905 && offset == rs->finished_offset)
9b409511
YQ
9906 return TARGET_XFER_EOF;
9907
0876f84a
DJ
9908
9909 /* Otherwise, we're now reading something different. Discard
9910 the cache. */
8e88304f
TT
9911 xfree (rs->finished_object);
9912 xfree (rs->finished_annex);
9913 rs->finished_object = NULL;
9914 rs->finished_annex = NULL;
0876f84a
DJ
9915 }
9916
9917 /* Request only enough to fit in a single packet. The actual data
9918 may not, since we don't know how much of it will need to be escaped;
9919 the target is free to respond with slightly less data. We subtract
9920 five to account for the response type and the protocol frame. */
9921 n = min (get_remote_packet_size () - 5, len);
9922 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
9923 object_name, annex ? annex : "",
9924 phex_nz (offset, sizeof offset),
9925 phex_nz (n, sizeof n));
9926 i = putpkt (rs->buf);
9927 if (i < 0)
2ed4b548 9928 return TARGET_XFER_E_IO;
0876f84a
DJ
9929
9930 rs->buf[0] = '\0';
9931 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9932 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
2ed4b548 9933 return TARGET_XFER_E_IO;
0876f84a
DJ
9934
9935 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
9936 error (_("Unknown remote qXfer reply: %s"), rs->buf);
9937
9938 /* 'm' means there is (or at least might be) more data after this
9939 batch. That does not make sense unless there's at least one byte
9940 of data in this reply. */
9941 if (rs->buf[0] == 'm' && packet_len == 1)
9942 error (_("Remote qXfer reply contained no data."));
9943
9944 /* Got some data. */
bc20a4af
PA
9945 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
9946 packet_len - 1, readbuf, n);
0876f84a
DJ
9947
9948 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
9949 or possibly empty. If we have the final block of a non-empty
9950 object, record this fact to bypass a subsequent partial read. */
9951 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 9952 {
8e88304f
TT
9953 rs->finished_object = xstrdup (object_name);
9954 rs->finished_annex = xstrdup (annex ? annex : "");
9955 rs->finished_offset = offset + i;
0876f84a
DJ
9956 }
9957
9b409511
YQ
9958 if (i == 0)
9959 return TARGET_XFER_EOF;
9960 else
9961 {
9962 *xfered_len = i;
9963 return TARGET_XFER_OK;
9964 }
0876f84a
DJ
9965}
9966
9b409511 9967static enum target_xfer_status
4b8a223f 9968remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5 9969 const char *annex, gdb_byte *readbuf,
9b409511
YQ
9970 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
9971 ULONGEST *xfered_len)
c906108c 9972{
82f73884 9973 struct remote_state *rs;
c906108c 9974 int i;
6d820c5c 9975 char *p2;
1e3ff5ad 9976 char query_type;
124e13d9 9977 int unit_size = gdbarch_addressable_memory_unit_size (target_gdbarch ());
c906108c 9978
e6e4e701 9979 set_remote_traceframe ();
82f73884
PA
9980 set_general_thread (inferior_ptid);
9981
9982 rs = get_remote_state ();
9983
b2182ed2 9984 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
9985 if (object == TARGET_OBJECT_MEMORY)
9986 {
2d717e4f
DJ
9987 /* If the remote target is connected but not running, we should
9988 pass this request down to a lower stratum (e.g. the executable
9989 file). */
9990 if (!target_has_execution)
9b409511 9991 return TARGET_XFER_EOF;
2d717e4f 9992
21e3b9b9 9993 if (writebuf != NULL)
124e13d9
SM
9994 return remote_write_bytes (offset, writebuf, len, unit_size,
9995 xfered_len);
21e3b9b9 9996 else
124e13d9
SM
9997 return remote_read_bytes (ops, offset, readbuf, len, unit_size,
9998 xfered_len);
21e3b9b9
DJ
9999 }
10000
0df8b418 10001 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
10002 if (object == TARGET_OBJECT_SPU)
10003 {
10004 if (readbuf)
10005 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
9b409511
YQ
10006 xfered_len, &remote_protocol_packets
10007 [PACKET_qXfer_spu_read]);
0e7f50da
UW
10008 else
10009 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
9b409511
YQ
10010 xfered_len, &remote_protocol_packets
10011 [PACKET_qXfer_spu_write]);
0e7f50da
UW
10012 }
10013
4aa995e1
PA
10014 /* Handle extra signal info using qxfer packets. */
10015 if (object == TARGET_OBJECT_SIGNAL_INFO)
10016 {
10017 if (readbuf)
10018 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
9b409511 10019 xfered_len, &remote_protocol_packets
4aa995e1
PA
10020 [PACKET_qXfer_siginfo_read]);
10021 else
3e43a32a 10022 return remote_write_qxfer (ops, "siginfo", annex,
9b409511 10023 writebuf, offset, len, xfered_len,
4aa995e1
PA
10024 &remote_protocol_packets
10025 [PACKET_qXfer_siginfo_write]);
10026 }
10027
0fb4aa4b
PA
10028 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
10029 {
10030 if (readbuf)
3e43a32a 10031 return remote_read_qxfer (ops, "statictrace", annex,
9b409511 10032 readbuf, offset, len, xfered_len,
0fb4aa4b
PA
10033 &remote_protocol_packets
10034 [PACKET_qXfer_statictrace_read]);
10035 else
2ed4b548 10036 return TARGET_XFER_E_IO;
0fb4aa4b
PA
10037 }
10038
a76d924d
DJ
10039 /* Only handle flash writes. */
10040 if (writebuf != NULL)
10041 {
a76d924d
DJ
10042 switch (object)
10043 {
10044 case TARGET_OBJECT_FLASH:
9b409511
YQ
10045 return remote_flash_write (ops, offset, len, xfered_len,
10046 writebuf);
a76d924d
DJ
10047
10048 default:
2ed4b548 10049 return TARGET_XFER_E_IO;
a76d924d
DJ
10050 }
10051 }
4b8a223f 10052
1e3ff5ad
AC
10053 /* Map pre-existing objects onto letters. DO NOT do this for new
10054 objects!!! Instead specify new query packets. */
10055 switch (object)
c906108c 10056 {
1e3ff5ad
AC
10057 case TARGET_OBJECT_AVR:
10058 query_type = 'R';
10059 break;
802188a7
RM
10060
10061 case TARGET_OBJECT_AUXV:
0876f84a
DJ
10062 gdb_assert (annex == NULL);
10063 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
9b409511 10064 xfered_len,
0876f84a 10065 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 10066
23181151
DJ
10067 case TARGET_OBJECT_AVAILABLE_FEATURES:
10068 return remote_read_qxfer
9b409511 10069 (ops, "features", annex, readbuf, offset, len, xfered_len,
23181151
DJ
10070 &remote_protocol_packets[PACKET_qXfer_features]);
10071
cfa9d6d9
DJ
10072 case TARGET_OBJECT_LIBRARIES:
10073 return remote_read_qxfer
9b409511 10074 (ops, "libraries", annex, readbuf, offset, len, xfered_len,
cfa9d6d9
DJ
10075 &remote_protocol_packets[PACKET_qXfer_libraries]);
10076
2268b414
JK
10077 case TARGET_OBJECT_LIBRARIES_SVR4:
10078 return remote_read_qxfer
9b409511 10079 (ops, "libraries-svr4", annex, readbuf, offset, len, xfered_len,
2268b414
JK
10080 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
10081
fd79ecee
DJ
10082 case TARGET_OBJECT_MEMORY_MAP:
10083 gdb_assert (annex == NULL);
10084 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
9b409511 10085 xfered_len,
fd79ecee
DJ
10086 &remote_protocol_packets[PACKET_qXfer_memory_map]);
10087
07e059b5
VP
10088 case TARGET_OBJECT_OSDATA:
10089 /* Should only get here if we're connected. */
5d93a237 10090 gdb_assert (rs->remote_desc);
07e059b5 10091 return remote_read_qxfer
9b409511 10092 (ops, "osdata", annex, readbuf, offset, len, xfered_len,
07e059b5
VP
10093 &remote_protocol_packets[PACKET_qXfer_osdata]);
10094
dc146f7c
VP
10095 case TARGET_OBJECT_THREADS:
10096 gdb_assert (annex == NULL);
10097 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
9b409511 10098 xfered_len,
dc146f7c
VP
10099 &remote_protocol_packets[PACKET_qXfer_threads]);
10100
b3b9301e
PA
10101 case TARGET_OBJECT_TRACEFRAME_INFO:
10102 gdb_assert (annex == NULL);
10103 return remote_read_qxfer
9b409511 10104 (ops, "traceframe-info", annex, readbuf, offset, len, xfered_len,
b3b9301e 10105 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
10106
10107 case TARGET_OBJECT_FDPIC:
10108 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
9b409511 10109 xfered_len,
78d85199 10110 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
10111
10112 case TARGET_OBJECT_OPENVMS_UIB:
10113 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
9b409511 10114 xfered_len,
169081d0
TG
10115 &remote_protocol_packets[PACKET_qXfer_uib]);
10116
9accd112
MM
10117 case TARGET_OBJECT_BTRACE:
10118 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
9b409511 10119 xfered_len,
9accd112
MM
10120 &remote_protocol_packets[PACKET_qXfer_btrace]);
10121
f4abbc16
MM
10122 case TARGET_OBJECT_BTRACE_CONF:
10123 return remote_read_qxfer (ops, "btrace-conf", annex, readbuf, offset,
10124 len, xfered_len,
10125 &remote_protocol_packets[PACKET_qXfer_btrace_conf]);
10126
c78fa86a
GB
10127 case TARGET_OBJECT_EXEC_FILE:
10128 return remote_read_qxfer (ops, "exec-file", annex, readbuf, offset,
10129 len, xfered_len,
10130 &remote_protocol_packets[PACKET_qXfer_exec_file]);
10131
1e3ff5ad 10132 default:
2ed4b548 10133 return TARGET_XFER_E_IO;
c906108c
SS
10134 }
10135
0df8b418 10136 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 10137 large enough let the caller deal with it. */
ea9c271d 10138 if (len < get_remote_packet_size ())
2ed4b548 10139 return TARGET_XFER_E_IO;
ea9c271d 10140 len = get_remote_packet_size ();
1e3ff5ad 10141
23860348 10142 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 10143 if (!rs->remote_desc)
8a3fe4f8 10144 error (_("remote query is only available after target open"));
c906108c 10145
1e3ff5ad 10146 gdb_assert (annex != NULL);
4b8a223f 10147 gdb_assert (readbuf != NULL);
c906108c 10148
6d820c5c 10149 p2 = rs->buf;
c906108c
SS
10150 *p2++ = 'q';
10151 *p2++ = query_type;
10152
23860348
MS
10153 /* We used one buffer char for the remote protocol q command and
10154 another for the query type. As the remote protocol encapsulation
10155 uses 4 chars plus one extra in case we are debugging
10156 (remote_debug), we have PBUFZIZ - 7 left to pack the query
10157 string. */
c906108c 10158 i = 0;
ea9c271d 10159 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 10160 {
1e3ff5ad
AC
10161 /* Bad caller may have sent forbidden characters. */
10162 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
10163 *p2++ = annex[i];
c906108c
SS
10164 i++;
10165 }
1e3ff5ad
AC
10166 *p2 = '\0';
10167 gdb_assert (annex[i] == '\0');
c906108c 10168
6d820c5c 10169 i = putpkt (rs->buf);
c5aa993b 10170 if (i < 0)
2ed4b548 10171 return TARGET_XFER_E_IO;
c906108c 10172
6d820c5c
DJ
10173 getpkt (&rs->buf, &rs->buf_size, 0);
10174 strcpy ((char *) readbuf, rs->buf);
c906108c 10175
9b409511
YQ
10176 *xfered_len = strlen ((char *) readbuf);
10177 return TARGET_XFER_OK;
c906108c
SS
10178}
10179
08388c79
DE
10180static int
10181remote_search_memory (struct target_ops* ops,
10182 CORE_ADDR start_addr, ULONGEST search_space_len,
10183 const gdb_byte *pattern, ULONGEST pattern_len,
10184 CORE_ADDR *found_addrp)
10185{
f5656ead 10186 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
10187 struct remote_state *rs = get_remote_state ();
10188 int max_size = get_memory_write_packet_size ();
10189 struct packet_config *packet =
10190 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
10191 /* Number of packet bytes used to encode the pattern;
10192 this could be more than PATTERN_LEN due to escape characters. */
08388c79 10193 int escaped_pattern_len;
0df8b418 10194 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
10195 int used_pattern_len;
10196 int i;
10197 int found;
10198 ULONGEST found_addr;
10199
10200 /* Don't go to the target if we don't have to.
10201 This is done before checking packet->support to avoid the possibility that
10202 a success for this edge case means the facility works in general. */
10203 if (pattern_len > search_space_len)
10204 return 0;
10205 if (pattern_len == 0)
10206 {
10207 *found_addrp = start_addr;
10208 return 1;
10209 }
10210
10211 /* If we already know the packet isn't supported, fall back to the simple
10212 way of searching memory. */
10213
4082afcc 10214 if (packet_config_support (packet) == PACKET_DISABLE)
08388c79
DE
10215 {
10216 /* Target doesn't provided special support, fall back and use the
10217 standard support (copy memory and do the search here). */
10218 return simple_search_memory (ops, start_addr, search_space_len,
10219 pattern, pattern_len, found_addrp);
10220 }
10221
28439a30
PA
10222 /* Make sure the remote is pointing at the right process. */
10223 set_general_process ();
10224
08388c79
DE
10225 /* Insert header. */
10226 i = snprintf (rs->buf, max_size,
10227 "qSearch:memory:%s;%s;",
5af949e3 10228 phex_nz (start_addr, addr_size),
08388c79
DE
10229 phex_nz (search_space_len, sizeof (search_space_len)));
10230 max_size -= (i + 1);
10231
10232 /* Escape as much data as fits into rs->buf. */
10233 escaped_pattern_len =
124e13d9 10234 remote_escape_output (pattern, pattern_len, 1, (gdb_byte *) rs->buf + i,
08388c79
DE
10235 &used_pattern_len, max_size);
10236
10237 /* Bail if the pattern is too large. */
10238 if (used_pattern_len != pattern_len)
9b20d036 10239 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
10240
10241 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
10242 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
10243 || packet_ok (rs->buf, packet) != PACKET_OK)
10244 {
10245 /* The request may not have worked because the command is not
10246 supported. If so, fall back to the simple way. */
10247 if (packet->support == PACKET_DISABLE)
10248 {
10249 return simple_search_memory (ops, start_addr, search_space_len,
10250 pattern, pattern_len, found_addrp);
10251 }
10252 return -1;
10253 }
10254
10255 if (rs->buf[0] == '0')
10256 found = 0;
10257 else if (rs->buf[0] == '1')
10258 {
10259 found = 1;
10260 if (rs->buf[1] != ',')
10e0fa18 10261 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10262 unpack_varlen_hex (rs->buf + 2, &found_addr);
10263 *found_addrp = found_addr;
10264 }
10265 else
10e0fa18 10266 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
10267
10268 return found;
10269}
10270
96baa820 10271static void
a30bf1f1 10272remote_rcmd (struct target_ops *self, const char *command,
d9fcf2fb 10273 struct ui_file *outbuf)
96baa820 10274{
d01949b6 10275 struct remote_state *rs = get_remote_state ();
2e9f7625 10276 char *p = rs->buf;
96baa820 10277
5d93a237 10278 if (!rs->remote_desc)
8a3fe4f8 10279 error (_("remote rcmd is only available after target open"));
96baa820 10280
23860348 10281 /* Send a NULL command across as an empty command. */
7be570e7
JM
10282 if (command == NULL)
10283 command = "";
10284
23860348 10285 /* The query prefix. */
2e9f7625
DJ
10286 strcpy (rs->buf, "qRcmd,");
10287 p = strchr (rs->buf, '\0');
96baa820 10288
3e43a32a
MS
10289 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
10290 > get_remote_packet_size ())
8a3fe4f8 10291 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 10292
23860348 10293 /* Encode the actual command. */
a30bf1f1 10294 bin2hex ((const gdb_byte *) command, p, strlen (command));
96baa820 10295
6d820c5c 10296 if (putpkt (rs->buf) < 0)
8a3fe4f8 10297 error (_("Communication problem with target."));
96baa820
JM
10298
10299 /* get/display the response */
10300 while (1)
10301 {
2e9f7625
DJ
10302 char *buf;
10303
00bf0b85 10304 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 10305 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 10306 rs->buf[0] = '\0';
5b37825d
PW
10307 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
10308 {
10309 /* Timeout. Continue to (try to) read responses.
10310 This is better than stopping with an error, assuming the stub
10311 is still executing the (long) monitor command.
10312 If needed, the user can interrupt gdb using C-c, obtaining
10313 an effect similar to stop on timeout. */
10314 continue;
10315 }
2e9f7625 10316 buf = rs->buf;
96baa820 10317 if (buf[0] == '\0')
8a3fe4f8 10318 error (_("Target does not support this command."));
96baa820
JM
10319 if (buf[0] == 'O' && buf[1] != 'K')
10320 {
23860348 10321 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
10322 continue;
10323 }
10324 if (strcmp (buf, "OK") == 0)
10325 break;
7be570e7
JM
10326 if (strlen (buf) == 3 && buf[0] == 'E'
10327 && isdigit (buf[1]) && isdigit (buf[2]))
10328 {
8a3fe4f8 10329 error (_("Protocol error with Rcmd"));
7be570e7 10330 }
96baa820
JM
10331 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
10332 {
10333 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 10334
96baa820
JM
10335 fputc_unfiltered (c, outbuf);
10336 }
10337 break;
10338 }
10339}
10340
fd79ecee
DJ
10341static VEC(mem_region_s) *
10342remote_memory_map (struct target_ops *ops)
10343{
10344 VEC(mem_region_s) *result = NULL;
10345 char *text = target_read_stralloc (&current_target,
10346 TARGET_OBJECT_MEMORY_MAP, NULL);
10347
10348 if (text)
10349 {
10350 struct cleanup *back_to = make_cleanup (xfree, text);
a744cf53 10351
fd79ecee
DJ
10352 result = parse_memory_map (text);
10353 do_cleanups (back_to);
10354 }
10355
10356 return result;
10357}
10358
c906108c 10359static void
fba45db2 10360packet_command (char *args, int from_tty)
c906108c 10361{
d01949b6 10362 struct remote_state *rs = get_remote_state ();
c906108c 10363
5d93a237 10364 if (!rs->remote_desc)
8a3fe4f8 10365 error (_("command can only be used with remote target"));
c906108c 10366
c5aa993b 10367 if (!args)
8a3fe4f8 10368 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
10369
10370 puts_filtered ("sending: ");
10371 print_packet (args);
10372 puts_filtered ("\n");
10373 putpkt (args);
10374
6d820c5c 10375 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 10376 puts_filtered ("received: ");
6d820c5c 10377 print_packet (rs->buf);
c906108c
SS
10378 puts_filtered ("\n");
10379}
10380
10381#if 0
23860348 10382/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 10383
a14ed312 10384static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 10385
a14ed312 10386static void threadset_test_cmd (char *cmd, int tty);
c906108c 10387
a14ed312 10388static void threadalive_test (char *cmd, int tty);
c906108c 10389
a14ed312 10390static void threadlist_test_cmd (char *cmd, int tty);
c906108c 10391
23860348 10392int get_and_display_threadinfo (threadref *ref);
c906108c 10393
a14ed312 10394static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 10395
23860348 10396static int thread_display_step (threadref *ref, void *context);
c906108c 10397
a14ed312 10398static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 10399
a14ed312 10400static void init_remote_threadtests (void);
c906108c 10401
23860348 10402#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
10403
10404static void
fba45db2 10405threadset_test_cmd (char *cmd, int tty)
c906108c
SS
10406{
10407 int sample_thread = SAMPLE_THREAD;
10408
a3f17187 10409 printf_filtered (_("Remote threadset test\n"));
79d7f229 10410 set_general_thread (sample_thread);
c906108c
SS
10411}
10412
10413
10414static void
fba45db2 10415threadalive_test (char *cmd, int tty)
c906108c
SS
10416{
10417 int sample_thread = SAMPLE_THREAD;
79d7f229 10418 int pid = ptid_get_pid (inferior_ptid);
ba348170 10419 ptid_t ptid = ptid_build (pid, sample_thread, 0);
c906108c 10420
79d7f229 10421 if (remote_thread_alive (ptid))
c906108c
SS
10422 printf_filtered ("PASS: Thread alive test\n");
10423 else
10424 printf_filtered ("FAIL: Thread alive test\n");
10425}
10426
23860348 10427void output_threadid (char *title, threadref *ref);
c906108c
SS
10428
10429void
fba45db2 10430output_threadid (char *title, threadref *ref)
c906108c
SS
10431{
10432 char hexid[20];
10433
23860348 10434 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
10435 hexid[16] = 0;
10436 printf_filtered ("%s %s\n", title, (&hexid[0]));
10437}
10438
10439static void
fba45db2 10440threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
10441{
10442 int startflag = 1;
10443 threadref nextthread;
10444 int done, result_count;
10445 threadref threadlist[3];
10446
10447 printf_filtered ("Remote Threadlist test\n");
10448 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
10449 &result_count, &threadlist[0]))
10450 printf_filtered ("FAIL: threadlist test\n");
10451 else
10452 {
10453 threadref *scan = threadlist;
10454 threadref *limit = scan + result_count;
10455
10456 while (scan < limit)
10457 output_threadid (" thread ", scan++);
10458 }
10459}
10460
10461void
fba45db2 10462display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
10463{
10464 output_threadid ("Threadid: ", &info->threadid);
10465 printf_filtered ("Name: %s\n ", info->shortname);
10466 printf_filtered ("State: %s\n", info->display);
10467 printf_filtered ("other: %s\n\n", info->more_display);
10468}
10469
10470int
fba45db2 10471get_and_display_threadinfo (threadref *ref)
c906108c
SS
10472{
10473 int result;
10474 int set;
10475 struct gdb_ext_thread_info threadinfo;
10476
10477 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
10478 | TAG_MOREDISPLAY | TAG_DISPLAY;
10479 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
10480 display_thread_info (&threadinfo);
10481 return result;
10482}
10483
10484static void
fba45db2 10485threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
10486{
10487 int athread = SAMPLE_THREAD;
10488 threadref thread;
10489 int set;
10490
10491 int_to_threadref (&thread, athread);
10492 printf_filtered ("Remote Threadinfo test\n");
10493 if (!get_and_display_threadinfo (&thread))
10494 printf_filtered ("FAIL cannot get thread info\n");
10495}
10496
10497static int
fba45db2 10498thread_display_step (threadref *ref, void *context)
c906108c
SS
10499{
10500 /* output_threadid(" threadstep ",ref); *//* simple test */
10501 return get_and_display_threadinfo (ref);
10502}
10503
10504static void
fba45db2 10505threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
10506{
10507 printf_filtered ("Remote Threadlist update test\n");
10508 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
10509}
10510
10511static void
10512init_remote_threadtests (void)
10513{
3e43a32a
MS
10514 add_com ("tlist", class_obscure, threadlist_test_cmd,
10515 _("Fetch and print the remote list of "
10516 "thread identifiers, one pkt only"));
c906108c 10517 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 10518 _("Fetch and display info about one thread"));
c906108c 10519 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 10520 _("Test setting to a different thread"));
c906108c 10521 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 10522 _("Iterate through updating all remote thread info"));
c906108c 10523 add_com ("talive", class_obscure, threadalive_test,
1bedd215 10524 _(" Remote thread alive test "));
c906108c
SS
10525}
10526
10527#endif /* 0 */
10528
f3fb8c85
MS
10529/* Convert a thread ID to a string. Returns the string in a static
10530 buffer. */
10531
10532static char *
117de6a9 10533remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 10534{
79d7f229 10535 static char buf[64];
82f73884 10536 struct remote_state *rs = get_remote_state ();
f3fb8c85 10537
7cee1e54
PA
10538 if (ptid_equal (ptid, null_ptid))
10539 return normal_pid_to_str (ptid);
10540 else if (ptid_is_pid (ptid))
ecd0ada5
PA
10541 {
10542 /* Printing an inferior target id. */
10543
10544 /* When multi-process extensions are off, there's no way in the
10545 remote protocol to know the remote process id, if there's any
10546 at all. There's one exception --- when we're connected with
10547 target extended-remote, and we manually attached to a process
10548 with "attach PID". We don't record anywhere a flag that
10549 allows us to distinguish that case from the case of
10550 connecting with extended-remote and the stub already being
10551 attached to a process, and reporting yes to qAttached, hence
10552 no smart special casing here. */
10553 if (!remote_multi_process_p (rs))
10554 {
10555 xsnprintf (buf, sizeof buf, "Remote target");
10556 return buf;
10557 }
10558
10559 return normal_pid_to_str (ptid);
82f73884 10560 }
ecd0ada5 10561 else
79d7f229 10562 {
ecd0ada5
PA
10563 if (ptid_equal (magic_null_ptid, ptid))
10564 xsnprintf (buf, sizeof buf, "Thread <main>");
8020350c 10565 else if (remote_multi_process_p (rs))
de0d863e
DB
10566 if (ptid_get_lwp (ptid) == 0)
10567 return normal_pid_to_str (ptid);
10568 else
10569 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
10570 ptid_get_pid (ptid), ptid_get_lwp (ptid));
ecd0ada5
PA
10571 else
10572 xsnprintf (buf, sizeof buf, "Thread %ld",
ba348170 10573 ptid_get_lwp (ptid));
79d7f229
PA
10574 return buf;
10575 }
f3fb8c85
MS
10576}
10577
38691318
KB
10578/* Get the address of the thread local variable in OBJFILE which is
10579 stored at OFFSET within the thread local storage for thread PTID. */
10580
10581static CORE_ADDR
117de6a9
PA
10582remote_get_thread_local_address (struct target_ops *ops,
10583 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 10584{
4082afcc 10585 if (packet_support (PACKET_qGetTLSAddr) != PACKET_DISABLE)
38691318
KB
10586 {
10587 struct remote_state *rs = get_remote_state ();
6d820c5c 10588 char *p = rs->buf;
82f73884 10589 char *endp = rs->buf + get_remote_packet_size ();
571dd617 10590 enum packet_result result;
38691318
KB
10591
10592 strcpy (p, "qGetTLSAddr:");
10593 p += strlen (p);
82f73884 10594 p = write_ptid (p, endp, ptid);
38691318
KB
10595 *p++ = ',';
10596 p += hexnumstr (p, offset);
10597 *p++ = ',';
10598 p += hexnumstr (p, lm);
10599 *p++ = '\0';
10600
6d820c5c
DJ
10601 putpkt (rs->buf);
10602 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
10603 result = packet_ok (rs->buf,
10604 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 10605 if (result == PACKET_OK)
38691318
KB
10606 {
10607 ULONGEST result;
10608
6d820c5c 10609 unpack_varlen_hex (rs->buf, &result);
38691318
KB
10610 return result;
10611 }
571dd617 10612 else if (result == PACKET_UNKNOWN)
109c3e39
AC
10613 throw_error (TLS_GENERIC_ERROR,
10614 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 10615 else
109c3e39
AC
10616 throw_error (TLS_GENERIC_ERROR,
10617 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
10618 }
10619 else
109c3e39
AC
10620 throw_error (TLS_GENERIC_ERROR,
10621 _("TLS not supported or disabled on this target"));
38691318
KB
10622 /* Not reached. */
10623 return 0;
10624}
10625
711e434b
PM
10626/* Provide thread local base, i.e. Thread Information Block address.
10627 Returns 1 if ptid is found and thread_local_base is non zero. */
10628
70221824 10629static int
bd7ae0f5 10630remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr)
711e434b 10631{
4082afcc 10632 if (packet_support (PACKET_qGetTIBAddr) != PACKET_DISABLE)
711e434b
PM
10633 {
10634 struct remote_state *rs = get_remote_state ();
10635 char *p = rs->buf;
10636 char *endp = rs->buf + get_remote_packet_size ();
10637 enum packet_result result;
10638
10639 strcpy (p, "qGetTIBAddr:");
10640 p += strlen (p);
10641 p = write_ptid (p, endp, ptid);
10642 *p++ = '\0';
10643
10644 putpkt (rs->buf);
10645 getpkt (&rs->buf, &rs->buf_size, 0);
10646 result = packet_ok (rs->buf,
10647 &remote_protocol_packets[PACKET_qGetTIBAddr]);
10648 if (result == PACKET_OK)
10649 {
10650 ULONGEST result;
10651
10652 unpack_varlen_hex (rs->buf, &result);
10653 if (addr)
10654 *addr = (CORE_ADDR) result;
10655 return 1;
10656 }
10657 else if (result == PACKET_UNKNOWN)
10658 error (_("Remote target doesn't support qGetTIBAddr packet"));
10659 else
10660 error (_("Remote target failed to process qGetTIBAddr request"));
10661 }
10662 else
10663 error (_("qGetTIBAddr not supported or disabled on this target"));
10664 /* Not reached. */
10665 return 0;
10666}
10667
29709017
DJ
10668/* Support for inferring a target description based on the current
10669 architecture and the size of a 'g' packet. While the 'g' packet
10670 can have any size (since optional registers can be left off the
10671 end), some sizes are easily recognizable given knowledge of the
10672 approximate architecture. */
10673
10674struct remote_g_packet_guess
10675{
10676 int bytes;
10677 const struct target_desc *tdesc;
10678};
10679typedef struct remote_g_packet_guess remote_g_packet_guess_s;
10680DEF_VEC_O(remote_g_packet_guess_s);
10681
10682struct remote_g_packet_data
10683{
10684 VEC(remote_g_packet_guess_s) *guesses;
10685};
10686
10687static struct gdbarch_data *remote_g_packet_data_handle;
10688
10689static void *
10690remote_g_packet_data_init (struct obstack *obstack)
10691{
10692 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
10693}
10694
10695void
10696register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
10697 const struct target_desc *tdesc)
10698{
10699 struct remote_g_packet_data *data
19ba03f4
SM
10700 = ((struct remote_g_packet_data *)
10701 gdbarch_data (gdbarch, remote_g_packet_data_handle));
29709017
DJ
10702 struct remote_g_packet_guess new_guess, *guess;
10703 int ix;
10704
10705 gdb_assert (tdesc != NULL);
10706
10707 for (ix = 0;
10708 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10709 ix++)
10710 if (guess->bytes == bytes)
10711 internal_error (__FILE__, __LINE__,
9b20d036 10712 _("Duplicate g packet description added for size %d"),
29709017
DJ
10713 bytes);
10714
10715 new_guess.bytes = bytes;
10716 new_guess.tdesc = tdesc;
10717 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
10718}
10719
d962ef82
DJ
10720/* Return 1 if remote_read_description would do anything on this target
10721 and architecture, 0 otherwise. */
10722
10723static int
10724remote_read_description_p (struct target_ops *target)
10725{
10726 struct remote_g_packet_data *data
19ba03f4
SM
10727 = ((struct remote_g_packet_data *)
10728 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
d962ef82
DJ
10729
10730 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10731 return 1;
10732
10733 return 0;
10734}
10735
29709017
DJ
10736static const struct target_desc *
10737remote_read_description (struct target_ops *target)
10738{
10739 struct remote_g_packet_data *data
19ba03f4
SM
10740 = ((struct remote_g_packet_data *)
10741 gdbarch_data (target_gdbarch (), remote_g_packet_data_handle));
29709017 10742
d962ef82
DJ
10743 /* Do not try this during initial connection, when we do not know
10744 whether there is a running but stopped thread. */
10745 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
2117c711 10746 return target->beneath->to_read_description (target->beneath);
d962ef82 10747
29709017
DJ
10748 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
10749 {
10750 struct remote_g_packet_guess *guess;
10751 int ix;
10752 int bytes = send_g_packet ();
10753
10754 for (ix = 0;
10755 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
10756 ix++)
10757 if (guess->bytes == bytes)
10758 return guess->tdesc;
10759
10760 /* We discard the g packet. A minor optimization would be to
10761 hold on to it, and fill the register cache once we have selected
10762 an architecture, but it's too tricky to do safely. */
10763 }
10764
2117c711 10765 return target->beneath->to_read_description (target->beneath);
29709017
DJ
10766}
10767
a6b151f1
DJ
10768/* Remote file transfer support. This is host-initiated I/O, not
10769 target-initiated; for target-initiated, see remote-fileio.c. */
10770
10771/* If *LEFT is at least the length of STRING, copy STRING to
10772 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10773 decrease *LEFT. Otherwise raise an error. */
10774
10775static void
10776remote_buffer_add_string (char **buffer, int *left, char *string)
10777{
10778 int len = strlen (string);
10779
10780 if (len > *left)
10781 error (_("Packet too long for target."));
10782
10783 memcpy (*buffer, string, len);
10784 *buffer += len;
10785 *left -= len;
10786
10787 /* NUL-terminate the buffer as a convenience, if there is
10788 room. */
10789 if (*left)
10790 **buffer = '\0';
10791}
10792
10793/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
10794 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10795 decrease *LEFT. Otherwise raise an error. */
10796
10797static void
10798remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
10799 int len)
10800{
10801 if (2 * len > *left)
10802 error (_("Packet too long for target."));
10803
10804 bin2hex (bytes, *buffer, len);
10805 *buffer += 2 * len;
10806 *left -= 2 * len;
10807
10808 /* NUL-terminate the buffer as a convenience, if there is
10809 room. */
10810 if (*left)
10811 **buffer = '\0';
10812}
10813
10814/* If *LEFT is large enough, convert VALUE to hex and add it to
10815 *BUFFER, update *BUFFER to point to the new end of the buffer, and
10816 decrease *LEFT. Otherwise raise an error. */
10817
10818static void
10819remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
10820{
10821 int len = hexnumlen (value);
10822
10823 if (len > *left)
10824 error (_("Packet too long for target."));
10825
10826 hexnumstr (*buffer, value);
10827 *buffer += len;
10828 *left -= len;
10829
10830 /* NUL-terminate the buffer as a convenience, if there is
10831 room. */
10832 if (*left)
10833 **buffer = '\0';
10834}
10835
10836/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
10837 value, *REMOTE_ERRNO to the remote error number or zero if none
10838 was included, and *ATTACHMENT to point to the start of the annex
10839 if any. The length of the packet isn't needed here; there may
10840 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
10841
10842 Return 0 if the packet could be parsed, -1 if it could not. If
10843 -1 is returned, the other variables may not be initialized. */
10844
10845static int
10846remote_hostio_parse_result (char *buffer, int *retcode,
10847 int *remote_errno, char **attachment)
10848{
10849 char *p, *p2;
10850
10851 *remote_errno = 0;
10852 *attachment = NULL;
10853
10854 if (buffer[0] != 'F')
10855 return -1;
10856
10857 errno = 0;
10858 *retcode = strtol (&buffer[1], &p, 16);
10859 if (errno != 0 || p == &buffer[1])
10860 return -1;
10861
10862 /* Check for ",errno". */
10863 if (*p == ',')
10864 {
10865 errno = 0;
10866 *remote_errno = strtol (p + 1, &p2, 16);
10867 if (errno != 0 || p + 1 == p2)
10868 return -1;
10869 p = p2;
10870 }
10871
10872 /* Check for ";attachment". If there is no attachment, the
10873 packet should end here. */
10874 if (*p == ';')
10875 {
10876 *attachment = p + 1;
10877 return 0;
10878 }
10879 else if (*p == '\0')
10880 return 0;
10881 else
10882 return -1;
10883}
10884
10885/* Send a prepared I/O packet to the target and read its response.
10886 The prepared packet is in the global RS->BUF before this function
10887 is called, and the answer is there when we return.
10888
10889 COMMAND_BYTES is the length of the request to send, which may include
10890 binary data. WHICH_PACKET is the packet configuration to check
10891 before attempting a packet. If an error occurs, *REMOTE_ERRNO
10892 is set to the error number and -1 is returned. Otherwise the value
10893 returned by the function is returned.
10894
10895 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
10896 attachment is expected; an error will be reported if there's a
10897 mismatch. If one is found, *ATTACHMENT will be set to point into
10898 the packet buffer and *ATTACHMENT_LEN will be set to the
10899 attachment's length. */
10900
10901static int
10902remote_hostio_send_command (int command_bytes, int which_packet,
10903 int *remote_errno, char **attachment,
10904 int *attachment_len)
10905{
10906 struct remote_state *rs = get_remote_state ();
10907 int ret, bytes_read;
10908 char *attachment_tmp;
10909
5d93a237 10910 if (!rs->remote_desc
4082afcc 10911 || packet_support (which_packet) == PACKET_DISABLE)
a6b151f1
DJ
10912 {
10913 *remote_errno = FILEIO_ENOSYS;
10914 return -1;
10915 }
10916
10917 putpkt_binary (rs->buf, command_bytes);
10918 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
10919
10920 /* If it timed out, something is wrong. Don't try to parse the
10921 buffer. */
10922 if (bytes_read < 0)
10923 {
10924 *remote_errno = FILEIO_EINVAL;
10925 return -1;
10926 }
10927
10928 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
10929 {
10930 case PACKET_ERROR:
10931 *remote_errno = FILEIO_EINVAL;
10932 return -1;
10933 case PACKET_UNKNOWN:
10934 *remote_errno = FILEIO_ENOSYS;
10935 return -1;
10936 case PACKET_OK:
10937 break;
10938 }
10939
10940 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
10941 &attachment_tmp))
10942 {
10943 *remote_errno = FILEIO_EINVAL;
10944 return -1;
10945 }
10946
10947 /* Make sure we saw an attachment if and only if we expected one. */
10948 if ((attachment_tmp == NULL && attachment != NULL)
10949 || (attachment_tmp != NULL && attachment == NULL))
10950 {
10951 *remote_errno = FILEIO_EINVAL;
10952 return -1;
10953 }
10954
10955 /* If an attachment was found, it must point into the packet buffer;
10956 work out how many bytes there were. */
10957 if (attachment_tmp != NULL)
10958 {
10959 *attachment = attachment_tmp;
10960 *attachment_len = bytes_read - (*attachment - rs->buf);
10961 }
10962
10963 return ret;
10964}
10965
80152258
PA
10966/* Invalidate the readahead cache. */
10967
10968static void
10969readahead_cache_invalidate (void)
10970{
10971 struct remote_state *rs = get_remote_state ();
10972
10973 rs->readahead_cache.fd = -1;
10974}
10975
10976/* Invalidate the readahead cache if it is holding data for FD. */
10977
10978static void
10979readahead_cache_invalidate_fd (int fd)
10980{
10981 struct remote_state *rs = get_remote_state ();
10982
10983 if (rs->readahead_cache.fd == fd)
10984 rs->readahead_cache.fd = -1;
10985}
10986
15a201c8
GB
10987/* Set the filesystem remote_hostio functions that take FILENAME
10988 arguments will use. Return 0 on success, or -1 if an error
10989 occurs (and set *REMOTE_ERRNO). */
10990
10991static int
10992remote_hostio_set_filesystem (struct inferior *inf, int *remote_errno)
10993{
10994 struct remote_state *rs = get_remote_state ();
10995 int required_pid = (inf == NULL || inf->fake_pid_p) ? 0 : inf->pid;
10996 char *p = rs->buf;
10997 int left = get_remote_packet_size () - 1;
10998 char arg[9];
10999 int ret;
11000
11001 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11002 return 0;
11003
11004 if (rs->fs_pid != -1 && required_pid == rs->fs_pid)
11005 return 0;
11006
11007 remote_buffer_add_string (&p, &left, "vFile:setfs:");
11008
11009 xsnprintf (arg, sizeof (arg), "%x", required_pid);
11010 remote_buffer_add_string (&p, &left, arg);
11011
11012 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_setfs,
11013 remote_errno, NULL, NULL);
11014
11015 if (packet_support (PACKET_vFile_setfs) == PACKET_DISABLE)
11016 return 0;
11017
11018 if (ret == 0)
11019 rs->fs_pid = required_pid;
11020
11021 return ret;
11022}
11023
12e2a5fd 11024/* Implementation of to_fileio_open. */
a6b151f1
DJ
11025
11026static int
cd897586 11027remote_hostio_open (struct target_ops *self,
07c138c8 11028 struct inferior *inf, const char *filename,
4313b8c0
GB
11029 int flags, int mode, int warn_if_slow,
11030 int *remote_errno)
a6b151f1
DJ
11031{
11032 struct remote_state *rs = get_remote_state ();
11033 char *p = rs->buf;
11034 int left = get_remote_packet_size () - 1;
11035
4313b8c0
GB
11036 if (warn_if_slow)
11037 {
11038 static int warning_issued = 0;
11039
11040 printf_unfiltered (_("Reading %s from remote target...\n"),
11041 filename);
11042
11043 if (!warning_issued)
11044 {
11045 warning (_("File transfers from remote targets can be slow."
11046 " Use \"set sysroot\" to access files locally"
11047 " instead."));
11048 warning_issued = 1;
11049 }
11050 }
11051
15a201c8
GB
11052 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11053 return -1;
11054
a6b151f1
DJ
11055 remote_buffer_add_string (&p, &left, "vFile:open:");
11056
11057 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11058 strlen (filename));
11059 remote_buffer_add_string (&p, &left, ",");
11060
11061 remote_buffer_add_int (&p, &left, flags);
11062 remote_buffer_add_string (&p, &left, ",");
11063
11064 remote_buffer_add_int (&p, &left, mode);
11065
11066 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
11067 remote_errno, NULL, NULL);
11068}
11069
12e2a5fd 11070/* Implementation of to_fileio_pwrite. */
a6b151f1
DJ
11071
11072static int
0d866f62
TT
11073remote_hostio_pwrite (struct target_ops *self,
11074 int fd, const gdb_byte *write_buf, int len,
a6b151f1
DJ
11075 ULONGEST offset, int *remote_errno)
11076{
11077 struct remote_state *rs = get_remote_state ();
11078 char *p = rs->buf;
11079 int left = get_remote_packet_size ();
11080 int out_len;
11081
80152258
PA
11082 readahead_cache_invalidate_fd (fd);
11083
a6b151f1
DJ
11084 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
11085
11086 remote_buffer_add_int (&p, &left, fd);
11087 remote_buffer_add_string (&p, &left, ",");
11088
11089 remote_buffer_add_int (&p, &left, offset);
11090 remote_buffer_add_string (&p, &left, ",");
11091
124e13d9 11092 p += remote_escape_output (write_buf, len, 1, (gdb_byte *) p, &out_len,
a6b151f1
DJ
11093 get_remote_packet_size () - (p - rs->buf));
11094
11095 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
11096 remote_errno, NULL, NULL);
11097}
11098
80152258
PA
11099/* Helper for the implementation of to_fileio_pread. Read the file
11100 from the remote side with vFile:pread. */
a6b151f1
DJ
11101
11102static int
80152258
PA
11103remote_hostio_pread_vFile (struct target_ops *self,
11104 int fd, gdb_byte *read_buf, int len,
11105 ULONGEST offset, int *remote_errno)
a6b151f1
DJ
11106{
11107 struct remote_state *rs = get_remote_state ();
11108 char *p = rs->buf;
11109 char *attachment;
11110 int left = get_remote_packet_size ();
11111 int ret, attachment_len;
11112 int read_len;
11113
11114 remote_buffer_add_string (&p, &left, "vFile:pread:");
11115
11116 remote_buffer_add_int (&p, &left, fd);
11117 remote_buffer_add_string (&p, &left, ",");
11118
11119 remote_buffer_add_int (&p, &left, len);
11120 remote_buffer_add_string (&p, &left, ",");
11121
11122 remote_buffer_add_int (&p, &left, offset);
11123
11124 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
11125 remote_errno, &attachment,
11126 &attachment_len);
11127
11128 if (ret < 0)
11129 return ret;
11130
bc20a4af 11131 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
11132 read_buf, len);
11133 if (read_len != ret)
11134 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
11135
11136 return ret;
11137}
11138
80152258
PA
11139/* Serve pread from the readahead cache. Returns number of bytes
11140 read, or 0 if the request can't be served from the cache. */
11141
11142static int
11143remote_hostio_pread_from_cache (struct remote_state *rs,
11144 int fd, gdb_byte *read_buf, size_t len,
11145 ULONGEST offset)
11146{
11147 struct readahead_cache *cache = &rs->readahead_cache;
11148
11149 if (cache->fd == fd
11150 && cache->offset <= offset
11151 && offset < cache->offset + cache->bufsize)
11152 {
11153 ULONGEST max = cache->offset + cache->bufsize;
11154
11155 if (offset + len > max)
11156 len = max - offset;
11157
11158 memcpy (read_buf, cache->buf + offset - cache->offset, len);
11159 return len;
11160 }
11161
11162 return 0;
11163}
11164
11165/* Implementation of to_fileio_pread. */
11166
11167static int
11168remote_hostio_pread (struct target_ops *self,
11169 int fd, gdb_byte *read_buf, int len,
11170 ULONGEST offset, int *remote_errno)
11171{
11172 int ret;
11173 struct remote_state *rs = get_remote_state ();
11174 struct readahead_cache *cache = &rs->readahead_cache;
11175
11176 ret = remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11177 if (ret > 0)
11178 {
11179 cache->hit_count++;
11180
11181 if (remote_debug)
11182 fprintf_unfiltered (gdb_stdlog, "readahead cache hit %s\n",
11183 pulongest (cache->hit_count));
11184 return ret;
11185 }
11186
11187 cache->miss_count++;
11188 if (remote_debug)
11189 fprintf_unfiltered (gdb_stdlog, "readahead cache miss %s\n",
11190 pulongest (cache->miss_count));
11191
11192 cache->fd = fd;
11193 cache->offset = offset;
11194 cache->bufsize = get_remote_packet_size ();
224c3ddb 11195 cache->buf = (gdb_byte *) xrealloc (cache->buf, cache->bufsize);
80152258
PA
11196
11197 ret = remote_hostio_pread_vFile (self, cache->fd, cache->buf, cache->bufsize,
11198 cache->offset, remote_errno);
11199 if (ret <= 0)
11200 {
11201 readahead_cache_invalidate_fd (fd);
11202 return ret;
11203 }
11204
11205 cache->bufsize = ret;
11206 return remote_hostio_pread_from_cache (rs, fd, read_buf, len, offset);
11207}
11208
12e2a5fd 11209/* Implementation of to_fileio_close. */
a6b151f1
DJ
11210
11211static int
df39ea25 11212remote_hostio_close (struct target_ops *self, int fd, int *remote_errno)
a6b151f1
DJ
11213{
11214 struct remote_state *rs = get_remote_state ();
11215 char *p = rs->buf;
11216 int left = get_remote_packet_size () - 1;
11217
80152258
PA
11218 readahead_cache_invalidate_fd (fd);
11219
a6b151f1
DJ
11220 remote_buffer_add_string (&p, &left, "vFile:close:");
11221
11222 remote_buffer_add_int (&p, &left, fd);
11223
11224 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
11225 remote_errno, NULL, NULL);
11226}
11227
12e2a5fd 11228/* Implementation of to_fileio_unlink. */
a6b151f1
DJ
11229
11230static int
dbbca37d 11231remote_hostio_unlink (struct target_ops *self,
07c138c8
GB
11232 struct inferior *inf, const char *filename,
11233 int *remote_errno)
a6b151f1
DJ
11234{
11235 struct remote_state *rs = get_remote_state ();
11236 char *p = rs->buf;
11237 int left = get_remote_packet_size () - 1;
11238
15a201c8
GB
11239 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11240 return -1;
11241
a6b151f1
DJ
11242 remote_buffer_add_string (&p, &left, "vFile:unlink:");
11243
11244 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11245 strlen (filename));
11246
11247 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
11248 remote_errno, NULL, NULL);
11249}
11250
12e2a5fd 11251/* Implementation of to_fileio_readlink. */
b9e7b9c3
UW
11252
11253static char *
fab5aa7c 11254remote_hostio_readlink (struct target_ops *self,
07c138c8
GB
11255 struct inferior *inf, const char *filename,
11256 int *remote_errno)
b9e7b9c3
UW
11257{
11258 struct remote_state *rs = get_remote_state ();
11259 char *p = rs->buf;
11260 char *attachment;
11261 int left = get_remote_packet_size ();
11262 int len, attachment_len;
11263 int read_len;
11264 char *ret;
11265
15a201c8
GB
11266 if (remote_hostio_set_filesystem (inf, remote_errno) != 0)
11267 return NULL;
11268
b9e7b9c3
UW
11269 remote_buffer_add_string (&p, &left, "vFile:readlink:");
11270
11271 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
11272 strlen (filename));
11273
11274 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
11275 remote_errno, &attachment,
11276 &attachment_len);
11277
11278 if (len < 0)
11279 return NULL;
11280
224c3ddb 11281 ret = (char *) xmalloc (len + 1);
b9e7b9c3 11282
bc20a4af
PA
11283 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11284 (gdb_byte *) ret, len);
b9e7b9c3
UW
11285 if (read_len != len)
11286 error (_("Readlink returned %d, but %d bytes."), len, read_len);
11287
11288 ret[len] = '\0';
11289 return ret;
11290}
11291
12e2a5fd 11292/* Implementation of to_fileio_fstat. */
0a93529c
GB
11293
11294static int
11295remote_hostio_fstat (struct target_ops *self,
11296 int fd, struct stat *st,
11297 int *remote_errno)
11298{
11299 struct remote_state *rs = get_remote_state ();
11300 char *p = rs->buf;
11301 int left = get_remote_packet_size ();
11302 int attachment_len, ret;
11303 char *attachment;
11304 struct fio_stat fst;
11305 int read_len;
11306
464b0089
GB
11307 remote_buffer_add_string (&p, &left, "vFile:fstat:");
11308
11309 remote_buffer_add_int (&p, &left, fd);
11310
11311 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_fstat,
11312 remote_errno, &attachment,
11313 &attachment_len);
11314 if (ret < 0)
0a93529c 11315 {
464b0089
GB
11316 if (*remote_errno != FILEIO_ENOSYS)
11317 return ret;
11318
0a93529c
GB
11319 /* Strictly we should return -1, ENOSYS here, but when
11320 "set sysroot remote:" was implemented in August 2008
11321 BFD's need for a stat function was sidestepped with
11322 this hack. This was not remedied until March 2015
11323 so we retain the previous behavior to avoid breaking
11324 compatibility.
11325
11326 Note that the memset is a March 2015 addition; older
11327 GDBs set st_size *and nothing else* so the structure
11328 would have garbage in all other fields. This might
11329 break something but retaining the previous behavior
11330 here would be just too wrong. */
11331
11332 memset (st, 0, sizeof (struct stat));
11333 st->st_size = INT_MAX;
11334 return 0;
11335 }
11336
0a93529c
GB
11337 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
11338 (gdb_byte *) &fst, sizeof (fst));
11339
11340 if (read_len != ret)
11341 error (_("vFile:fstat returned %d, but %d bytes."), ret, read_len);
11342
11343 if (read_len != sizeof (fst))
11344 error (_("vFile:fstat returned %d bytes, but expecting %d."),
11345 read_len, (int) sizeof (fst));
11346
11347 remote_fileio_to_host_stat (&fst, st);
11348
11349 return 0;
11350}
11351
12e2a5fd 11352/* Implementation of to_filesystem_is_local. */
e3dd7556
GB
11353
11354static int
11355remote_filesystem_is_local (struct target_ops *self)
11356{
11357 /* Valgrind GDB presents itself as a remote target but works
11358 on the local filesystem: it does not implement remote get
11359 and users are not expected to set a sysroot. To handle
11360 this case we treat the remote filesystem as local if the
11361 sysroot is exactly TARGET_SYSROOT_PREFIX and if the stub
11362 does not support vFile:open. */
a3be80c3 11363 if (strcmp (gdb_sysroot, TARGET_SYSROOT_PREFIX) == 0)
e3dd7556
GB
11364 {
11365 enum packet_support ps = packet_support (PACKET_vFile_open);
11366
11367 if (ps == PACKET_SUPPORT_UNKNOWN)
11368 {
11369 int fd, remote_errno;
11370
11371 /* Try opening a file to probe support. The supplied
11372 filename is irrelevant, we only care about whether
11373 the stub recognizes the packet or not. */
07c138c8 11374 fd = remote_hostio_open (self, NULL, "just probing",
4313b8c0 11375 FILEIO_O_RDONLY, 0700, 0,
e3dd7556
GB
11376 &remote_errno);
11377
11378 if (fd >= 0)
11379 remote_hostio_close (self, fd, &remote_errno);
11380
11381 ps = packet_support (PACKET_vFile_open);
11382 }
11383
11384 if (ps == PACKET_DISABLE)
11385 {
11386 static int warning_issued = 0;
11387
11388 if (!warning_issued)
11389 {
11390 warning (_("remote target does not support file"
11391 " transfer, attempting to access files"
11392 " from local filesystem."));
11393 warning_issued = 1;
11394 }
11395
11396 return 1;
11397 }
11398 }
11399
11400 return 0;
11401}
11402
a6b151f1
DJ
11403static int
11404remote_fileio_errno_to_host (int errnum)
11405{
11406 switch (errnum)
11407 {
11408 case FILEIO_EPERM:
11409 return EPERM;
11410 case FILEIO_ENOENT:
11411 return ENOENT;
11412 case FILEIO_EINTR:
11413 return EINTR;
11414 case FILEIO_EIO:
11415 return EIO;
11416 case FILEIO_EBADF:
11417 return EBADF;
11418 case FILEIO_EACCES:
11419 return EACCES;
11420 case FILEIO_EFAULT:
11421 return EFAULT;
11422 case FILEIO_EBUSY:
11423 return EBUSY;
11424 case FILEIO_EEXIST:
11425 return EEXIST;
11426 case FILEIO_ENODEV:
11427 return ENODEV;
11428 case FILEIO_ENOTDIR:
11429 return ENOTDIR;
11430 case FILEIO_EISDIR:
11431 return EISDIR;
11432 case FILEIO_EINVAL:
11433 return EINVAL;
11434 case FILEIO_ENFILE:
11435 return ENFILE;
11436 case FILEIO_EMFILE:
11437 return EMFILE;
11438 case FILEIO_EFBIG:
11439 return EFBIG;
11440 case FILEIO_ENOSPC:
11441 return ENOSPC;
11442 case FILEIO_ESPIPE:
11443 return ESPIPE;
11444 case FILEIO_EROFS:
11445 return EROFS;
11446 case FILEIO_ENOSYS:
11447 return ENOSYS;
11448 case FILEIO_ENAMETOOLONG:
11449 return ENAMETOOLONG;
11450 }
11451 return -1;
11452}
11453
11454static char *
11455remote_hostio_error (int errnum)
11456{
11457 int host_error = remote_fileio_errno_to_host (errnum);
11458
11459 if (host_error == -1)
11460 error (_("Unknown remote I/O error %d"), errnum);
11461 else
11462 error (_("Remote I/O error: %s"), safe_strerror (host_error));
11463}
11464
a6b151f1
DJ
11465static void
11466remote_hostio_close_cleanup (void *opaque)
11467{
11468 int fd = *(int *) opaque;
11469 int remote_errno;
11470
df39ea25 11471 remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno);
a6b151f1
DJ
11472}
11473
11474void
11475remote_file_put (const char *local_file, const char *remote_file, int from_tty)
11476{
11477 struct cleanup *back_to, *close_cleanup;
11478 int retcode, fd, remote_errno, bytes, io_size;
11479 FILE *file;
11480 gdb_byte *buffer;
11481 int bytes_in_buffer;
11482 int saw_eof;
11483 ULONGEST offset;
5d93a237 11484 struct remote_state *rs = get_remote_state ();
a6b151f1 11485
5d93a237 11486 if (!rs->remote_desc)
a6b151f1
DJ
11487 error (_("command can only be used with remote target"));
11488
614c279d 11489 file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
11490 if (file == NULL)
11491 perror_with_name (local_file);
7c8a8b04 11492 back_to = make_cleanup_fclose (file);
a6b151f1 11493
07c138c8 11494 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
cd897586 11495 remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
a6b151f1 11496 | FILEIO_O_TRUNC),
4313b8c0 11497 0700, 0, &remote_errno);
a6b151f1
DJ
11498 if (fd == -1)
11499 remote_hostio_error (remote_errno);
11500
11501 /* Send up to this many bytes at once. They won't all fit in the
11502 remote packet limit, so we'll transfer slightly fewer. */
11503 io_size = get_remote_packet_size ();
224c3ddb 11504 buffer = (gdb_byte *) xmalloc (io_size);
a6b151f1
DJ
11505 make_cleanup (xfree, buffer);
11506
11507 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11508
11509 bytes_in_buffer = 0;
11510 saw_eof = 0;
11511 offset = 0;
11512 while (bytes_in_buffer || !saw_eof)
11513 {
11514 if (!saw_eof)
11515 {
3e43a32a
MS
11516 bytes = fread (buffer + bytes_in_buffer, 1,
11517 io_size - bytes_in_buffer,
a6b151f1
DJ
11518 file);
11519 if (bytes == 0)
11520 {
11521 if (ferror (file))
11522 error (_("Error reading %s."), local_file);
11523 else
11524 {
11525 /* EOF. Unless there is something still in the
11526 buffer from the last iteration, we are done. */
11527 saw_eof = 1;
11528 if (bytes_in_buffer == 0)
11529 break;
11530 }
11531 }
11532 }
11533 else
11534 bytes = 0;
11535
11536 bytes += bytes_in_buffer;
11537 bytes_in_buffer = 0;
11538
0d866f62
TT
11539 retcode = remote_hostio_pwrite (find_target_at (process_stratum),
11540 fd, buffer, bytes,
3e43a32a 11541 offset, &remote_errno);
a6b151f1
DJ
11542
11543 if (retcode < 0)
11544 remote_hostio_error (remote_errno);
11545 else if (retcode == 0)
11546 error (_("Remote write of %d bytes returned 0!"), bytes);
11547 else if (retcode < bytes)
11548 {
11549 /* Short write. Save the rest of the read data for the next
11550 write. */
11551 bytes_in_buffer = bytes - retcode;
11552 memmove (buffer, buffer + retcode, bytes_in_buffer);
11553 }
11554
11555 offset += retcode;
11556 }
11557
11558 discard_cleanups (close_cleanup);
df39ea25 11559 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
11560 remote_hostio_error (remote_errno);
11561
11562 if (from_tty)
11563 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
11564 do_cleanups (back_to);
11565}
11566
11567void
11568remote_file_get (const char *remote_file, const char *local_file, int from_tty)
11569{
11570 struct cleanup *back_to, *close_cleanup;
cea39f65 11571 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
11572 FILE *file;
11573 gdb_byte *buffer;
11574 ULONGEST offset;
5d93a237 11575 struct remote_state *rs = get_remote_state ();
a6b151f1 11576
5d93a237 11577 if (!rs->remote_desc)
a6b151f1
DJ
11578 error (_("command can only be used with remote target"));
11579
07c138c8 11580 fd = remote_hostio_open (find_target_at (process_stratum), NULL,
4313b8c0
GB
11581 remote_file, FILEIO_O_RDONLY, 0, 0,
11582 &remote_errno);
a6b151f1
DJ
11583 if (fd == -1)
11584 remote_hostio_error (remote_errno);
11585
614c279d 11586 file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
11587 if (file == NULL)
11588 perror_with_name (local_file);
7c8a8b04 11589 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
11590
11591 /* Send up to this many bytes at once. They won't all fit in the
11592 remote packet limit, so we'll transfer slightly fewer. */
11593 io_size = get_remote_packet_size ();
224c3ddb 11594 buffer = (gdb_byte *) xmalloc (io_size);
a6b151f1
DJ
11595 make_cleanup (xfree, buffer);
11596
11597 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
11598
11599 offset = 0;
11600 while (1)
11601 {
a3be983c
TT
11602 bytes = remote_hostio_pread (find_target_at (process_stratum),
11603 fd, buffer, io_size, offset, &remote_errno);
a6b151f1
DJ
11604 if (bytes == 0)
11605 /* Success, but no bytes, means end-of-file. */
11606 break;
11607 if (bytes == -1)
11608 remote_hostio_error (remote_errno);
11609
11610 offset += bytes;
11611
11612 bytes = fwrite (buffer, 1, bytes, file);
11613 if (bytes == 0)
11614 perror_with_name (local_file);
11615 }
11616
11617 discard_cleanups (close_cleanup);
df39ea25 11618 if (remote_hostio_close (find_target_at (process_stratum), fd, &remote_errno))
a6b151f1
DJ
11619 remote_hostio_error (remote_errno);
11620
11621 if (from_tty)
11622 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
11623 do_cleanups (back_to);
11624}
11625
11626void
11627remote_file_delete (const char *remote_file, int from_tty)
11628{
11629 int retcode, remote_errno;
5d93a237 11630 struct remote_state *rs = get_remote_state ();
a6b151f1 11631
5d93a237 11632 if (!rs->remote_desc)
a6b151f1
DJ
11633 error (_("command can only be used with remote target"));
11634
dbbca37d 11635 retcode = remote_hostio_unlink (find_target_at (process_stratum),
07c138c8 11636 NULL, remote_file, &remote_errno);
a6b151f1
DJ
11637 if (retcode == -1)
11638 remote_hostio_error (remote_errno);
11639
11640 if (from_tty)
11641 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
11642}
11643
11644static void
11645remote_put_command (char *args, int from_tty)
11646{
11647 struct cleanup *back_to;
11648 char **argv;
11649
d1a41061
PP
11650 if (args == NULL)
11651 error_no_arg (_("file to put"));
11652
11653 argv = gdb_buildargv (args);
a6b151f1
DJ
11654 back_to = make_cleanup_freeargv (argv);
11655 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11656 error (_("Invalid parameters to remote put"));
11657
11658 remote_file_put (argv[0], argv[1], from_tty);
11659
11660 do_cleanups (back_to);
11661}
11662
11663static void
11664remote_get_command (char *args, int from_tty)
11665{
11666 struct cleanup *back_to;
11667 char **argv;
11668
d1a41061
PP
11669 if (args == NULL)
11670 error_no_arg (_("file to get"));
11671
11672 argv = gdb_buildargv (args);
a6b151f1
DJ
11673 back_to = make_cleanup_freeargv (argv);
11674 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
11675 error (_("Invalid parameters to remote get"));
11676
11677 remote_file_get (argv[0], argv[1], from_tty);
11678
11679 do_cleanups (back_to);
11680}
11681
11682static void
11683remote_delete_command (char *args, int from_tty)
11684{
11685 struct cleanup *back_to;
11686 char **argv;
11687
d1a41061
PP
11688 if (args == NULL)
11689 error_no_arg (_("file to delete"));
11690
11691 argv = gdb_buildargv (args);
a6b151f1
DJ
11692 back_to = make_cleanup_freeargv (argv);
11693 if (argv[0] == NULL || argv[1] != NULL)
11694 error (_("Invalid parameters to remote delete"));
11695
11696 remote_file_delete (argv[0], from_tty);
11697
11698 do_cleanups (back_to);
11699}
11700
11701static void
11702remote_command (char *args, int from_tty)
11703{
635c7e8a 11704 help_list (remote_cmdlist, "remote ", all_commands, gdb_stdout);
a6b151f1
DJ
11705}
11706
b2175913 11707static int
19db3e69 11708remote_can_execute_reverse (struct target_ops *self)
b2175913 11709{
4082afcc
PA
11710 if (packet_support (PACKET_bs) == PACKET_ENABLE
11711 || packet_support (PACKET_bc) == PACKET_ENABLE)
40ab02ce
MS
11712 return 1;
11713 else
11714 return 0;
b2175913
MS
11715}
11716
74531fed 11717static int
2a9a2795 11718remote_supports_non_stop (struct target_ops *self)
74531fed
PA
11719{
11720 return 1;
11721}
11722
03583c20 11723static int
2bfc0540 11724remote_supports_disable_randomization (struct target_ops *self)
03583c20
UW
11725{
11726 /* Only supported in extended mode. */
11727 return 0;
11728}
11729
8a305172 11730static int
86ce2668 11731remote_supports_multi_process (struct target_ops *self)
8a305172
PA
11732{
11733 struct remote_state *rs = get_remote_state ();
a744cf53 11734
8020350c 11735 return remote_multi_process_p (rs);
8a305172
PA
11736}
11737
70221824 11738static int
782b2b07
SS
11739remote_supports_cond_tracepoints (void)
11740{
4082afcc 11741 return packet_support (PACKET_ConditionalTracepoints) == PACKET_ENABLE;
782b2b07
SS
11742}
11743
3788aec7 11744static int
efcc2da7 11745remote_supports_cond_breakpoints (struct target_ops *self)
3788aec7 11746{
4082afcc 11747 return packet_support (PACKET_ConditionalBreakpoints) == PACKET_ENABLE;
3788aec7
LM
11748}
11749
70221824 11750static int
7a697b8d
SS
11751remote_supports_fast_tracepoints (void)
11752{
4082afcc 11753 return packet_support (PACKET_FastTracepoints) == PACKET_ENABLE;
7a697b8d
SS
11754}
11755
0fb4aa4b
PA
11756static int
11757remote_supports_static_tracepoints (void)
11758{
4082afcc 11759 return packet_support (PACKET_StaticTracepoints) == PACKET_ENABLE;
0fb4aa4b
PA
11760}
11761
1e4d1764
YQ
11762static int
11763remote_supports_install_in_trace (void)
11764{
4082afcc 11765 return packet_support (PACKET_InstallInTrace) == PACKET_ENABLE;
1e4d1764
YQ
11766}
11767
d248b706 11768static int
7d178d6a 11769remote_supports_enable_disable_tracepoint (struct target_ops *self)
d248b706 11770{
4082afcc
PA
11771 return (packet_support (PACKET_EnableDisableTracepoints_feature)
11772 == PACKET_ENABLE);
d248b706
KY
11773}
11774
3065dfb6 11775static int
6de37a3a 11776remote_supports_string_tracing (struct target_ops *self)
3065dfb6 11777{
4082afcc 11778 return packet_support (PACKET_tracenz_feature) == PACKET_ENABLE;
3065dfb6
SS
11779}
11780
d3ce09f5 11781static int
78eff0ec 11782remote_can_run_breakpoint_commands (struct target_ops *self)
d3ce09f5 11783{
4082afcc 11784 return packet_support (PACKET_BreakpointCommands) == PACKET_ENABLE;
d3ce09f5
SS
11785}
11786
35b1e5cc 11787static void
ecae04e1 11788remote_trace_init (struct target_ops *self)
35b1e5cc
SS
11789{
11790 putpkt ("QTinit");
11791 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99 11792 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
11793 error (_("Target does not support this command."));
11794}
11795
11796static void free_actions_list (char **actions_list);
11797static void free_actions_list_cleanup_wrapper (void *);
11798static void
11799free_actions_list_cleanup_wrapper (void *al)
11800{
19ba03f4 11801 free_actions_list ((char **) al);
35b1e5cc
SS
11802}
11803
11804static void
11805free_actions_list (char **actions_list)
11806{
11807 int ndx;
11808
11809 if (actions_list == 0)
11810 return;
11811
11812 for (ndx = 0; actions_list[ndx]; ndx++)
11813 xfree (actions_list[ndx]);
11814
11815 xfree (actions_list);
11816}
11817
409873ef
SS
11818/* Recursive routine to walk through command list including loops, and
11819 download packets for each command. */
11820
11821static void
11822remote_download_command_source (int num, ULONGEST addr,
11823 struct command_line *cmds)
11824{
11825 struct remote_state *rs = get_remote_state ();
11826 struct command_line *cmd;
11827
11828 for (cmd = cmds; cmd; cmd = cmd->next)
11829 {
0df8b418 11830 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
11831 strcpy (rs->buf, "QTDPsrc:");
11832 encode_source_string (num, addr, "cmd", cmd->line,
11833 rs->buf + strlen (rs->buf),
11834 rs->buf_size - strlen (rs->buf));
11835 putpkt (rs->buf);
11836 remote_get_noisy_reply (&target_buf, &target_buf_size);
11837 if (strcmp (target_buf, "OK"))
11838 warning (_("Target does not support source download."));
11839
11840 if (cmd->control_type == while_control
11841 || cmd->control_type == while_stepping_control)
11842 {
11843 remote_download_command_source (num, addr, *cmd->body_list);
11844
0df8b418 11845 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
11846 strcpy (rs->buf, "QTDPsrc:");
11847 encode_source_string (num, addr, "cmd", "end",
11848 rs->buf + strlen (rs->buf),
11849 rs->buf_size - strlen (rs->buf));
11850 putpkt (rs->buf);
11851 remote_get_noisy_reply (&target_buf, &target_buf_size);
11852 if (strcmp (target_buf, "OK"))
11853 warning (_("Target does not support source download."));
11854 }
11855 }
11856}
11857
35b1e5cc 11858static void
548f7808 11859remote_download_tracepoint (struct target_ops *self, struct bp_location *loc)
35b1e5cc 11860{
bba74b36 11861#define BUF_SIZE 2048
e8ba3115 11862
35b1e5cc 11863 CORE_ADDR tpaddr;
409873ef 11864 char addrbuf[40];
bba74b36 11865 char buf[BUF_SIZE];
35b1e5cc
SS
11866 char **tdp_actions;
11867 char **stepping_actions;
11868 int ndx;
11869 struct cleanup *old_chain = NULL;
11870 struct agent_expr *aexpr;
11871 struct cleanup *aexpr_chain = NULL;
11872 char *pkt;
e8ba3115 11873 struct breakpoint *b = loc->owner;
d9b3f62e 11874 struct tracepoint *t = (struct tracepoint *) b;
35b1e5cc 11875
dc673c81 11876 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
11877 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
11878 tdp_actions);
11879 (void) make_cleanup (free_actions_list_cleanup_wrapper,
11880 stepping_actions);
11881
11882 tpaddr = loc->address;
11883 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
11884 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
11885 addrbuf, /* address */
11886 (b->enable_state == bp_enabled ? 'E' : 'D'),
11887 t->step_count, t->pass_count);
e8ba3115
YQ
11888 /* Fast tracepoints are mostly handled by the target, but we can
11889 tell the target how big of an instruction block should be moved
11890 around. */
11891 if (b->type == bp_fast_tracepoint)
11892 {
11893 /* Only test for support at download time; we may not know
11894 target capabilities at definition time. */
11895 if (remote_supports_fast_tracepoints ())
35b1e5cc 11896 {
6b940e6a
PL
11897 if (gdbarch_fast_tracepoint_valid_at (loc->gdbarch, tpaddr,
11898 NULL))
bba74b36 11899 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
6b940e6a 11900 gdb_insn_length (loc->gdbarch, tpaddr));
35b1e5cc 11901 else
e8ba3115
YQ
11902 /* If it passed validation at definition but fails now,
11903 something is very wrong. */
11904 internal_error (__FILE__, __LINE__,
11905 _("Fast tracepoint not "
11906 "valid during download"));
35b1e5cc 11907 }
e8ba3115
YQ
11908 else
11909 /* Fast tracepoints are functionally identical to regular
11910 tracepoints, so don't take lack of support as a reason to
11911 give up on the trace run. */
11912 warning (_("Target does not support fast tracepoints, "
11913 "downloading %d as regular tracepoint"), b->number);
11914 }
11915 else if (b->type == bp_static_tracepoint)
11916 {
11917 /* Only test for support at download time; we may not know
11918 target capabilities at definition time. */
11919 if (remote_supports_static_tracepoints ())
0fb4aa4b 11920 {
e8ba3115 11921 struct static_tracepoint_marker marker;
0fb4aa4b 11922
e8ba3115
YQ
11923 if (target_static_tracepoint_marker_at (tpaddr, &marker))
11924 strcat (buf, ":S");
0fb4aa4b 11925 else
e8ba3115 11926 error (_("Static tracepoint not valid during download"));
0fb4aa4b 11927 }
e8ba3115
YQ
11928 else
11929 /* Fast tracepoints are functionally identical to regular
11930 tracepoints, so don't take lack of support as a reason
11931 to give up on the trace run. */
11932 error (_("Target does not support static tracepoints"));
11933 }
11934 /* If the tracepoint has a conditional, make it into an agent
11935 expression and append to the definition. */
11936 if (loc->cond)
11937 {
11938 /* Only test support at download time, we may not know target
11939 capabilities at definition time. */
11940 if (remote_supports_cond_tracepoints ())
35b1e5cc 11941 {
e8ba3115
YQ
11942 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
11943 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
bba74b36
YQ
11944 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
11945 aexpr->len);
e8ba3115
YQ
11946 pkt = buf + strlen (buf);
11947 for (ndx = 0; ndx < aexpr->len; ++ndx)
11948 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
11949 *pkt = '\0';
11950 do_cleanups (aexpr_chain);
35b1e5cc 11951 }
e8ba3115
YQ
11952 else
11953 warning (_("Target does not support conditional tracepoints, "
11954 "ignoring tp %d cond"), b->number);
11955 }
35b1e5cc 11956
d9b3f62e 11957 if (b->commands || *default_collect)
e8ba3115
YQ
11958 strcat (buf, "-");
11959 putpkt (buf);
11960 remote_get_noisy_reply (&target_buf, &target_buf_size);
11961 if (strcmp (target_buf, "OK"))
11962 error (_("Target does not support tracepoints."));
35b1e5cc 11963
e8ba3115
YQ
11964 /* do_single_steps (t); */
11965 if (tdp_actions)
11966 {
11967 for (ndx = 0; tdp_actions[ndx]; ndx++)
35b1e5cc 11968 {
e8ba3115 11969 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
11970 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
11971 b->number, addrbuf, /* address */
11972 tdp_actions[ndx],
11973 ((tdp_actions[ndx + 1] || stepping_actions)
11974 ? '-' : 0));
e8ba3115
YQ
11975 putpkt (buf);
11976 remote_get_noisy_reply (&target_buf,
11977 &target_buf_size);
11978 if (strcmp (target_buf, "OK"))
11979 error (_("Error on target while setting tracepoints."));
35b1e5cc 11980 }
e8ba3115
YQ
11981 }
11982 if (stepping_actions)
11983 {
11984 for (ndx = 0; stepping_actions[ndx]; ndx++)
35b1e5cc 11985 {
e8ba3115 11986 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
11987 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
11988 b->number, addrbuf, /* address */
11989 ((ndx == 0) ? "S" : ""),
11990 stepping_actions[ndx],
11991 (stepping_actions[ndx + 1] ? "-" : ""));
e8ba3115
YQ
11992 putpkt (buf);
11993 remote_get_noisy_reply (&target_buf,
11994 &target_buf_size);
11995 if (strcmp (target_buf, "OK"))
11996 error (_("Error on target while setting tracepoints."));
35b1e5cc 11997 }
e8ba3115 11998 }
409873ef 11999
4082afcc 12000 if (packet_support (PACKET_TracepointSource) == PACKET_ENABLE)
e8ba3115 12001 {
f00aae0f 12002 if (b->location != NULL)
409873ef 12003 {
e8ba3115 12004 strcpy (buf, "QTDPsrc:");
f00aae0f
KS
12005 encode_source_string (b->number, loc->address, "at",
12006 event_location_to_string (b->location),
12007 buf + strlen (buf), 2048 - strlen (buf));
e8ba3115
YQ
12008 putpkt (buf);
12009 remote_get_noisy_reply (&target_buf, &target_buf_size);
12010 if (strcmp (target_buf, "OK"))
12011 warning (_("Target does not support source download."));
409873ef 12012 }
e8ba3115
YQ
12013 if (b->cond_string)
12014 {
12015 strcpy (buf, "QTDPsrc:");
12016 encode_source_string (b->number, loc->address,
12017 "cond", b->cond_string, buf + strlen (buf),
12018 2048 - strlen (buf));
12019 putpkt (buf);
12020 remote_get_noisy_reply (&target_buf, &target_buf_size);
12021 if (strcmp (target_buf, "OK"))
12022 warning (_("Target does not support source download."));
12023 }
12024 remote_download_command_source (b->number, loc->address,
12025 breakpoint_commands (b));
35b1e5cc 12026 }
e8ba3115
YQ
12027
12028 do_cleanups (old_chain);
35b1e5cc
SS
12029}
12030
1e4d1764 12031static int
a52a8357 12032remote_can_download_tracepoint (struct target_ops *self)
1e4d1764 12033{
1e51243a
PA
12034 struct remote_state *rs = get_remote_state ();
12035 struct trace_status *ts;
12036 int status;
12037
12038 /* Don't try to install tracepoints until we've relocated our
12039 symbols, and fetched and merged the target's tracepoint list with
12040 ours. */
12041 if (rs->starting_up)
12042 return 0;
12043
12044 ts = current_trace_status ();
8bd200f1 12045 status = remote_get_trace_status (self, ts);
1e4d1764
YQ
12046
12047 if (status == -1 || !ts->running_known || !ts->running)
12048 return 0;
12049
12050 /* If we are in a tracing experiment, but remote stub doesn't support
12051 installing tracepoint in trace, we have to return. */
12052 if (!remote_supports_install_in_trace ())
12053 return 0;
12054
12055 return 1;
12056}
12057
12058
35b1e5cc 12059static void
559d2b81
TT
12060remote_download_trace_state_variable (struct target_ops *self,
12061 struct trace_state_variable *tsv)
35b1e5cc
SS
12062{
12063 struct remote_state *rs = get_remote_state ();
00bf0b85 12064 char *p;
35b1e5cc 12065
bba74b36
YQ
12066 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
12067 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
12068 tsv->builtin);
00bf0b85
SS
12069 p = rs->buf + strlen (rs->buf);
12070 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
12071 error (_("Trace state variable name too long for tsv definition packet"));
9f1b45b0 12072 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, strlen (tsv->name));
00bf0b85 12073 *p++ = '\0';
35b1e5cc
SS
12074 putpkt (rs->buf);
12075 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
12076 if (*target_buf == '\0')
12077 error (_("Target does not support this command."));
12078 if (strcmp (target_buf, "OK") != 0)
12079 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
12080}
12081
d248b706 12082static void
46670d57
TT
12083remote_enable_tracepoint (struct target_ops *self,
12084 struct bp_location *location)
d248b706
KY
12085{
12086 struct remote_state *rs = get_remote_state ();
12087 char addr_buf[40];
12088
12089 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12090 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
12091 location->owner->number, addr_buf);
d248b706
KY
12092 putpkt (rs->buf);
12093 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12094 if (*rs->buf == '\0')
12095 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
12096 if (strcmp (rs->buf, "OK") != 0)
12097 error (_("Error on target while enabling tracepoint."));
12098}
12099
12100static void
780b049c
TT
12101remote_disable_tracepoint (struct target_ops *self,
12102 struct bp_location *location)
d248b706
KY
12103{
12104 struct remote_state *rs = get_remote_state ();
12105 char addr_buf[40];
12106
12107 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
12108 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
12109 location->owner->number, addr_buf);
d248b706
KY
12110 putpkt (rs->buf);
12111 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12112 if (*rs->buf == '\0')
12113 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
12114 if (strcmp (rs->buf, "OK") != 0)
12115 error (_("Error on target while disabling tracepoint."));
12116}
12117
35b1e5cc 12118static void
583f9a86 12119remote_trace_set_readonly_regions (struct target_ops *self)
35b1e5cc
SS
12120{
12121 asection *s;
81b9b86e 12122 bfd *abfd = NULL;
35b1e5cc 12123 bfd_size_type size;
608bcef2 12124 bfd_vma vma;
35b1e5cc 12125 int anysecs = 0;
c2fa21f1 12126 int offset = 0;
35b1e5cc
SS
12127
12128 if (!exec_bfd)
12129 return; /* No information to give. */
12130
12131 strcpy (target_buf, "QTro");
9779ab84 12132 offset = strlen (target_buf);
35b1e5cc
SS
12133 for (s = exec_bfd->sections; s; s = s->next)
12134 {
12135 char tmp1[40], tmp2[40];
c2fa21f1 12136 int sec_length;
35b1e5cc
SS
12137
12138 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 12139 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
12140 (s->flags & SEC_READONLY) == 0)
12141 continue;
12142
12143 anysecs = 1;
81b9b86e 12144 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 12145 size = bfd_get_section_size (s);
608bcef2
HZ
12146 sprintf_vma (tmp1, vma);
12147 sprintf_vma (tmp2, vma + size);
c2fa21f1
HZ
12148 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
12149 if (offset + sec_length + 1 > target_buf_size)
12150 {
4082afcc 12151 if (packet_support (PACKET_qXfer_traceframe_info) != PACKET_ENABLE)
864ac8a7 12152 warning (_("\
c2fa21f1
HZ
12153Too many sections for read-only sections definition packet."));
12154 break;
12155 }
bba74b36
YQ
12156 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
12157 tmp1, tmp2);
c2fa21f1 12158 offset += sec_length;
35b1e5cc
SS
12159 }
12160 if (anysecs)
12161 {
12162 putpkt (target_buf);
12163 getpkt (&target_buf, &target_buf_size, 0);
12164 }
12165}
12166
12167static void
e2d1aae3 12168remote_trace_start (struct target_ops *self)
35b1e5cc
SS
12169{
12170 putpkt ("QTStart");
12171 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
12172 if (*target_buf == '\0')
12173 error (_("Target does not support this command."));
12174 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
12175 error (_("Bogus reply from target: %s"), target_buf);
12176}
12177
12178static int
8bd200f1 12179remote_get_trace_status (struct target_ops *self, struct trace_status *ts)
35b1e5cc 12180{
953b98d1 12181 /* Initialize it just to avoid a GCC false warning. */
f652de6f 12182 char *p = NULL;
0df8b418 12183 /* FIXME we need to get register block size some other way. */
00bf0b85 12184 extern int trace_regblock_size;
bd3eecc3
PA
12185 enum packet_result result;
12186
4082afcc 12187 if (packet_support (PACKET_qTStatus) == PACKET_DISABLE)
bd3eecc3 12188 return -1;
a744cf53 12189
00bf0b85
SS
12190 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
12191
049dc89b
JK
12192 putpkt ("qTStatus");
12193
492d29ea 12194 TRY
67f41397
JK
12195 {
12196 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
12197 }
492d29ea 12198 CATCH (ex, RETURN_MASK_ERROR)
67f41397 12199 {
598d3636
JK
12200 if (ex.error != TARGET_CLOSE_ERROR)
12201 {
12202 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
12203 return -1;
12204 }
12205 throw_exception (ex);
67f41397 12206 }
492d29ea 12207 END_CATCH
00bf0b85 12208
bd3eecc3
PA
12209 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
12210
00bf0b85 12211 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 12212 if (result == PACKET_UNKNOWN)
00bf0b85 12213 return -1;
35b1e5cc 12214
00bf0b85 12215 /* We're working with a live target. */
f5911ea1 12216 ts->filename = NULL;
00bf0b85 12217
00bf0b85 12218 if (*p++ != 'T')
35b1e5cc
SS
12219 error (_("Bogus trace status reply from target: %s"), target_buf);
12220
84cebc4a
YQ
12221 /* Function 'parse_trace_status' sets default value of each field of
12222 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
12223 parse_trace_status (p, ts);
12224
12225 return ts->running;
35b1e5cc
SS
12226}
12227
70221824 12228static void
db90e85c 12229remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
f196051f
SS
12230 struct uploaded_tp *utp)
12231{
12232 struct remote_state *rs = get_remote_state ();
f196051f
SS
12233 char *reply;
12234 struct bp_location *loc;
12235 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 12236 size_t size = get_remote_packet_size ();
f196051f
SS
12237
12238 if (tp)
12239 {
12240 tp->base.hit_count = 0;
12241 tp->traceframe_usage = 0;
12242 for (loc = tp->base.loc; loc; loc = loc->next)
12243 {
12244 /* If the tracepoint was never downloaded, don't go asking for
12245 any status. */
12246 if (tp->number_on_target == 0)
12247 continue;
bba74b36
YQ
12248 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
12249 phex_nz (loc->address, 0));
f196051f
SS
12250 putpkt (rs->buf);
12251 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12252 if (reply && *reply)
12253 {
12254 if (*reply == 'V')
12255 parse_tracepoint_status (reply + 1, bp, utp);
12256 }
12257 }
12258 }
12259 else if (utp)
12260 {
12261 utp->hit_count = 0;
12262 utp->traceframe_usage = 0;
bba74b36
YQ
12263 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
12264 phex_nz (utp->addr, 0));
f196051f
SS
12265 putpkt (rs->buf);
12266 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12267 if (reply && *reply)
12268 {
12269 if (*reply == 'V')
12270 parse_tracepoint_status (reply + 1, bp, utp);
12271 }
12272 }
12273}
12274
35b1e5cc 12275static void
74499f1b 12276remote_trace_stop (struct target_ops *self)
35b1e5cc
SS
12277{
12278 putpkt ("QTStop");
12279 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
12280 if (*target_buf == '\0')
12281 error (_("Target does not support this command."));
12282 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
12283 error (_("Bogus reply from target: %s"), target_buf);
12284}
12285
12286static int
bd4c6793
TT
12287remote_trace_find (struct target_ops *self,
12288 enum trace_find_type type, int num,
cc5925ad 12289 CORE_ADDR addr1, CORE_ADDR addr2,
35b1e5cc
SS
12290 int *tpp)
12291{
12292 struct remote_state *rs = get_remote_state ();
bba74b36 12293 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
12294 char *p, *reply;
12295 int target_frameno = -1, target_tracept = -1;
12296
e6e4e701
PA
12297 /* Lookups other than by absolute frame number depend on the current
12298 trace selected, so make sure it is correct on the remote end
12299 first. */
12300 if (type != tfind_number)
12301 set_remote_traceframe ();
12302
35b1e5cc
SS
12303 p = rs->buf;
12304 strcpy (p, "QTFrame:");
12305 p = strchr (p, '\0');
12306 switch (type)
12307 {
12308 case tfind_number:
bba74b36 12309 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
12310 break;
12311 case tfind_pc:
bba74b36 12312 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
12313 break;
12314 case tfind_tp:
bba74b36 12315 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
12316 break;
12317 case tfind_range:
bba74b36
YQ
12318 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
12319 phex_nz (addr2, 0));
35b1e5cc
SS
12320 break;
12321 case tfind_outside:
bba74b36
YQ
12322 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
12323 phex_nz (addr2, 0));
35b1e5cc
SS
12324 break;
12325 default:
9b20d036 12326 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
12327 }
12328
12329 putpkt (rs->buf);
2f65bcb7 12330 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
ad91cd99
PA
12331 if (*reply == '\0')
12332 error (_("Target does not support this command."));
35b1e5cc
SS
12333
12334 while (reply && *reply)
12335 switch (*reply)
12336 {
12337 case 'F':
f197e0f1
VP
12338 p = ++reply;
12339 target_frameno = (int) strtol (p, &reply, 16);
12340 if (reply == p)
12341 error (_("Unable to parse trace frame number"));
e6e4e701
PA
12342 /* Don't update our remote traceframe number cache on failure
12343 to select a remote traceframe. */
f197e0f1
VP
12344 if (target_frameno == -1)
12345 return -1;
35b1e5cc
SS
12346 break;
12347 case 'T':
f197e0f1
VP
12348 p = ++reply;
12349 target_tracept = (int) strtol (p, &reply, 16);
12350 if (reply == p)
12351 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
12352 break;
12353 case 'O': /* "OK"? */
12354 if (reply[1] == 'K' && reply[2] == '\0')
12355 reply += 2;
12356 else
12357 error (_("Bogus reply from target: %s"), reply);
12358 break;
12359 default:
12360 error (_("Bogus reply from target: %s"), reply);
12361 }
12362 if (tpp)
12363 *tpp = target_tracept;
e6e4e701 12364
262e1174 12365 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
12366 return target_frameno;
12367}
12368
12369static int
4011015b
TT
12370remote_get_trace_state_variable_value (struct target_ops *self,
12371 int tsvnum, LONGEST *val)
35b1e5cc
SS
12372{
12373 struct remote_state *rs = get_remote_state ();
12374 char *reply;
12375 ULONGEST uval;
12376
e6e4e701
PA
12377 set_remote_traceframe ();
12378
bba74b36 12379 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc
SS
12380 putpkt (rs->buf);
12381 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12382 if (reply && *reply)
12383 {
12384 if (*reply == 'V')
12385 {
12386 unpack_varlen_hex (reply + 1, &uval);
12387 *val = (LONGEST) uval;
12388 return 1;
12389 }
12390 }
12391 return 0;
12392}
12393
00bf0b85 12394static int
dc3decaf 12395remote_save_trace_data (struct target_ops *self, const char *filename)
00bf0b85
SS
12396{
12397 struct remote_state *rs = get_remote_state ();
12398 char *p, *reply;
12399
12400 p = rs->buf;
12401 strcpy (p, "QTSave:");
12402 p += strlen (p);
12403 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
12404 error (_("Remote file name too long for trace save packet"));
9f1b45b0 12405 p += 2 * bin2hex ((gdb_byte *) filename, p, strlen (filename));
00bf0b85
SS
12406 *p++ = '\0';
12407 putpkt (rs->buf);
ad91cd99 12408 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
d6c5869f 12409 if (*reply == '\0')
ad91cd99
PA
12410 error (_("Target does not support this command."));
12411 if (strcmp (reply, "OK") != 0)
12412 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
12413 return 0;
12414}
12415
12416/* This is basically a memory transfer, but needs to be its own packet
12417 because we don't know how the target actually organizes its trace
12418 memory, plus we want to be able to ask for as much as possible, but
12419 not be unhappy if we don't get as much as we ask for. */
12420
12421static LONGEST
88ee6f45
TT
12422remote_get_raw_trace_data (struct target_ops *self,
12423 gdb_byte *buf, ULONGEST offset, LONGEST len)
00bf0b85
SS
12424{
12425 struct remote_state *rs = get_remote_state ();
12426 char *reply;
12427 char *p;
12428 int rslt;
12429
12430 p = rs->buf;
12431 strcpy (p, "qTBuffer:");
12432 p += strlen (p);
12433 p += hexnumstr (p, offset);
12434 *p++ = ',';
12435 p += hexnumstr (p, len);
12436 *p++ = '\0';
12437
12438 putpkt (rs->buf);
12439 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12440 if (reply && *reply)
12441 {
12442 /* 'l' by itself means we're at the end of the buffer and
12443 there is nothing more to get. */
12444 if (*reply == 'l')
12445 return 0;
12446
12447 /* Convert the reply into binary. Limit the number of bytes to
12448 convert according to our passed-in buffer size, rather than
12449 what was returned in the packet; if the target is
12450 unexpectedly generous and gives us a bigger reply than we
12451 asked for, we don't want to crash. */
12452 rslt = hex2bin (target_buf, buf, len);
12453 return rslt;
12454 }
12455
12456 /* Something went wrong, flag as an error. */
12457 return -1;
12458}
12459
35b1e5cc 12460static void
37b25738 12461remote_set_disconnected_tracing (struct target_ops *self, int val)
35b1e5cc
SS
12462{
12463 struct remote_state *rs = get_remote_state ();
12464
4082afcc 12465 if (packet_support (PACKET_DisconnectedTracing_feature) == PACKET_ENABLE)
33da3f1c 12466 {
ad91cd99
PA
12467 char *reply;
12468
bba74b36 12469 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 12470 putpkt (rs->buf);
ad91cd99
PA
12471 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12472 if (*reply == '\0')
33da3f1c 12473 error (_("Target does not support this command."));
ad91cd99
PA
12474 if (strcmp (reply, "OK") != 0)
12475 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
12476 }
12477 else if (val)
12478 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
12479}
12480
dc146f7c
VP
12481static int
12482remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
12483{
12484 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 12485
fe978cb0
PA
12486 if (info && info->priv)
12487 return info->priv->core;
dc146f7c
VP
12488 return -1;
12489}
12490
4daf5ac0 12491static void
736d5b1f 12492remote_set_circular_trace_buffer (struct target_ops *self, int val)
4daf5ac0
SS
12493{
12494 struct remote_state *rs = get_remote_state ();
ad91cd99 12495 char *reply;
4daf5ac0 12496
bba74b36 12497 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 12498 putpkt (rs->buf);
ad91cd99
PA
12499 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12500 if (*reply == '\0')
4daf5ac0 12501 error (_("Target does not support this command."));
ad91cd99
PA
12502 if (strcmp (reply, "OK") != 0)
12503 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
12504}
12505
b3b9301e 12506static struct traceframe_info *
a893e81f 12507remote_traceframe_info (struct target_ops *self)
b3b9301e
PA
12508{
12509 char *text;
12510
12511 text = target_read_stralloc (&current_target,
12512 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
12513 if (text != NULL)
12514 {
12515 struct traceframe_info *info;
12516 struct cleanup *back_to = make_cleanup (xfree, text);
12517
12518 info = parse_traceframe_info (text);
12519 do_cleanups (back_to);
12520 return info;
12521 }
12522
12523 return NULL;
12524}
12525
405f8e94
SS
12526/* Handle the qTMinFTPILen packet. Returns the minimum length of
12527 instruction on which a fast tracepoint may be placed. Returns -1
12528 if the packet is not supported, and 0 if the minimum instruction
12529 length is unknown. */
12530
12531static int
0e67620a 12532remote_get_min_fast_tracepoint_insn_len (struct target_ops *self)
405f8e94
SS
12533{
12534 struct remote_state *rs = get_remote_state ();
12535 char *reply;
12536
e886a173
PA
12537 /* If we're not debugging a process yet, the IPA can't be
12538 loaded. */
12539 if (!target_has_execution)
12540 return 0;
12541
12542 /* Make sure the remote is pointing at the right process. */
12543 set_general_process ();
12544
bba74b36 12545 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94
SS
12546 putpkt (rs->buf);
12547 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12548 if (*reply == '\0')
12549 return -1;
12550 else
12551 {
12552 ULONGEST min_insn_len;
12553
12554 unpack_varlen_hex (reply, &min_insn_len);
12555
12556 return (int) min_insn_len;
12557 }
12558}
12559
f6f899bf 12560static void
4da384be 12561remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
f6f899bf 12562{
4082afcc 12563 if (packet_support (PACKET_QTBuffer_size) != PACKET_DISABLE)
f6f899bf
HAQ
12564 {
12565 struct remote_state *rs = get_remote_state ();
12566 char *buf = rs->buf;
12567 char *endbuf = rs->buf + get_remote_packet_size ();
12568 enum packet_result result;
12569
12570 gdb_assert (val >= 0 || val == -1);
12571 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
12572 /* Send -1 as literal "-1" to avoid host size dependency. */
12573 if (val < 0)
12574 {
12575 *buf++ = '-';
12576 buf += hexnumstr (buf, (ULONGEST) -val);
12577 }
12578 else
12579 buf += hexnumstr (buf, (ULONGEST) val);
12580
12581 putpkt (rs->buf);
12582 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
12583 result = packet_ok (rs->buf,
12584 &remote_protocol_packets[PACKET_QTBuffer_size]);
12585
12586 if (result != PACKET_OK)
12587 warning (_("Bogus reply from target: %s"), rs->buf);
12588 }
12589}
12590
f196051f 12591static int
d9e68a2c
TT
12592remote_set_trace_notes (struct target_ops *self,
12593 const char *user, const char *notes,
ca623f82 12594 const char *stop_notes)
f196051f
SS
12595{
12596 struct remote_state *rs = get_remote_state ();
12597 char *reply;
12598 char *buf = rs->buf;
12599 char *endbuf = rs->buf + get_remote_packet_size ();
12600 int nbytes;
12601
12602 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
12603 if (user)
12604 {
12605 buf += xsnprintf (buf, endbuf - buf, "user:");
9f1b45b0 12606 nbytes = bin2hex ((gdb_byte *) user, buf, strlen (user));
f196051f
SS
12607 buf += 2 * nbytes;
12608 *buf++ = ';';
12609 }
12610 if (notes)
12611 {
12612 buf += xsnprintf (buf, endbuf - buf, "notes:");
9f1b45b0 12613 nbytes = bin2hex ((gdb_byte *) notes, buf, strlen (notes));
f196051f
SS
12614 buf += 2 * nbytes;
12615 *buf++ = ';';
12616 }
12617 if (stop_notes)
12618 {
12619 buf += xsnprintf (buf, endbuf - buf, "tstop:");
9f1b45b0 12620 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, strlen (stop_notes));
f196051f
SS
12621 buf += 2 * nbytes;
12622 *buf++ = ';';
12623 }
12624 /* Ensure the buffer is terminated. */
12625 *buf = '\0';
12626
12627 putpkt (rs->buf);
12628 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
12629 if (*reply == '\0')
12630 return 0;
12631
12632 if (strcmp (reply, "OK") != 0)
12633 error (_("Bogus reply from target: %s"), reply);
12634
12635 return 1;
12636}
12637
d1feda86 12638static int
2c152180 12639remote_use_agent (struct target_ops *self, int use)
d1feda86 12640{
4082afcc 12641 if (packet_support (PACKET_QAgent) != PACKET_DISABLE)
d1feda86
YQ
12642 {
12643 struct remote_state *rs = get_remote_state ();
12644
12645 /* If the stub supports QAgent. */
bba74b36 12646 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
12647 putpkt (rs->buf);
12648 getpkt (&rs->buf, &rs->buf_size, 0);
12649
12650 if (strcmp (rs->buf, "OK") == 0)
12651 {
12652 use_agent = use;
12653 return 1;
12654 }
12655 }
12656
12657 return 0;
12658}
12659
12660static int
fe38f897 12661remote_can_use_agent (struct target_ops *self)
d1feda86 12662{
4082afcc 12663 return (packet_support (PACKET_QAgent) != PACKET_DISABLE);
d1feda86
YQ
12664}
12665
9accd112
MM
12666struct btrace_target_info
12667{
12668 /* The ptid of the traced thread. */
12669 ptid_t ptid;
f4abbc16
MM
12670
12671 /* The obtained branch trace configuration. */
12672 struct btrace_config conf;
9accd112
MM
12673};
12674
f4abbc16
MM
12675/* Reset our idea of our target's btrace configuration. */
12676
12677static void
12678remote_btrace_reset (void)
12679{
12680 struct remote_state *rs = get_remote_state ();
12681
12682 memset (&rs->btrace_config, 0, sizeof (rs->btrace_config));
12683}
12684
9accd112
MM
12685/* Check whether the target supports branch tracing. */
12686
12687static int
043c3577 12688remote_supports_btrace (struct target_ops *self, enum btrace_format format)
9accd112 12689{
4082afcc 12690 if (packet_support (PACKET_Qbtrace_off) != PACKET_ENABLE)
9accd112 12691 return 0;
4082afcc 12692 if (packet_support (PACKET_qXfer_btrace) != PACKET_ENABLE)
9accd112
MM
12693 return 0;
12694
043c3577
MM
12695 switch (format)
12696 {
12697 case BTRACE_FORMAT_NONE:
12698 return 0;
12699
12700 case BTRACE_FORMAT_BTS:
12701 return (packet_support (PACKET_Qbtrace_bts) == PACKET_ENABLE);
b20a6524
MM
12702
12703 case BTRACE_FORMAT_PT:
12704 /* The trace is decoded on the host. Even if our target supports it,
12705 we still need to have libipt to decode the trace. */
12706#if defined (HAVE_LIBIPT)
12707 return (packet_support (PACKET_Qbtrace_pt) == PACKET_ENABLE);
12708#else /* !defined (HAVE_LIBIPT) */
12709 return 0;
12710#endif /* !defined (HAVE_LIBIPT) */
043c3577
MM
12711 }
12712
12713 internal_error (__FILE__, __LINE__, _("Unknown branch trace format"));
9accd112
MM
12714}
12715
f4abbc16
MM
12716/* Synchronize the configuration with the target. */
12717
12718static void
12719btrace_sync_conf (const struct btrace_config *conf)
12720{
d33501a5
MM
12721 struct packet_config *packet;
12722 struct remote_state *rs;
12723 char *buf, *pos, *endbuf;
12724
12725 rs = get_remote_state ();
12726 buf = rs->buf;
12727 endbuf = buf + get_remote_packet_size ();
12728
12729 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_bts_size];
12730 if (packet_config_support (packet) == PACKET_ENABLE
12731 && conf->bts.size != rs->btrace_config.bts.size)
12732 {
12733 pos = buf;
12734 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12735 conf->bts.size);
12736
12737 putpkt (buf);
12738 getpkt (&buf, &rs->buf_size, 0);
12739
12740 if (packet_ok (buf, packet) == PACKET_ERROR)
12741 {
12742 if (buf[0] == 'E' && buf[1] == '.')
12743 error (_("Failed to configure the BTS buffer size: %s"), buf + 2);
12744 else
12745 error (_("Failed to configure the BTS buffer size."));
12746 }
12747
12748 rs->btrace_config.bts.size = conf->bts.size;
12749 }
b20a6524
MM
12750
12751 packet = &remote_protocol_packets[PACKET_Qbtrace_conf_pt_size];
12752 if (packet_config_support (packet) == PACKET_ENABLE
12753 && conf->pt.size != rs->btrace_config.pt.size)
12754 {
12755 pos = buf;
12756 pos += xsnprintf (pos, endbuf - pos, "%s=0x%x", packet->name,
12757 conf->pt.size);
12758
12759 putpkt (buf);
12760 getpkt (&buf, &rs->buf_size, 0);
12761
12762 if (packet_ok (buf, packet) == PACKET_ERROR)
12763 {
12764 if (buf[0] == 'E' && buf[1] == '.')
12765 error (_("Failed to configure the trace buffer size: %s"), buf + 2);
12766 else
12767 error (_("Failed to configure the trace buffer size."));
12768 }
12769
12770 rs->btrace_config.pt.size = conf->pt.size;
12771 }
f4abbc16
MM
12772}
12773
12774/* Read the current thread's btrace configuration from the target and
12775 store it into CONF. */
12776
12777static void
12778btrace_read_config (struct btrace_config *conf)
12779{
12780 char *xml;
12781
12782 xml = target_read_stralloc (&current_target,
b20a6524 12783 TARGET_OBJECT_BTRACE_CONF, "");
f4abbc16
MM
12784 if (xml != NULL)
12785 {
12786 struct cleanup *cleanup;
12787
12788 cleanup = make_cleanup (xfree, xml);
12789 parse_xml_btrace_conf (conf, xml);
12790 do_cleanups (cleanup);
12791 }
12792}
12793
9accd112
MM
12794/* Enable branch tracing. */
12795
12796static struct btrace_target_info *
f4abbc16
MM
12797remote_enable_btrace (struct target_ops *self, ptid_t ptid,
12798 const struct btrace_config *conf)
9accd112
MM
12799{
12800 struct btrace_target_info *tinfo = NULL;
b20a6524 12801 struct packet_config *packet = NULL;
9accd112
MM
12802 struct remote_state *rs = get_remote_state ();
12803 char *buf = rs->buf;
12804 char *endbuf = rs->buf + get_remote_packet_size ();
12805
b20a6524
MM
12806 switch (conf->format)
12807 {
12808 case BTRACE_FORMAT_BTS:
12809 packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
12810 break;
12811
12812 case BTRACE_FORMAT_PT:
12813 packet = &remote_protocol_packets[PACKET_Qbtrace_pt];
12814 break;
12815 }
12816
12817 if (packet == NULL || packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
12818 error (_("Target does not support branch tracing."));
12819
f4abbc16
MM
12820 btrace_sync_conf (conf);
12821
9accd112
MM
12822 set_general_thread (ptid);
12823
12824 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12825 putpkt (rs->buf);
12826 getpkt (&rs->buf, &rs->buf_size, 0);
12827
12828 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12829 {
12830 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12831 error (_("Could not enable branch tracing for %s: %s"),
12832 target_pid_to_str (ptid), rs->buf + 2);
12833 else
12834 error (_("Could not enable branch tracing for %s."),
12835 target_pid_to_str (ptid));
12836 }
12837
8d749320 12838 tinfo = XCNEW (struct btrace_target_info);
9accd112
MM
12839 tinfo->ptid = ptid;
12840
f4abbc16
MM
12841 /* If we fail to read the configuration, we lose some information, but the
12842 tracing itself is not impacted. */
492d29ea
PA
12843 TRY
12844 {
12845 btrace_read_config (&tinfo->conf);
12846 }
12847 CATCH (err, RETURN_MASK_ERROR)
12848 {
12849 if (err.message != NULL)
12850 warning ("%s", err.message);
12851 }
12852 END_CATCH
f4abbc16 12853
9accd112
MM
12854 return tinfo;
12855}
12856
12857/* Disable branch tracing. */
12858
12859static void
25e95349
TT
12860remote_disable_btrace (struct target_ops *self,
12861 struct btrace_target_info *tinfo)
9accd112
MM
12862{
12863 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
12864 struct remote_state *rs = get_remote_state ();
12865 char *buf = rs->buf;
12866 char *endbuf = rs->buf + get_remote_packet_size ();
12867
4082afcc 12868 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
12869 error (_("Target does not support branch tracing."));
12870
12871 set_general_thread (tinfo->ptid);
12872
12873 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
12874 putpkt (rs->buf);
12875 getpkt (&rs->buf, &rs->buf_size, 0);
12876
12877 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
12878 {
12879 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
12880 error (_("Could not disable branch tracing for %s: %s"),
12881 target_pid_to_str (tinfo->ptid), rs->buf + 2);
12882 else
12883 error (_("Could not disable branch tracing for %s."),
12884 target_pid_to_str (tinfo->ptid));
12885 }
12886
12887 xfree (tinfo);
12888}
12889
12890/* Teardown branch tracing. */
12891
12892static void
1777056d
TT
12893remote_teardown_btrace (struct target_ops *self,
12894 struct btrace_target_info *tinfo)
9accd112
MM
12895{
12896 /* We must not talk to the target during teardown. */
12897 xfree (tinfo);
12898}
12899
12900/* Read the branch trace. */
12901
969c39fb 12902static enum btrace_error
39c49f83 12903remote_read_btrace (struct target_ops *self,
734b0e4b 12904 struct btrace_data *btrace,
969c39fb 12905 struct btrace_target_info *tinfo,
9accd112
MM
12906 enum btrace_read_type type)
12907{
12908 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
969c39fb 12909 struct cleanup *cleanup;
9accd112
MM
12910 const char *annex;
12911 char *xml;
12912
4082afcc 12913 if (packet_config_support (packet) != PACKET_ENABLE)
9accd112
MM
12914 error (_("Target does not support branch tracing."));
12915
12916#if !defined(HAVE_LIBEXPAT)
12917 error (_("Cannot process branch tracing result. XML parsing not supported."));
12918#endif
12919
12920 switch (type)
12921 {
864089d2 12922 case BTRACE_READ_ALL:
9accd112
MM
12923 annex = "all";
12924 break;
864089d2 12925 case BTRACE_READ_NEW:
9accd112
MM
12926 annex = "new";
12927 break;
969c39fb
MM
12928 case BTRACE_READ_DELTA:
12929 annex = "delta";
12930 break;
9accd112
MM
12931 default:
12932 internal_error (__FILE__, __LINE__,
12933 _("Bad branch tracing read type: %u."),
12934 (unsigned int) type);
12935 }
12936
12937 xml = target_read_stralloc (&current_target,
b20a6524 12938 TARGET_OBJECT_BTRACE, annex);
969c39fb
MM
12939 if (xml == NULL)
12940 return BTRACE_ERR_UNKNOWN;
9accd112 12941
969c39fb 12942 cleanup = make_cleanup (xfree, xml);
734b0e4b 12943 parse_xml_btrace (btrace, xml);
969c39fb 12944 do_cleanups (cleanup);
9accd112 12945
969c39fb 12946 return BTRACE_ERR_NONE;
9accd112
MM
12947}
12948
f4abbc16
MM
12949static const struct btrace_config *
12950remote_btrace_conf (struct target_ops *self,
12951 const struct btrace_target_info *tinfo)
12952{
12953 return &tinfo->conf;
12954}
12955
ced63ec0 12956static int
5436ff03 12957remote_augmented_libraries_svr4_read (struct target_ops *self)
ced63ec0 12958{
4082afcc
PA
12959 return (packet_support (PACKET_augmented_libraries_svr4_read_feature)
12960 == PACKET_ENABLE);
ced63ec0
GB
12961}
12962
9dd130a0
TT
12963/* Implementation of to_load. */
12964
12965static void
9cbe5fff 12966remote_load (struct target_ops *self, const char *name, int from_tty)
9dd130a0
TT
12967{
12968 generic_load (name, from_tty);
12969}
12970
c78fa86a
GB
12971/* Accepts an integer PID; returns a string representing a file that
12972 can be opened on the remote side to get the symbols for the child
12973 process. Returns NULL if the operation is not supported. */
12974
12975static char *
12976remote_pid_to_exec_file (struct target_ops *self, int pid)
12977{
12978 static char *filename = NULL;
835205d0
GB
12979 struct inferior *inf;
12980 char *annex = NULL;
c78fa86a
GB
12981
12982 if (packet_support (PACKET_qXfer_exec_file) != PACKET_ENABLE)
12983 return NULL;
12984
12985 if (filename != NULL)
12986 xfree (filename);
12987
835205d0
GB
12988 inf = find_inferior_pid (pid);
12989 if (inf == NULL)
12990 internal_error (__FILE__, __LINE__,
12991 _("not currently attached to process %d"), pid);
12992
12993 if (!inf->fake_pid_p)
12994 {
12995 const int annex_size = 9;
12996
224c3ddb 12997 annex = (char *) alloca (annex_size);
835205d0
GB
12998 xsnprintf (annex, annex_size, "%x", pid);
12999 }
13000
c78fa86a
GB
13001 filename = target_read_stralloc (&current_target,
13002 TARGET_OBJECT_EXEC_FILE, annex);
13003
13004 return filename;
13005}
13006
750ce8d1
YQ
13007/* Implement the to_can_do_single_step target_ops method. */
13008
13009static int
13010remote_can_do_single_step (struct target_ops *ops)
13011{
13012 /* We can only tell whether target supports single step or not by
13013 supported s and S vCont actions if the stub supports vContSupported
13014 feature. If the stub doesn't support vContSupported feature,
13015 we have conservatively to think target doesn't supports single
13016 step. */
13017 if (packet_support (PACKET_vContSupported) == PACKET_ENABLE)
13018 {
13019 struct remote_state *rs = get_remote_state ();
13020
13021 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
13022 remote_vcont_probe (rs);
13023
13024 return rs->supports_vCont.s && rs->supports_vCont.S;
13025 }
13026 else
13027 return 0;
13028}
13029
c906108c 13030static void
fba45db2 13031init_remote_ops (void)
c906108c 13032{
c5aa993b 13033 remote_ops.to_shortname = "remote";
c906108c 13034 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 13035 remote_ops.to_doc =
c906108c 13036 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
13037Specify the serial device it is connected to\n\
13038(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
13039 remote_ops.to_open = remote_open;
13040 remote_ops.to_close = remote_close;
c906108c 13041 remote_ops.to_detach = remote_detach;
6ad8ae5c 13042 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 13043 remote_ops.to_resume = remote_resume;
c906108c
SS
13044 remote_ops.to_wait = remote_wait;
13045 remote_ops.to_fetch_registers = remote_fetch_registers;
13046 remote_ops.to_store_registers = remote_store_registers;
13047 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b 13048 remote_ops.to_files_info = remote_files_info;
c906108c
SS
13049 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
13050 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
f7e6eed5
PA
13051 remote_ops.to_stopped_by_sw_breakpoint = remote_stopped_by_sw_breakpoint;
13052 remote_ops.to_supports_stopped_by_sw_breakpoint = remote_supports_stopped_by_sw_breakpoint;
13053 remote_ops.to_stopped_by_hw_breakpoint = remote_stopped_by_hw_breakpoint;
13054 remote_ops.to_supports_stopped_by_hw_breakpoint = remote_supports_stopped_by_hw_breakpoint;
3c3bea1c
GS
13055 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
13056 remote_ops.to_stopped_data_address = remote_stopped_data_address;
283002cf
MR
13057 remote_ops.to_watchpoint_addr_within_range =
13058 remote_watchpoint_addr_within_range;
3c3bea1c
GS
13059 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
13060 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
13061 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
480a3f21
PW
13062 remote_ops.to_region_ok_for_hw_watchpoint
13063 = remote_region_ok_for_hw_watchpoint;
3c3bea1c
GS
13064 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
13065 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b 13066 remote_ops.to_kill = remote_kill;
9dd130a0 13067 remote_ops.to_load = remote_load;
c906108c 13068 remote_ops.to_mourn_inferior = remote_mourn;
2455069d 13069 remote_ops.to_pass_signals = remote_pass_signals;
82075af2 13070 remote_ops.to_set_syscall_catchpoint = remote_set_syscall_catchpoint;
9b224c5e 13071 remote_ops.to_program_signals = remote_program_signals;
c906108c 13072 remote_ops.to_thread_alive = remote_thread_alive;
79efa585 13073 remote_ops.to_thread_name = remote_thread_name;
e8032dde 13074 remote_ops.to_update_thread_list = remote_update_thread_list;
0caabb7e 13075 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 13076 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10760264 13077 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
c906108c 13078 remote_ops.to_stop = remote_stop;
bfedc46a 13079 remote_ops.to_interrupt = remote_interrupt;
93692b58 13080 remote_ops.to_pass_ctrlc = remote_pass_ctrlc;
abc56d60 13081 remote_ops.to_check_pending_interrupt = remote_check_pending_interrupt;
4b8a223f 13082 remote_ops.to_xfer_partial = remote_xfer_partial;
96baa820 13083 remote_ops.to_rcmd = remote_rcmd;
c78fa86a 13084 remote_ops.to_pid_to_exec_file = remote_pid_to_exec_file;
49d03eab 13085 remote_ops.to_log_command = serial_log_command;
38691318 13086 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 13087 remote_ops.to_stratum = process_stratum;
c35b1492
PA
13088 remote_ops.to_has_all_memory = default_child_has_all_memory;
13089 remote_ops.to_has_memory = default_child_has_memory;
13090 remote_ops.to_has_stack = default_child_has_stack;
13091 remote_ops.to_has_registers = default_child_has_registers;
13092 remote_ops.to_has_execution = default_child_has_execution;
3e43a32a 13093 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 13094 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 13095 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 13096 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
13097 remote_ops.to_flash_erase = remote_flash_erase;
13098 remote_ops.to_flash_done = remote_flash_done;
29709017 13099 remote_ops.to_read_description = remote_read_description;
08388c79 13100 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
13101 remote_ops.to_can_async_p = remote_can_async_p;
13102 remote_ops.to_is_async_p = remote_is_async_p;
13103 remote_ops.to_async = remote_async;
65706a29 13104 remote_ops.to_thread_events = remote_thread_events;
750ce8d1 13105 remote_ops.to_can_do_single_step = remote_can_do_single_step;
75c99385
PA
13106 remote_ops.to_terminal_inferior = remote_terminal_inferior;
13107 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 13108 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 13109 remote_ops.to_supports_multi_process = remote_supports_multi_process;
03583c20
UW
13110 remote_ops.to_supports_disable_randomization
13111 = remote_supports_disable_randomization;
4bd7dc42 13112 remote_ops.to_filesystem_is_local = remote_filesystem_is_local;
7313baad
UW
13113 remote_ops.to_fileio_open = remote_hostio_open;
13114 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
13115 remote_ops.to_fileio_pread = remote_hostio_pread;
9b15c1f0 13116 remote_ops.to_fileio_fstat = remote_hostio_fstat;
7313baad
UW
13117 remote_ops.to_fileio_close = remote_hostio_close;
13118 remote_ops.to_fileio_unlink = remote_hostio_unlink;
b9e7b9c3 13119 remote_ops.to_fileio_readlink = remote_hostio_readlink;
d248b706 13120 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
3065dfb6 13121 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
b775012e 13122 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
d3ce09f5 13123 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
35b1e5cc
SS
13124 remote_ops.to_trace_init = remote_trace_init;
13125 remote_ops.to_download_tracepoint = remote_download_tracepoint;
1e4d1764 13126 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
3e43a32a
MS
13127 remote_ops.to_download_trace_state_variable
13128 = remote_download_trace_state_variable;
d248b706
KY
13129 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
13130 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
35b1e5cc
SS
13131 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
13132 remote_ops.to_trace_start = remote_trace_start;
13133 remote_ops.to_get_trace_status = remote_get_trace_status;
f196051f 13134 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
35b1e5cc
SS
13135 remote_ops.to_trace_stop = remote_trace_stop;
13136 remote_ops.to_trace_find = remote_trace_find;
3e43a32a
MS
13137 remote_ops.to_get_trace_state_variable_value
13138 = remote_get_trace_state_variable_value;
00bf0b85
SS
13139 remote_ops.to_save_trace_data = remote_save_trace_data;
13140 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
3e43a32a
MS
13141 remote_ops.to_upload_trace_state_variables
13142 = remote_upload_trace_state_variables;
00bf0b85 13143 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
405f8e94 13144 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
35b1e5cc 13145 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
4daf5ac0 13146 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
f6f899bf 13147 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
f196051f 13148 remote_ops.to_set_trace_notes = remote_set_trace_notes;
dc146f7c 13149 remote_ops.to_core_of_thread = remote_core_of_thread;
4a5e7a5b 13150 remote_ops.to_verify_memory = remote_verify_memory;
711e434b 13151 remote_ops.to_get_tib_address = remote_get_tib_address;
d914c394 13152 remote_ops.to_set_permissions = remote_set_permissions;
0fb4aa4b
PA
13153 remote_ops.to_static_tracepoint_marker_at
13154 = remote_static_tracepoint_marker_at;
13155 remote_ops.to_static_tracepoint_markers_by_strid
13156 = remote_static_tracepoint_markers_by_strid;
b3b9301e 13157 remote_ops.to_traceframe_info = remote_traceframe_info;
d1feda86
YQ
13158 remote_ops.to_use_agent = remote_use_agent;
13159 remote_ops.to_can_use_agent = remote_can_use_agent;
9accd112
MM
13160 remote_ops.to_supports_btrace = remote_supports_btrace;
13161 remote_ops.to_enable_btrace = remote_enable_btrace;
13162 remote_ops.to_disable_btrace = remote_disable_btrace;
13163 remote_ops.to_teardown_btrace = remote_teardown_btrace;
13164 remote_ops.to_read_btrace = remote_read_btrace;
f4abbc16 13165 remote_ops.to_btrace_conf = remote_btrace_conf;
ced63ec0
GB
13166 remote_ops.to_augmented_libraries_svr4_read =
13167 remote_augmented_libraries_svr4_read;
8020350c
DB
13168 remote_ops.to_follow_fork = remote_follow_fork;
13169 remote_ops.to_follow_exec = remote_follow_exec;
13170 remote_ops.to_insert_fork_catchpoint = remote_insert_fork_catchpoint;
13171 remote_ops.to_remove_fork_catchpoint = remote_remove_fork_catchpoint;
13172 remote_ops.to_insert_vfork_catchpoint = remote_insert_vfork_catchpoint;
13173 remote_ops.to_remove_vfork_catchpoint = remote_remove_vfork_catchpoint;
13174 remote_ops.to_insert_exec_catchpoint = remote_insert_exec_catchpoint;
13175 remote_ops.to_remove_exec_catchpoint = remote_remove_exec_catchpoint;
c906108c
SS
13176}
13177
13178/* Set up the extended remote vector by making a copy of the standard
13179 remote vector and adding to it. */
13180
13181static void
fba45db2 13182init_extended_remote_ops (void)
c906108c
SS
13183{
13184 extended_remote_ops = remote_ops;
13185
0f71a2f6 13186 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 13187 extended_remote_ops.to_longname =
c906108c 13188 "Extended remote serial target in gdb-specific protocol";
c5aa993b 13189 extended_remote_ops.to_doc =
c906108c 13190 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
13191Specify the serial device it is connected to (e.g. /dev/ttya).";
13192 extended_remote_ops.to_open = extended_remote_open;
c906108c 13193 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
2d717e4f
DJ
13194 extended_remote_ops.to_detach = extended_remote_detach;
13195 extended_remote_ops.to_attach = extended_remote_attach;
b9c1d481 13196 extended_remote_ops.to_post_attach = extended_remote_post_attach;
03583c20
UW
13197 extended_remote_ops.to_supports_disable_randomization
13198 = extended_remote_supports_disable_randomization;
0f71a2f6
JM
13199}
13200
6426a772 13201static int
6a109b6b 13202remote_can_async_p (struct target_ops *ops)
6426a772 13203{
5d93a237
TT
13204 struct remote_state *rs = get_remote_state ();
13205
c6ebd6cf 13206 if (!target_async_permitted)
75c99385
PA
13207 /* We only enable async when the user specifically asks for it. */
13208 return 0;
13209
23860348 13210 /* We're async whenever the serial device is. */
5d93a237 13211 return serial_can_async_p (rs->remote_desc);
6426a772
JM
13212}
13213
13214static int
6a109b6b 13215remote_is_async_p (struct target_ops *ops)
6426a772 13216{
5d93a237
TT
13217 struct remote_state *rs = get_remote_state ();
13218
c6ebd6cf 13219 if (!target_async_permitted)
75c99385
PA
13220 /* We only enable async when the user specifically asks for it. */
13221 return 0;
13222
23860348 13223 /* We're async whenever the serial device is. */
5d93a237 13224 return serial_is_async_p (rs->remote_desc);
6426a772
JM
13225}
13226
2acceee2
JM
13227/* Pass the SERIAL event on and up to the client. One day this code
13228 will be able to delay notifying the client of an event until the
23860348 13229 point where an entire packet has been received. */
2acceee2 13230
2acceee2
JM
13231static serial_event_ftype remote_async_serial_handler;
13232
6426a772 13233static void
819cc324 13234remote_async_serial_handler (struct serial *scb, void *context)
6426a772 13235{
2acceee2
JM
13236 /* Don't propogate error information up to the client. Instead let
13237 the client find out about the error by querying the target. */
6a3753b3 13238 inferior_event_handler (INF_REG_EVENT, NULL);
2acceee2
JM
13239}
13240
74531fed
PA
13241static void
13242remote_async_inferior_event_handler (gdb_client_data data)
13243{
13244 inferior_event_handler (INF_REG_EVENT, NULL);
13245}
13246
2acceee2 13247static void
6a3753b3 13248remote_async (struct target_ops *ops, int enable)
2acceee2 13249{
5d93a237
TT
13250 struct remote_state *rs = get_remote_state ();
13251
6a3753b3 13252 if (enable)
2acceee2 13253 {
88b496c3 13254 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
b7d2e916
PA
13255
13256 /* If there are pending events in the stop reply queue tell the
13257 event loop to process them. */
13258 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
13259 mark_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13260 /* For simplicity, below we clear the pending events token
13261 without remembering whether it is marked, so here we always
13262 mark it. If there's actually no pending notification to
13263 process, this ends up being a no-op (other than a spurious
13264 event-loop wakeup). */
13265 if (target_is_non_stop_p ())
13266 mark_async_event_handler (rs->notif_state->get_pending_events_token);
2acceee2
JM
13267 }
13268 else
b7d2e916
PA
13269 {
13270 serial_async (rs->remote_desc, NULL, NULL);
6efcd9a8
PA
13271 /* If the core is disabling async, it doesn't want to be
13272 disturbed with target events. Clear all async event sources
13273 too. */
b7d2e916 13274 clear_async_event_handler (remote_async_inferior_event_token);
6efcd9a8
PA
13275 if (target_is_non_stop_p ())
13276 clear_async_event_handler (rs->notif_state->get_pending_events_token);
b7d2e916 13277 }
6426a772
JM
13278}
13279
65706a29
PA
13280/* Implementation of the to_thread_events method. */
13281
13282static void
13283remote_thread_events (struct target_ops *ops, int enable)
13284{
13285 struct remote_state *rs = get_remote_state ();
13286 size_t size = get_remote_packet_size ();
65706a29
PA
13287
13288 if (packet_support (PACKET_QThreadEvents) == PACKET_DISABLE)
13289 return;
13290
13291 xsnprintf (rs->buf, size, "QThreadEvents:%x", enable ? 1 : 0);
13292 putpkt (rs->buf);
13293 getpkt (&rs->buf, &rs->buf_size, 0);
13294
13295 switch (packet_ok (rs->buf,
13296 &remote_protocol_packets[PACKET_QThreadEvents]))
13297 {
13298 case PACKET_OK:
13299 if (strcmp (rs->buf, "OK") != 0)
13300 error (_("Remote refused setting thread events: %s"), rs->buf);
13301 break;
13302 case PACKET_ERROR:
13303 warning (_("Remote failure reply: %s"), rs->buf);
13304 break;
13305 case PACKET_UNKNOWN:
13306 break;
13307 }
13308}
13309
5a2468f5 13310static void
c2d11a7d 13311set_remote_cmd (char *args, int from_tty)
5a2468f5 13312{
635c7e8a 13313 help_list (remote_set_cmdlist, "set remote ", all_commands, gdb_stdout);
5a2468f5
JM
13314}
13315
d471ea57
AC
13316static void
13317show_remote_cmd (char *args, int from_tty)
13318{
37a105a1 13319 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 13320 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1
DJ
13321 struct cleanup *showlist_chain;
13322 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 13323 struct ui_out *uiout = current_uiout;
37a105a1
DJ
13324
13325 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
13326 for (; list != NULL; list = list->next)
13327 if (strcmp (list->name, "Z-packet") == 0)
13328 continue;
427c3a89
DJ
13329 else if (list->type == not_set_cmd)
13330 /* Alias commands are exactly like the original, except they
13331 don't have the normal type. */
13332 continue;
13333 else
37a105a1
DJ
13334 {
13335 struct cleanup *option_chain
13336 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
a744cf53 13337
37a105a1
DJ
13338 ui_out_field_string (uiout, "name", list->name);
13339 ui_out_text (uiout, ": ");
427c3a89 13340 if (list->type == show_cmd)
5b9afe8a 13341 do_show_command ((char *) NULL, from_tty, list);
427c3a89
DJ
13342 else
13343 cmd_func (list, NULL, from_tty);
37a105a1
DJ
13344 /* Close the tuple. */
13345 do_cleanups (option_chain);
13346 }
427c3a89
DJ
13347
13348 /* Close the tuple. */
13349 do_cleanups (showlist_chain);
d471ea57 13350}
5a2468f5 13351
0f71a2f6 13352
23860348 13353/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
13354static void
13355remote_new_objfile (struct objfile *objfile)
13356{
5d93a237
TT
13357 struct remote_state *rs = get_remote_state ();
13358
13359 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 13360 remote_check_symbols ();
dc8acb97
MS
13361}
13362
00bf0b85
SS
13363/* Pull all the tracepoints defined on the target and create local
13364 data structures representing them. We don't want to create real
13365 tracepoints yet, we don't want to mess up the user's existing
13366 collection. */
13367
13368static int
ab6617cc 13369remote_upload_tracepoints (struct target_ops *self, struct uploaded_tp **utpp)
d5551862 13370{
00bf0b85
SS
13371 struct remote_state *rs = get_remote_state ();
13372 char *p;
d5551862 13373
00bf0b85
SS
13374 /* Ask for a first packet of tracepoint definition. */
13375 putpkt ("qTfP");
13376 getpkt (&rs->buf, &rs->buf_size, 0);
13377 p = rs->buf;
13378 while (*p && *p != 'l')
d5551862 13379 {
00bf0b85
SS
13380 parse_tracepoint_definition (p, utpp);
13381 /* Ask for another packet of tracepoint definition. */
13382 putpkt ("qTsP");
13383 getpkt (&rs->buf, &rs->buf_size, 0);
13384 p = rs->buf;
d5551862 13385 }
00bf0b85 13386 return 0;
d5551862
SS
13387}
13388
00bf0b85 13389static int
181e3713
TT
13390remote_upload_trace_state_variables (struct target_ops *self,
13391 struct uploaded_tsv **utsvp)
d5551862 13392{
00bf0b85 13393 struct remote_state *rs = get_remote_state ();
d5551862 13394 char *p;
d5551862 13395
00bf0b85
SS
13396 /* Ask for a first packet of variable definition. */
13397 putpkt ("qTfV");
d5551862
SS
13398 getpkt (&rs->buf, &rs->buf_size, 0);
13399 p = rs->buf;
00bf0b85 13400 while (*p && *p != 'l')
d5551862 13401 {
00bf0b85
SS
13402 parse_tsv_definition (p, utsvp);
13403 /* Ask for another packet of variable definition. */
13404 putpkt ("qTsV");
d5551862
SS
13405 getpkt (&rs->buf, &rs->buf_size, 0);
13406 p = rs->buf;
13407 }
00bf0b85 13408 return 0;
d5551862
SS
13409}
13410
c1e36e3e
PA
13411/* The "set/show range-stepping" show hook. */
13412
13413static void
13414show_range_stepping (struct ui_file *file, int from_tty,
13415 struct cmd_list_element *c,
13416 const char *value)
13417{
13418 fprintf_filtered (file,
13419 _("Debugger's willingness to use range stepping "
13420 "is %s.\n"), value);
13421}
13422
13423/* The "set/show range-stepping" set hook. */
13424
13425static void
13426set_range_stepping (char *ignore_args, int from_tty,
13427 struct cmd_list_element *c)
13428{
5d93a237
TT
13429 struct remote_state *rs = get_remote_state ();
13430
c1e36e3e
PA
13431 /* Whene enabling, check whether range stepping is actually
13432 supported by the target, and warn if not. */
13433 if (use_range_stepping)
13434 {
5d93a237 13435 if (rs->remote_desc != NULL)
c1e36e3e 13436 {
4082afcc 13437 if (packet_support (PACKET_vCont) == PACKET_SUPPORT_UNKNOWN)
c1e36e3e
PA
13438 remote_vcont_probe (rs);
13439
4082afcc 13440 if (packet_support (PACKET_vCont) == PACKET_ENABLE
c1e36e3e
PA
13441 && rs->supports_vCont.r)
13442 return;
13443 }
13444
13445 warning (_("Range stepping is not supported by the current target"));
13446 }
13447}
13448
c906108c 13449void
fba45db2 13450_initialize_remote (void)
c906108c 13451{
9a7071a8 13452 struct cmd_list_element *cmd;
6f937416 13453 const char *cmd_name;
ea9c271d 13454
0f71a2f6 13455 /* architecture specific data */
2bc416ba 13456 remote_gdbarch_data_handle =
23860348 13457 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
13458 remote_g_packet_data_handle =
13459 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 13460
94585166
DB
13461 remote_pspace_data
13462 = register_program_space_data_with_cleanup (NULL,
13463 remote_pspace_data_cleanup);
13464
ea9c271d
DJ
13465 /* Initialize the per-target state. At the moment there is only one
13466 of these, not one per target. Only one target is active at a
cf792862
TT
13467 time. */
13468 remote_state = new_remote_state ();
ea9c271d 13469
c906108c
SS
13470 init_remote_ops ();
13471 add_target (&remote_ops);
13472
13473 init_extended_remote_ops ();
13474 add_target (&extended_remote_ops);
cce74817 13475
dc8acb97 13476 /* Hook into new objfile notification. */
06d3b283 13477 observer_attach_new_objfile (remote_new_objfile);
5f4cf0bb
YQ
13478 /* We're no longer interested in notification events of an inferior
13479 when it exits. */
13480 observer_attach_inferior_exit (discard_pending_stop_replies);
dc8acb97 13481
b803fb0f 13482 /* Set up signal handlers. */
934b9bac 13483 async_sigint_remote_token =
b803fb0f 13484 create_async_signal_handler (async_remote_interrupt, NULL);
934b9bac 13485 async_sigint_remote_twice_token =
6d549500 13486 create_async_signal_handler (async_remote_interrupt_twice, NULL);
b803fb0f 13487
c906108c
SS
13488#if 0
13489 init_remote_threadtests ();
13490#endif
13491
722247f1 13492 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 13493 /* set/show remote ... */
d471ea57 13494
1bedd215 13495 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
13496Remote protocol specific variables\n\
13497Configure various remote-protocol specific variables such as\n\
1bedd215 13498the packets being used"),
cff3e48b 13499 &remote_set_cmdlist, "set remote ",
23860348 13500 0 /* allow-unknown */, &setlist);
1bedd215 13501 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
13502Remote protocol specific variables\n\
13503Configure various remote-protocol specific variables such as\n\
1bedd215 13504the packets being used"),
cff3e48b 13505 &remote_show_cmdlist, "show remote ",
23860348 13506 0 /* allow-unknown */, &showlist);
5a2468f5 13507
1a966eab
AC
13508 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
13509Compare section data on target to the exec file.\n\
95cf3b38
DT
13510Argument is a single section name (default: all loaded sections).\n\
13511To compare only read-only loaded sections, specify the -r option."),
c906108c
SS
13512 &cmdlist);
13513
1a966eab
AC
13514 add_cmd ("packet", class_maintenance, packet_command, _("\
13515Send an arbitrary packet to a remote target.\n\
c906108c
SS
13516 maintenance packet TEXT\n\
13517If GDB is talking to an inferior via the GDB serial protocol, then\n\
13518this command sends the string TEXT to the inferior, and displays the\n\
13519response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 13520terminating `#' character and checksum."),
c906108c
SS
13521 &maintenancelist);
13522
7915a72c
AC
13523 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
13524Set whether to send break if interrupted."), _("\
13525Show whether to send break if interrupted."), _("\
13526If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 13527 set_remotebreak, show_remotebreak,
e707bbc2 13528 &setlist, &showlist);
9a7071a8
JB
13529 cmd_name = "remotebreak";
13530 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
13531 deprecate_cmd (cmd, "set remote interrupt-sequence");
13532 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
13533 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
13534 deprecate_cmd (cmd, "show remote interrupt-sequence");
13535
13536 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
13537 interrupt_sequence_modes, &interrupt_sequence_mode,
13538 _("\
9a7071a8
JB
13539Set interrupt sequence to remote target."), _("\
13540Show interrupt sequence to remote target."), _("\
13541Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
13542 NULL, show_interrupt_sequence,
13543 &remote_set_cmdlist,
13544 &remote_show_cmdlist);
13545
13546 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
13547 &interrupt_on_connect, _("\
13548Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13549Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
13550If set, interrupt sequence is sent to remote target."),
13551 NULL, NULL,
13552 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 13553
23860348 13554 /* Install commands for configuring memory read/write packets. */
11cf8741 13555
1a966eab
AC
13556 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
13557Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 13558 &setlist);
1a966eab
AC
13559 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
13560Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
13561 &showlist);
13562 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
13563 set_memory_write_packet_size, _("\
13564Set the maximum number of bytes per memory-write packet.\n\
13565Specify the number of bytes in a packet or 0 (zero) for the\n\
13566default packet size. The actual limit is further reduced\n\
13567dependent on the target. Specify ``fixed'' to disable the\n\
13568further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
13569 &remote_set_cmdlist);
13570 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
13571 set_memory_read_packet_size, _("\
13572Set the maximum number of bytes per memory-read packet.\n\
13573Specify the number of bytes in a packet or 0 (zero) for the\n\
13574default packet size. The actual limit is further reduced\n\
13575dependent on the target. Specify ``fixed'' to disable the\n\
13576further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
13577 &remote_set_cmdlist);
13578 add_cmd ("memory-write-packet-size", no_class,
13579 show_memory_write_packet_size,
1a966eab 13580 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
13581 &remote_show_cmdlist);
13582 add_cmd ("memory-read-packet-size", no_class,
13583 show_memory_read_packet_size,
1a966eab 13584 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 13585 &remote_show_cmdlist);
c906108c 13586
b3f42336 13587 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
13588 &remote_hw_watchpoint_limit, _("\
13589Set the maximum number of target hardware watchpoints."), _("\
13590Show the maximum number of target hardware watchpoints."), _("\
13591Specify a negative limit for unlimited."),
3e43a32a
MS
13592 NULL, NULL, /* FIXME: i18n: The maximum
13593 number of target hardware
13594 watchpoints is %s. */
b3f42336 13595 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
13596 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
13597 &remote_hw_watchpoint_length_limit, _("\
13598Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
13599Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
13600Specify a negative limit for unlimited."),
13601 NULL, NULL, /* FIXME: i18n: The maximum
13602 length (in bytes) of a target
13603 hardware watchpoint is %s. */
13604 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 13605 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
13606 &remote_hw_breakpoint_limit, _("\
13607Set the maximum number of target hardware breakpoints."), _("\
13608Show the maximum number of target hardware breakpoints."), _("\
13609Specify a negative limit for unlimited."),
3e43a32a
MS
13610 NULL, NULL, /* FIXME: i18n: The maximum
13611 number of target hardware
13612 breakpoints is %s. */
b3f42336 13613 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 13614
1b493192
PA
13615 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
13616 &remote_address_size, _("\
4d28ad1e
AC
13617Set the maximum size of the address (in bits) in a memory packet."), _("\
13618Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
13619 NULL,
13620 NULL, /* FIXME: i18n: */
13621 &setlist, &showlist);
c906108c 13622
ca4f7f8b
PA
13623 init_all_packet_configs ();
13624
444abaca 13625 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 13626 "X", "binary-download", 1);
0f71a2f6 13627
444abaca 13628 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 13629 "vCont", "verbose-resume", 0);
506fb367 13630
89be2091
DJ
13631 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
13632 "QPassSignals", "pass-signals", 0);
13633
82075af2
JS
13634 add_packet_config_cmd (&remote_protocol_packets[PACKET_QCatchSyscalls],
13635 "QCatchSyscalls", "catch-syscalls", 0);
13636
9b224c5e
PA
13637 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
13638 "QProgramSignals", "program-signals", 0);
13639
444abaca 13640 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 13641 "qSymbol", "symbol-lookup", 0);
dc8acb97 13642
444abaca 13643 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 13644 "P", "set-register", 1);
d471ea57 13645
444abaca 13646 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 13647 "p", "fetch-register", 1);
b96ec7ac 13648
444abaca 13649 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 13650 "Z0", "software-breakpoint", 0);
d471ea57 13651
444abaca 13652 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 13653 "Z1", "hardware-breakpoint", 0);
d471ea57 13654
444abaca 13655 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 13656 "Z2", "write-watchpoint", 0);
d471ea57 13657
444abaca 13658 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 13659 "Z3", "read-watchpoint", 0);
d471ea57 13660
444abaca 13661 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 13662 "Z4", "access-watchpoint", 0);
d471ea57 13663
0876f84a
DJ
13664 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
13665 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 13666
c78fa86a
GB
13667 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_exec_file],
13668 "qXfer:exec-file:read", "pid-to-exec-file", 0);
13669
23181151
DJ
13670 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
13671 "qXfer:features:read", "target-features", 0);
13672
cfa9d6d9
DJ
13673 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
13674 "qXfer:libraries:read", "library-info", 0);
13675
2268b414
JK
13676 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
13677 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
13678
fd79ecee
DJ
13679 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
13680 "qXfer:memory-map:read", "memory-map", 0);
13681
0e7f50da
UW
13682 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
13683 "qXfer:spu:read", "read-spu-object", 0);
13684
13685 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
13686 "qXfer:spu:write", "write-spu-object", 0);
13687
07e059b5
VP
13688 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
13689 "qXfer:osdata:read", "osdata", 0);
13690
dc146f7c
VP
13691 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
13692 "qXfer:threads:read", "threads", 0);
13693
4aa995e1
PA
13694 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
13695 "qXfer:siginfo:read", "read-siginfo-object", 0);
13696
13697 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
13698 "qXfer:siginfo:write", "write-siginfo-object", 0);
13699
b3b9301e
PA
13700 add_packet_config_cmd
13701 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 13702 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 13703
169081d0
TG
13704 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
13705 "qXfer:uib:read", "unwind-info-block", 0);
13706
444abaca 13707 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 13708 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
13709 0);
13710
711e434b
PM
13711 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
13712 "qGetTIBAddr", "get-thread-information-block-address",
13713 0);
13714
40ab02ce
MS
13715 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
13716 "bc", "reverse-continue", 0);
13717
13718 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
13719 "bs", "reverse-step", 0);
13720
be2a5f71
DJ
13721 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
13722 "qSupported", "supported-packets", 0);
13723
08388c79
DE
13724 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
13725 "qSearch:memory", "search-memory", 0);
13726
bd3eecc3
PA
13727 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
13728 "qTStatus", "trace-status", 0);
13729
15a201c8
GB
13730 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_setfs],
13731 "vFile:setfs", "hostio-setfs", 0);
13732
a6b151f1
DJ
13733 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
13734 "vFile:open", "hostio-open", 0);
13735
13736 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
13737 "vFile:pread", "hostio-pread", 0);
13738
13739 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
13740 "vFile:pwrite", "hostio-pwrite", 0);
13741
13742 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
13743 "vFile:close", "hostio-close", 0);
13744
13745 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
13746 "vFile:unlink", "hostio-unlink", 0);
13747
b9e7b9c3
UW
13748 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
13749 "vFile:readlink", "hostio-readlink", 0);
13750
0a93529c
GB
13751 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_fstat],
13752 "vFile:fstat", "hostio-fstat", 0);
13753
2d717e4f
DJ
13754 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
13755 "vAttach", "attach", 0);
13756
13757 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
13758 "vRun", "run", 0);
13759
a6f3e723
SL
13760 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
13761 "QStartNoAckMode", "noack", 0);
13762
82f73884
PA
13763 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
13764 "vKill", "kill", 0);
13765
0b16c5cf
PA
13766 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
13767 "qAttached", "query-attached", 0);
13768
782b2b07 13769 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
13770 "ConditionalTracepoints",
13771 "conditional-tracepoints", 0);
3788aec7
LM
13772
13773 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
13774 "ConditionalBreakpoints",
13775 "conditional-breakpoints", 0);
13776
d3ce09f5
SS
13777 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
13778 "BreakpointCommands",
13779 "breakpoint-commands", 0);
13780
7a697b8d
SS
13781 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
13782 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 13783
409873ef
SS
13784 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
13785 "TracepointSource", "TracepointSource", 0);
13786
d914c394
SS
13787 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
13788 "QAllow", "allow", 0);
13789
0fb4aa4b
PA
13790 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
13791 "StaticTracepoints", "static-tracepoints", 0);
13792
1e4d1764
YQ
13793 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
13794 "InstallInTrace", "install-in-trace", 0);
13795
0fb4aa4b
PA
13796 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
13797 "qXfer:statictrace:read", "read-sdata-object", 0);
13798
78d85199
YQ
13799 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
13800 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
13801
03583c20
UW
13802 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
13803 "QDisableRandomization", "disable-randomization", 0);
13804
d1feda86
YQ
13805 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
13806 "QAgent", "agent", 0);
13807
f6f899bf
HAQ
13808 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
13809 "QTBuffer:size", "trace-buffer-size", 0);
13810
9accd112
MM
13811 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
13812 "Qbtrace:off", "disable-btrace", 0);
13813
13814 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
b20a6524
MM
13815 "Qbtrace:bts", "enable-btrace-bts", 0);
13816
13817 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_pt],
13818 "Qbtrace:pt", "enable-btrace-pt", 0);
9accd112
MM
13819
13820 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
13821 "qXfer:btrace", "read-btrace", 0);
13822
f4abbc16
MM
13823 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace_conf],
13824 "qXfer:btrace-conf", "read-btrace-conf", 0);
13825
d33501a5
MM
13826 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_bts_size],
13827 "Qbtrace-conf:bts:size", "btrace-conf-bts-size", 0);
13828
73b8c1fd
PA
13829 add_packet_config_cmd (&remote_protocol_packets[PACKET_multiprocess_feature],
13830 "multiprocess-feature", "multiprocess-feature", 0);
13831
f7e6eed5
PA
13832 add_packet_config_cmd (&remote_protocol_packets[PACKET_swbreak_feature],
13833 "swbreak-feature", "swbreak-feature", 0);
13834
13835 add_packet_config_cmd (&remote_protocol_packets[PACKET_hwbreak_feature],
13836 "hwbreak-feature", "hwbreak-feature", 0);
13837
89245bc0
DB
13838 add_packet_config_cmd (&remote_protocol_packets[PACKET_fork_event_feature],
13839 "fork-event-feature", "fork-event-feature", 0);
13840
13841 add_packet_config_cmd (&remote_protocol_packets[PACKET_vfork_event_feature],
13842 "vfork-event-feature", "vfork-event-feature", 0);
13843
b20a6524
MM
13844 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_conf_pt_size],
13845 "Qbtrace-conf:pt:size", "btrace-conf-pt-size", 0);
13846
750ce8d1
YQ
13847 add_packet_config_cmd (&remote_protocol_packets[PACKET_vContSupported],
13848 "vContSupported", "verbose-resume-supported", 0);
13849
94585166
DB
13850 add_packet_config_cmd (&remote_protocol_packets[PACKET_exec_event_feature],
13851 "exec-event-feature", "exec-event-feature", 0);
13852
de979965
PA
13853 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCtrlC],
13854 "vCtrlC", "ctrl-c", 0);
13855
65706a29
PA
13856 add_packet_config_cmd (&remote_protocol_packets[PACKET_QThreadEvents],
13857 "QThreadEvents", "thread-events", 0);
13858
f2faf941
PA
13859 add_packet_config_cmd (&remote_protocol_packets[PACKET_no_resumed],
13860 "N stop reply", "no-resumed-stop-reply", 0);
13861
0b736949
DB
13862 /* Assert that we've registered "set remote foo-packet" commands
13863 for all packet configs. */
ca4f7f8b
PA
13864 {
13865 int i;
13866
13867 for (i = 0; i < PACKET_MAX; i++)
13868 {
13869 /* Ideally all configs would have a command associated. Some
13870 still don't though. */
13871 int excepted;
13872
13873 switch (i)
13874 {
13875 case PACKET_QNonStop:
ca4f7f8b
PA
13876 case PACKET_EnableDisableTracepoints_feature:
13877 case PACKET_tracenz_feature:
13878 case PACKET_DisconnectedTracing_feature:
13879 case PACKET_augmented_libraries_svr4_read_feature:
936d2992
PA
13880 case PACKET_qCRC:
13881 /* Additions to this list need to be well justified:
13882 pre-existing packets are OK; new packets are not. */
ca4f7f8b
PA
13883 excepted = 1;
13884 break;
13885 default:
13886 excepted = 0;
13887 break;
13888 }
13889
13890 /* This catches both forgetting to add a config command, and
13891 forgetting to remove a packet from the exception list. */
13892 gdb_assert (excepted == (remote_protocol_packets[i].name == NULL));
13893 }
13894 }
13895
37a105a1
DJ
13896 /* Keep the old ``set remote Z-packet ...'' working. Each individual
13897 Z sub-packet has its own set and show commands, but users may
13898 have sets to this variable in their .gdbinit files (or in their
13899 documentation). */
e9e68a56 13900 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
13901 &remote_Z_packet_detect, _("\
13902Set use of remote protocol `Z' packets"), _("\
13903Show use of remote protocol `Z' packets "), _("\
3b64bf98 13904When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 13905packets."),
e9e68a56 13906 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
13907 show_remote_protocol_Z_packet_cmd,
13908 /* FIXME: i18n: Use of remote protocol
13909 `Z' packets is %s. */
e9e68a56 13910 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 13911
a6b151f1
DJ
13912 add_prefix_cmd ("remote", class_files, remote_command, _("\
13913Manipulate files on the remote system\n\
13914Transfer files to and from the remote target system."),
13915 &remote_cmdlist, "remote ",
13916 0 /* allow-unknown */, &cmdlist);
13917
13918 add_cmd ("put", class_files, remote_put_command,
13919 _("Copy a local file to the remote system."),
13920 &remote_cmdlist);
13921
13922 add_cmd ("get", class_files, remote_get_command,
13923 _("Copy a remote file to the local system."),
13924 &remote_cmdlist);
13925
13926 add_cmd ("delete", class_files, remote_delete_command,
13927 _("Delete a remote file."),
13928 &remote_cmdlist);
13929
2d717e4f 13930 add_setshow_string_noescape_cmd ("exec-file", class_files,
94585166 13931 &remote_exec_file_var, _("\
2d717e4f 13932Set the remote pathname for \"run\""), _("\
94585166
DB
13933Show the remote pathname for \"run\""), NULL,
13934 set_remote_exec_file,
13935 show_remote_exec_file,
13936 &remote_set_cmdlist,
13937 &remote_show_cmdlist);
2d717e4f 13938
c1e36e3e
PA
13939 add_setshow_boolean_cmd ("range-stepping", class_run,
13940 &use_range_stepping, _("\
13941Enable or disable range stepping."), _("\
13942Show whether target-assisted range stepping is enabled."), _("\
13943If on, and the target supports it, when stepping a source line, GDB\n\
13944tells the target to step the corresponding range of addresses itself instead\n\
13945of issuing multiple single-steps. This speeds up source level\n\
13946stepping. If off, GDB always issues single-steps, even if range\n\
13947stepping is supported by the target. The default is on."),
13948 set_range_stepping,
13949 show_range_stepping,
13950 &setlist,
13951 &showlist);
13952
449092f6
CV
13953 /* Eventually initialize fileio. See fileio.c */
13954 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229 13955
ba348170 13956 /* Take advantage of the fact that the TID field is not used, to tag
79d7f229 13957 special ptids with it set to != 0. */
ba348170
PA
13958 magic_null_ptid = ptid_build (42000, -1, 1);
13959 not_sent_ptid = ptid_build (42000, -2, 1);
13960 any_thread_ptid = ptid_build (42000, 0, 1);
35b1e5cc
SS
13961
13962 target_buf_size = 2048;
224c3ddb 13963 target_buf = (char *) xmalloc (target_buf_size);
c906108c 13964}
10760264 13965
This page took 3.61441 seconds and 4 git commands to generate.