]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/remote.c
import gnulib sys/stat.h module
[thirdparty/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
28e7fd62 3 Copyright (C) 1988-2013 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"
0e9f083f 23#include <string.h>
c906108c
SS
24#include <ctype.h>
25#include <fcntl.h>
c906108c
SS
26#include "inferior.h"
27#include "bfd.h"
28#include "symfile.h"
60250e8b 29#include "exceptions.h"
c906108c 30#include "target.h"
c5aa993b 31/*#include "terminal.h" */
c906108c
SS
32#include "gdbcmd.h"
33#include "objfiles.h"
34#include "gdb-stabs.h"
35#include "gdbthread.h"
c2c6d25f 36#include "remote.h"
722247f1 37#include "remote-notif.h"
4e052eda 38#include "regcache.h"
fd0407d6 39#include "value.h"
1ff9c3d6 40#include "gdb_assert.h"
6867ae3e 41#include "observer.h"
a77053c2 42#include "solib.h"
37a105a1
DJ
43#include "cli/cli-decode.h"
44#include "cli/cli-setshow.h"
424163ea 45#include "target-descriptions.h"
a4453b7e 46#include "gdb_bfd.h"
614c279d 47#include "filestuff.h"
c906108c 48
7a292a7a 49#include <ctype.h>
9846de1b 50#include <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"
3e88cf8d 63#include "gdb_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
6765f3e5
DJ
78/* The size to align memory write packets, when practical. The protocol
79 does not guarantee any alignment, and gdb will generate short
80 writes and unaligned writes, but even as a best-effort attempt this
81 can improve bulk transfers. For instance, if a write is misaligned
82 relative to the target's data bus, the stub may need to make an extra
83 round trip fetching data from the target. This doesn't make a
84 huge difference, but it's easy to do, so we try to be helpful.
85
86 The alignment chosen is arbitrary; usually data bus width is
87 important here, not the possibly larger cache line size. */
88enum { REMOTE_ALIGN_WRITES = 16 };
89
23860348 90/* Prototypes for local functions. */
934b9bac 91static void async_cleanup_sigint_signal_handler (void *dummy);
6d820c5c 92static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed 93static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
fee9eda9 94 int forever, int *is_notif);
6426a772 95
934b9bac
JK
96static void async_handle_remote_sigint (int);
97static void async_handle_remote_sigint_twice (int);
43ff13b4 98
a14ed312 99static void remote_files_info (struct target_ops *ignore);
c906108c 100
316f2060 101static void remote_prepare_to_store (struct regcache *regcache);
c906108c 102
a14ed312 103static void remote_open (char *name, int from_tty);
c906108c 104
a14ed312 105static void extended_remote_open (char *name, int from_tty);
c906108c 106
75c99385 107static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
c906108c 108
460014f5 109static void remote_close (void);
c906108c 110
136d6dae 111static void remote_mourn (struct target_ops *ops);
c906108c 112
a14ed312 113static void extended_remote_restart (void);
c906108c 114
136d6dae 115static void extended_remote_mourn (struct target_ops *);
c906108c 116
a14ed312 117static void remote_mourn_1 (struct target_ops *);
c906108c 118
6d820c5c 119static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 120
a14ed312 121static int readchar (int timeout);
c906108c 122
c33e31fd
PA
123static void remote_serial_write (const char *str, int len);
124
7d85a9c0 125static void remote_kill (struct target_ops *ops);
c906108c 126
a14ed312 127static int tohex (int nib);
c906108c 128
75c99385
PA
129static int remote_can_async_p (void);
130
131static int remote_is_async_p (void);
132
133static void remote_async (void (*callback) (enum inferior_event_type event_type,
134 void *context), void *context);
135
934b9bac 136static void sync_remote_interrupt_twice (int signo);
7a292a7a 137
a14ed312 138static void interrupt_query (void);
c906108c 139
79d7f229
PA
140static void set_general_thread (struct ptid ptid);
141static void set_continue_thread (struct ptid ptid);
c906108c 142
a14ed312 143static void get_offsets (void);
c906108c 144
6d820c5c
DJ
145static void skip_frame (void);
146
147static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 148
a14ed312 149static int hexnumlen (ULONGEST num);
c906108c 150
a14ed312 151static void init_remote_ops (void);
c906108c 152
a14ed312 153static void init_extended_remote_ops (void);
c906108c 154
94cc34af 155static void remote_stop (ptid_t);
c906108c 156
a14ed312 157static int ishex (int ch, int *val);
c906108c 158
a14ed312 159static int stubhex (int ch);
c906108c 160
a14ed312 161static int hexnumstr (char *, ULONGEST);
c906108c 162
a14ed312 163static int hexnumnstr (char *, ULONGEST, int);
2df3850c 164
a14ed312 165static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 166
a14ed312 167static void print_packet (char *);
c906108c 168
a14ed312 169static void compare_sections_command (char *, int);
c906108c 170
a14ed312 171static void packet_command (char *, int);
c906108c 172
a14ed312 173static int stub_unpack_int (char *buff, int fieldlength);
c906108c 174
39f77062 175static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 176
a14ed312 177static void remote_find_new_threads (void);
c906108c 178
30559e10 179static int fromhex (int a);
c906108c 180
a14ed312 181static int putpkt_binary (char *buf, int cnt);
c906108c 182
a14ed312 183static void check_binary_download (CORE_ADDR addr);
c906108c 184
5a2468f5 185struct packet_config;
5a2468f5 186
a14ed312 187static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 188
d471ea57 189static void update_packet_config (struct packet_config *config);
5a2468f5 190
bb572ddd
DJ
191static void set_remote_protocol_packet_cmd (char *args, int from_tty,
192 struct cmd_list_element *c);
193
194static void show_remote_protocol_packet_cmd (struct ui_file *file,
195 int from_tty,
196 struct cmd_list_element *c,
197 const char *value);
198
82f73884
PA
199static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
200static ptid_t read_ptid (char *buf, char **obuf);
201
d914c394
SS
202static void remote_set_permissions (void);
203
d5551862 204struct remote_state;
00bf0b85 205static int remote_get_trace_status (struct trace_status *ts);
d5551862 206
00bf0b85
SS
207static int remote_upload_tracepoints (struct uploaded_tp **utpp);
208
209static int remote_upload_trace_state_variables (struct uploaded_tsv **utsvp);
210
c8d104ad
PA
211static void remote_query_supported (void);
212
36d25514 213static void remote_check_symbols (void);
c8d104ad 214
a14ed312 215void _initialize_remote (void);
c906108c 216
74531fed 217struct stop_reply;
74531fed 218static void stop_reply_xfree (struct stop_reply *);
722247f1 219static void remote_parse_stop_reply (char *, struct stop_reply *);
74531fed 220static void push_stop_reply (struct stop_reply *);
bcc75809 221static void discard_pending_stop_replies_in_queue (struct remote_state *);
74531fed
PA
222static int peek_stop_reply (ptid_t ptid);
223
224static void remote_async_inferior_event_handler (gdb_client_data);
74531fed 225
d3fd5342
PA
226static void remote_terminal_ours (void);
227
d962ef82
DJ
228static int remote_read_description_p (struct target_ops *target);
229
176a6961 230static void remote_console_output (char *msg);
dde08ee1 231
b775012e
LM
232static int remote_supports_cond_breakpoints (void);
233
d3ce09f5
SS
234static int remote_can_run_breakpoint_commands (void);
235
a6b151f1
DJ
236/* For "remote". */
237
238static struct cmd_list_element *remote_cmdlist;
239
bb572ddd
DJ
240/* For "set remote" and "show remote". */
241
242static struct cmd_list_element *remote_set_cmdlist;
243static struct cmd_list_element *remote_show_cmdlist;
244
d458bd84
PA
245/* Stub vCont actions support.
246
247 Each field is a boolean flag indicating whether the stub reports
248 support for the corresponding action. */
249
250struct vCont_action_support
251{
252 /* vCont;t */
253 int t;
c1e36e3e
PA
254
255 /* vCont;r */
256 int r;
d458bd84
PA
257};
258
c1e36e3e
PA
259/* Controls whether GDB is willing to use range stepping. */
260
261static int use_range_stepping = 1;
262
0d031856
TT
263#define OPAQUETHREADBYTES 8
264
265/* a 64 bit opaque identifier */
266typedef unsigned char threadref[OPAQUETHREADBYTES];
267
268/* About this many threadisds fit in a packet. */
269
270#define MAXTHREADLISTRESULTS 32
271
ea9c271d
DJ
272/* Description of the remote protocol state for the currently
273 connected target. This is per-target state, and independent of the
274 selected architecture. */
275
276struct remote_state
277{
278 /* A buffer to use for incoming packets, and its current size. The
279 buffer is grown dynamically for larger incoming packets.
280 Outgoing packets may also be constructed in this buffer.
281 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
282 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
283 packets. */
284 char *buf;
285 long buf_size;
be2a5f71 286
1e51243a
PA
287 /* True if we're going through initial connection setup (finding out
288 about the remote side's threads, relocating symbols, etc.). */
289 int starting_up;
290
be2a5f71
DJ
291 /* If we negotiated packet size explicitly (and thus can bypass
292 heuristics for the largest packet size that will not overflow
293 a buffer in the stub), this will be set to that packet size.
294 Otherwise zero, meaning to use the guessed size. */
295 long explicit_packet_size;
2d717e4f
DJ
296
297 /* remote_wait is normally called when the target is running and
298 waits for a stop reply packet. But sometimes we need to call it
299 when the target is already stopped. We can send a "?" packet
300 and have remote_wait read the response. Or, if we already have
301 the response, we can stash it in BUF and tell remote_wait to
302 skip calling getpkt. This flag is set when BUF contains a
303 stop reply packet and the target is not waiting. */
304 int cached_wait_status;
a6f3e723
SL
305
306 /* True, if in no ack mode. That is, neither GDB nor the stub will
307 expect acks from each other. The connection is assumed to be
308 reliable. */
309 int noack_mode;
82f73884
PA
310
311 /* True if we're connected in extended remote mode. */
312 int extended;
313
314 /* True if the stub reported support for multi-process
315 extensions. */
316 int multi_process_aware;
e24a49d8
PA
317
318 /* True if we resumed the target and we're waiting for the target to
319 stop. In the mean time, we can't start another command/query.
320 The remote server wouldn't be ready to process it, so we'd
321 timeout waiting for a reply that would never come and eventually
322 we'd close the connection. This can happen in asynchronous mode
323 because we allow GDB commands while the target is running. */
324 int waiting_for_stop_reply;
74531fed
PA
325
326 /* True if the stub reports support for non-stop mode. */
327 int non_stop_aware;
328
d458bd84
PA
329 /* The status of the stub support for the various vCont actions. */
330 struct vCont_action_support supports_vCont;
782b2b07
SS
331
332 /* True if the stub reports support for conditional tracepoints. */
333 int cond_tracepoints;
3a29589a 334
3788aec7
LM
335 /* True if the stub reports support for target-side breakpoint
336 conditions. */
337 int cond_breakpoints;
338
d3ce09f5
SS
339 /* True if the stub reports support for target-side breakpoint
340 commands. */
341 int breakpoint_commands;
342
7a697b8d
SS
343 /* True if the stub reports support for fast tracepoints. */
344 int fast_tracepoints;
345
0fb4aa4b
PA
346 /* True if the stub reports support for static tracepoints. */
347 int static_tracepoints;
348
1e4d1764
YQ
349 /* True if the stub reports support for installing tracepoint while
350 tracing. */
351 int install_in_trace;
352
d5551862
SS
353 /* True if the stub can continue running a trace while GDB is
354 disconnected. */
355 int disconnected_tracing;
356
d248b706
KY
357 /* True if the stub reports support for enabling and disabling
358 tracepoints while a trace experiment is running. */
359 int enable_disable_tracepoints;
360
3065dfb6
SS
361 /* True if the stub can collect strings using tracenz bytecode. */
362 int string_tracing;
363
ced63ec0
GB
364 /* True if the stub supports qXfer:libraries-svr4:read with a
365 non-empty annex. */
366 int augmented_libraries_svr4_read;
367
3a29589a
DJ
368 /* Nonzero if the user has pressed Ctrl-C, but the target hasn't
369 responded to that. */
370 int ctrlc_pending_p;
5d93a237
TT
371
372 /* Descriptor for I/O to remote machine. Initialize it to NULL so that
373 remote_open knows that we don't have a file open when the program
374 starts. */
375 struct serial *remote_desc;
47f8a51d
TT
376
377 /* These are the threads which we last sent to the remote system. The
378 TID member will be -1 for all or -2 for not sent yet. */
379 ptid_t general_thread;
380 ptid_t continue_thread;
262e1174
TT
381
382 /* This is the traceframe which we last selected on the remote system.
383 It will be -1 if no traceframe is selected. */
384 int remote_traceframe_number;
747dc59d
TT
385
386 char *last_pass_packet;
5e4a05c4
TT
387
388 /* The last QProgramSignals packet sent to the target. We bypass
389 sending a new program signals list down to the target if the new
390 packet is exactly the same as the last we sent. IOW, we only let
391 the target know about program signals list changes. */
392 char *last_program_signals_packet;
b73be471
TT
393
394 enum gdb_signal last_sent_signal;
280ceea3
TT
395
396 int last_sent_step;
8e88304f
TT
397
398 char *finished_object;
399 char *finished_annex;
400 ULONGEST finished_offset;
b80fafe3
TT
401
402 /* Should we try the 'ThreadInfo' query packet?
403
404 This variable (NOT available to the user: auto-detect only!)
405 determines whether GDB will use the new, simpler "ThreadInfo"
406 query or the older, more complex syntax for thread queries.
407 This is an auto-detect variable (set to true at each connect,
408 and set to false when the target fails to recognize it). */
409 int use_threadinfo_query;
410 int use_threadextra_query;
88b496c3
TT
411
412 void (*async_client_callback) (enum inferior_event_type event_type,
413 void *context);
414 void *async_client_context;
ee154bee
TT
415
416 /* This is set to the data address of the access causing the target
417 to stop for a watchpoint. */
418 CORE_ADDR remote_watch_data_address;
419
420 /* This is non-zero if target stopped for a watchpoint. */
421 int remote_stopped_by_watchpoint_p;
0d031856
TT
422
423 threadref echo_nextthread;
424 threadref nextthread;
425 threadref resultthreadlist[MAXTHREADLISTRESULTS];
5965e028
YQ
426
427 /* The state of remote notification. */
428 struct remote_notif_state *notif_state;
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;
435 int core;
436};
437
438static void
439free_private_thread_info (struct private_thread_info *info)
440{
441 xfree (info->extra);
442 xfree (info);
443}
444
82f73884
PA
445/* Returns true if the multi-process extensions are in effect. */
446static int
447remote_multi_process_p (struct remote_state *rs)
448{
901f9912 449 return rs->multi_process_aware;
82f73884
PA
450}
451
ea9c271d
DJ
452/* This data could be associated with a target, but we do not always
453 have access to the current target when we need it, so for now it is
454 static. This will be fine for as long as only one target is in use
455 at a time. */
cf792862 456static struct remote_state *remote_state;
ea9c271d
DJ
457
458static struct remote_state *
0b83947e 459get_remote_state_raw (void)
ea9c271d 460{
cf792862
TT
461 return remote_state;
462}
463
464/* Allocate a new struct remote_state with xmalloc, initialize it, and
465 return it. */
466
467static struct remote_state *
468new_remote_state (void)
469{
470 struct remote_state *result = XCNEW (struct remote_state);
471
472 /* The default buffer size is unimportant; it will be expanded
473 whenever a larger buffer is needed. */
474 result->buf_size = 400;
475 result->buf = xmalloc (result->buf_size);
262e1174 476 result->remote_traceframe_number = -1;
b73be471 477 result->last_sent_signal = GDB_SIGNAL_0;
cf792862
TT
478
479 return result;
ea9c271d
DJ
480}
481
482/* Description of the remote protocol for a given architecture. */
d01949b6 483
ad10f812
AC
484struct packet_reg
485{
486 long offset; /* Offset into G packet. */
487 long regnum; /* GDB's internal register number. */
488 LONGEST pnum; /* Remote protocol register number. */
b323314b 489 int in_g_packet; /* Always part of G packet. */
f5656ead 490 /* long size in bytes; == register_size (target_gdbarch (), regnum);
23860348 491 at present. */
f5656ead 492 /* char *name; == gdbarch_register_name (target_gdbarch (), regnum);
c9f4d572 493 at present. */
ad10f812
AC
494};
495
ea9c271d 496struct remote_arch_state
d01949b6 497{
ad10f812
AC
498 /* Description of the remote protocol registers. */
499 long sizeof_g_packet;
b323314b
AC
500
501 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 502 (making an array gdbarch_num_regs in size). */
b323314b 503 struct packet_reg *regs;
ad10f812 504
d01949b6
AC
505 /* This is the size (in chars) of the first response to the ``g''
506 packet. It is used as a heuristic when determining the maximum
507 size of memory-read and memory-write packets. A target will
508 typically only reserve a buffer large enough to hold the ``g''
509 packet. The size does not include packet overhead (headers and
23860348 510 trailers). */
d01949b6
AC
511 long actual_register_packet_size;
512
513 /* This is the maximum size (in chars) of a non read/write packet.
23860348 514 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
515 long remote_packet_size;
516};
517
35b1e5cc
SS
518/* Utility: generate error from an incoming stub packet. */
519static void
520trace_error (char *buf)
521{
522 if (*buf++ != 'E')
523 return; /* not an error msg */
524 switch (*buf)
525 {
526 case '1': /* malformed packet error */
527 if (*++buf == '0') /* general case: */
528 error (_("remote.c: error in outgoing packet."));
529 else
530 error (_("remote.c: error in outgoing packet at field #%ld."),
531 strtol (buf, NULL, 16));
35b1e5cc
SS
532 default:
533 error (_("Target returns error code '%s'."), buf);
534 }
535}
536
537/* Utility: wait for reply from stub, while accepting "O" packets. */
538static char *
539remote_get_noisy_reply (char **buf_p,
540 long *sizeof_buf)
541{
542 do /* Loop on reply from remote stub. */
543 {
544 char *buf;
a744cf53 545
0df8b418 546 QUIT; /* Allow user to bail out with ^C. */
35b1e5cc
SS
547 getpkt (buf_p, sizeof_buf, 0);
548 buf = *buf_p;
ad91cd99 549 if (buf[0] == 'E')
35b1e5cc 550 trace_error (buf);
dde08ee1
PA
551 else if (strncmp (buf, "qRelocInsn:", strlen ("qRelocInsn:")) == 0)
552 {
553 ULONGEST ul;
554 CORE_ADDR from, to, org_to;
555 char *p, *pp;
556 int adjusted_size = 0;
557 volatile struct gdb_exception ex;
558
559 p = buf + strlen ("qRelocInsn:");
560 pp = unpack_varlen_hex (p, &ul);
561 if (*pp != ';')
cb91c06a 562 error (_("invalid qRelocInsn packet: %s"), buf);
dde08ee1
PA
563 from = ul;
564
565 p = pp + 1;
a9cbf802 566 unpack_varlen_hex (p, &ul);
dde08ee1
PA
567 to = ul;
568
569 org_to = to;
570
571 TRY_CATCH (ex, RETURN_MASK_ALL)
572 {
f5656ead 573 gdbarch_relocate_instruction (target_gdbarch (), &to, from);
dde08ee1
PA
574 }
575 if (ex.reason >= 0)
576 {
577 adjusted_size = to - org_to;
578
bba74b36 579 xsnprintf (buf, *sizeof_buf, "qRelocInsn:%x", adjusted_size);
dde08ee1
PA
580 putpkt (buf);
581 }
582 else if (ex.reason < 0 && ex.error == MEMORY_ERROR)
583 {
584 /* Propagate memory errors silently back to the target.
585 The stub may have limited the range of addresses we
586 can write to, for example. */
587 putpkt ("E01");
588 }
589 else
590 {
591 /* Something unexpectedly bad happened. Be verbose so
592 we can tell what, and propagate the error back to the
593 stub, so it doesn't get stuck waiting for a
594 response. */
595 exception_fprintf (gdb_stderr, ex,
596 _("warning: relocating instruction: "));
597 putpkt ("E01");
598 }
599 }
ad91cd99 600 else if (buf[0] == 'O' && buf[1] != 'K')
35b1e5cc
SS
601 remote_console_output (buf + 1); /* 'O' message from stub */
602 else
0df8b418 603 return buf; /* Here's the actual reply. */
35b1e5cc
SS
604 }
605 while (1);
606}
3c3bea1c 607
d01949b6
AC
608/* Handle for retreving the remote protocol data from gdbarch. */
609static struct gdbarch_data *remote_gdbarch_data_handle;
610
ea9c271d
DJ
611static struct remote_arch_state *
612get_remote_arch_state (void)
d01949b6 613{
f5656ead 614 return gdbarch_data (target_gdbarch (), remote_gdbarch_data_handle);
d01949b6
AC
615}
616
0b83947e
DJ
617/* Fetch the global remote target state. */
618
619static struct remote_state *
620get_remote_state (void)
621{
622 /* Make sure that the remote architecture state has been
623 initialized, because doing so might reallocate rs->buf. Any
624 function which calls getpkt also needs to be mindful of changes
625 to rs->buf, but this call limits the number of places which run
626 into trouble. */
627 get_remote_arch_state ();
628
629 return get_remote_state_raw ();
630}
631
74ca34ce
DJ
632static int
633compare_pnums (const void *lhs_, const void *rhs_)
634{
635 const struct packet_reg * const *lhs = lhs_;
636 const struct packet_reg * const *rhs = rhs_;
637
638 if ((*lhs)->pnum < (*rhs)->pnum)
639 return -1;
640 else if ((*lhs)->pnum == (*rhs)->pnum)
641 return 0;
642 else
643 return 1;
644}
645
c21236dc
PA
646static int
647map_regcache_remote_table (struct gdbarch *gdbarch, struct packet_reg *regs)
d01949b6 648{
74ca34ce 649 int regnum, num_remote_regs, offset;
74ca34ce 650 struct packet_reg **remote_regs;
ea9c271d 651
4a22f64d 652 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 653 {
c21236dc 654 struct packet_reg *r = &regs[regnum];
baef701f 655
4a22f64d 656 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
657 /* Do not try to fetch zero-sized (placeholder) registers. */
658 r->pnum = -1;
659 else
660 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
661
b323314b 662 r->regnum = regnum;
74ca34ce
DJ
663 }
664
665 /* Define the g/G packet format as the contents of each register
666 with a remote protocol number, in order of ascending protocol
667 number. */
668
4a22f64d 669 remote_regs = alloca (gdbarch_num_regs (gdbarch)
c21236dc 670 * sizeof (struct packet_reg *));
f57d151a 671 for (num_remote_regs = 0, regnum = 0;
4a22f64d 672 regnum < gdbarch_num_regs (gdbarch);
f57d151a 673 regnum++)
c21236dc
PA
674 if (regs[regnum].pnum != -1)
675 remote_regs[num_remote_regs++] = &regs[regnum];
7d58c67d 676
74ca34ce
DJ
677 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
678 compare_pnums);
679
680 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
681 {
682 remote_regs[regnum]->in_g_packet = 1;
683 remote_regs[regnum]->offset = offset;
4a22f64d 684 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
685 }
686
c21236dc
PA
687 return offset;
688}
689
690/* Given the architecture described by GDBARCH, return the remote
691 protocol register's number and the register's offset in the g/G
692 packets of GDB register REGNUM, in PNUM and POFFSET respectively.
693 If the target does not have a mapping for REGNUM, return false,
694 otherwise, return true. */
695
696int
697remote_register_number_and_offset (struct gdbarch *gdbarch, int regnum,
698 int *pnum, int *poffset)
699{
700 int sizeof_g_packet;
701 struct packet_reg *regs;
702 struct cleanup *old_chain;
703
704 gdb_assert (regnum < gdbarch_num_regs (gdbarch));
705
706 regs = xcalloc (gdbarch_num_regs (gdbarch), sizeof (struct packet_reg));
707 old_chain = make_cleanup (xfree, regs);
708
709 sizeof_g_packet = map_regcache_remote_table (gdbarch, regs);
710
711 *pnum = regs[regnum].pnum;
712 *poffset = regs[regnum].offset;
713
714 do_cleanups (old_chain);
715
716 return *pnum != -1;
717}
718
719static void *
720init_remote_state (struct gdbarch *gdbarch)
721{
722 struct remote_state *rs = get_remote_state_raw ();
723 struct remote_arch_state *rsa;
724
725 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
726
727 /* Use the architecture to build a regnum<->pnum table, which will be
728 1:1 unless a feature set specifies otherwise. */
729 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
730 gdbarch_num_regs (gdbarch),
731 struct packet_reg);
732
74ca34ce
DJ
733 /* Record the maximum possible size of the g packet - it may turn out
734 to be smaller. */
c21236dc 735 rsa->sizeof_g_packet = map_regcache_remote_table (gdbarch, rsa->regs);
74ca34ce 736
0df8b418 737 /* Default maximum number of characters in a packet body. Many
d01949b6
AC
738 remote stubs have a hardwired buffer size of 400 bytes
739 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
740 as the maximum packet-size to ensure that the packet and an extra
741 NUL character can always fit in the buffer. This stops GDB
742 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
743 already a full buffer (As of 1999-12-04 that was most stubs). */
744 rsa->remote_packet_size = 400 - 1;
d01949b6 745
ea9c271d
DJ
746 /* This one is filled in when a ``g'' packet is received. */
747 rsa->actual_register_packet_size = 0;
748
749 /* Should rsa->sizeof_g_packet needs more space than the
0df8b418
MS
750 default, adjust the size accordingly. Remember that each byte is
751 encoded as two characters. 32 is the overhead for the packet
752 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 753 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 754 little. */
ea9c271d
DJ
755 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
756 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 757
ea9c271d
DJ
758 /* Make sure that the packet buffer is plenty big enough for
759 this architecture. */
760 if (rs->buf_size < rsa->remote_packet_size)
761 {
762 rs->buf_size = 2 * rsa->remote_packet_size;
7fca722e 763 rs->buf = xrealloc (rs->buf, rs->buf_size);
ea9c271d 764 }
6d820c5c 765
ea9c271d
DJ
766 return rsa;
767}
768
769/* Return the current allowed size of a remote packet. This is
770 inferred from the current architecture, and should be used to
771 limit the length of outgoing packets. */
772static long
773get_remote_packet_size (void)
774{
be2a5f71 775 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
776 struct remote_arch_state *rsa = get_remote_arch_state ();
777
be2a5f71
DJ
778 if (rs->explicit_packet_size)
779 return rs->explicit_packet_size;
780
ea9c271d 781 return rsa->remote_packet_size;
d01949b6
AC
782}
783
ad10f812 784static struct packet_reg *
ea9c271d 785packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
ad10f812 786{
f5656ead 787 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch ()))
b323314b
AC
788 return NULL;
789 else
ad10f812 790 {
ea9c271d 791 struct packet_reg *r = &rsa->regs[regnum];
a744cf53 792
b323314b
AC
793 gdb_assert (r->regnum == regnum);
794 return r;
ad10f812 795 }
ad10f812
AC
796}
797
798static struct packet_reg *
ea9c271d 799packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
ad10f812 800{
b323314b 801 int i;
a744cf53 802
f5656ead 803 for (i = 0; i < gdbarch_num_regs (target_gdbarch ()); i++)
ad10f812 804 {
ea9c271d 805 struct packet_reg *r = &rsa->regs[i];
a744cf53 806
b323314b
AC
807 if (r->pnum == pnum)
808 return r;
ad10f812
AC
809 }
810 return NULL;
d01949b6
AC
811}
812
c906108c
SS
813static struct target_ops remote_ops;
814
815static struct target_ops extended_remote_ops;
816
6426a772
JM
817/* FIXME: cagney/1999-09-23: Even though getpkt was called with
818 ``forever'' still use the normal timeout mechanism. This is
819 currently used by the ASYNC code to guarentee that target reads
820 during the initial connect always time-out. Once getpkt has been
821 modified to return a timeout indication and, in turn
822 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 823 this can go away. */
6426a772
JM
824static int wait_forever_enabled_p = 1;
825
9a7071a8
JB
826/* Allow the user to specify what sequence to send to the remote
827 when he requests a program interruption: Although ^C is usually
828 what remote systems expect (this is the default, here), it is
829 sometimes preferable to send a break. On other systems such
830 as the Linux kernel, a break followed by g, which is Magic SysRq g
831 is required in order to interrupt the execution. */
832const char interrupt_sequence_control_c[] = "Ctrl-C";
833const char interrupt_sequence_break[] = "BREAK";
834const char interrupt_sequence_break_g[] = "BREAK-g";
40478521 835static const char *const interrupt_sequence_modes[] =
9a7071a8
JB
836 {
837 interrupt_sequence_control_c,
838 interrupt_sequence_break,
839 interrupt_sequence_break_g,
840 NULL
841 };
842static const char *interrupt_sequence_mode = interrupt_sequence_control_c;
843
844static void
845show_interrupt_sequence (struct ui_file *file, int from_tty,
846 struct cmd_list_element *c,
847 const char *value)
848{
849 if (interrupt_sequence_mode == interrupt_sequence_control_c)
850 fprintf_filtered (file,
851 _("Send the ASCII ETX character (Ctrl-c) "
852 "to the remote target to interrupt the "
853 "execution of the program.\n"));
854 else if (interrupt_sequence_mode == interrupt_sequence_break)
855 fprintf_filtered (file,
856 _("send a break signal to the remote target "
857 "to interrupt the execution of the program.\n"));
858 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
859 fprintf_filtered (file,
860 _("Send a break signal and 'g' a.k.a. Magic SysRq g to "
861 "the remote target to interrupt the execution "
862 "of Linux kernel.\n"));
863 else
864 internal_error (__FILE__, __LINE__,
865 _("Invalid value for interrupt_sequence_mode: %s."),
866 interrupt_sequence_mode);
867}
6426a772 868
9a7071a8
JB
869/* This boolean variable specifies whether interrupt_sequence is sent
870 to the remote target when gdb connects to it.
871 This is mostly needed when you debug the Linux kernel: The Linux kernel
872 expects BREAK g which is Magic SysRq g for connecting gdb. */
873static int interrupt_on_connect = 0;
c906108c 874
9a7071a8
JB
875/* This variable is used to implement the "set/show remotebreak" commands.
876 Since these commands are now deprecated in favor of "set/show remote
877 interrupt-sequence", it no longer has any effect on the code. */
c906108c
SS
878static int remote_break;
879
9a7071a8
JB
880static void
881set_remotebreak (char *args, int from_tty, struct cmd_list_element *c)
882{
883 if (remote_break)
884 interrupt_sequence_mode = interrupt_sequence_break;
885 else
886 interrupt_sequence_mode = interrupt_sequence_control_c;
887}
888
889static void
890show_remotebreak (struct ui_file *file, int from_tty,
891 struct cmd_list_element *c,
892 const char *value)
893{
894}
895
c906108c
SS
896/* This variable sets the number of bits in an address that are to be
897 sent in a memory ("M" or "m") packet. Normally, after stripping
0df8b418 898 leading zeros, the entire address would be sent. This variable
c906108c
SS
899 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
900 initial implementation of remote.c restricted the address sent in
901 memory packets to ``host::sizeof long'' bytes - (typically 32
902 bits). Consequently, for 64 bit targets, the upper 32 bits of an
903 address was never sent. Since fixing this bug may cause a break in
904 some remote targets this variable is principly provided to
23860348 905 facilitate backward compatibility. */
c906108c 906
883b9c6c 907static unsigned int remote_address_size;
c906108c 908
75c99385
PA
909/* Temporary to track who currently owns the terminal. See
910 remote_terminal_* for more details. */
6426a772
JM
911
912static int remote_async_terminal_ours_p;
913
2d717e4f
DJ
914/* The executable file to use for "run" on the remote side. */
915
916static char *remote_exec_file = "";
917
11cf8741 918\f
11cf8741 919/* User configurable variables for the number of characters in a
ea9c271d
DJ
920 memory read/write packet. MIN (rsa->remote_packet_size,
921 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 922 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
923 (speed up transfers). The variables ``preferred_*'' (the user
924 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 925 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
926
927struct memory_packet_config
928{
929 char *name;
930 long size;
931 int fixed_p;
932};
933
934/* Compute the current size of a read/write packet. Since this makes
935 use of ``actual_register_packet_size'' the computation is dynamic. */
936
937static long
938get_memory_packet_size (struct memory_packet_config *config)
939{
d01949b6 940 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
941 struct remote_arch_state *rsa = get_remote_arch_state ();
942
11cf8741
JM
943 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
944 law?) that some hosts don't cope very well with large alloca()
945 calls. Eventually the alloca() code will be replaced by calls to
946 xmalloc() and make_cleanups() allowing this restriction to either
23860348 947 be lifted or removed. */
11cf8741
JM
948#ifndef MAX_REMOTE_PACKET_SIZE
949#define MAX_REMOTE_PACKET_SIZE 16384
950#endif
3de11b2e 951 /* NOTE: 20 ensures we can write at least one byte. */
11cf8741 952#ifndef MIN_REMOTE_PACKET_SIZE
3de11b2e 953#define MIN_REMOTE_PACKET_SIZE 20
11cf8741
JM
954#endif
955 long what_they_get;
956 if (config->fixed_p)
957 {
958 if (config->size <= 0)
959 what_they_get = MAX_REMOTE_PACKET_SIZE;
960 else
961 what_they_get = config->size;
962 }
963 else
964 {
ea9c271d 965 what_they_get = get_remote_packet_size ();
23860348 966 /* Limit the packet to the size specified by the user. */
11cf8741
JM
967 if (config->size > 0
968 && what_they_get > config->size)
969 what_they_get = config->size;
be2a5f71
DJ
970
971 /* Limit it to the size of the targets ``g'' response unless we have
972 permission from the stub to use a larger packet size. */
973 if (rs->explicit_packet_size == 0
974 && rsa->actual_register_packet_size > 0
975 && what_they_get > rsa->actual_register_packet_size)
976 what_they_get = rsa->actual_register_packet_size;
11cf8741
JM
977 }
978 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
979 what_they_get = MAX_REMOTE_PACKET_SIZE;
980 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
981 what_they_get = MIN_REMOTE_PACKET_SIZE;
6d820c5c
DJ
982
983 /* Make sure there is room in the global buffer for this packet
984 (including its trailing NUL byte). */
985 if (rs->buf_size < what_they_get + 1)
986 {
987 rs->buf_size = 2 * what_they_get;
988 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
989 }
990
11cf8741
JM
991 return what_they_get;
992}
993
0df8b418 994/* Update the size of a read/write packet. If they user wants
23860348 995 something really big then do a sanity check. */
11cf8741
JM
996
997static void
998set_memory_packet_size (char *args, struct memory_packet_config *config)
999{
1000 int fixed_p = config->fixed_p;
1001 long size = config->size;
a744cf53 1002
11cf8741 1003 if (args == NULL)
8a3fe4f8 1004 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
1005 else if (strcmp (args, "hard") == 0
1006 || strcmp (args, "fixed") == 0)
1007 fixed_p = 1;
1008 else if (strcmp (args, "soft") == 0
1009 || strcmp (args, "limit") == 0)
1010 fixed_p = 0;
1011 else
1012 {
1013 char *end;
a744cf53 1014
11cf8741
JM
1015 size = strtoul (args, &end, 0);
1016 if (args == end)
8a3fe4f8 1017 error (_("Invalid %s (bad syntax)."), config->name);
11cf8741
JM
1018#if 0
1019 /* Instead of explicitly capping the size of a packet to
1020 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
1021 instead allowed to set the size to something arbitrarily
23860348 1022 large. */
11cf8741 1023 if (size > MAX_REMOTE_PACKET_SIZE)
8a3fe4f8 1024 error (_("Invalid %s (too large)."), config->name);
11cf8741
JM
1025#endif
1026 }
23860348 1027 /* Extra checks? */
11cf8741
JM
1028 if (fixed_p && !config->fixed_p)
1029 {
e2e0b3e5
AC
1030 if (! query (_("The target may not be able to correctly handle a %s\n"
1031 "of %ld bytes. Change the packet size? "),
11cf8741 1032 config->name, size))
8a3fe4f8 1033 error (_("Packet size not changed."));
11cf8741 1034 }
23860348 1035 /* Update the config. */
11cf8741
JM
1036 config->fixed_p = fixed_p;
1037 config->size = size;
1038}
1039
1040static void
1041show_memory_packet_size (struct memory_packet_config *config)
1042{
a3f17187 1043 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 1044 if (config->fixed_p)
a3f17187 1045 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
1046 get_memory_packet_size (config));
1047 else
a3f17187 1048 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
1049 get_memory_packet_size (config));
1050}
1051
1052static struct memory_packet_config memory_write_packet_config =
1053{
1054 "memory-write-packet-size",
1055};
1056
1057static void
1058set_memory_write_packet_size (char *args, int from_tty)
1059{
1060 set_memory_packet_size (args, &memory_write_packet_config);
1061}
1062
1063static void
1064show_memory_write_packet_size (char *args, int from_tty)
1065{
1066 show_memory_packet_size (&memory_write_packet_config);
1067}
1068
1069static long
1070get_memory_write_packet_size (void)
1071{
1072 return get_memory_packet_size (&memory_write_packet_config);
1073}
1074
1075static struct memory_packet_config memory_read_packet_config =
1076{
1077 "memory-read-packet-size",
1078};
1079
1080static void
1081set_memory_read_packet_size (char *args, int from_tty)
1082{
1083 set_memory_packet_size (args, &memory_read_packet_config);
1084}
1085
1086static void
1087show_memory_read_packet_size (char *args, int from_tty)
1088{
1089 show_memory_packet_size (&memory_read_packet_config);
1090}
1091
1092static long
1093get_memory_read_packet_size (void)
1094{
1095 long size = get_memory_packet_size (&memory_read_packet_config);
a744cf53 1096
11cf8741
JM
1097 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
1098 extra buffer size argument before the memory read size can be
ea9c271d
DJ
1099 increased beyond this. */
1100 if (size > get_remote_packet_size ())
1101 size = get_remote_packet_size ();
11cf8741
JM
1102 return size;
1103}
1104
11cf8741 1105\f
5a2468f5 1106/* Generic configuration support for packets the stub optionally
0df8b418 1107 supports. Allows the user to specify the use of the packet as well
23860348 1108 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
1109
1110enum packet_support
1111 {
1112 PACKET_SUPPORT_UNKNOWN = 0,
1113 PACKET_ENABLE,
1114 PACKET_DISABLE
1115 };
1116
5a2468f5
JM
1117struct packet_config
1118 {
bb572ddd
DJ
1119 const char *name;
1120 const char *title;
7f19b9a2 1121 enum auto_boolean detect;
5a2468f5
JM
1122 enum packet_support support;
1123 };
1124
d471ea57 1125/* Analyze a packet's return value and update the packet config
23860348 1126 accordingly. */
d471ea57
AC
1127
1128enum packet_result
1129{
1130 PACKET_ERROR,
1131 PACKET_OK,
1132 PACKET_UNKNOWN
1133};
1134
5a2468f5 1135static void
d471ea57 1136update_packet_config (struct packet_config *config)
5a2468f5 1137{
d471ea57
AC
1138 switch (config->detect)
1139 {
7f19b9a2 1140 case AUTO_BOOLEAN_TRUE:
d471ea57
AC
1141 config->support = PACKET_ENABLE;
1142 break;
7f19b9a2 1143 case AUTO_BOOLEAN_FALSE:
d471ea57
AC
1144 config->support = PACKET_DISABLE;
1145 break;
7f19b9a2 1146 case AUTO_BOOLEAN_AUTO:
d471ea57
AC
1147 config->support = PACKET_SUPPORT_UNKNOWN;
1148 break;
1149 }
5a2468f5
JM
1150}
1151
1152static void
fba45db2 1153show_packet_config_cmd (struct packet_config *config)
5a2468f5
JM
1154{
1155 char *support = "internal-error";
a744cf53 1156
5a2468f5
JM
1157 switch (config->support)
1158 {
1159 case PACKET_ENABLE:
1160 support = "enabled";
1161 break;
1162 case PACKET_DISABLE:
1163 support = "disabled";
1164 break;
1165 case PACKET_SUPPORT_UNKNOWN:
1166 support = "unknown";
1167 break;
1168 }
1169 switch (config->detect)
1170 {
7f19b9a2 1171 case AUTO_BOOLEAN_AUTO:
3e43a32a
MS
1172 printf_filtered (_("Support for the `%s' packet "
1173 "is auto-detected, currently %s.\n"),
37a105a1 1174 config->name, support);
5a2468f5 1175 break;
7f19b9a2
AC
1176 case AUTO_BOOLEAN_TRUE:
1177 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
1178 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
1179 config->name, support);
8e248173 1180 break;
5a2468f5
JM
1181 }
1182}
1183
1184static void
bb572ddd
DJ
1185add_packet_config_cmd (struct packet_config *config, const char *name,
1186 const char *title, int legacy)
d471ea57 1187{
5a2468f5
JM
1188 char *set_doc;
1189 char *show_doc;
d471ea57 1190 char *cmd_name;
3ed07be4 1191
5a2468f5
JM
1192 config->name = name;
1193 config->title = title;
7f19b9a2 1194 config->detect = AUTO_BOOLEAN_AUTO;
8e248173 1195 config->support = PACKET_SUPPORT_UNKNOWN;
b435e160
AC
1196 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
1197 name, title);
3e43a32a
MS
1198 show_doc = xstrprintf ("Show current use of remote "
1199 "protocol `%s' (%s) packet",
b435e160 1200 name, title);
d471ea57 1201 /* set/show TITLE-packet {auto,on,off} */
b435e160 1202 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 1203 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
3e43a32a
MS
1204 &config->detect, set_doc,
1205 show_doc, NULL, /* help_doc */
bb572ddd
DJ
1206 set_remote_protocol_packet_cmd,
1207 show_remote_protocol_packet_cmd,
1208 &remote_set_cmdlist, &remote_show_cmdlist);
1eefb858
TT
1209 /* The command code copies the documentation strings. */
1210 xfree (set_doc);
1211 xfree (show_doc);
23860348 1212 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
1213 if (legacy)
1214 {
1215 char *legacy_name;
a744cf53 1216
b435e160 1217 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 1218 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1219 &remote_set_cmdlist);
d471ea57 1220 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 1221 &remote_show_cmdlist);
d471ea57 1222 }
5a2468f5
JM
1223}
1224
d471ea57 1225static enum packet_result
a76d924d 1226packet_check_result (const char *buf)
5a2468f5 1227{
d471ea57 1228 if (buf[0] != '\0')
5a2468f5 1229 {
d471ea57 1230 /* The stub recognized the packet request. Check that the
23860348 1231 operation succeeded. */
a76d924d
DJ
1232 if (buf[0] == 'E'
1233 && isxdigit (buf[1]) && isxdigit (buf[2])
1234 && buf[3] == '\0')
1235 /* "Enn" - definitly an error. */
1236 return PACKET_ERROR;
1237
1238 /* Always treat "E." as an error. This will be used for
1239 more verbose error messages, such as E.memtypes. */
1240 if (buf[0] == 'E' && buf[1] == '.')
1241 return PACKET_ERROR;
1242
1243 /* The packet may or may not be OK. Just assume it is. */
1244 return PACKET_OK;
1245 }
1246 else
1247 /* The stub does not support the packet. */
1248 return PACKET_UNKNOWN;
1249}
1250
1251static enum packet_result
1252packet_ok (const char *buf, struct packet_config *config)
1253{
1254 enum packet_result result;
1255
1256 result = packet_check_result (buf);
1257 switch (result)
1258 {
1259 case PACKET_OK:
1260 case PACKET_ERROR:
1261 /* The stub recognized the packet request. */
d471ea57
AC
1262 switch (config->support)
1263 {
1264 case PACKET_SUPPORT_UNKNOWN:
1265 if (remote_debug)
1266 fprintf_unfiltered (gdb_stdlog,
1267 "Packet %s (%s) is supported\n",
1268 config->name, config->title);
1269 config->support = PACKET_ENABLE;
1270 break;
1271 case PACKET_DISABLE:
8e65ff28 1272 internal_error (__FILE__, __LINE__,
e2e0b3e5 1273 _("packet_ok: attempt to use a disabled packet"));
d471ea57
AC
1274 break;
1275 case PACKET_ENABLE:
1276 break;
1277 }
a76d924d
DJ
1278 break;
1279 case PACKET_UNKNOWN:
23860348 1280 /* The stub does not support the packet. */
d471ea57
AC
1281 switch (config->support)
1282 {
1283 case PACKET_ENABLE:
7f19b9a2 1284 if (config->detect == AUTO_BOOLEAN_AUTO)
d471ea57 1285 /* If the stub previously indicated that the packet was
23860348 1286 supported then there is a protocol error.. */
8a3fe4f8 1287 error (_("Protocol error: %s (%s) conflicting enabled responses."),
d471ea57
AC
1288 config->name, config->title);
1289 else
23860348 1290 /* The user set it wrong. */
8a3fe4f8 1291 error (_("Enabled packet %s (%s) not recognized by stub"),
d471ea57
AC
1292 config->name, config->title);
1293 break;
1294 case PACKET_SUPPORT_UNKNOWN:
1295 if (remote_debug)
1296 fprintf_unfiltered (gdb_stdlog,
1297 "Packet %s (%s) is NOT supported\n",
1298 config->name, config->title);
1299 config->support = PACKET_DISABLE;
1300 break;
1301 case PACKET_DISABLE:
1302 break;
1303 }
a76d924d 1304 break;
5a2468f5 1305 }
a76d924d
DJ
1306
1307 return result;
5a2468f5
JM
1308}
1309
444abaca
DJ
1310enum {
1311 PACKET_vCont = 0,
1312 PACKET_X,
1313 PACKET_qSymbol,
1314 PACKET_P,
1315 PACKET_p,
1316 PACKET_Z0,
1317 PACKET_Z1,
1318 PACKET_Z2,
1319 PACKET_Z3,
1320 PACKET_Z4,
a6b151f1
DJ
1321 PACKET_vFile_open,
1322 PACKET_vFile_pread,
1323 PACKET_vFile_pwrite,
1324 PACKET_vFile_close,
1325 PACKET_vFile_unlink,
b9e7b9c3 1326 PACKET_vFile_readlink,
0876f84a 1327 PACKET_qXfer_auxv,
23181151 1328 PACKET_qXfer_features,
cfa9d6d9 1329 PACKET_qXfer_libraries,
2268b414 1330 PACKET_qXfer_libraries_svr4,
fd79ecee 1331 PACKET_qXfer_memory_map,
0e7f50da
UW
1332 PACKET_qXfer_spu_read,
1333 PACKET_qXfer_spu_write,
07e059b5 1334 PACKET_qXfer_osdata,
dc146f7c 1335 PACKET_qXfer_threads,
0fb4aa4b 1336 PACKET_qXfer_statictrace_read,
b3b9301e 1337 PACKET_qXfer_traceframe_info,
169081d0 1338 PACKET_qXfer_uib,
711e434b 1339 PACKET_qGetTIBAddr,
444abaca 1340 PACKET_qGetTLSAddr,
be2a5f71 1341 PACKET_qSupported,
bd3eecc3 1342 PACKET_qTStatus,
89be2091 1343 PACKET_QPassSignals,
9b224c5e 1344 PACKET_QProgramSignals,
08388c79 1345 PACKET_qSearch_memory,
2d717e4f
DJ
1346 PACKET_vAttach,
1347 PACKET_vRun,
a6f3e723 1348 PACKET_QStartNoAckMode,
82f73884 1349 PACKET_vKill,
4aa995e1
PA
1350 PACKET_qXfer_siginfo_read,
1351 PACKET_qXfer_siginfo_write,
0b16c5cf 1352 PACKET_qAttached,
782b2b07 1353 PACKET_ConditionalTracepoints,
3788aec7 1354 PACKET_ConditionalBreakpoints,
d3ce09f5 1355 PACKET_BreakpointCommands,
7a697b8d 1356 PACKET_FastTracepoints,
0fb4aa4b 1357 PACKET_StaticTracepoints,
1e4d1764 1358 PACKET_InstallInTrace,
40ab02ce
MS
1359 PACKET_bc,
1360 PACKET_bs,
409873ef 1361 PACKET_TracepointSource,
d914c394 1362 PACKET_QAllow,
78d85199 1363 PACKET_qXfer_fdpic,
03583c20 1364 PACKET_QDisableRandomization,
d1feda86 1365 PACKET_QAgent,
f6f899bf 1366 PACKET_QTBuffer_size,
9accd112
MM
1367 PACKET_Qbtrace_off,
1368 PACKET_Qbtrace_bts,
1369 PACKET_qXfer_btrace,
444abaca
DJ
1370 PACKET_MAX
1371};
506fb367 1372
444abaca 1373static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97
MS
1374
1375static void
444abaca
DJ
1376set_remote_protocol_packet_cmd (char *args, int from_tty,
1377 struct cmd_list_element *c)
dc8acb97 1378{
444abaca 1379 struct packet_config *packet;
dc8acb97 1380
444abaca
DJ
1381 for (packet = remote_protocol_packets;
1382 packet < &remote_protocol_packets[PACKET_MAX];
1383 packet++)
1384 {
1385 if (&packet->detect == c->var)
1386 {
1387 update_packet_config (packet);
1388 return;
1389 }
1390 }
9b20d036 1391 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1392 c->name);
dc8acb97
MS
1393}
1394
5a2468f5 1395static void
444abaca
DJ
1396show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1397 struct cmd_list_element *c,
1398 const char *value)
5a2468f5 1399{
444abaca 1400 struct packet_config *packet;
5a2468f5 1401
444abaca
DJ
1402 for (packet = remote_protocol_packets;
1403 packet < &remote_protocol_packets[PACKET_MAX];
1404 packet++)
1405 {
1406 if (&packet->detect == c->var)
1407 {
1408 show_packet_config_cmd (packet);
1409 return;
1410 }
1411 }
9b20d036 1412 internal_error (__FILE__, __LINE__, _("Could not find config for %s"),
444abaca 1413 c->name);
5a2468f5
JM
1414}
1415
d471ea57
AC
1416/* Should we try one of the 'Z' requests? */
1417
1418enum Z_packet_type
1419{
1420 Z_PACKET_SOFTWARE_BP,
1421 Z_PACKET_HARDWARE_BP,
1422 Z_PACKET_WRITE_WP,
1423 Z_PACKET_READ_WP,
1424 Z_PACKET_ACCESS_WP,
1425 NR_Z_PACKET_TYPES
1426};
96baa820 1427
d471ea57 1428/* For compatibility with older distributions. Provide a ``set remote
23860348 1429 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1430
7f19b9a2 1431static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1432
1433static void
fba45db2
KB
1434set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1435 struct cmd_list_element *c)
96baa820 1436{
d471ea57 1437 int i;
a744cf53 1438
d471ea57
AC
1439 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1440 {
444abaca
DJ
1441 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1442 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1443 }
96baa820
JM
1444}
1445
1446static void
08546159
AC
1447show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1448 struct cmd_list_element *c,
1449 const char *value)
96baa820 1450{
d471ea57 1451 int i;
a744cf53 1452
d471ea57
AC
1453 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1454 {
444abaca 1455 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1456 }
96baa820
JM
1457}
1458
23860348 1459/* Tokens for use by the asynchronous signal handlers for SIGINT. */
934b9bac
JK
1460static struct async_signal_handler *async_sigint_remote_twice_token;
1461static struct async_signal_handler *async_sigint_remote_token;
43ff13b4 1462
74531fed
PA
1463\f
1464/* Asynchronous signal handle registered as event loop source for
1465 when we have pending events ready to be passed to the core. */
1466
1467static struct async_event_handler *remote_async_inferior_event_token;
1468
c906108c
SS
1469\f
1470
79d7f229
PA
1471static ptid_t magic_null_ptid;
1472static ptid_t not_sent_ptid;
1473static ptid_t any_thread_ptid;
1474
0b16c5cf
PA
1475/* Find out if the stub attached to PID (and hence GDB should offer to
1476 detach instead of killing it when bailing out). */
1477
1478static int
1479remote_query_attached (int pid)
1480{
1481 struct remote_state *rs = get_remote_state ();
bba74b36 1482 size_t size = get_remote_packet_size ();
0b16c5cf
PA
1483
1484 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1485 return 0;
1486
1487 if (remote_multi_process_p (rs))
bba74b36 1488 xsnprintf (rs->buf, size, "qAttached:%x", pid);
0b16c5cf 1489 else
bba74b36 1490 xsnprintf (rs->buf, size, "qAttached");
0b16c5cf
PA
1491
1492 putpkt (rs->buf);
1493 getpkt (&rs->buf, &rs->buf_size, 0);
1494
1495 switch (packet_ok (rs->buf,
1554e9be 1496 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1497 {
1498 case PACKET_OK:
1499 if (strcmp (rs->buf, "1") == 0)
1500 return 1;
1501 break;
1502 case PACKET_ERROR:
1503 warning (_("Remote failure reply: %s"), rs->buf);
1504 break;
1505 case PACKET_UNKNOWN:
1506 break;
1507 }
1508
1509 return 0;
1510}
1511
49c62f2e
PA
1512/* Add PID to GDB's inferior table. If FAKE_PID_P is true, then PID
1513 has been invented by GDB, instead of reported by the target. Since
1514 we can be connected to a remote system before before knowing about
1515 any inferior, mark the target with execution when we find the first
1516 inferior. If ATTACHED is 1, then we had just attached to this
1517 inferior. If it is 0, then we just created this inferior. If it
1518 is -1, then try querying the remote stub to find out if it had
1519 attached to the inferior or not. */
1941c569
PA
1520
1521static struct inferior *
49c62f2e 1522remote_add_inferior (int fake_pid_p, int pid, int attached)
1941c569 1523{
1941c569
PA
1524 struct inferior *inf;
1525
0b16c5cf
PA
1526 /* Check whether this process we're learning about is to be
1527 considered attached, or if is to be considered to have been
1528 spawned by the stub. */
1529 if (attached == -1)
1530 attached = remote_query_attached (pid);
1531
f5656ead 1532 if (gdbarch_has_global_solist (target_gdbarch ()))
6c95b8df
PA
1533 {
1534 /* If the target shares code across all inferiors, then every
1535 attach adds a new inferior. */
1536 inf = add_inferior (pid);
1537
1538 /* ... and every inferior is bound to the same program space.
1539 However, each inferior may still have its own address
1540 space. */
1541 inf->aspace = maybe_new_address_space ();
1542 inf->pspace = current_program_space;
1543 }
1544 else
1545 {
1546 /* In the traditional debugging scenario, there's a 1-1 match
1547 between program/address spaces. We simply bind the inferior
1548 to the program space's address space. */
1549 inf = current_inferior ();
1550 inferior_appeared (inf, pid);
1551 }
1941c569 1552
0b16c5cf 1553 inf->attach_flag = attached;
49c62f2e 1554 inf->fake_pid_p = fake_pid_p;
0b16c5cf 1555
1941c569
PA
1556 return inf;
1557}
1558
1559/* Add thread PTID to GDB's thread list. Tag it as executing/running
1560 according to RUNNING. */
1561
c906108c 1562static void
1941c569 1563remote_add_thread (ptid_t ptid, int running)
c906108c 1564{
1941c569
PA
1565 add_thread (ptid);
1566
1567 set_executing (ptid, running);
1568 set_running (ptid, running);
1569}
1570
1571/* Come here when we learn about a thread id from the remote target.
1572 It may be the first time we hear about such thread, so take the
1573 opportunity to add it to GDB's thread list. In case this is the
1574 first time we're noticing its corresponding inferior, add it to
1575 GDB's inferior list as well. */
1576
1577static void
1578remote_notice_new_inferior (ptid_t currthread, int running)
1579{
c906108c
SS
1580 /* If this is a new thread, add it to GDB's thread list.
1581 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1582
1583 if (in_thread_list (currthread) && is_exited (currthread))
1584 {
1585 /* We're seeing an event on a thread id we knew had exited.
1586 This has to be a new thread reusing the old id. Add it. */
1941c569 1587 remote_add_thread (currthread, running);
82f73884
PA
1588 return;
1589 }
1590
79d7f229 1591 if (!in_thread_list (currthread))
c0a2216e 1592 {
1941c569 1593 struct inferior *inf = NULL;
bad34192 1594 int pid = ptid_get_pid (currthread);
1941c569 1595
bad34192
PA
1596 if (ptid_is_pid (inferior_ptid)
1597 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1598 {
1599 /* inferior_ptid has no thread member yet. This can happen
1600 with the vAttach -> remote_wait,"TAAthread:" path if the
1601 stub doesn't support qC. This is the first stop reported
1602 after an attach, so this is the main thread. Update the
1603 ptid in the thread list. */
bad34192
PA
1604 if (in_thread_list (pid_to_ptid (pid)))
1605 thread_change_ptid (inferior_ptid, currthread);
1606 else
1607 {
1608 remote_add_thread (currthread, running);
1609 inferior_ptid = currthread;
1610 }
dc146f7c 1611 return;
c0a2216e 1612 }
82f73884
PA
1613
1614 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1615 {
1616 /* inferior_ptid is not set yet. This can happen with the
1617 vRun -> remote_wait,"TAAthread:" path if the stub
1618 doesn't support qC. This is the first stop reported
1619 after an attach, so this is the main thread. Update the
1620 ptid in the thread list. */
dc146f7c 1621 thread_change_ptid (inferior_ptid, currthread);
82f73884 1622 return;
c0a2216e 1623 }
82f73884 1624
29c87f7f
PA
1625 /* When connecting to a target remote, or to a target
1626 extended-remote which already was debugging an inferior, we
1627 may not know about it yet. Add it before adding its child
1628 thread, so notifications are emitted in a sensible order. */
1629 if (!in_inferior_list (ptid_get_pid (currthread)))
49c62f2e
PA
1630 {
1631 struct remote_state *rs = get_remote_state ();
1632 int fake_pid_p = !remote_multi_process_p (rs);
1633
1634 inf = remote_add_inferior (fake_pid_p,
1635 ptid_get_pid (currthread), -1);
1636 }
29c87f7f 1637
82f73884 1638 /* This is really a new thread. Add it. */
1941c569
PA
1639 remote_add_thread (currthread, running);
1640
1641 /* If we found a new inferior, let the common code do whatever
1642 it needs to with it (e.g., read shared libraries, insert
1643 breakpoints). */
1644 if (inf != NULL)
1645 notice_new_inferior (currthread, running, 0);
c0a2216e 1646 }
c906108c
SS
1647}
1648
dc146f7c
VP
1649/* Return the private thread data, creating it if necessary. */
1650
70221824 1651static struct private_thread_info *
dc146f7c
VP
1652demand_private_info (ptid_t ptid)
1653{
1654 struct thread_info *info = find_thread_ptid (ptid);
1655
1656 gdb_assert (info);
1657
1658 if (!info->private)
1659 {
1660 info->private = xmalloc (sizeof (*(info->private)));
1661 info->private_dtor = free_private_thread_info;
1662 info->private->core = -1;
1663 info->private->extra = 0;
1664 }
1665
1666 return info->private;
1667}
1668
74531fed
PA
1669/* Call this function as a result of
1670 1) A halt indication (T packet) containing a thread id
1671 2) A direct query of currthread
0df8b418 1672 3) Successful execution of set thread */
74531fed
PA
1673
1674static void
47f8a51d 1675record_currthread (struct remote_state *rs, ptid_t currthread)
74531fed 1676{
47f8a51d 1677 rs->general_thread = currthread;
74531fed
PA
1678}
1679
89be2091
DJ
1680/* If 'QPassSignals' is supported, tell the remote stub what signals
1681 it can simply pass through to the inferior without reporting. */
1682
1683static void
2455069d 1684remote_pass_signals (int numsigs, unsigned char *pass_signals)
89be2091
DJ
1685{
1686 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1687 {
1688 char *pass_packet, *p;
89be2091 1689 int count = 0, i;
747dc59d 1690 struct remote_state *rs = get_remote_state ();
89be2091
DJ
1691
1692 gdb_assert (numsigs < 256);
1693 for (i = 0; i < numsigs; i++)
1694 {
2455069d 1695 if (pass_signals[i])
89be2091
DJ
1696 count++;
1697 }
1698 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1699 strcpy (pass_packet, "QPassSignals:");
1700 p = pass_packet + strlen (pass_packet);
1701 for (i = 0; i < numsigs; i++)
1702 {
2455069d 1703 if (pass_signals[i])
89be2091
DJ
1704 {
1705 if (i >= 16)
1706 *p++ = tohex (i >> 4);
1707 *p++ = tohex (i & 15);
1708 if (count)
1709 *p++ = ';';
1710 else
1711 break;
1712 count--;
1713 }
1714 }
1715 *p = 0;
747dc59d 1716 if (!rs->last_pass_packet || strcmp (rs->last_pass_packet, pass_packet))
89be2091 1717 {
89be2091
DJ
1718 char *buf = rs->buf;
1719
1720 putpkt (pass_packet);
1721 getpkt (&rs->buf, &rs->buf_size, 0);
1722 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
747dc59d
TT
1723 if (rs->last_pass_packet)
1724 xfree (rs->last_pass_packet);
1725 rs->last_pass_packet = pass_packet;
89be2091
DJ
1726 }
1727 else
1728 xfree (pass_packet);
1729 }
1730}
1731
9b224c5e
PA
1732/* If 'QProgramSignals' is supported, tell the remote stub what
1733 signals it should pass through to the inferior when detaching. */
1734
1735static void
1736remote_program_signals (int numsigs, unsigned char *signals)
1737{
1738 if (remote_protocol_packets[PACKET_QProgramSignals].support != PACKET_DISABLE)
1739 {
1740 char *packet, *p;
1741 int count = 0, i;
5e4a05c4 1742 struct remote_state *rs = get_remote_state ();
9b224c5e
PA
1743
1744 gdb_assert (numsigs < 256);
1745 for (i = 0; i < numsigs; i++)
1746 {
1747 if (signals[i])
1748 count++;
1749 }
1750 packet = xmalloc (count * 3 + strlen ("QProgramSignals:") + 1);
1751 strcpy (packet, "QProgramSignals:");
1752 p = packet + strlen (packet);
1753 for (i = 0; i < numsigs; i++)
1754 {
1755 if (signal_pass_state (i))
1756 {
1757 if (i >= 16)
1758 *p++ = tohex (i >> 4);
1759 *p++ = tohex (i & 15);
1760 if (count)
1761 *p++ = ';';
1762 else
1763 break;
1764 count--;
1765 }
1766 }
1767 *p = 0;
5e4a05c4
TT
1768 if (!rs->last_program_signals_packet
1769 || strcmp (rs->last_program_signals_packet, packet) != 0)
9b224c5e 1770 {
9b224c5e
PA
1771 char *buf = rs->buf;
1772
1773 putpkt (packet);
1774 getpkt (&rs->buf, &rs->buf_size, 0);
1775 packet_ok (buf, &remote_protocol_packets[PACKET_QProgramSignals]);
5e4a05c4
TT
1776 xfree (rs->last_program_signals_packet);
1777 rs->last_program_signals_packet = packet;
9b224c5e
PA
1778 }
1779 else
1780 xfree (packet);
1781 }
1782}
1783
79d7f229
PA
1784/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1785 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1786 thread. If GEN is set, set the general thread, if not, then set
1787 the step/continue thread. */
c906108c 1788static void
79d7f229 1789set_thread (struct ptid ptid, int gen)
c906108c 1790{
d01949b6 1791 struct remote_state *rs = get_remote_state ();
47f8a51d 1792 ptid_t state = gen ? rs->general_thread : rs->continue_thread;
6d820c5c 1793 char *buf = rs->buf;
79d7f229 1794 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 1795
79d7f229 1796 if (ptid_equal (state, ptid))
c906108c
SS
1797 return;
1798
79d7f229
PA
1799 *buf++ = 'H';
1800 *buf++ = gen ? 'g' : 'c';
1801 if (ptid_equal (ptid, magic_null_ptid))
1802 xsnprintf (buf, endbuf - buf, "0");
1803 else if (ptid_equal (ptid, any_thread_ptid))
1804 xsnprintf (buf, endbuf - buf, "0");
1805 else if (ptid_equal (ptid, minus_one_ptid))
1806 xsnprintf (buf, endbuf - buf, "-1");
1807 else
82f73884 1808 write_ptid (buf, endbuf, ptid);
79d7f229 1809 putpkt (rs->buf);
6d820c5c 1810 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 1811 if (gen)
47f8a51d 1812 rs->general_thread = ptid;
c906108c 1813 else
47f8a51d 1814 rs->continue_thread = ptid;
c906108c 1815}
79d7f229
PA
1816
1817static void
1818set_general_thread (struct ptid ptid)
1819{
1820 set_thread (ptid, 1);
1821}
1822
1823static void
1824set_continue_thread (struct ptid ptid)
1825{
1826 set_thread (ptid, 0);
1827}
1828
3c9c4b83
PA
1829/* Change the remote current process. Which thread within the process
1830 ends up selected isn't important, as long as it is the same process
1831 as what INFERIOR_PTID points to.
1832
1833 This comes from that fact that there is no explicit notion of
1834 "selected process" in the protocol. The selected process for
1835 general operations is the process the selected general thread
1836 belongs to. */
1837
1838static void
1839set_general_process (void)
1840{
1841 struct remote_state *rs = get_remote_state ();
1842
1843 /* If the remote can't handle multiple processes, don't bother. */
901f9912 1844 if (!rs->extended || !remote_multi_process_p (rs))
3c9c4b83
PA
1845 return;
1846
1847 /* We only need to change the remote current thread if it's pointing
1848 at some other process. */
47f8a51d 1849 if (ptid_get_pid (rs->general_thread) != ptid_get_pid (inferior_ptid))
3c9c4b83
PA
1850 set_general_thread (inferior_ptid);
1851}
1852
c906108c 1853\f
79d7f229
PA
1854/* Return nonzero if the thread PTID is still alive on the remote
1855 system. */
c906108c
SS
1856
1857static int
28439f5e 1858remote_thread_alive (struct target_ops *ops, ptid_t ptid)
c906108c 1859{
6d820c5c 1860 struct remote_state *rs = get_remote_state ();
82f73884 1861 char *p, *endp;
c906108c 1862
c0a2216e
PA
1863 if (ptid_equal (ptid, magic_null_ptid))
1864 /* The main thread is always alive. */
1865 return 1;
1866
1867 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1868 /* The main thread is always alive. This can happen after a
1869 vAttach, if the remote side doesn't support
1870 multi-threading. */
1871 return 1;
1872
82f73884
PA
1873 p = rs->buf;
1874 endp = rs->buf + get_remote_packet_size ();
1875
1876 *p++ = 'T';
1877 write_ptid (p, endp, ptid);
1878
2e9f7625 1879 putpkt (rs->buf);
6d820c5c 1880 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1881 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
1882}
1883
1884/* About these extended threadlist and threadinfo packets. They are
1885 variable length packets but, the fields within them are often fixed
1886 length. They are redundent enough to send over UDP as is the
1887 remote protocol in general. There is a matching unit test module
1888 in libstub. */
1889
23860348 1890/* WARNING: This threadref data structure comes from the remote O.S.,
0df8b418 1891 libstub protocol encoding, and remote.c. It is not particularly
23860348 1892 changable. */
cce74817
JM
1893
1894/* Right now, the internal structure is int. We want it to be bigger.
0df8b418 1895 Plan to fix this. */
cce74817 1896
23860348 1897typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 1898
9d1f7ab2 1899/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 1900 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
1901
1902struct gdb_ext_thread_info
c5aa993b 1903 {
23860348 1904 threadref threadid; /* External form of thread reference. */
2bc416ba 1905 int active; /* Has state interesting to GDB?
23860348 1906 regs, stack. */
2bc416ba 1907 char display[256]; /* Brief state display, name,
cedea757 1908 blocked/suspended. */
23860348 1909 char shortname[32]; /* To be used to name threads. */
2bc416ba 1910 char more_display[256]; /* Long info, statistics, queue depth,
23860348 1911 whatever. */
c5aa993b 1912 };
cce74817
JM
1913
1914/* The volume of remote transfers can be limited by submitting
1915 a mask containing bits specifying the desired information.
1916 Use a union of these values as the 'selection' parameter to
0df8b418 1917 get_thread_info. FIXME: Make these TAG names more thread specific. */
cce74817
JM
1918
1919#define TAG_THREADID 1
1920#define TAG_EXISTS 2
1921#define TAG_DISPLAY 4
1922#define TAG_THREADNAME 8
c5aa993b 1923#define TAG_MOREDISPLAY 16
cce74817 1924
23860348 1925#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 1926
b2dd6311 1927char *unpack_varlen_hex (char *buff, ULONGEST *result);
cce74817 1928
a14ed312 1929static char *unpack_nibble (char *buf, int *val);
cce74817 1930
a14ed312 1931static char *pack_nibble (char *buf, int nibble);
cce74817 1932
23860348 1933static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
cce74817 1934
a14ed312 1935static char *unpack_byte (char *buf, int *value);
cce74817 1936
a14ed312 1937static char *pack_int (char *buf, int value);
cce74817 1938
a14ed312 1939static char *unpack_int (char *buf, int *value);
cce74817 1940
a14ed312 1941static char *unpack_string (char *src, char *dest, int length);
cce74817 1942
23860348 1943static char *pack_threadid (char *pkt, threadref *id);
cce74817 1944
23860348 1945static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 1946
23860348 1947void int_to_threadref (threadref *id, int value);
cce74817 1948
23860348 1949static int threadref_to_int (threadref *ref);
cce74817 1950
23860348 1951static void copy_threadref (threadref *dest, threadref *src);
cce74817 1952
23860348 1953static int threadmatch (threadref *dest, threadref *src);
cce74817 1954
2bc416ba 1955static char *pack_threadinfo_request (char *pkt, int mode,
23860348 1956 threadref *id);
cce74817 1957
a14ed312 1958static int remote_unpack_thread_info_response (char *pkt,
23860348 1959 threadref *expectedref,
a14ed312
KB
1960 struct gdb_ext_thread_info
1961 *info);
cce74817
JM
1962
1963
2bc416ba 1964static int remote_get_threadinfo (threadref *threadid,
23860348 1965 int fieldset, /*TAG mask */
a14ed312 1966 struct gdb_ext_thread_info *info);
cce74817 1967
a14ed312
KB
1968static char *pack_threadlist_request (char *pkt, int startflag,
1969 int threadcount,
23860348 1970 threadref *nextthread);
cce74817 1971
a14ed312
KB
1972static int parse_threadlist_response (char *pkt,
1973 int result_limit,
23860348 1974 threadref *original_echo,
2bc416ba 1975 threadref *resultlist,
23860348 1976 int *doneflag);
cce74817 1977
a14ed312 1978static int remote_get_threadlist (int startflag,
23860348 1979 threadref *nextthread,
a14ed312
KB
1980 int result_limit,
1981 int *done,
2bc416ba 1982 int *result_count,
23860348 1983 threadref *threadlist);
cce74817 1984
23860348 1985typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 1986
a14ed312
KB
1987static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1988 void *context, int looplimit);
cce74817 1989
23860348 1990static int remote_newthread_step (threadref *ref, void *context);
cce74817 1991
82f73884
PA
1992
1993/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1994 buffer we're allowed to write to. Returns
1995 BUF+CHARACTERS_WRITTEN. */
1996
1997static char *
1998write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1999{
2000 int pid, tid;
2001 struct remote_state *rs = get_remote_state ();
2002
2003 if (remote_multi_process_p (rs))
2004 {
2005 pid = ptid_get_pid (ptid);
2006 if (pid < 0)
2007 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
2008 else
2009 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
2010 }
2011 tid = ptid_get_tid (ptid);
2012 if (tid < 0)
2013 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
2014 else
2015 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
2016
2017 return buf;
2018}
2019
2020/* Extract a PTID from BUF. If non-null, OBUF is set to the to one
2021 passed the last parsed char. Returns null_ptid on error. */
2022
2023static ptid_t
2024read_ptid (char *buf, char **obuf)
2025{
2026 char *p = buf;
2027 char *pp;
2028 ULONGEST pid = 0, tid = 0;
82f73884
PA
2029
2030 if (*p == 'p')
2031 {
2032 /* Multi-process ptid. */
2033 pp = unpack_varlen_hex (p + 1, &pid);
2034 if (*pp != '.')
b37520b6 2035 error (_("invalid remote ptid: %s"), p);
82f73884
PA
2036
2037 p = pp;
2038 pp = unpack_varlen_hex (p + 1, &tid);
2039 if (obuf)
2040 *obuf = pp;
2041 return ptid_build (pid, 0, tid);
2042 }
2043
2044 /* No multi-process. Just a tid. */
2045 pp = unpack_varlen_hex (p, &tid);
2046
2047 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
2048 what's in inferior_ptid, unless it's null at this point. If so,
2049 then since there's no way to know the pid of the reported
2050 threads, use the magic number. */
2051 if (ptid_equal (inferior_ptid, null_ptid))
2052 pid = ptid_get_pid (magic_null_ptid);
2053 else
2054 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
2055
2056 if (obuf)
2057 *obuf = pp;
2058 return ptid_build (pid, 0, tid);
2059}
2060
23860348 2061/* Encode 64 bits in 16 chars of hex. */
c906108c
SS
2062
2063static const char hexchars[] = "0123456789abcdef";
2064
2065static int
fba45db2 2066ishex (int ch, int *val)
c906108c
SS
2067{
2068 if ((ch >= 'a') && (ch <= 'f'))
2069 {
2070 *val = ch - 'a' + 10;
2071 return 1;
2072 }
2073 if ((ch >= 'A') && (ch <= 'F'))
2074 {
2075 *val = ch - 'A' + 10;
2076 return 1;
2077 }
2078 if ((ch >= '0') && (ch <= '9'))
2079 {
2080 *val = ch - '0';
2081 return 1;
2082 }
2083 return 0;
2084}
2085
2086static int
fba45db2 2087stubhex (int ch)
c906108c
SS
2088{
2089 if (ch >= 'a' && ch <= 'f')
2090 return ch - 'a' + 10;
2091 if (ch >= '0' && ch <= '9')
2092 return ch - '0';
2093 if (ch >= 'A' && ch <= 'F')
2094 return ch - 'A' + 10;
2095 return -1;
2096}
2097
2098static int
fba45db2 2099stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
2100{
2101 int nibble;
2102 int retval = 0;
2103
2104 while (fieldlength)
2105 {
2106 nibble = stubhex (*buff++);
2107 retval |= nibble;
2108 fieldlength--;
2109 if (fieldlength)
2110 retval = retval << 4;
2111 }
2112 return retval;
2113}
2114
2115char *
fba45db2 2116unpack_varlen_hex (char *buff, /* packet to parse */
b2dd6311 2117 ULONGEST *result)
c906108c
SS
2118{
2119 int nibble;
d49c44d5 2120 ULONGEST retval = 0;
c906108c
SS
2121
2122 while (ishex (*buff, &nibble))
2123 {
2124 buff++;
2125 retval = retval << 4;
2126 retval |= nibble & 0x0f;
2127 }
2128 *result = retval;
2129 return buff;
2130}
2131
2132static char *
fba45db2 2133unpack_nibble (char *buf, int *val)
c906108c 2134{
b7589f7d 2135 *val = fromhex (*buf++);
c906108c
SS
2136 return buf;
2137}
2138
2139static char *
fba45db2 2140pack_nibble (char *buf, int nibble)
c906108c
SS
2141{
2142 *buf++ = hexchars[(nibble & 0x0f)];
2143 return buf;
2144}
2145
2146static char *
fba45db2 2147pack_hex_byte (char *pkt, int byte)
c906108c
SS
2148{
2149 *pkt++ = hexchars[(byte >> 4) & 0xf];
2150 *pkt++ = hexchars[(byte & 0xf)];
2151 return pkt;
2152}
2153
2154static char *
fba45db2 2155unpack_byte (char *buf, int *value)
c906108c
SS
2156{
2157 *value = stub_unpack_int (buf, 2);
2158 return buf + 2;
2159}
2160
2161static char *
fba45db2 2162pack_int (char *buf, int value)
c906108c
SS
2163{
2164 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
2165 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
2166 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
2167 buf = pack_hex_byte (buf, (value & 0xff));
2168 return buf;
2169}
2170
2171static char *
fba45db2 2172unpack_int (char *buf, int *value)
c906108c
SS
2173{
2174 *value = stub_unpack_int (buf, 8);
2175 return buf + 8;
2176}
2177
23860348 2178#if 0 /* Currently unused, uncomment when needed. */
a14ed312 2179static char *pack_string (char *pkt, char *string);
c906108c
SS
2180
2181static char *
fba45db2 2182pack_string (char *pkt, char *string)
c906108c
SS
2183{
2184 char ch;
2185 int len;
2186
2187 len = strlen (string);
2188 if (len > 200)
23860348 2189 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
2190 pkt = pack_hex_byte (pkt, len);
2191 while (len-- > 0)
2192 {
2193 ch = *string++;
2194 if ((ch == '\0') || (ch == '#'))
23860348 2195 ch = '*'; /* Protect encapsulation. */
c906108c
SS
2196 *pkt++ = ch;
2197 }
2198 return pkt;
2199}
2200#endif /* 0 (unused) */
2201
2202static char *
fba45db2 2203unpack_string (char *src, char *dest, int length)
c906108c
SS
2204{
2205 while (length--)
2206 *dest++ = *src++;
2207 *dest = '\0';
2208 return src;
2209}
2210
2211static char *
fba45db2 2212pack_threadid (char *pkt, threadref *id)
c906108c
SS
2213{
2214 char *limit;
2215 unsigned char *altid;
2216
2217 altid = (unsigned char *) id;
2218 limit = pkt + BUF_THREAD_ID_SIZE;
2219 while (pkt < limit)
2220 pkt = pack_hex_byte (pkt, *altid++);
2221 return pkt;
2222}
2223
2224
2225static char *
fba45db2 2226unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
2227{
2228 char *altref;
2229 char *limit = inbuf + BUF_THREAD_ID_SIZE;
2230 int x, y;
2231
2232 altref = (char *) id;
2233
2234 while (inbuf < limit)
2235 {
2236 x = stubhex (*inbuf++);
2237 y = stubhex (*inbuf++);
2238 *altref++ = (x << 4) | y;
2239 }
2240 return inbuf;
2241}
2242
2243/* Externally, threadrefs are 64 bits but internally, they are still
0df8b418 2244 ints. This is due to a mismatch of specifications. We would like
c906108c
SS
2245 to use 64bit thread references internally. This is an adapter
2246 function. */
2247
2248void
fba45db2 2249int_to_threadref (threadref *id, int value)
c906108c
SS
2250{
2251 unsigned char *scan;
2252
2253 scan = (unsigned char *) id;
2254 {
2255 int i = 4;
2256 while (i--)
2257 *scan++ = 0;
2258 }
2259 *scan++ = (value >> 24) & 0xff;
2260 *scan++ = (value >> 16) & 0xff;
2261 *scan++ = (value >> 8) & 0xff;
2262 *scan++ = (value & 0xff);
2263}
2264
2265static int
fba45db2 2266threadref_to_int (threadref *ref)
c906108c
SS
2267{
2268 int i, value = 0;
2269 unsigned char *scan;
2270
cfd77fa1 2271 scan = *ref;
c906108c
SS
2272 scan += 4;
2273 i = 4;
2274 while (i-- > 0)
2275 value = (value << 8) | ((*scan++) & 0xff);
2276 return value;
2277}
2278
2279static void
fba45db2 2280copy_threadref (threadref *dest, threadref *src)
c906108c
SS
2281{
2282 int i;
2283 unsigned char *csrc, *cdest;
2284
2285 csrc = (unsigned char *) src;
2286 cdest = (unsigned char *) dest;
2287 i = 8;
2288 while (i--)
2289 *cdest++ = *csrc++;
2290}
2291
2292static int
fba45db2 2293threadmatch (threadref *dest, threadref *src)
c906108c 2294{
23860348 2295 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
2296#if 0
2297 unsigned char *srcp, *destp;
2298 int i, result;
2299 srcp = (char *) src;
2300 destp = (char *) dest;
2301
2302 result = 1;
2303 while (i-- > 0)
2304 result &= (*srcp++ == *destp++) ? 1 : 0;
2305 return result;
2306#endif
2307 return 1;
2308}
2309
2310/*
c5aa993b
JM
2311 threadid:1, # always request threadid
2312 context_exists:2,
2313 display:4,
2314 unique_name:8,
2315 more_display:16
2316 */
c906108c
SS
2317
2318/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
2319
2320static char *
fba45db2 2321pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 2322{
23860348
MS
2323 *pkt++ = 'q'; /* Info Query */
2324 *pkt++ = 'P'; /* process or thread info */
2325 pkt = pack_int (pkt, mode); /* mode */
c906108c 2326 pkt = pack_threadid (pkt, id); /* threadid */
23860348 2327 *pkt = '\0'; /* terminate */
c906108c
SS
2328 return pkt;
2329}
2330
23860348 2331/* These values tag the fields in a thread info response packet. */
c906108c 2332/* Tagging the fields allows us to request specific fields and to
23860348 2333 add more fields as time goes by. */
c906108c 2334
23860348 2335#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 2336#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 2337 fetch registers and its stack? */
c5aa993b 2338#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 2339#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 2340#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 2341 the process. */
c906108c
SS
2342
2343static int
fba45db2
KB
2344remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
2345 struct gdb_ext_thread_info *info)
c906108c 2346{
d01949b6 2347 struct remote_state *rs = get_remote_state ();
c906108c 2348 int mask, length;
cfd77fa1 2349 int tag;
c906108c 2350 threadref ref;
6d820c5c 2351 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
2352 int retval = 1;
2353
23860348 2354 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
2355 info->active = 0;
2356 info->display[0] = '\0';
2357 info->shortname[0] = '\0';
2358 info->more_display[0] = '\0';
2359
23860348
MS
2360 /* Assume the characters indicating the packet type have been
2361 stripped. */
c906108c
SS
2362 pkt = unpack_int (pkt, &mask); /* arg mask */
2363 pkt = unpack_threadid (pkt, &ref);
2364
2365 if (mask == 0)
8a3fe4f8 2366 warning (_("Incomplete response to threadinfo request."));
c906108c 2367 if (!threadmatch (&ref, expectedref))
23860348 2368 { /* This is an answer to a different request. */
8a3fe4f8 2369 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
2370 return 0;
2371 }
2372 copy_threadref (&info->threadid, &ref);
2373
23860348 2374 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 2375
23860348
MS
2376 /* Packets are terminated with nulls. */
2377 while ((pkt < limit) && mask && *pkt)
c906108c
SS
2378 {
2379 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
2380 pkt = unpack_byte (pkt, &length); /* length */
2381 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 2382 {
8a3fe4f8 2383 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
2384 retval = 0;
2385 break;
2386 }
2387 if (tag == TAG_THREADID)
2388 {
2389 if (length != 16)
2390 {
8a3fe4f8 2391 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
2392 retval = 0;
2393 break;
2394 }
2395 pkt = unpack_threadid (pkt, &ref);
2396 mask = mask & ~TAG_THREADID;
2397 continue;
2398 }
2399 if (tag == TAG_EXISTS)
2400 {
2401 info->active = stub_unpack_int (pkt, length);
2402 pkt += length;
2403 mask = mask & ~(TAG_EXISTS);
2404 if (length > 8)
2405 {
8a3fe4f8 2406 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
2407 retval = 0;
2408 break;
2409 }
2410 continue;
2411 }
2412 if (tag == TAG_THREADNAME)
2413 {
2414 pkt = unpack_string (pkt, &info->shortname[0], length);
2415 mask = mask & ~TAG_THREADNAME;
2416 continue;
2417 }
2418 if (tag == TAG_DISPLAY)
2419 {
2420 pkt = unpack_string (pkt, &info->display[0], length);
2421 mask = mask & ~TAG_DISPLAY;
2422 continue;
2423 }
2424 if (tag == TAG_MOREDISPLAY)
2425 {
2426 pkt = unpack_string (pkt, &info->more_display[0], length);
2427 mask = mask & ~TAG_MOREDISPLAY;
2428 continue;
2429 }
8a3fe4f8 2430 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2431 break; /* Not a tag we know about. */
c906108c
SS
2432 }
2433 return retval;
2434}
2435
2436static int
fba45db2
KB
2437remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2438 struct gdb_ext_thread_info *info)
c906108c 2439{
d01949b6 2440 struct remote_state *rs = get_remote_state ();
c906108c 2441 int result;
c906108c 2442
2e9f7625
DJ
2443 pack_threadinfo_request (rs->buf, fieldset, threadid);
2444 putpkt (rs->buf);
6d820c5c 2445 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2446
2447 if (rs->buf[0] == '\0')
2448 return 0;
2449
2e9f7625 2450 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2451 threadid, info);
c906108c
SS
2452 return result;
2453}
2454
c906108c
SS
2455/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2456
2457static char *
fba45db2
KB
2458pack_threadlist_request (char *pkt, int startflag, int threadcount,
2459 threadref *nextthread)
c906108c
SS
2460{
2461 *pkt++ = 'q'; /* info query packet */
2462 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2463 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2464 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2465 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2466 *pkt = '\0';
2467 return pkt;
2468}
2469
2470/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2471
2472static int
fba45db2
KB
2473parse_threadlist_response (char *pkt, int result_limit,
2474 threadref *original_echo, threadref *resultlist,
2475 int *doneflag)
c906108c 2476{
d01949b6 2477 struct remote_state *rs = get_remote_state ();
c906108c
SS
2478 char *limit;
2479 int count, resultcount, done;
2480
2481 resultcount = 0;
2482 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2483 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2484 /* done parse past here */
c906108c
SS
2485 pkt = unpack_byte (pkt, &count); /* count field */
2486 pkt = unpack_nibble (pkt, &done);
2487 /* The first threadid is the argument threadid. */
2488 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2489 while ((count-- > 0) && (pkt < limit))
2490 {
2491 pkt = unpack_threadid (pkt, resultlist++);
2492 if (resultcount++ >= result_limit)
2493 break;
2494 }
2495 if (doneflag)
2496 *doneflag = done;
2497 return resultcount;
2498}
2499
2500static int
fba45db2
KB
2501remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2502 int *done, int *result_count, threadref *threadlist)
c906108c 2503{
d01949b6 2504 struct remote_state *rs = get_remote_state ();
c906108c
SS
2505 int result = 1;
2506
23860348 2507 /* Trancate result limit to be smaller than the packet size. */
3e43a32a
MS
2508 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10)
2509 >= get_remote_packet_size ())
ea9c271d 2510 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2511
6d820c5c
DJ
2512 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2513 putpkt (rs->buf);
2514 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2515
d8f2712d 2516 if (*rs->buf == '\0')
21bce120 2517 return 0;
d8f2712d
VP
2518 else
2519 *result_count =
0d031856
TT
2520 parse_threadlist_response (rs->buf + 2, result_limit,
2521 &rs->echo_nextthread, threadlist, done);
c906108c 2522
0d031856 2523 if (!threadmatch (&rs->echo_nextthread, nextthread))
c906108c 2524 {
23860348
MS
2525 /* FIXME: This is a good reason to drop the packet. */
2526 /* Possably, there is a duplicate response. */
c906108c
SS
2527 /* Possabilities :
2528 retransmit immediatly - race conditions
2529 retransmit after timeout - yes
2530 exit
2531 wait for packet, then exit
2532 */
8a3fe4f8 2533 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2534 return 0; /* I choose simply exiting. */
c906108c
SS
2535 }
2536 if (*result_count <= 0)
2537 {
2538 if (*done != 1)
2539 {
8a3fe4f8 2540 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2541 result = 0;
2542 }
2543 return result; /* break; */
2544 }
2545 if (*result_count > result_limit)
2546 {
2547 *result_count = 0;
8a3fe4f8 2548 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2549 return 0;
2550 }
2551 return result;
2552}
2553
23860348
MS
2554/* This is the interface between remote and threads, remotes upper
2555 interface. */
c906108c
SS
2556
2557/* remote_find_new_threads retrieves the thread list and for each
2558 thread in the list, looks up the thread in GDB's internal list,
79d7f229 2559 adding the thread if it does not already exist. This involves
c906108c
SS
2560 getting partial thread lists from the remote target so, polling the
2561 quit_flag is required. */
2562
2563
c906108c 2564static int
fba45db2
KB
2565remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2566 int looplimit)
c906108c 2567{
0d031856 2568 struct remote_state *rs = get_remote_state ();
c906108c
SS
2569 int done, i, result_count;
2570 int startflag = 1;
2571 int result = 1;
2572 int loopcount = 0;
c906108c
SS
2573
2574 done = 0;
2575 while (!done)
2576 {
2577 if (loopcount++ > looplimit)
2578 {
2579 result = 0;
8a3fe4f8 2580 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2581 break;
2582 }
0d031856
TT
2583 if (!remote_get_threadlist (startflag, &rs->nextthread,
2584 MAXTHREADLISTRESULTS,
2585 &done, &result_count, rs->resultthreadlist))
c906108c
SS
2586 {
2587 result = 0;
2588 break;
2589 }
23860348 2590 /* Clear for later iterations. */
c906108c
SS
2591 startflag = 0;
2592 /* Setup to resume next batch of thread references, set nextthread. */
2593 if (result_count >= 1)
0d031856
TT
2594 copy_threadref (&rs->nextthread,
2595 &rs->resultthreadlist[result_count - 1]);
c906108c
SS
2596 i = 0;
2597 while (result_count--)
0d031856 2598 if (!(result = (*stepfunction) (&rs->resultthreadlist[i++], context)))
c906108c
SS
2599 break;
2600 }
2601 return result;
2602}
2603
2604static int
fba45db2 2605remote_newthread_step (threadref *ref, void *context)
c906108c 2606{
79d7f229
PA
2607 int pid = ptid_get_pid (inferior_ptid);
2608 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
39f77062
KB
2609
2610 if (!in_thread_list (ptid))
2611 add_thread (ptid);
c906108c
SS
2612 return 1; /* continue iterator */
2613}
2614
2615#define CRAZY_MAX_THREADS 1000
2616
39f77062
KB
2617static ptid_t
2618remote_current_thread (ptid_t oldpid)
c906108c 2619{
d01949b6 2620 struct remote_state *rs = get_remote_state ();
c906108c
SS
2621
2622 putpkt ("qC");
6d820c5c 2623 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2624 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
82f73884 2625 return read_ptid (&rs->buf[2], NULL);
c906108c
SS
2626 else
2627 return oldpid;
2628}
2629
802188a7
RM
2630/* Find new threads for info threads command.
2631 * Original version, using John Metzler's thread protocol.
9d1f7ab2 2632 */
cce74817
JM
2633
2634static void
fba45db2 2635remote_find_new_threads (void)
c906108c 2636{
c5aa993b
JM
2637 remote_threadlist_iterator (remote_newthread_step, 0,
2638 CRAZY_MAX_THREADS);
c906108c
SS
2639}
2640
dc146f7c
VP
2641#if defined(HAVE_LIBEXPAT)
2642
2643typedef struct thread_item
2644{
2645 ptid_t ptid;
2646 char *extra;
2647 int core;
2648} thread_item_t;
2649DEF_VEC_O(thread_item_t);
2650
2651struct threads_parsing_context
2652{
2653 VEC (thread_item_t) *items;
2654};
2655
2656static void
2657start_thread (struct gdb_xml_parser *parser,
2658 const struct gdb_xml_element *element,
2659 void *user_data, VEC(gdb_xml_value_s) *attributes)
2660{
2661 struct threads_parsing_context *data = user_data;
2662
2663 struct thread_item item;
2664 char *id;
3d2c1d41 2665 struct gdb_xml_value *attr;
dc146f7c 2666
3d2c1d41 2667 id = xml_find_attribute (attributes, "id")->value;
dc146f7c
VP
2668 item.ptid = read_ptid (id, NULL);
2669
3d2c1d41
PA
2670 attr = xml_find_attribute (attributes, "core");
2671 if (attr != NULL)
2672 item.core = *(ULONGEST *) attr->value;
dc146f7c
VP
2673 else
2674 item.core = -1;
2675
2676 item.extra = 0;
2677
2678 VEC_safe_push (thread_item_t, data->items, &item);
2679}
2680
2681static void
2682end_thread (struct gdb_xml_parser *parser,
2683 const struct gdb_xml_element *element,
2684 void *user_data, const char *body_text)
2685{
2686 struct threads_parsing_context *data = user_data;
2687
2688 if (body_text && *body_text)
2ae2a0b7 2689 VEC_last (thread_item_t, data->items)->extra = xstrdup (body_text);
dc146f7c
VP
2690}
2691
2692const struct gdb_xml_attribute thread_attributes[] = {
2693 { "id", GDB_XML_AF_NONE, NULL, NULL },
2694 { "core", GDB_XML_AF_OPTIONAL, gdb_xml_parse_attr_ulongest, NULL },
2695 { NULL, GDB_XML_AF_NONE, NULL, NULL }
2696};
2697
2698const struct gdb_xml_element thread_children[] = {
2699 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2700};
2701
2702const struct gdb_xml_element threads_children[] = {
2703 { "thread", thread_attributes, thread_children,
2704 GDB_XML_EF_REPEATABLE | GDB_XML_EF_OPTIONAL,
2705 start_thread, end_thread },
2706 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2707};
2708
2709const struct gdb_xml_element threads_elements[] = {
2710 { "threads", NULL, threads_children,
2711 GDB_XML_EF_NONE, NULL, NULL },
2712 { NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
2713};
2714
02357a4a
PA
2715/* Discard the contents of the constructed thread info context. */
2716
2717static void
2718clear_threads_parsing_context (void *p)
2719{
2720 struct threads_parsing_context *context = p;
2721 int i;
2722 struct thread_item *item;
2723
2724 for (i = 0; VEC_iterate (thread_item_t, context->items, i, item); ++i)
2725 xfree (item->extra);
2726
2727 VEC_free (thread_item_t, context->items);
2728}
2729
dc146f7c
VP
2730#endif
2731
9d1f7ab2
MS
2732/*
2733 * Find all threads for info threads command.
2734 * Uses new thread protocol contributed by Cisco.
2735 * Falls back and attempts to use the older method (above)
2736 * if the target doesn't respond to the new method.
2737 */
2738
0f71a2f6 2739static void
28439f5e 2740remote_threads_info (struct target_ops *ops)
0f71a2f6 2741{
d01949b6 2742 struct remote_state *rs = get_remote_state ();
085dd6e6 2743 char *bufp;
79d7f229 2744 ptid_t new_thread;
0f71a2f6 2745
5d93a237 2746 if (rs->remote_desc == 0) /* paranoia */
8a3fe4f8 2747 error (_("Command can only be used when connected to the remote target."));
0f71a2f6 2748
dc146f7c
VP
2749#if defined(HAVE_LIBEXPAT)
2750 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2751 {
2752 char *xml = target_read_stralloc (&current_target,
2753 TARGET_OBJECT_THREADS, NULL);
2754
2755 struct cleanup *back_to = make_cleanup (xfree, xml);
efc0eabd 2756
dc146f7c
VP
2757 if (xml && *xml)
2758 {
dc146f7c 2759 struct threads_parsing_context context;
dc146f7c 2760
efc0eabd
PA
2761 context.items = NULL;
2762 make_cleanup (clear_threads_parsing_context, &context);
dc146f7c 2763
efc0eabd
PA
2764 if (gdb_xml_parse_quick (_("threads"), "threads.dtd",
2765 threads_elements, xml, &context) == 0)
dc146f7c
VP
2766 {
2767 int i;
2768 struct thread_item *item;
2769
3e43a32a
MS
2770 for (i = 0;
2771 VEC_iterate (thread_item_t, context.items, i, item);
2772 ++i)
dc146f7c
VP
2773 {
2774 if (!ptid_equal (item->ptid, null_ptid))
2775 {
2776 struct private_thread_info *info;
2777 /* In non-stop mode, we assume new found threads
2778 are running until proven otherwise with a
2779 stop reply. In all-stop, we can only get
2780 here if all threads are stopped. */
2781 int running = non_stop ? 1 : 0;
2782
2783 remote_notice_new_inferior (item->ptid, running);
2784
2785 info = demand_private_info (item->ptid);
2786 info->core = item->core;
2787 info->extra = item->extra;
02357a4a 2788 item->extra = NULL;
dc146f7c 2789 }
dc146f7c
VP
2790 }
2791 }
dc146f7c
VP
2792 }
2793
2794 do_cleanups (back_to);
2795 return;
2796 }
2797#endif
2798
b80fafe3 2799 if (rs->use_threadinfo_query)
9d1f7ab2
MS
2800 {
2801 putpkt ("qfThreadInfo");
6d820c5c 2802 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2803 bufp = rs->buf;
9d1f7ab2 2804 if (bufp[0] != '\0') /* q packet recognized */
802188a7 2805 {
44d594fd
PA
2806 struct cleanup *old_chain;
2807 char *saved_reply;
2808
2809 /* remote_notice_new_inferior (in the loop below) may make
2810 new RSP calls, which clobber rs->buf. Work with a
2811 copy. */
2812 bufp = saved_reply = xstrdup (rs->buf);
2813 old_chain = make_cleanup (free_current_contents, &saved_reply);
2814
9d1f7ab2
MS
2815 while (*bufp++ == 'm') /* reply contains one or more TID */
2816 {
2817 do
2818 {
82f73884 2819 new_thread = read_ptid (bufp, &bufp);
1941c569 2820 if (!ptid_equal (new_thread, null_ptid))
82f73884 2821 {
74531fed 2822 /* In non-stop mode, we assume new found threads
1941c569 2823 are running until proven otherwise with a
74531fed
PA
2824 stop reply. In all-stop, we can only get
2825 here if all threads are stopped. */
1941c569
PA
2826 int running = non_stop ? 1 : 0;
2827
2828 remote_notice_new_inferior (new_thread, running);
82f73884 2829 }
9d1f7ab2
MS
2830 }
2831 while (*bufp++ == ','); /* comma-separated list */
44d594fd 2832 free_current_contents (&saved_reply);
9d1f7ab2 2833 putpkt ("qsThreadInfo");
6d820c5c 2834 getpkt (&rs->buf, &rs->buf_size, 0);
44d594fd 2835 bufp = saved_reply = xstrdup (rs->buf);
9d1f7ab2 2836 }
44d594fd 2837 do_cleanups (old_chain);
9d1f7ab2
MS
2838 return; /* done */
2839 }
2840 }
2841
74531fed
PA
2842 /* Only qfThreadInfo is supported in non-stop mode. */
2843 if (non_stop)
2844 return;
2845
23860348 2846 /* Else fall back to old method based on jmetzler protocol. */
b80fafe3 2847 rs->use_threadinfo_query = 0;
9d1f7ab2
MS
2848 remote_find_new_threads ();
2849 return;
2850}
2851
802188a7 2852/*
9d1f7ab2
MS
2853 * Collect a descriptive string about the given thread.
2854 * The target may say anything it wants to about the thread
2855 * (typically info about its blocked / runnable state, name, etc.).
2856 * This string will appear in the info threads display.
802188a7 2857 *
9d1f7ab2
MS
2858 * Optional: targets are not required to implement this function.
2859 */
2860
2861static char *
2862remote_threads_extra_info (struct thread_info *tp)
2863{
d01949b6 2864 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
2865 int result;
2866 int set;
2867 threadref id;
2868 struct gdb_ext_thread_info threadinfo;
23860348 2869 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
2870 int n = 0; /* position in display_buf */
2871
5d93a237 2872 if (rs->remote_desc == 0) /* paranoia */
8e65ff28 2873 internal_error (__FILE__, __LINE__,
e2e0b3e5 2874 _("remote_threads_extra_info"));
9d1f7ab2 2875
60e569b9
PA
2876 if (ptid_equal (tp->ptid, magic_null_ptid)
2877 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2878 /* This is the main thread which was added by GDB. The remote
2879 server doesn't know about it. */
2880 return NULL;
2881
dc146f7c
VP
2882 if (remote_protocol_packets[PACKET_qXfer_threads].support == PACKET_ENABLE)
2883 {
2884 struct thread_info *info = find_thread_ptid (tp->ptid);
a744cf53 2885
dc146f7c
VP
2886 if (info && info->private)
2887 return info->private->extra;
2888 else
2889 return NULL;
2890 }
2891
b80fafe3 2892 if (rs->use_threadextra_query)
9d1f7ab2 2893 {
82f73884
PA
2894 char *b = rs->buf;
2895 char *endb = rs->buf + get_remote_packet_size ();
2896
2897 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2898 b += strlen (b);
2899 write_ptid (b, endb, tp->ptid);
2900
2e9f7625 2901 putpkt (rs->buf);
6d820c5c 2902 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2903 if (rs->buf[0] != 0)
9d1f7ab2 2904 {
2e9f7625
DJ
2905 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2906 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 2907 display_buf [result] = '\0';
9d1f7ab2
MS
2908 return display_buf;
2909 }
0f71a2f6 2910 }
9d1f7ab2
MS
2911
2912 /* If the above query fails, fall back to the old method. */
b80fafe3 2913 rs->use_threadextra_query = 0;
9d1f7ab2
MS
2914 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2915 | TAG_MOREDISPLAY | TAG_DISPLAY;
79d7f229 2916 int_to_threadref (&id, ptid_get_tid (tp->ptid));
9d1f7ab2
MS
2917 if (remote_get_threadinfo (&id, set, &threadinfo))
2918 if (threadinfo.active)
0f71a2f6 2919 {
9d1f7ab2 2920 if (*threadinfo.shortname)
2bc416ba 2921 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 2922 " Name: %s,", threadinfo.shortname);
9d1f7ab2 2923 if (*threadinfo.display)
2bc416ba 2924 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2925 " State: %s,", threadinfo.display);
9d1f7ab2 2926 if (*threadinfo.more_display)
2bc416ba 2927 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2928 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
2929
2930 if (n > 0)
c5aa993b 2931 {
23860348 2932 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
2933 if (',' == display_buf[n-1])
2934 display_buf[n-1] = ' ';
2935 return display_buf;
c5aa993b 2936 }
0f71a2f6 2937 }
9d1f7ab2 2938 return NULL;
0f71a2f6 2939}
c906108c 2940\f
c5aa993b 2941
0fb4aa4b
PA
2942static int
2943remote_static_tracepoint_marker_at (CORE_ADDR addr,
2944 struct static_tracepoint_marker *marker)
2945{
2946 struct remote_state *rs = get_remote_state ();
2947 char *p = rs->buf;
2948
bba74b36 2949 xsnprintf (p, get_remote_packet_size (), "qTSTMat:");
0fb4aa4b
PA
2950 p += strlen (p);
2951 p += hexnumstr (p, addr);
2952 putpkt (rs->buf);
2953 getpkt (&rs->buf, &rs->buf_size, 0);
2954 p = rs->buf;
2955
2956 if (*p == 'E')
2957 error (_("Remote failure reply: %s"), p);
2958
2959 if (*p++ == 'm')
2960 {
2961 parse_static_tracepoint_marker_definition (p, &p, marker);
2962 return 1;
2963 }
2964
2965 return 0;
2966}
2967
0fb4aa4b
PA
2968static VEC(static_tracepoint_marker_p) *
2969remote_static_tracepoint_markers_by_strid (const char *strid)
2970{
2971 struct remote_state *rs = get_remote_state ();
2972 VEC(static_tracepoint_marker_p) *markers = NULL;
2973 struct static_tracepoint_marker *marker = NULL;
2974 struct cleanup *old_chain;
2975 char *p;
2976
2977 /* Ask for a first packet of static tracepoint marker
2978 definition. */
2979 putpkt ("qTfSTM");
2980 getpkt (&rs->buf, &rs->buf_size, 0);
2981 p = rs->buf;
2982 if (*p == 'E')
2983 error (_("Remote failure reply: %s"), p);
2984
2985 old_chain = make_cleanup (free_current_marker, &marker);
2986
2987 while (*p++ == 'm')
2988 {
2989 if (marker == NULL)
2990 marker = XCNEW (struct static_tracepoint_marker);
2991
2992 do
2993 {
2994 parse_static_tracepoint_marker_definition (p, &p, marker);
2995
2996 if (strid == NULL || strcmp (strid, marker->str_id) == 0)
2997 {
2998 VEC_safe_push (static_tracepoint_marker_p,
2999 markers, marker);
3000 marker = NULL;
3001 }
3002 else
3003 {
3004 release_static_tracepoint_marker (marker);
3005 memset (marker, 0, sizeof (*marker));
3006 }
3007 }
3008 while (*p++ == ','); /* comma-separated list */
3009 /* Ask for another packet of static tracepoint definition. */
3010 putpkt ("qTsSTM");
3011 getpkt (&rs->buf, &rs->buf_size, 0);
3012 p = rs->buf;
3013 }
3014
3015 do_cleanups (old_chain);
3016 return markers;
3017}
3018
3019\f
10760264
JB
3020/* Implement the to_get_ada_task_ptid function for the remote targets. */
3021
3022static ptid_t
3023remote_get_ada_task_ptid (long lwp, long thread)
3024{
3025 return ptid_build (ptid_get_pid (inferior_ptid), 0, lwp);
3026}
3027\f
3028
24b06219 3029/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
3030
3031static void
fba45db2 3032extended_remote_restart (void)
c906108c 3033{
d01949b6 3034 struct remote_state *rs = get_remote_state ();
c906108c
SS
3035
3036 /* Send the restart command; for reasons I don't understand the
3037 remote side really expects a number after the "R". */
ea9c271d 3038 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 3039 putpkt (rs->buf);
c906108c 3040
ad9a8f3f 3041 remote_fileio_reset ();
c906108c
SS
3042}
3043\f
3044/* Clean up connection to a remote debugger. */
3045
c906108c 3046static void
460014f5 3047remote_close (void)
c906108c 3048{
5d93a237
TT
3049 struct remote_state *rs = get_remote_state ();
3050
3051 if (rs->remote_desc == NULL)
d3fd5342
PA
3052 return; /* already closed */
3053
3054 /* Make sure we leave stdin registered in the event loop, and we
3055 don't leave the async SIGINT signal handler installed. */
3056 remote_terminal_ours ();
ce5ce7ed 3057
5d93a237
TT
3058 serial_close (rs->remote_desc);
3059 rs->remote_desc = NULL;
ce5ce7ed
PA
3060
3061 /* We don't have a connection to the remote stub anymore. Get rid
f67fd822
PM
3062 of all the inferiors and their threads we were controlling.
3063 Reset inferior_ptid to null_ptid first, as otherwise has_stack_frame
3064 will be unable to find the thread corresponding to (pid, 0, 0). */
0f2caa1b 3065 inferior_ptid = null_ptid;
f67fd822 3066 discard_all_inferiors ();
ce5ce7ed 3067
f48ff2a7
YQ
3068 /* We are closing the remote target, so we should discard
3069 everything of this target. */
bcc75809 3070 discard_pending_stop_replies_in_queue (rs);
74531fed
PA
3071
3072 if (remote_async_inferior_event_token)
3073 delete_async_event_handler (&remote_async_inferior_event_token);
722247f1 3074
5965e028 3075 remote_notif_state_xfree (rs->notif_state);
aef525cb
YQ
3076
3077 trace_reset_local_state ();
c906108c
SS
3078}
3079
23860348 3080/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
3081
3082static void
fba45db2 3083get_offsets (void)
c906108c 3084{
d01949b6 3085 struct remote_state *rs = get_remote_state ();
2e9f7625 3086 char *buf;
085dd6e6 3087 char *ptr;
31d99776
DJ
3088 int lose, num_segments = 0, do_sections, do_segments;
3089 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 3090 struct section_offsets *offs;
31d99776
DJ
3091 struct symfile_segment_data *data;
3092
3093 if (symfile_objfile == NULL)
3094 return;
c906108c
SS
3095
3096 putpkt ("qOffsets");
6d820c5c 3097 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3098 buf = rs->buf;
c906108c
SS
3099
3100 if (buf[0] == '\000')
3101 return; /* Return silently. Stub doesn't support
23860348 3102 this command. */
c906108c
SS
3103 if (buf[0] == 'E')
3104 {
8a3fe4f8 3105 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
3106 return;
3107 }
3108
3109 /* Pick up each field in turn. This used to be done with scanf, but
3110 scanf will make trouble if CORE_ADDR size doesn't match
3111 conversion directives correctly. The following code will work
3112 with any size of CORE_ADDR. */
3113 text_addr = data_addr = bss_addr = 0;
3114 ptr = buf;
3115 lose = 0;
3116
3117 if (strncmp (ptr, "Text=", 5) == 0)
3118 {
3119 ptr += 5;
3120 /* Don't use strtol, could lose on big values. */
3121 while (*ptr && *ptr != ';')
3122 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 3123
31d99776
DJ
3124 if (strncmp (ptr, ";Data=", 6) == 0)
3125 {
3126 ptr += 6;
3127 while (*ptr && *ptr != ';')
3128 data_addr = (data_addr << 4) + fromhex (*ptr++);
3129 }
3130 else
3131 lose = 1;
3132
3133 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
3134 {
3135 ptr += 5;
3136 while (*ptr && *ptr != ';')
3137 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 3138
31d99776
DJ
3139 if (bss_addr != data_addr)
3140 warning (_("Target reported unsupported offsets: %s"), buf);
3141 }
3142 else
3143 lose = 1;
3144 }
3145 else if (strncmp (ptr, "TextSeg=", 8) == 0)
c906108c 3146 {
31d99776
DJ
3147 ptr += 8;
3148 /* Don't use strtol, could lose on big values. */
c906108c 3149 while (*ptr && *ptr != ';')
31d99776
DJ
3150 text_addr = (text_addr << 4) + fromhex (*ptr++);
3151 num_segments = 1;
3152
3153 if (strncmp (ptr, ";DataSeg=", 9) == 0)
3154 {
3155 ptr += 9;
3156 while (*ptr && *ptr != ';')
3157 data_addr = (data_addr << 4) + fromhex (*ptr++);
3158 num_segments++;
3159 }
c906108c
SS
3160 }
3161 else
3162 lose = 1;
3163
3164 if (lose)
8a3fe4f8 3165 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
3166 else if (*ptr != '\0')
3167 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 3168
802188a7 3169 offs = ((struct section_offsets *)
a39a16c4 3170 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 3171 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 3172 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 3173
31d99776
DJ
3174 data = get_symfile_segment_data (symfile_objfile->obfd);
3175 do_segments = (data != NULL);
3176 do_sections = num_segments == 0;
c906108c 3177
28c32713 3178 if (num_segments > 0)
31d99776 3179 {
31d99776
DJ
3180 segments[0] = text_addr;
3181 segments[1] = data_addr;
3182 }
28c32713
JB
3183 /* If we have two segments, we can still try to relocate everything
3184 by assuming that the .text and .data offsets apply to the whole
3185 text and data segments. Convert the offsets given in the packet
3186 to base addresses for symfile_map_offsets_to_segments. */
3187 else if (data && data->num_segments == 2)
3188 {
3189 segments[0] = data->segment_bases[0] + text_addr;
3190 segments[1] = data->segment_bases[1] + data_addr;
3191 num_segments = 2;
3192 }
8d385431
DJ
3193 /* If the object file has only one segment, assume that it is text
3194 rather than data; main programs with no writable data are rare,
3195 but programs with no code are useless. Of course the code might
3196 have ended up in the data segment... to detect that we would need
3197 the permissions here. */
3198 else if (data && data->num_segments == 1)
3199 {
3200 segments[0] = data->segment_bases[0] + text_addr;
3201 num_segments = 1;
3202 }
28c32713
JB
3203 /* There's no way to relocate by segment. */
3204 else
3205 do_segments = 0;
31d99776
DJ
3206
3207 if (do_segments)
3208 {
3209 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
3210 offs, num_segments, segments);
3211
3212 if (ret == 0 && !do_sections)
3e43a32a
MS
3213 error (_("Can not handle qOffsets TextSeg "
3214 "response with this symbol file"));
31d99776
DJ
3215
3216 if (ret > 0)
3217 do_sections = 0;
3218 }
c906108c 3219
9ef895d6
DJ
3220 if (data)
3221 free_symfile_segment_data (data);
31d99776
DJ
3222
3223 if (do_sections)
3224 {
3225 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
3226
3e43a32a
MS
3227 /* This is a temporary kludge to force data and bss to use the
3228 same offsets because that's what nlmconv does now. The real
3229 solution requires changes to the stub and remote.c that I
3230 don't have time to do right now. */
31d99776
DJ
3231
3232 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
3233 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
3234 }
c906108c
SS
3235
3236 objfile_relocate (symfile_objfile, offs);
3237}
3238
74531fed
PA
3239/* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
3240 threads we know are stopped already. This is used during the
3241 initial remote connection in non-stop mode --- threads that are
3242 reported as already being stopped are left stopped. */
3243
3244static int
3245set_stop_requested_callback (struct thread_info *thread, void *data)
3246{
3247 /* If we have a stop reply for this thread, it must be stopped. */
3248 if (peek_stop_reply (thread->ptid))
3249 set_stop_requested (thread->ptid, 1);
3250
3251 return 0;
3252}
3253
9a7071a8
JB
3254/* Send interrupt_sequence to remote target. */
3255static void
eeae04df 3256send_interrupt_sequence (void)
9a7071a8 3257{
5d93a237
TT
3258 struct remote_state *rs = get_remote_state ();
3259
9a7071a8 3260 if (interrupt_sequence_mode == interrupt_sequence_control_c)
c33e31fd 3261 remote_serial_write ("\x03", 1);
9a7071a8 3262 else if (interrupt_sequence_mode == interrupt_sequence_break)
5d93a237 3263 serial_send_break (rs->remote_desc);
9a7071a8
JB
3264 else if (interrupt_sequence_mode == interrupt_sequence_break_g)
3265 {
5d93a237 3266 serial_send_break (rs->remote_desc);
c33e31fd 3267 remote_serial_write ("g", 1);
9a7071a8
JB
3268 }
3269 else
3270 internal_error (__FILE__, __LINE__,
3271 _("Invalid value for interrupt_sequence_mode: %s."),
3272 interrupt_sequence_mode);
3273}
3274
3405876a
PA
3275
3276/* If STOP_REPLY is a T stop reply, look for the "thread" register,
3277 and extract the PTID. Returns NULL_PTID if not found. */
3278
3279static ptid_t
3280stop_reply_extract_thread (char *stop_reply)
3281{
3282 if (stop_reply[0] == 'T' && strlen (stop_reply) > 3)
3283 {
3284 char *p;
3285
3286 /* Txx r:val ; r:val (...) */
3287 p = &stop_reply[3];
3288
3289 /* Look for "register" named "thread". */
3290 while (*p != '\0')
3291 {
3292 char *p1;
3293
3294 p1 = strchr (p, ':');
3295 if (p1 == NULL)
3296 return null_ptid;
3297
3298 if (strncmp (p, "thread", p1 - p) == 0)
3299 return read_ptid (++p1, &p);
3300
3301 p1 = strchr (p, ';');
3302 if (p1 == NULL)
3303 return null_ptid;
3304 p1++;
3305
3306 p = p1;
3307 }
3308 }
3309
3310 return null_ptid;
3311}
3312
49c62f2e
PA
3313/* Query the remote target for which is the current thread/process,
3314 add it to our tables, and update INFERIOR_PTID. The caller is
3315 responsible for setting the state such that the remote end is ready
3405876a
PA
3316 to return the current thread.
3317
3318 This function is called after handling the '?' or 'vRun' packets,
3319 whose response is a stop reply from which we can also try
3320 extracting the thread. If the target doesn't support the explicit
3321 qC query, we infer the current thread from that stop reply, passed
3322 in in WAIT_STATUS, which may be NULL. */
49c62f2e
PA
3323
3324static void
3405876a 3325add_current_inferior_and_thread (char *wait_status)
49c62f2e
PA
3326{
3327 struct remote_state *rs = get_remote_state ();
3328 int fake_pid_p = 0;
3405876a 3329 ptid_t ptid = null_ptid;
49c62f2e
PA
3330
3331 inferior_ptid = null_ptid;
3332
3405876a
PA
3333 /* Now, if we have thread information, update inferior_ptid. First
3334 if we have a stop reply handy, maybe it's a T stop reply with a
3335 "thread" register we can extract the current thread from. If
3336 not, ask the remote which is the current thread, with qC. The
3337 former method avoids a roundtrip. Note we don't use
3338 remote_parse_stop_reply as that makes use of the target
3339 architecture, which we haven't yet fully determined at this
3340 point. */
3341 if (wait_status != NULL)
3342 ptid = stop_reply_extract_thread (wait_status);
3343 if (ptid_equal (ptid, null_ptid))
3344 ptid = remote_current_thread (inferior_ptid);
3345
49c62f2e
PA
3346 if (!ptid_equal (ptid, null_ptid))
3347 {
3348 if (!remote_multi_process_p (rs))
3349 fake_pid_p = 1;
3350
3351 inferior_ptid = ptid;
3352 }
3353 else
3354 {
3355 /* Without this, some commands which require an active target
3356 (such as kill) won't work. This variable serves (at least)
3357 double duty as both the pid of the target process (if it has
3358 such), and as a flag indicating that a target is active. */
3359 inferior_ptid = magic_null_ptid;
3360 fake_pid_p = 1;
3361 }
3362
3363 remote_add_inferior (fake_pid_p, ptid_get_pid (inferior_ptid), -1);
3364
3365 /* Add the main thread. */
3366 add_thread_silent (inferior_ptid);
3367}
3368
9cbc821d 3369static void
04bd08de 3370remote_start_remote (int from_tty, struct target_ops *target, int extended_p)
c906108c 3371{
c8d104ad
PA
3372 struct remote_state *rs = get_remote_state ();
3373 struct packet_config *noack_config;
2d717e4f 3374 char *wait_status = NULL;
8621d6a9 3375
23860348 3376 immediate_quit++; /* Allow user to interrupt it. */
522002f9 3377 QUIT;
c906108c 3378
9a7071a8
JB
3379 if (interrupt_on_connect)
3380 send_interrupt_sequence ();
3381
57e12211 3382 /* Ack any packet which the remote side has already sent. */
5d93a237 3383 serial_write (rs->remote_desc, "+", 1);
57e12211 3384
1e51243a
PA
3385 /* Signal other parts that we're going through the initial setup,
3386 and so things may not be stable yet. */
3387 rs->starting_up = 1;
3388
c8d104ad
PA
3389 /* The first packet we send to the target is the optional "supported
3390 packets" request. If the target can answer this, it will tell us
3391 which later probes to skip. */
3392 remote_query_supported ();
3393
d914c394
SS
3394 /* If the stub wants to get a QAllow, compose one and send it. */
3395 if (remote_protocol_packets[PACKET_QAllow].support != PACKET_DISABLE)
3396 remote_set_permissions ();
3397
c8d104ad
PA
3398 /* Next, we possibly activate noack mode.
3399
3400 If the QStartNoAckMode packet configuration is set to AUTO,
3401 enable noack mode if the stub reported a wish for it with
3402 qSupported.
3403
3404 If set to TRUE, then enable noack mode even if the stub didn't
3405 report it in qSupported. If the stub doesn't reply OK, the
3406 session ends with an error.
3407
3408 If FALSE, then don't activate noack mode, regardless of what the
3409 stub claimed should be the default with qSupported. */
3410
3411 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
3412
3413 if (noack_config->detect == AUTO_BOOLEAN_TRUE
3414 || (noack_config->detect == AUTO_BOOLEAN_AUTO
3415 && noack_config->support == PACKET_ENABLE))
3416 {
3417 putpkt ("QStartNoAckMode");
3418 getpkt (&rs->buf, &rs->buf_size, 0);
3419 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
3420 rs->noack_mode = 1;
3421 }
3422
04bd08de 3423 if (extended_p)
5fe04517
PA
3424 {
3425 /* Tell the remote that we are using the extended protocol. */
3426 putpkt ("!");
3427 getpkt (&rs->buf, &rs->buf_size, 0);
3428 }
3429
9b224c5e
PA
3430 /* Let the target know which signals it is allowed to pass down to
3431 the program. */
3432 update_signals_program_target ();
3433
d962ef82
DJ
3434 /* Next, if the target can specify a description, read it. We do
3435 this before anything involving memory or registers. */
3436 target_find_description ();
3437
6c95b8df
PA
3438 /* Next, now that we know something about the target, update the
3439 address spaces in the program spaces. */
3440 update_address_spaces ();
3441
50c71eaf
PA
3442 /* On OSs where the list of libraries is global to all
3443 processes, we fetch them early. */
f5656ead 3444 if (gdbarch_has_global_solist (target_gdbarch ()))
04bd08de 3445 solib_add (NULL, from_tty, target, auto_solib_add);
50c71eaf 3446
74531fed
PA
3447 if (non_stop)
3448 {
3449 if (!rs->non_stop_aware)
3e43a32a
MS
3450 error (_("Non-stop mode requested, but remote "
3451 "does not support non-stop"));
74531fed
PA
3452
3453 putpkt ("QNonStop:1");
3454 getpkt (&rs->buf, &rs->buf_size, 0);
3455
3456 if (strcmp (rs->buf, "OK") != 0)
9b20d036 3457 error (_("Remote refused setting non-stop mode with: %s"), rs->buf);
74531fed
PA
3458
3459 /* Find about threads and processes the stub is already
3460 controlling. We default to adding them in the running state.
3461 The '?' query below will then tell us about which threads are
3462 stopped. */
04bd08de 3463 remote_threads_info (target);
74531fed
PA
3464 }
3465 else if (rs->non_stop_aware)
3466 {
3467 /* Don't assume that the stub can operate in all-stop mode.
e6f3fa52 3468 Request it explicitly. */
74531fed
PA
3469 putpkt ("QNonStop:0");
3470 getpkt (&rs->buf, &rs->buf_size, 0);
3471
3472 if (strcmp (rs->buf, "OK") != 0)
9b20d036 3473 error (_("Remote refused setting all-stop mode with: %s"), rs->buf);
74531fed
PA
3474 }
3475
a0743c90
YQ
3476 /* Upload TSVs regardless of whether the target is running or not. The
3477 remote stub, such as GDBserver, may have some predefined or builtin
3478 TSVs, even if the target is not running. */
3479 if (remote_get_trace_status (current_trace_status ()) != -1)
3480 {
3481 struct uploaded_tsv *uploaded_tsvs = NULL;
3482
3483 remote_upload_trace_state_variables (&uploaded_tsvs);
3484 merge_uploaded_trace_state_variables (&uploaded_tsvs);
3485 }
3486
2d717e4f
DJ
3487 /* Check whether the target is running now. */
3488 putpkt ("?");
3489 getpkt (&rs->buf, &rs->buf_size, 0);
3490
74531fed 3491 if (!non_stop)
2d717e4f 3492 {
e714e1bf
UW
3493 ptid_t ptid;
3494 int fake_pid_p = 0;
3495 struct inferior *inf;
3496
74531fed 3497 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 3498 {
04bd08de 3499 if (!extended_p)
74531fed 3500 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
3501
3502 /* We're connected, but not running. Drop out before we
3503 call start_remote. */
e278ad5b 3504 rs->starting_up = 0;
c35b1492 3505 return;
2d717e4f
DJ
3506 }
3507 else
74531fed 3508 {
74531fed
PA
3509 /* Save the reply for later. */
3510 wait_status = alloca (strlen (rs->buf) + 1);
3511 strcpy (wait_status, rs->buf);
3512 }
3513
3514 /* Let the stub know that we want it to return the thread. */
3515 set_continue_thread (minus_one_ptid);
3516
3405876a 3517 add_current_inferior_and_thread (wait_status);
74531fed 3518
6e586cc5
YQ
3519 /* init_wait_for_inferior should be called before get_offsets in order
3520 to manage `inserted' flag in bp loc in a correct state.
3521 breakpoint_init_inferior, called from init_wait_for_inferior, set
3522 `inserted' flag to 0, while before breakpoint_re_set, called from
3523 start_remote, set `inserted' flag to 1. In the initialization of
3524 inferior, breakpoint_init_inferior should be called first, and then
3525 breakpoint_re_set can be called. If this order is broken, state of
3526 `inserted' flag is wrong, and cause some problems on breakpoint
3527 manipulation. */
3528 init_wait_for_inferior ();
3529
74531fed
PA
3530 get_offsets (); /* Get text, data & bss offsets. */
3531
d962ef82
DJ
3532 /* If we could not find a description using qXfer, and we know
3533 how to do it some other way, try again. This is not
3534 supported for non-stop; it could be, but it is tricky if
3535 there are no stopped threads when we connect. */
04bd08de 3536 if (remote_read_description_p (target)
f5656ead 3537 && gdbarch_target_desc (target_gdbarch ()) == NULL)
d962ef82
DJ
3538 {
3539 target_clear_description ();
3540 target_find_description ();
3541 }
3542
74531fed
PA
3543 /* Use the previously fetched status. */
3544 gdb_assert (wait_status != NULL);
3545 strcpy (rs->buf, wait_status);
3546 rs->cached_wait_status = 1;
3547
3548 immediate_quit--;
04bd08de 3549 start_remote (from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
3550 }
3551 else
3552 {
68c97600
PA
3553 /* Clear WFI global state. Do this before finding about new
3554 threads and inferiors, and setting the current inferior.
3555 Otherwise we would clear the proceed status of the current
3556 inferior when we want its stop_soon state to be preserved
3557 (see notice_new_inferior). */
3558 init_wait_for_inferior ();
3559
74531fed
PA
3560 /* In non-stop, we will either get an "OK", meaning that there
3561 are no stopped threads at this time; or, a regular stop
3562 reply. In the latter case, there may be more than one thread
3563 stopped --- we pull them all out using the vStopped
3564 mechanism. */
3565 if (strcmp (rs->buf, "OK") != 0)
3566 {
722247f1 3567 struct notif_client *notif = &notif_client_stop;
2d717e4f 3568
722247f1
YQ
3569 /* remote_notif_get_pending_replies acks this one, and gets
3570 the rest out. */
f48ff2a7 3571 rs->notif_state->pending_event[notif_client_stop.id]
722247f1
YQ
3572 = remote_notif_parse (notif, rs->buf);
3573 remote_notif_get_pending_events (notif);
c906108c 3574
74531fed
PA
3575 /* Make sure that threads that were stopped remain
3576 stopped. */
3577 iterate_over_threads (set_stop_requested_callback, NULL);
3578 }
2d717e4f 3579
74531fed
PA
3580 if (target_can_async_p ())
3581 target_async (inferior_event_handler, 0);
c906108c 3582
74531fed
PA
3583 if (thread_count () == 0)
3584 {
04bd08de 3585 if (!extended_p)
74531fed 3586 error (_("The target is not running (try extended-remote?)"));
82f73884 3587
c35b1492
PA
3588 /* We're connected, but not running. Drop out before we
3589 call start_remote. */
e278ad5b 3590 rs->starting_up = 0;
c35b1492
PA
3591 return;
3592 }
74531fed
PA
3593
3594 /* Let the stub know that we want it to return the thread. */
c0a2216e 3595
74531fed
PA
3596 /* Force the stub to choose a thread. */
3597 set_general_thread (null_ptid);
c906108c 3598
74531fed
PA
3599 /* Query it. */
3600 inferior_ptid = remote_current_thread (minus_one_ptid);
3601 if (ptid_equal (inferior_ptid, minus_one_ptid))
3602 error (_("remote didn't report the current thread in non-stop mode"));
c906108c 3603
74531fed
PA
3604 get_offsets (); /* Get text, data & bss offsets. */
3605
3606 /* In non-stop mode, any cached wait status will be stored in
3607 the stop reply queue. */
3608 gdb_assert (wait_status == NULL);
f0223081 3609
2455069d
UW
3610 /* Report all signals during attach/startup. */
3611 remote_pass_signals (0, NULL);
74531fed 3612 }
c8d104ad 3613
c8d104ad
PA
3614 /* If we connected to a live target, do some additional setup. */
3615 if (target_has_execution)
3616 {
3617 if (exec_bfd) /* No use without an exec file. */
36d25514 3618 remote_check_symbols ();
c8d104ad 3619 }
50c71eaf 3620
d5551862
SS
3621 /* Possibly the target has been engaged in a trace run started
3622 previously; find out where things are at. */
26afc0d7 3623 if (remote_get_trace_status (current_trace_status ()) != -1)
d5551862 3624 {
00bf0b85 3625 struct uploaded_tp *uploaded_tps = NULL;
00bf0b85 3626
00bf0b85
SS
3627 if (current_trace_status ()->running)
3628 printf_filtered (_("Trace is already running on the target.\n"));
3629
00bf0b85
SS
3630 remote_upload_tracepoints (&uploaded_tps);
3631
3632 merge_uploaded_tracepoints (&uploaded_tps);
d5551862
SS
3633 }
3634
1e51243a
PA
3635 /* The thread and inferior lists are now synchronized with the
3636 target, our symbols have been relocated, and we're merged the
3637 target's tracepoints with ours. We're done with basic start
3638 up. */
3639 rs->starting_up = 0;
3640
2567c7d9 3641 /* If breakpoints are global, insert them now. */
f5656ead 3642 if (gdbarch_has_global_breakpoints (target_gdbarch ())
50c71eaf
PA
3643 && breakpoints_always_inserted_mode ())
3644 insert_breakpoints ();
c906108c
SS
3645}
3646
3647/* Open a connection to a remote debugger.
3648 NAME is the filename used for communication. */
3649
3650static void
fba45db2 3651remote_open (char *name, int from_tty)
c906108c 3652{
75c99385 3653 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
3654}
3655
c906108c
SS
3656/* Open a connection to a remote debugger using the extended
3657 remote gdb protocol. NAME is the filename used for communication. */
3658
3659static void
fba45db2 3660extended_remote_open (char *name, int from_tty)
c906108c 3661{
75c99385 3662 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
3663}
3664
c906108c
SS
3665/* Generic code for opening a connection to a remote target. */
3666
d471ea57
AC
3667static void
3668init_all_packet_configs (void)
3669{
3670 int i;
a744cf53 3671
444abaca
DJ
3672 for (i = 0; i < PACKET_MAX; i++)
3673 update_packet_config (&remote_protocol_packets[i]);
d471ea57
AC
3674}
3675
23860348 3676/* Symbol look-up. */
dc8acb97
MS
3677
3678static void
36d25514 3679remote_check_symbols (void)
dc8acb97 3680{
d01949b6 3681 struct remote_state *rs = get_remote_state ();
dc8acb97
MS
3682 char *msg, *reply, *tmp;
3683 struct minimal_symbol *sym;
3684 int end;
3685
63154eca
PA
3686 /* The remote side has no concept of inferiors that aren't running
3687 yet, it only knows about running processes. If we're connected
3688 but our current inferior is not running, we should not invite the
3689 remote target to request symbol lookups related to its
3690 (unrelated) current process. */
3691 if (!target_has_execution)
3692 return;
3693
444abaca 3694 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
dc8acb97
MS
3695 return;
3696
63154eca
PA
3697 /* Make sure the remote is pointing at the right process. Note
3698 there's no way to select "no process". */
3c9c4b83
PA
3699 set_general_process ();
3700
6d820c5c
DJ
3701 /* Allocate a message buffer. We can't reuse the input buffer in RS,
3702 because we need both at the same time. */
ea9c271d 3703 msg = alloca (get_remote_packet_size ());
6d820c5c 3704
23860348 3705 /* Invite target to request symbol lookups. */
dc8acb97
MS
3706
3707 putpkt ("qSymbol::");
6d820c5c
DJ
3708 getpkt (&rs->buf, &rs->buf_size, 0);
3709 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2e9f7625 3710 reply = rs->buf;
dc8acb97
MS
3711
3712 while (strncmp (reply, "qSymbol:", 8) == 0)
3713 {
3714 tmp = &reply[8];
cfd77fa1 3715 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
3716 msg[end] = '\0';
3717 sym = lookup_minimal_symbol (msg, NULL, NULL);
3718 if (sym == NULL)
ea9c271d 3719 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 3720 else
2bbe3cc1 3721 {
f5656ead 3722 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
2bbe3cc1
DJ
3723 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
3724
3725 /* If this is a function address, return the start of code
3726 instead of any data function descriptor. */
f5656ead 3727 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch (),
2bbe3cc1
DJ
3728 sym_addr,
3729 &current_target);
3730
3731 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 3732 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
3733 }
3734
dc8acb97 3735 putpkt (msg);
6d820c5c 3736 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3737 reply = rs->buf;
dc8acb97
MS
3738 }
3739}
3740
9db8d71f
DJ
3741static struct serial *
3742remote_serial_open (char *name)
3743{
3744 static int udp_warning = 0;
3745
3746 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
3747 of in ser-tcp.c, because it is the remote protocol assuming that the
3748 serial connection is reliable and not the serial connection promising
3749 to be. */
3750 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
3751 {
3e43a32a
MS
3752 warning (_("The remote protocol may be unreliable over UDP.\n"
3753 "Some events may be lost, rendering further debugging "
3754 "impossible."));
9db8d71f
DJ
3755 udp_warning = 1;
3756 }
3757
3758 return serial_open (name);
3759}
3760
d914c394
SS
3761/* Inform the target of our permission settings. The permission flags
3762 work without this, but if the target knows the settings, it can do
3763 a couple things. First, it can add its own check, to catch cases
3764 that somehow manage to get by the permissions checks in target
3765 methods. Second, if the target is wired to disallow particular
3766 settings (for instance, a system in the field that is not set up to
3767 be able to stop at a breakpoint), it can object to any unavailable
3768 permissions. */
3769
3770void
3771remote_set_permissions (void)
3772{
3773 struct remote_state *rs = get_remote_state ();
3774
bba74b36
YQ
3775 xsnprintf (rs->buf, get_remote_packet_size (), "QAllow:"
3776 "WriteReg:%x;WriteMem:%x;"
3777 "InsertBreak:%x;InsertTrace:%x;"
3778 "InsertFastTrace:%x;Stop:%x",
3779 may_write_registers, may_write_memory,
3780 may_insert_breakpoints, may_insert_tracepoints,
3781 may_insert_fast_tracepoints, may_stop);
d914c394
SS
3782 putpkt (rs->buf);
3783 getpkt (&rs->buf, &rs->buf_size, 0);
3784
3785 /* If the target didn't like the packet, warn the user. Do not try
3786 to undo the user's settings, that would just be maddening. */
3787 if (strcmp (rs->buf, "OK") != 0)
7ea6d463 3788 warning (_("Remote refused setting permissions with: %s"), rs->buf);
d914c394
SS
3789}
3790
be2a5f71
DJ
3791/* This type describes each known response to the qSupported
3792 packet. */
3793struct protocol_feature
3794{
3795 /* The name of this protocol feature. */
3796 const char *name;
3797
3798 /* The default for this protocol feature. */
3799 enum packet_support default_support;
3800
3801 /* The function to call when this feature is reported, or after
3802 qSupported processing if the feature is not supported.
3803 The first argument points to this structure. The second
3804 argument indicates whether the packet requested support be
3805 enabled, disabled, or probed (or the default, if this function
3806 is being called at the end of processing and this feature was
3807 not reported). The third argument may be NULL; if not NULL, it
3808 is a NUL-terminated string taken from the packet following
3809 this feature's name and an equals sign. */
3810 void (*func) (const struct protocol_feature *, enum packet_support,
3811 const char *);
3812
3813 /* The corresponding packet for this feature. Only used if
3814 FUNC is remote_supported_packet. */
3815 int packet;
3816};
3817
be2a5f71
DJ
3818static void
3819remote_supported_packet (const struct protocol_feature *feature,
3820 enum packet_support support,
3821 const char *argument)
3822{
3823 if (argument)
3824 {
3825 warning (_("Remote qSupported response supplied an unexpected value for"
3826 " \"%s\"."), feature->name);
3827 return;
3828 }
3829
3830 if (remote_protocol_packets[feature->packet].support
3831 == PACKET_SUPPORT_UNKNOWN)
3832 remote_protocol_packets[feature->packet].support = support;
3833}
be2a5f71
DJ
3834
3835static void
3836remote_packet_size (const struct protocol_feature *feature,
3837 enum packet_support support, const char *value)
3838{
3839 struct remote_state *rs = get_remote_state ();
3840
3841 int packet_size;
3842 char *value_end;
3843
3844 if (support != PACKET_ENABLE)
3845 return;
3846
3847 if (value == NULL || *value == '\0')
3848 {
3849 warning (_("Remote target reported \"%s\" without a size."),
3850 feature->name);
3851 return;
3852 }
3853
3854 errno = 0;
3855 packet_size = strtol (value, &value_end, 16);
3856 if (errno != 0 || *value_end != '\0' || packet_size < 0)
3857 {
3858 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
3859 feature->name, value);
3860 return;
3861 }
3862
3863 if (packet_size > MAX_REMOTE_PACKET_SIZE)
3864 {
3865 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
3866 packet_size, MAX_REMOTE_PACKET_SIZE);
3867 packet_size = MAX_REMOTE_PACKET_SIZE;
3868 }
3869
3870 /* Record the new maximum packet size. */
3871 rs->explicit_packet_size = packet_size;
3872}
3873
82f73884
PA
3874static void
3875remote_multi_process_feature (const struct protocol_feature *feature,
3876 enum packet_support support, const char *value)
3877{
3878 struct remote_state *rs = get_remote_state ();
a744cf53 3879
82f73884
PA
3880 rs->multi_process_aware = (support == PACKET_ENABLE);
3881}
3882
74531fed
PA
3883static void
3884remote_non_stop_feature (const struct protocol_feature *feature,
3885 enum packet_support support, const char *value)
3886{
3887 struct remote_state *rs = get_remote_state ();
a744cf53 3888
74531fed
PA
3889 rs->non_stop_aware = (support == PACKET_ENABLE);
3890}
3891
782b2b07
SS
3892static void
3893remote_cond_tracepoint_feature (const struct protocol_feature *feature,
3894 enum packet_support support,
3895 const char *value)
3896{
3897 struct remote_state *rs = get_remote_state ();
a744cf53 3898
782b2b07
SS
3899 rs->cond_tracepoints = (support == PACKET_ENABLE);
3900}
3901
3788aec7
LM
3902static void
3903remote_cond_breakpoint_feature (const struct protocol_feature *feature,
3904 enum packet_support support,
3905 const char *value)
3906{
3907 struct remote_state *rs = get_remote_state ();
3908
3909 rs->cond_breakpoints = (support == PACKET_ENABLE);
3910}
3911
d3ce09f5
SS
3912static void
3913remote_breakpoint_commands_feature (const struct protocol_feature *feature,
3914 enum packet_support support,
3915 const char *value)
3916{
3917 struct remote_state *rs = get_remote_state ();
3918
3919 rs->breakpoint_commands = (support == PACKET_ENABLE);
3920}
3921
7a697b8d
SS
3922static void
3923remote_fast_tracepoint_feature (const struct protocol_feature *feature,
3924 enum packet_support support,
3925 const char *value)
3926{
3927 struct remote_state *rs = get_remote_state ();
a744cf53 3928
7a697b8d
SS
3929 rs->fast_tracepoints = (support == PACKET_ENABLE);
3930}
3931
0fb4aa4b
PA
3932static void
3933remote_static_tracepoint_feature (const struct protocol_feature *feature,
3934 enum packet_support support,
3935 const char *value)
3936{
3937 struct remote_state *rs = get_remote_state ();
3938
3939 rs->static_tracepoints = (support == PACKET_ENABLE);
3940}
3941
1e4d1764
YQ
3942static void
3943remote_install_in_trace_feature (const struct protocol_feature *feature,
3944 enum packet_support support,
3945 const char *value)
3946{
3947 struct remote_state *rs = get_remote_state ();
3948
3949 rs->install_in_trace = (support == PACKET_ENABLE);
3950}
3951
d5551862
SS
3952static void
3953remote_disconnected_tracing_feature (const struct protocol_feature *feature,
3954 enum packet_support support,
3955 const char *value)
3956{
3957 struct remote_state *rs = get_remote_state ();
a744cf53 3958
d5551862
SS
3959 rs->disconnected_tracing = (support == PACKET_ENABLE);
3960}
3961
d248b706
KY
3962static void
3963remote_enable_disable_tracepoint_feature (const struct protocol_feature *feature,
3964 enum packet_support support,
3965 const char *value)
3966{
3967 struct remote_state *rs = get_remote_state ();
3968
3969 rs->enable_disable_tracepoints = (support == PACKET_ENABLE);
3970}
3971
3065dfb6
SS
3972static void
3973remote_string_tracing_feature (const struct protocol_feature *feature,
3974 enum packet_support support,
3975 const char *value)
3976{
3977 struct remote_state *rs = get_remote_state ();
3978
3979 rs->string_tracing = (support == PACKET_ENABLE);
3980}
3981
ced63ec0
GB
3982static void
3983remote_augmented_libraries_svr4_read_feature
3984 (const struct protocol_feature *feature,
3985 enum packet_support support, const char *value)
3986{
3987 struct remote_state *rs = get_remote_state ();
3988
3989 rs->augmented_libraries_svr4_read = (support == PACKET_ENABLE);
3990}
3991
dc473cfb 3992static const struct protocol_feature remote_protocol_features[] = {
0876f84a 3993 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 3994 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 3995 PACKET_qXfer_auxv },
23181151
DJ
3996 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3997 PACKET_qXfer_features },
cfa9d6d9
DJ
3998 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3999 PACKET_qXfer_libraries },
2268b414
JK
4000 { "qXfer:libraries-svr4:read", PACKET_DISABLE, remote_supported_packet,
4001 PACKET_qXfer_libraries_svr4 },
ced63ec0
GB
4002 { "augmented-libraries-svr4-read", PACKET_DISABLE,
4003 remote_augmented_libraries_svr4_read_feature, -1 },
fd79ecee 4004 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 4005 PACKET_qXfer_memory_map },
4de6483e
UW
4006 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
4007 PACKET_qXfer_spu_read },
4008 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
4009 PACKET_qXfer_spu_write },
07e059b5
VP
4010 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
4011 PACKET_qXfer_osdata },
dc146f7c
VP
4012 { "qXfer:threads:read", PACKET_DISABLE, remote_supported_packet,
4013 PACKET_qXfer_threads },
b3b9301e
PA
4014 { "qXfer:traceframe-info:read", PACKET_DISABLE, remote_supported_packet,
4015 PACKET_qXfer_traceframe_info },
89be2091
DJ
4016 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
4017 PACKET_QPassSignals },
9b224c5e
PA
4018 { "QProgramSignals", PACKET_DISABLE, remote_supported_packet,
4019 PACKET_QProgramSignals },
a6f3e723
SL
4020 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
4021 PACKET_QStartNoAckMode },
82f73884 4022 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
74531fed 4023 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
4aa995e1
PA
4024 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
4025 PACKET_qXfer_siginfo_read },
4026 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
4027 PACKET_qXfer_siginfo_write },
782b2b07
SS
4028 { "ConditionalTracepoints", PACKET_DISABLE, remote_cond_tracepoint_feature,
4029 PACKET_ConditionalTracepoints },
3788aec7
LM
4030 { "ConditionalBreakpoints", PACKET_DISABLE, remote_cond_breakpoint_feature,
4031 PACKET_ConditionalBreakpoints },
d3ce09f5
SS
4032 { "BreakpointCommands", PACKET_DISABLE, remote_breakpoint_commands_feature,
4033 PACKET_BreakpointCommands },
7a697b8d
SS
4034 { "FastTracepoints", PACKET_DISABLE, remote_fast_tracepoint_feature,
4035 PACKET_FastTracepoints },
0fb4aa4b
PA
4036 { "StaticTracepoints", PACKET_DISABLE, remote_static_tracepoint_feature,
4037 PACKET_StaticTracepoints },
1e4d1764
YQ
4038 {"InstallInTrace", PACKET_DISABLE, remote_install_in_trace_feature,
4039 PACKET_InstallInTrace},
d5551862
SS
4040 { "DisconnectedTracing", PACKET_DISABLE, remote_disconnected_tracing_feature,
4041 -1 },
40ab02ce
MS
4042 { "ReverseContinue", PACKET_DISABLE, remote_supported_packet,
4043 PACKET_bc },
4044 { "ReverseStep", PACKET_DISABLE, remote_supported_packet,
4045 PACKET_bs },
409873ef
SS
4046 { "TracepointSource", PACKET_DISABLE, remote_supported_packet,
4047 PACKET_TracepointSource },
d914c394
SS
4048 { "QAllow", PACKET_DISABLE, remote_supported_packet,
4049 PACKET_QAllow },
d248b706
KY
4050 { "EnableDisableTracepoints", PACKET_DISABLE,
4051 remote_enable_disable_tracepoint_feature, -1 },
78d85199
YQ
4052 { "qXfer:fdpic:read", PACKET_DISABLE, remote_supported_packet,
4053 PACKET_qXfer_fdpic },
169081d0
TG
4054 { "qXfer:uib:read", PACKET_DISABLE, remote_supported_packet,
4055 PACKET_qXfer_uib },
03583c20
UW
4056 { "QDisableRandomization", PACKET_DISABLE, remote_supported_packet,
4057 PACKET_QDisableRandomization },
d1feda86 4058 { "QAgent", PACKET_DISABLE, remote_supported_packet, PACKET_QAgent},
f6f899bf
HAQ
4059 { "QTBuffer:size", PACKET_DISABLE,
4060 remote_supported_packet, PACKET_QTBuffer_size},
3065dfb6
SS
4061 { "tracenz", PACKET_DISABLE,
4062 remote_string_tracing_feature, -1 },
9accd112
MM
4063 { "Qbtrace:off", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_off },
4064 { "Qbtrace:bts", PACKET_DISABLE, remote_supported_packet, PACKET_Qbtrace_bts },
4065 { "qXfer:btrace:read", PACKET_DISABLE, remote_supported_packet,
4066 PACKET_qXfer_btrace }
be2a5f71
DJ
4067};
4068
c8d5aac9
L
4069static char *remote_support_xml;
4070
4071/* Register string appended to "xmlRegisters=" in qSupported query. */
4072
4073void
6e39997a 4074register_remote_support_xml (const char *xml)
c8d5aac9
L
4075{
4076#if defined(HAVE_LIBEXPAT)
4077 if (remote_support_xml == NULL)
c4f7c687 4078 remote_support_xml = concat ("xmlRegisters=", xml, (char *) NULL);
c8d5aac9
L
4079 else
4080 {
4081 char *copy = xstrdup (remote_support_xml + 13);
4082 char *p = strtok (copy, ",");
4083
4084 do
4085 {
4086 if (strcmp (p, xml) == 0)
4087 {
4088 /* already there */
4089 xfree (copy);
4090 return;
4091 }
4092 }
4093 while ((p = strtok (NULL, ",")) != NULL);
4094 xfree (copy);
4095
94b0dee1
PA
4096 remote_support_xml = reconcat (remote_support_xml,
4097 remote_support_xml, ",", xml,
4098 (char *) NULL);
c8d5aac9
L
4099 }
4100#endif
4101}
4102
4103static char *
4104remote_query_supported_append (char *msg, const char *append)
4105{
4106 if (msg)
94b0dee1 4107 return reconcat (msg, msg, ";", append, (char *) NULL);
c8d5aac9
L
4108 else
4109 return xstrdup (append);
4110}
4111
be2a5f71
DJ
4112static void
4113remote_query_supported (void)
4114{
4115 struct remote_state *rs = get_remote_state ();
4116 char *next;
4117 int i;
4118 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
4119
4120 /* The packet support flags are handled differently for this packet
4121 than for most others. We treat an error, a disabled packet, and
4122 an empty response identically: any features which must be reported
4123 to be used will be automatically disabled. An empty buffer
4124 accomplishes this, since that is also the representation for a list
4125 containing no features. */
4126
4127 rs->buf[0] = 0;
4128 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
4129 {
c8d5aac9 4130 char *q = NULL;
94b0dee1 4131 struct cleanup *old_chain = make_cleanup (free_current_contents, &q);
c8d5aac9 4132
901f9912 4133 q = remote_query_supported_append (q, "multiprocess+");
c8d5aac9
L
4134
4135 if (remote_support_xml)
4136 q = remote_query_supported_append (q, remote_support_xml);
4137
dde08ee1
PA
4138 q = remote_query_supported_append (q, "qRelocInsn+");
4139
4140 q = reconcat (q, "qSupported:", q, (char *) NULL);
4141 putpkt (q);
82f73884 4142
94b0dee1
PA
4143 do_cleanups (old_chain);
4144
be2a5f71
DJ
4145 getpkt (&rs->buf, &rs->buf_size, 0);
4146
4147 /* If an error occured, warn, but do not return - just reset the
4148 buffer to empty and go on to disable features. */
4149 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
4150 == PACKET_ERROR)
4151 {
4152 warning (_("Remote failure reply: %s"), rs->buf);
4153 rs->buf[0] = 0;
4154 }
4155 }
4156
4157 memset (seen, 0, sizeof (seen));
4158
4159 next = rs->buf;
4160 while (*next)
4161 {
4162 enum packet_support is_supported;
4163 char *p, *end, *name_end, *value;
4164
4165 /* First separate out this item from the rest of the packet. If
4166 there's another item after this, we overwrite the separator
4167 (terminated strings are much easier to work with). */
4168 p = next;
4169 end = strchr (p, ';');
4170 if (end == NULL)
4171 {
4172 end = p + strlen (p);
4173 next = end;
4174 }
4175 else
4176 {
89be2091
DJ
4177 *end = '\0';
4178 next = end + 1;
4179
be2a5f71
DJ
4180 if (end == p)
4181 {
4182 warning (_("empty item in \"qSupported\" response"));
4183 continue;
4184 }
be2a5f71
DJ
4185 }
4186
4187 name_end = strchr (p, '=');
4188 if (name_end)
4189 {
4190 /* This is a name=value entry. */
4191 is_supported = PACKET_ENABLE;
4192 value = name_end + 1;
4193 *name_end = '\0';
4194 }
4195 else
4196 {
4197 value = NULL;
4198 switch (end[-1])
4199 {
4200 case '+':
4201 is_supported = PACKET_ENABLE;
4202 break;
4203
4204 case '-':
4205 is_supported = PACKET_DISABLE;
4206 break;
4207
4208 case '?':
4209 is_supported = PACKET_SUPPORT_UNKNOWN;
4210 break;
4211
4212 default:
3e43a32a
MS
4213 warning (_("unrecognized item \"%s\" "
4214 "in \"qSupported\" response"), p);
be2a5f71
DJ
4215 continue;
4216 }
4217 end[-1] = '\0';
4218 }
4219
4220 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4221 if (strcmp (remote_protocol_features[i].name, p) == 0)
4222 {
4223 const struct protocol_feature *feature;
4224
4225 seen[i] = 1;
4226 feature = &remote_protocol_features[i];
4227 feature->func (feature, is_supported, value);
4228 break;
4229 }
4230 }
4231
4232 /* If we increased the packet size, make sure to increase the global
4233 buffer size also. We delay this until after parsing the entire
4234 qSupported packet, because this is the same buffer we were
4235 parsing. */
4236 if (rs->buf_size < rs->explicit_packet_size)
4237 {
4238 rs->buf_size = rs->explicit_packet_size;
4239 rs->buf = xrealloc (rs->buf, rs->buf_size);
4240 }
4241
4242 /* Handle the defaults for unmentioned features. */
4243 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
4244 if (!seen[i])
4245 {
4246 const struct protocol_feature *feature;
4247
4248 feature = &remote_protocol_features[i];
4249 feature->func (feature, feature->default_support, NULL);
4250 }
4251}
4252
78a095c3
JK
4253/* Remove any of the remote.c targets from target stack. Upper targets depend
4254 on it so remove them first. */
4255
4256static void
4257remote_unpush_target (void)
4258{
4259 pop_all_targets_above (process_stratum - 1);
4260}
be2a5f71 4261
c906108c 4262static void
3e43a32a
MS
4263remote_open_1 (char *name, int from_tty,
4264 struct target_ops *target, int extended_p)
c906108c 4265{
d01949b6 4266 struct remote_state *rs = get_remote_state ();
a6f3e723 4267
c906108c 4268 if (name == 0)
8a3fe4f8 4269 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 4270 "serial device is attached to the remote system\n"
8a3fe4f8 4271 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 4272
23860348 4273 /* See FIXME above. */
c6ebd6cf 4274 if (!target_async_permitted)
92d1e331 4275 wait_forever_enabled_p = 1;
6426a772 4276
2d717e4f 4277 /* If we're connected to a running target, target_preopen will kill it.
78a095c3
JK
4278 Ask this question first, before target_preopen has a chance to kill
4279 anything. */
5d93a237 4280 if (rs->remote_desc != NULL && !have_inferiors ())
2d717e4f 4281 {
78a095c3
JK
4282 if (from_tty
4283 && !query (_("Already connected to a remote target. Disconnect? ")))
2d717e4f
DJ
4284 error (_("Still connected."));
4285 }
4286
78a095c3 4287 /* Here the possibly existing remote target gets unpushed. */
c906108c
SS
4288 target_preopen (from_tty);
4289
89be2091 4290 /* Make sure we send the passed signals list the next time we resume. */
747dc59d
TT
4291 xfree (rs->last_pass_packet);
4292 rs->last_pass_packet = NULL;
89be2091 4293
9b224c5e
PA
4294 /* Make sure we send the program signals list the next time we
4295 resume. */
5e4a05c4
TT
4296 xfree (rs->last_program_signals_packet);
4297 rs->last_program_signals_packet = NULL;
9b224c5e 4298
ad9a8f3f 4299 remote_fileio_reset ();
1dd41f16
NS
4300 reopen_exec_file ();
4301 reread_symbols ();
4302
5d93a237
TT
4303 rs->remote_desc = remote_serial_open (name);
4304 if (!rs->remote_desc)
c906108c
SS
4305 perror_with_name (name);
4306
4307 if (baud_rate != -1)
4308 {
5d93a237 4309 if (serial_setbaudrate (rs->remote_desc, baud_rate))
c906108c 4310 {
9b74d5d3
KB
4311 /* The requested speed could not be set. Error out to
4312 top level after closing remote_desc. Take care to
4313 set remote_desc to NULL to avoid closing remote_desc
4314 more than once. */
5d93a237
TT
4315 serial_close (rs->remote_desc);
4316 rs->remote_desc = NULL;
c906108c
SS
4317 perror_with_name (name);
4318 }
4319 }
4320
5d93a237 4321 serial_raw (rs->remote_desc);
c906108c
SS
4322
4323 /* If there is something sitting in the buffer we might take it as a
4324 response to a command, which would be bad. */
5d93a237 4325 serial_flush_input (rs->remote_desc);
c906108c
SS
4326
4327 if (from_tty)
4328 {
4329 puts_filtered ("Remote debugging using ");
4330 puts_filtered (name);
4331 puts_filtered ("\n");
4332 }
23860348 4333 push_target (target); /* Switch to using remote target now. */
c906108c 4334
74531fed
PA
4335 /* Register extra event sources in the event loop. */
4336 remote_async_inferior_event_token
4337 = create_async_event_handler (remote_async_inferior_event_handler,
4338 NULL);
5965e028 4339 rs->notif_state = remote_notif_state_allocate ();
74531fed 4340
be2a5f71
DJ
4341 /* Reset the target state; these things will be queried either by
4342 remote_query_supported or as they are needed. */
d471ea57 4343 init_all_packet_configs ();
74531fed 4344 rs->cached_wait_status = 0;
be2a5f71 4345 rs->explicit_packet_size = 0;
a6f3e723 4346 rs->noack_mode = 0;
82f73884
PA
4347 rs->multi_process_aware = 0;
4348 rs->extended = extended_p;
74531fed 4349 rs->non_stop_aware = 0;
e24a49d8 4350 rs->waiting_for_stop_reply = 0;
3a29589a 4351 rs->ctrlc_pending_p = 0;
802188a7 4352
47f8a51d
TT
4353 rs->general_thread = not_sent_ptid;
4354 rs->continue_thread = not_sent_ptid;
262e1174 4355 rs->remote_traceframe_number = -1;
c906108c 4356
9d1f7ab2 4357 /* Probe for ability to use "ThreadInfo" query, as required. */
b80fafe3
TT
4358 rs->use_threadinfo_query = 1;
4359 rs->use_threadextra_query = 1;
9d1f7ab2 4360
c6ebd6cf 4361 if (target_async_permitted)
92d1e331 4362 {
23860348 4363 /* With this target we start out by owning the terminal. */
92d1e331
DJ
4364 remote_async_terminal_ours_p = 1;
4365
4366 /* FIXME: cagney/1999-09-23: During the initial connection it is
4367 assumed that the target is already ready and able to respond to
0df8b418 4368 requests. Unfortunately remote_start_remote() eventually calls
92d1e331 4369 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
0df8b418 4370 around this. Eventually a mechanism that allows
92d1e331 4371 wait_for_inferior() to expect/get timeouts will be
23860348 4372 implemented. */
92d1e331
DJ
4373 wait_forever_enabled_p = 0;
4374 }
4375
23860348 4376 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 4377 no_shared_libraries (NULL, 0);
f78f6cf1 4378
74531fed
PA
4379 /* Start afresh. */
4380 init_thread_list ();
4381
36918e70 4382 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
4383 target (we'd otherwise be in an inconsistent state) and then
4384 propogate the error on up the exception chain. This ensures that
4385 the caller doesn't stumble along blindly assuming that the
4386 function succeeded. The CLI doesn't have this problem but other
4387 UI's, such as MI do.
36918e70
AC
4388
4389 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
4390 this function should return an error indication letting the
ce2826aa 4391 caller restore the previous state. Unfortunately the command
36918e70
AC
4392 ``target remote'' is directly wired to this function making that
4393 impossible. On a positive note, the CLI side of this problem has
4394 been fixed - the function set_cmd_context() makes it possible for
4395 all the ``target ....'' commands to share a common callback
4396 function. See cli-dump.c. */
109c3e39 4397 {
04bd08de 4398 volatile struct gdb_exception ex;
2d717e4f 4399
04bd08de
TT
4400 TRY_CATCH (ex, RETURN_MASK_ALL)
4401 {
4402 remote_start_remote (from_tty, target, extended_p);
4403 }
109c3e39
AC
4404 if (ex.reason < 0)
4405 {
c8d104ad
PA
4406 /* Pop the partially set up target - unless something else did
4407 already before throwing the exception. */
5d93a237 4408 if (rs->remote_desc != NULL)
78a095c3 4409 remote_unpush_target ();
c6ebd6cf 4410 if (target_async_permitted)
109c3e39
AC
4411 wait_forever_enabled_p = 1;
4412 throw_exception (ex);
4413 }
4414 }
c906108c 4415
c6ebd6cf 4416 if (target_async_permitted)
92d1e331 4417 wait_forever_enabled_p = 1;
43ff13b4
JM
4418}
4419
c906108c
SS
4420/* This takes a program previously attached to and detaches it. After
4421 this is done, GDB can be used to debug some other program. We
4422 better not have left any breakpoints in the target program or it'll
4423 die when it hits one. */
4424
4425static void
52554a0e 4426remote_detach_1 (const char *args, int from_tty, int extended)
c906108c 4427{
82f73884 4428 int pid = ptid_get_pid (inferior_ptid);
d01949b6 4429 struct remote_state *rs = get_remote_state ();
c906108c
SS
4430
4431 if (args)
8a3fe4f8 4432 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 4433
2d717e4f
DJ
4434 if (!target_has_execution)
4435 error (_("No process to detach from."));
4436
7cee1e54
PA
4437 if (from_tty)
4438 {
4439 char *exec_file = get_exec_file (0);
4440 if (exec_file == NULL)
4441 exec_file = "";
4442 printf_unfiltered (_("Detaching from program: %s, %s\n"), exec_file,
4443 target_pid_to_str (pid_to_ptid (pid)));
4444 gdb_flush (gdb_stdout);
4445 }
4446
c906108c 4447 /* Tell the remote target to detach. */
82f73884 4448 if (remote_multi_process_p (rs))
bba74b36 4449 xsnprintf (rs->buf, get_remote_packet_size (), "D;%x", pid);
82f73884
PA
4450 else
4451 strcpy (rs->buf, "D");
4452
4ddda9b5
PA
4453 putpkt (rs->buf);
4454 getpkt (&rs->buf, &rs->buf_size, 0);
4455
82f73884
PA
4456 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
4457 ;
4458 else if (rs->buf[0] == '\0')
4459 error (_("Remote doesn't know how to detach"));
4460 else
4ddda9b5 4461 error (_("Can't detach process."));
c906108c 4462
7cee1e54
PA
4463 if (from_tty && !extended)
4464 puts_filtered (_("Ending remote debugging.\n"));
82f73884 4465
82f73884 4466 target_mourn_inferior ();
2d717e4f
DJ
4467}
4468
4469static void
52554a0e 4470remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f
DJ
4471{
4472 remote_detach_1 (args, from_tty, 0);
4473}
4474
4475static void
52554a0e 4476extended_remote_detach (struct target_ops *ops, const char *args, int from_tty)
2d717e4f
DJ
4477{
4478 remote_detach_1 (args, from_tty, 1);
c906108c
SS
4479}
4480
6ad8ae5c
DJ
4481/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
4482
43ff13b4 4483static void
597320e7 4484remote_disconnect (struct target_ops *target, char *args, int from_tty)
43ff13b4 4485{
43ff13b4 4486 if (args)
2d717e4f 4487 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 4488
2d717e4f
DJ
4489 /* Make sure we unpush even the extended remote targets; mourn
4490 won't do it. So call remote_mourn_1 directly instead of
4491 target_mourn_inferior. */
4492 remote_mourn_1 (target);
4493
43ff13b4
JM
4494 if (from_tty)
4495 puts_filtered ("Ending remote debugging.\n");
4496}
4497
2d717e4f
DJ
4498/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
4499 be chatty about it. */
4500
4501static void
4502extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
4503{
4504 struct remote_state *rs = get_remote_state ();
be86555c 4505 int pid;
96ef3384 4506 char *wait_status = NULL;
2d717e4f 4507
74164c56 4508 pid = parse_pid_to_attach (args);
2d717e4f 4509
74164c56
JK
4510 /* Remote PID can be freely equal to getpid, do not check it here the same
4511 way as in other targets. */
2d717e4f
DJ
4512
4513 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4514 error (_("This target does not support attaching to a process"));
4515
7cee1e54
PA
4516 if (from_tty)
4517 {
4518 char *exec_file = get_exec_file (0);
4519
4520 if (exec_file)
4521 printf_unfiltered (_("Attaching to program: %s, %s\n"), exec_file,
4522 target_pid_to_str (pid_to_ptid (pid)));
4523 else
4524 printf_unfiltered (_("Attaching to %s\n"),
4525 target_pid_to_str (pid_to_ptid (pid)));
4526
4527 gdb_flush (gdb_stdout);
4528 }
4529
bba74b36 4530 xsnprintf (rs->buf, get_remote_packet_size (), "vAttach;%x", pid);
2d717e4f
DJ
4531 putpkt (rs->buf);
4532 getpkt (&rs->buf, &rs->buf_size, 0);
4533
3e43a32a
MS
4534 if (packet_ok (rs->buf,
4535 &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
2d717e4f 4536 {
74531fed
PA
4537 if (!non_stop)
4538 {
4539 /* Save the reply for later. */
4540 wait_status = alloca (strlen (rs->buf) + 1);
4541 strcpy (wait_status, rs->buf);
4542 }
4543 else if (strcmp (rs->buf, "OK") != 0)
4544 error (_("Attaching to %s failed with: %s"),
4545 target_pid_to_str (pid_to_ptid (pid)),
4546 rs->buf);
2d717e4f
DJ
4547 }
4548 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
4549 error (_("This target does not support attaching to a process"));
4550 else
4551 error (_("Attaching to %s failed"),
4552 target_pid_to_str (pid_to_ptid (pid)));
4553
49c62f2e 4554 set_current_inferior (remote_add_inferior (0, pid, 1));
bad34192 4555
2d717e4f 4556 inferior_ptid = pid_to_ptid (pid);
79d7f229 4557
bad34192
PA
4558 if (non_stop)
4559 {
4560 struct thread_info *thread;
79d7f229 4561
bad34192
PA
4562 /* Get list of threads. */
4563 remote_threads_info (target);
82f73884 4564
bad34192
PA
4565 thread = first_thread_of_process (pid);
4566 if (thread)
4567 inferior_ptid = thread->ptid;
4568 else
4569 inferior_ptid = pid_to_ptid (pid);
4570
4571 /* Invalidate our notion of the remote current thread. */
47f8a51d 4572 record_currthread (rs, minus_one_ptid);
bad34192 4573 }
74531fed 4574 else
bad34192
PA
4575 {
4576 /* Now, if we have thread information, update inferior_ptid. */
4577 inferior_ptid = remote_current_thread (inferior_ptid);
4578
4579 /* Add the main thread to the thread list. */
4580 add_thread_silent (inferior_ptid);
4581 }
c0a2216e 4582
96ef3384
UW
4583 /* Next, if the target can specify a description, read it. We do
4584 this before anything involving memory or registers. */
4585 target_find_description ();
4586
74531fed
PA
4587 if (!non_stop)
4588 {
4589 /* Use the previously fetched status. */
4590 gdb_assert (wait_status != NULL);
4591
4592 if (target_can_async_p ())
4593 {
722247f1
YQ
4594 struct notif_event *reply
4595 = remote_notif_parse (&notif_client_stop, wait_status);
74531fed 4596
722247f1 4597 push_stop_reply ((struct stop_reply *) reply);
74531fed
PA
4598
4599 target_async (inferior_event_handler, 0);
4600 }
4601 else
4602 {
4603 gdb_assert (wait_status != NULL);
4604 strcpy (rs->buf, wait_status);
4605 rs->cached_wait_status = 1;
4606 }
4607 }
4608 else
4609 gdb_assert (wait_status == NULL);
2d717e4f
DJ
4610}
4611
4612static void
136d6dae 4613extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
2d717e4f 4614{
136d6dae 4615 extended_remote_attach_1 (ops, args, from_tty);
2d717e4f
DJ
4616}
4617
c906108c
SS
4618/* Convert hex digit A to a number. */
4619
30559e10 4620static int
fba45db2 4621fromhex (int a)
c906108c
SS
4622{
4623 if (a >= '0' && a <= '9')
4624 return a - '0';
4625 else if (a >= 'a' && a <= 'f')
4626 return a - 'a' + 10;
4627 else if (a >= 'A' && a <= 'F')
4628 return a - 'A' + 10;
c5aa993b 4629 else
8a3fe4f8 4630 error (_("Reply contains invalid hex digit %d"), a);
c906108c
SS
4631}
4632
00bf0b85 4633int
cfd77fa1 4634hex2bin (const char *hex, gdb_byte *bin, int count)
30559e10
MS
4635{
4636 int i;
4637
30559e10
MS
4638 for (i = 0; i < count; i++)
4639 {
4640 if (hex[0] == 0 || hex[1] == 0)
4641 {
4642 /* Hex string is short, or of uneven length.
23860348 4643 Return the count that has been converted so far. */
30559e10
MS
4644 return i;
4645 }
4646 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
4647 hex += 2;
4648 }
4649 return i;
4650}
4651
c906108c
SS
4652/* Convert number NIB to a hex digit. */
4653
4654static int
fba45db2 4655tohex (int nib)
c906108c
SS
4656{
4657 if (nib < 10)
c5aa993b 4658 return '0' + nib;
c906108c 4659 else
c5aa993b 4660 return 'a' + nib - 10;
c906108c 4661}
30559e10 4662
00bf0b85 4663int
cfd77fa1 4664bin2hex (const gdb_byte *bin, char *hex, int count)
30559e10
MS
4665{
4666 int i;
a744cf53 4667
23860348 4668 /* May use a length, or a nul-terminated string as input. */
30559e10 4669 if (count == 0)
cfd77fa1 4670 count = strlen ((char *) bin);
30559e10
MS
4671
4672 for (i = 0; i < count; i++)
4673 {
4674 *hex++ = tohex ((*bin >> 4) & 0xf);
4675 *hex++ = tohex (*bin++ & 0xf);
4676 }
4677 *hex = 0;
4678 return i;
4679}
c906108c 4680\f
506fb367
DJ
4681/* Check for the availability of vCont. This function should also check
4682 the response. */
c906108c
SS
4683
4684static void
6d820c5c 4685remote_vcont_probe (struct remote_state *rs)
c906108c 4686{
2e9f7625 4687 char *buf;
6d820c5c 4688
2e9f7625
DJ
4689 strcpy (rs->buf, "vCont?");
4690 putpkt (rs->buf);
6d820c5c 4691 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 4692 buf = rs->buf;
c906108c 4693
506fb367
DJ
4694 /* Make sure that the features we assume are supported. */
4695 if (strncmp (buf, "vCont", 5) == 0)
4696 {
4697 char *p = &buf[5];
4698 int support_s, support_S, support_c, support_C;
4699
4700 support_s = 0;
4701 support_S = 0;
4702 support_c = 0;
4703 support_C = 0;
d458bd84 4704 rs->supports_vCont.t = 0;
c1e36e3e 4705 rs->supports_vCont.r = 0;
506fb367
DJ
4706 while (p && *p == ';')
4707 {
4708 p++;
4709 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
4710 support_s = 1;
4711 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
4712 support_S = 1;
4713 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
4714 support_c = 1;
4715 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
4716 support_C = 1;
74531fed 4717 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
d458bd84 4718 rs->supports_vCont.t = 1;
c1e36e3e
PA
4719 else if (*p == 'r' && (*(p + 1) == ';' || *(p + 1) == 0))
4720 rs->supports_vCont.r = 1;
506fb367
DJ
4721
4722 p = strchr (p, ';');
4723 }
c906108c 4724
506fb367
DJ
4725 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
4726 BUF will make packet_ok disable the packet. */
4727 if (!support_s || !support_S || !support_c || !support_C)
4728 buf[0] = 0;
4729 }
c906108c 4730
444abaca 4731 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 4732}
c906108c 4733
0d8f58ca
PA
4734/* Helper function for building "vCont" resumptions. Write a
4735 resumption to P. ENDP points to one-passed-the-end of the buffer
4736 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
4737 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
4738 resumed thread should be single-stepped and/or signalled. If PTID
4739 equals minus_one_ptid, then all threads are resumed; if PTID
4740 represents a process, then all threads of the process are resumed;
4741 the thread to be stepped and/or signalled is given in the global
4742 INFERIOR_PTID. */
4743
4744static char *
4745append_resumption (char *p, char *endp,
2ea28649 4746 ptid_t ptid, int step, enum gdb_signal siggnal)
0d8f58ca
PA
4747{
4748 struct remote_state *rs = get_remote_state ();
4749
a493e3e2 4750 if (step && siggnal != GDB_SIGNAL_0)
0d8f58ca 4751 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
c1e36e3e
PA
4752 else if (step
4753 /* GDB is willing to range step. */
4754 && use_range_stepping
4755 /* Target supports range stepping. */
4756 && rs->supports_vCont.r
4757 /* We don't currently support range stepping multiple
4758 threads with a wildcard (though the protocol allows it,
4759 so stubs shouldn't make an active effort to forbid
4760 it). */
4761 && !(remote_multi_process_p (rs) && ptid_is_pid (ptid)))
4762 {
4763 struct thread_info *tp;
4764
4765 if (ptid_equal (ptid, minus_one_ptid))
4766 {
4767 /* If we don't know about the target thread's tid, then
4768 we're resuming magic_null_ptid (see caller). */
4769 tp = find_thread_ptid (magic_null_ptid);
4770 }
4771 else
4772 tp = find_thread_ptid (ptid);
4773 gdb_assert (tp != NULL);
4774
4775 if (tp->control.may_range_step)
4776 {
4777 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
4778
4779 p += xsnprintf (p, endp - p, ";r%s,%s",
4780 phex_nz (tp->control.step_range_start,
4781 addr_size),
4782 phex_nz (tp->control.step_range_end,
4783 addr_size));
4784 }
4785 else
4786 p += xsnprintf (p, endp - p, ";s");
4787 }
0d8f58ca
PA
4788 else if (step)
4789 p += xsnprintf (p, endp - p, ";s");
a493e3e2 4790 else if (siggnal != GDB_SIGNAL_0)
0d8f58ca
PA
4791 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
4792 else
4793 p += xsnprintf (p, endp - p, ";c");
4794
4795 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
4796 {
4797 ptid_t nptid;
4798
4799 /* All (-1) threads of process. */
4800 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
4801
4802 p += xsnprintf (p, endp - p, ":");
4803 p = write_ptid (p, endp, nptid);
4804 }
4805 else if (!ptid_equal (ptid, minus_one_ptid))
4806 {
4807 p += xsnprintf (p, endp - p, ":");
4808 p = write_ptid (p, endp, ptid);
4809 }
4810
4811 return p;
4812}
4813
e5ef252a
PA
4814/* Append a vCont continue-with-signal action for threads that have a
4815 non-zero stop signal. */
4816
4817static char *
4818append_pending_thread_resumptions (char *p, char *endp, ptid_t ptid)
4819{
4820 struct thread_info *thread;
4821
4822 ALL_THREADS (thread)
4823 if (ptid_match (thread->ptid, ptid)
4824 && !ptid_equal (inferior_ptid, thread->ptid)
4825 && thread->suspend.stop_signal != GDB_SIGNAL_0
4826 && signal_pass_state (thread->suspend.stop_signal))
4827 {
4828 p = append_resumption (p, endp, thread->ptid,
4829 0, thread->suspend.stop_signal);
4830 thread->suspend.stop_signal = GDB_SIGNAL_0;
4831 }
4832
4833 return p;
4834}
4835
506fb367
DJ
4836/* Resume the remote inferior by using a "vCont" packet. The thread
4837 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
4838 resumed thread should be single-stepped and/or signalled. If PTID
4839 equals minus_one_ptid, then all threads are resumed; the thread to
4840 be stepped and/or signalled is given in the global INFERIOR_PTID.
4841 This function returns non-zero iff it resumes the inferior.
44eaed12 4842
506fb367
DJ
4843 This function issues a strict subset of all possible vCont commands at the
4844 moment. */
44eaed12 4845
506fb367 4846static int
2ea28649 4847remote_vcont_resume (ptid_t ptid, int step, enum gdb_signal siggnal)
506fb367
DJ
4848{
4849 struct remote_state *rs = get_remote_state ();
82f73884
PA
4850 char *p;
4851 char *endp;
44eaed12 4852
444abaca 4853 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
6d820c5c 4854 remote_vcont_probe (rs);
44eaed12 4855
444abaca 4856 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
6d820c5c 4857 return 0;
44eaed12 4858
82f73884
PA
4859 p = rs->buf;
4860 endp = rs->buf + get_remote_packet_size ();
4861
506fb367
DJ
4862 /* If we could generate a wider range of packets, we'd have to worry
4863 about overflowing BUF. Should there be a generic
4864 "multi-part-packet" packet? */
4865
0d8f58ca
PA
4866 p += xsnprintf (p, endp - p, "vCont");
4867
79d7f229 4868 if (ptid_equal (ptid, magic_null_ptid))
c906108c 4869 {
79d7f229
PA
4870 /* MAGIC_NULL_PTID means that we don't have any active threads,
4871 so we don't have any TID numbers the inferior will
4872 understand. Make sure to only send forms that do not specify
4873 a TID. */
a9cbf802 4874 append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 4875 }
0d8f58ca 4876 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 4877 {
0d8f58ca
PA
4878 /* Resume all threads (of all processes, or of a single
4879 process), with preference for INFERIOR_PTID. This assumes
4880 inferior_ptid belongs to the set of all threads we are about
4881 to resume. */
a493e3e2 4882 if (step || siggnal != GDB_SIGNAL_0)
82f73884 4883 {
0d8f58ca
PA
4884 /* Step inferior_ptid, with or without signal. */
4885 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 4886 }
0d8f58ca 4887
e5ef252a
PA
4888 /* Also pass down any pending signaled resumption for other
4889 threads not the current. */
4890 p = append_pending_thread_resumptions (p, endp, ptid);
4891
0d8f58ca 4892 /* And continue others without a signal. */
a493e3e2 4893 append_resumption (p, endp, ptid, /*step=*/ 0, GDB_SIGNAL_0);
c906108c
SS
4894 }
4895 else
506fb367
DJ
4896 {
4897 /* Scheduler locking; resume only PTID. */
a9cbf802 4898 append_resumption (p, endp, ptid, step, siggnal);
506fb367 4899 }
c906108c 4900
82f73884
PA
4901 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
4902 putpkt (rs->buf);
506fb367 4903
74531fed
PA
4904 if (non_stop)
4905 {
4906 /* In non-stop, the stub replies to vCont with "OK". The stop
4907 reply will be reported asynchronously by means of a `%Stop'
4908 notification. */
4909 getpkt (&rs->buf, &rs->buf_size, 0);
4910 if (strcmp (rs->buf, "OK") != 0)
4911 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
4912 }
4913
506fb367 4914 return 1;
c906108c 4915}
43ff13b4 4916
506fb367
DJ
4917/* Tell the remote machine to resume. */
4918
43ff13b4 4919static void
28439f5e 4920remote_resume (struct target_ops *ops,
2ea28649 4921 ptid_t ptid, int step, enum gdb_signal siggnal)
43ff13b4 4922{
d01949b6 4923 struct remote_state *rs = get_remote_state ();
2e9f7625 4924 char *buf;
43ff13b4 4925
722247f1
YQ
4926 /* In all-stop, we can't mark REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN
4927 (explained in remote-notif.c:handle_notification) so
4928 remote_notif_process is not called. We need find a place where
4929 it is safe to start a 'vNotif' sequence. It is good to do it
4930 before resuming inferior, because inferior was stopped and no RSP
4931 traffic at that moment. */
4932 if (!non_stop)
5965e028 4933 remote_notif_process (rs->notif_state, &notif_client_stop);
722247f1 4934
b73be471 4935 rs->last_sent_signal = siggnal;
280ceea3 4936 rs->last_sent_step = step;
43ff13b4 4937
506fb367 4938 /* The vCont packet doesn't need to specify threads via Hc. */
40ab02ce
MS
4939 /* No reverse support (yet) for vCont. */
4940 if (execution_direction != EXEC_REVERSE)
4941 if (remote_vcont_resume (ptid, step, siggnal))
4942 goto done;
506fb367 4943
79d7f229
PA
4944 /* All other supported resume packets do use Hc, so set the continue
4945 thread. */
4946 if (ptid_equal (ptid, minus_one_ptid))
4947 set_continue_thread (any_thread_ptid);
506fb367 4948 else
79d7f229 4949 set_continue_thread (ptid);
506fb367 4950
2e9f7625 4951 buf = rs->buf;
b2175913
MS
4952 if (execution_direction == EXEC_REVERSE)
4953 {
4954 /* We don't pass signals to the target in reverse exec mode. */
a493e3e2 4955 if (info_verbose && siggnal != GDB_SIGNAL_0)
7ea6d463 4956 warning (_(" - Can't pass signal %d to target in reverse: ignored."),
b2175913 4957 siggnal);
40ab02ce
MS
4958
4959 if (step
4960 && remote_protocol_packets[PACKET_bs].support == PACKET_DISABLE)
4961 error (_("Remote reverse-step not supported."));
4962 if (!step
4963 && remote_protocol_packets[PACKET_bc].support == PACKET_DISABLE)
08c93ed9 4964 error (_("Remote reverse-continue not supported."));
40ab02ce 4965
b2175913
MS
4966 strcpy (buf, step ? "bs" : "bc");
4967 }
a493e3e2 4968 else if (siggnal != GDB_SIGNAL_0)
43ff13b4
JM
4969 {
4970 buf[0] = step ? 'S' : 'C';
c5aa993b 4971 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
506fb367 4972 buf[2] = tohex (((int) siggnal) & 0xf);
43ff13b4
JM
4973 buf[3] = '\0';
4974 }
4975 else
c5aa993b 4976 strcpy (buf, step ? "s" : "c");
506fb367 4977
44eaed12 4978 putpkt (buf);
43ff13b4 4979
75c99385 4980 done:
2acceee2 4981 /* We are about to start executing the inferior, let's register it
0df8b418
MS
4982 with the event loop. NOTE: this is the one place where all the
4983 execution commands end up. We could alternatively do this in each
23860348 4984 of the execution commands in infcmd.c. */
2acceee2
JM
4985 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
4986 into infcmd.c in order to allow inferior function calls to work
23860348 4987 NOT asynchronously. */
362646f5 4988 if (target_can_async_p ())
2acceee2 4989 target_async (inferior_event_handler, 0);
e24a49d8
PA
4990
4991 /* We've just told the target to resume. The remote server will
4992 wait for the inferior to stop, and then send a stop reply. In
4993 the mean time, we can't start another command/query ourselves
74531fed
PA
4994 because the stub wouldn't be ready to process it. This applies
4995 only to the base all-stop protocol, however. In non-stop (which
4996 only supports vCont), the stub replies with an "OK", and is
4997 immediate able to process further serial input. */
4998 if (!non_stop)
4999 rs->waiting_for_stop_reply = 1;
43ff13b4 5000}
c906108c 5001\f
43ff13b4
JM
5002
5003/* Set up the signal handler for SIGINT, while the target is
23860348 5004 executing, ovewriting the 'regular' SIGINT signal handler. */
43ff13b4 5005static void
934b9bac 5006async_initialize_sigint_signal_handler (void)
43ff13b4 5007{
934b9bac 5008 signal (SIGINT, async_handle_remote_sigint);
43ff13b4
JM
5009}
5010
23860348 5011/* Signal handler for SIGINT, while the target is executing. */
43ff13b4 5012static void
934b9bac 5013async_handle_remote_sigint (int sig)
43ff13b4 5014{
934b9bac
JK
5015 signal (sig, async_handle_remote_sigint_twice);
5016 mark_async_signal_handler (async_sigint_remote_token);
43ff13b4
JM
5017}
5018
5019/* Signal handler for SIGINT, installed after SIGINT has already been
5020 sent once. It will take effect the second time that the user sends
23860348 5021 a ^C. */
43ff13b4 5022static void
934b9bac 5023async_handle_remote_sigint_twice (int sig)
43ff13b4 5024{
934b9bac
JK
5025 signal (sig, async_handle_remote_sigint);
5026 mark_async_signal_handler (async_sigint_remote_twice_token);
43ff13b4
JM
5027}
5028
6426a772 5029/* Perform the real interruption of the target execution, in response
23860348 5030 to a ^C. */
c5aa993b 5031static void
fba45db2 5032async_remote_interrupt (gdb_client_data arg)
43ff13b4
JM
5033{
5034 if (remote_debug)
248fd3bf 5035 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt called\n");
43ff13b4 5036
94cc34af 5037 target_stop (inferior_ptid);
43ff13b4
JM
5038}
5039
0df8b418 5040/* Perform interrupt, if the first attempt did not succeed. Just give
23860348 5041 up on the target alltogether. */
47e1ce27 5042static void
fba45db2 5043async_remote_interrupt_twice (gdb_client_data arg)
43ff13b4 5044{
2df3850c 5045 if (remote_debug)
248fd3bf 5046 fprintf_unfiltered (gdb_stdlog, "async_remote_interrupt_twice called\n");
b803fb0f
DJ
5047
5048 interrupt_query ();
43ff13b4
JM
5049}
5050
5051/* Reinstall the usual SIGINT handlers, after the target has
23860348 5052 stopped. */
6426a772 5053static void
934b9bac 5054async_cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
5055{
5056 signal (SIGINT, handle_sigint);
43ff13b4
JM
5057}
5058
c906108c
SS
5059/* Send ^C to target to halt it. Target will respond, and send us a
5060 packet. */
507f3c78 5061static void (*ofunc) (int);
c906108c 5062
0df8b418
MS
5063/* The command line interface's stop routine. This function is installed
5064 as a signal handler for SIGINT. The first time a user requests a
5065 stop, we call remote_stop to send a break or ^C. If there is no
7a292a7a 5066 response from the target (it didn't stop when the user requested it),
23860348 5067 we ask the user if he'd like to detach from the target. */
c906108c 5068static void
934b9bac 5069sync_remote_interrupt (int signo)
c906108c 5070{
23860348 5071 /* If this doesn't work, try more severe steps. */
934b9bac 5072 signal (signo, sync_remote_interrupt_twice);
7a292a7a 5073
934b9bac 5074 gdb_call_async_signal_handler (async_sigint_remote_token, 1);
7a292a7a
SS
5075}
5076
5077/* The user typed ^C twice. */
5078
5079static void
934b9bac 5080sync_remote_interrupt_twice (int signo)
7a292a7a
SS
5081{
5082 signal (signo, ofunc);
934b9bac
JK
5083 gdb_call_async_signal_handler (async_sigint_remote_twice_token, 1);
5084 signal (signo, sync_remote_interrupt);
c906108c 5085}
7a292a7a 5086
74531fed
PA
5087/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
5088 thread, all threads of a remote process, or all threads of all
5089 processes. */
5090
5091static void
5092remote_stop_ns (ptid_t ptid)
5093{
5094 struct remote_state *rs = get_remote_state ();
5095 char *p = rs->buf;
5096 char *endp = rs->buf + get_remote_packet_size ();
74531fed
PA
5097
5098 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
5099 remote_vcont_probe (rs);
5100
d458bd84 5101 if (!rs->supports_vCont.t)
74531fed
PA
5102 error (_("Remote server does not support stopping threads"));
5103
f91d3df5
PA
5104 if (ptid_equal (ptid, minus_one_ptid)
5105 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
5106 p += xsnprintf (p, endp - p, "vCont;t");
5107 else
5108 {
5109 ptid_t nptid;
5110
74531fed
PA
5111 p += xsnprintf (p, endp - p, "vCont;t:");
5112
5113 if (ptid_is_pid (ptid))
5114 /* All (-1) threads of process. */
5115 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
5116 else
5117 {
5118 /* Small optimization: if we already have a stop reply for
5119 this thread, no use in telling the stub we want this
5120 stopped. */
5121 if (peek_stop_reply (ptid))
5122 return;
5123
5124 nptid = ptid;
5125 }
5126
a9cbf802 5127 write_ptid (p, endp, nptid);
74531fed
PA
5128 }
5129
5130 /* In non-stop, we get an immediate OK reply. The stop reply will
5131 come in asynchronously by notification. */
5132 putpkt (rs->buf);
5133 getpkt (&rs->buf, &rs->buf_size, 0);
5134 if (strcmp (rs->buf, "OK") != 0)
5135 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
5136}
5137
5138/* All-stop version of target_stop. Sends a break or a ^C to stop the
5139 remote target. It is undefined which thread of which process
5140 reports the stop. */
5141
5142static void
5143remote_stop_as (ptid_t ptid)
5144{
5145 struct remote_state *rs = get_remote_state ();
5146
3a29589a
DJ
5147 rs->ctrlc_pending_p = 1;
5148
74531fed
PA
5149 /* If the inferior is stopped already, but the core didn't know
5150 about it yet, just ignore the request. The cached wait status
5151 will be collected in remote_wait. */
5152 if (rs->cached_wait_status)
5153 return;
5154
9a7071a8
JB
5155 /* Send interrupt_sequence to remote target. */
5156 send_interrupt_sequence ();
74531fed
PA
5157}
5158
0df8b418 5159/* This is the generic stop called via the target vector. When a target
7a292a7a 5160 interrupt is requested, either by the command line or the GUI, we
23860348 5161 will eventually end up here. */
74531fed 5162
c906108c 5163static void
94cc34af 5164remote_stop (ptid_t ptid)
c906108c 5165{
7a292a7a 5166 if (remote_debug)
0f71a2f6 5167 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 5168
74531fed
PA
5169 if (non_stop)
5170 remote_stop_ns (ptid);
c906108c 5171 else
74531fed 5172 remote_stop_as (ptid);
c906108c
SS
5173}
5174
5175/* Ask the user what to do when an interrupt is received. */
5176
5177static void
fba45db2 5178interrupt_query (void)
c906108c
SS
5179{
5180 target_terminal_ours ();
5181
74531fed 5182 if (target_can_async_p ())
c906108c 5183 {
74531fed 5184 signal (SIGINT, handle_sigint);
039e3c22 5185 quit ();
c906108c 5186 }
74531fed
PA
5187 else
5188 {
9e2f0ad4
HZ
5189 if (query (_("Interrupted while waiting for the program.\n\
5190Give up (and stop debugging it)? ")))
74531fed 5191 {
78a095c3 5192 remote_unpush_target ();
039e3c22 5193 quit ();
74531fed
PA
5194 }
5195 }
c906108c
SS
5196
5197 target_terminal_inferior ();
5198}
5199
6426a772
JM
5200/* Enable/disable target terminal ownership. Most targets can use
5201 terminal groups to control terminal ownership. Remote targets are
5202 different in that explicit transfer of ownership to/from GDB/target
23860348 5203 is required. */
6426a772
JM
5204
5205static void
75c99385 5206remote_terminal_inferior (void)
6426a772 5207{
c6ebd6cf 5208 if (!target_async_permitted)
75c99385
PA
5209 /* Nothing to do. */
5210 return;
5211
d9d2d8b6
PA
5212 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
5213 idempotent. The event-loop GDB talking to an asynchronous target
5214 with a synchronous command calls this function from both
5215 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
5216 transfer the terminal to the target when it shouldn't this guard
5217 can go away. */
6426a772
JM
5218 if (!remote_async_terminal_ours_p)
5219 return;
5220 delete_file_handler (input_fd);
5221 remote_async_terminal_ours_p = 0;
934b9bac 5222 async_initialize_sigint_signal_handler ();
6426a772
JM
5223 /* NOTE: At this point we could also register our selves as the
5224 recipient of all input. Any characters typed could then be
23860348 5225 passed on down to the target. */
6426a772
JM
5226}
5227
5228static void
75c99385 5229remote_terminal_ours (void)
6426a772 5230{
c6ebd6cf 5231 if (!target_async_permitted)
75c99385
PA
5232 /* Nothing to do. */
5233 return;
5234
5235 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
5236 if (remote_async_terminal_ours_p)
5237 return;
934b9bac 5238 async_cleanup_sigint_signal_handler (NULL);
6426a772
JM
5239 add_file_handler (input_fd, stdin_event_handler, 0);
5240 remote_async_terminal_ours_p = 1;
5241}
5242
176a6961 5243static void
917317f4 5244remote_console_output (char *msg)
c906108c
SS
5245{
5246 char *p;
5247
c5aa993b 5248 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
5249 {
5250 char tb[2];
5251 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
a744cf53 5252
c906108c
SS
5253 tb[0] = c;
5254 tb[1] = 0;
43ff13b4 5255 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 5256 }
00db5b94
PA
5257 gdb_flush (gdb_stdtarg);
5258}
74531fed
PA
5259
5260typedef struct cached_reg
5261{
5262 int num;
5263 gdb_byte data[MAX_REGISTER_SIZE];
5264} cached_reg_t;
5265
5266DEF_VEC_O(cached_reg_t);
5267
722247f1 5268typedef struct stop_reply
74531fed 5269{
722247f1 5270 struct notif_event base;
74531fed 5271
722247f1 5272 /* The identifier of the thread about this event */
74531fed
PA
5273 ptid_t ptid;
5274
340e3c99 5275 /* The remote state this event is associated with. When the remote
bcc75809
YQ
5276 connection, represented by a remote_state object, is closed,
5277 all the associated stop_reply events should be released. */
5278 struct remote_state *rs;
5279
74531fed
PA
5280 struct target_waitstatus ws;
5281
15148d6a
PA
5282 /* Expedited registers. This makes remote debugging a bit more
5283 efficient for those targets that provide critical registers as
5284 part of their normal status mechanism (as another roundtrip to
5285 fetch them is avoided). */
74531fed
PA
5286 VEC(cached_reg_t) *regcache;
5287
5288 int stopped_by_watchpoint_p;
5289 CORE_ADDR watch_data_address;
5290
dc146f7c 5291 int core;
722247f1 5292} *stop_reply_p;
a744cf53 5293
722247f1
YQ
5294DECLARE_QUEUE_P (stop_reply_p);
5295DEFINE_QUEUE_P (stop_reply_p);
5296/* The list of already fetched and acknowledged stop events. This
5297 queue is used for notification Stop, and other notifications
5298 don't need queue for their events, because the notification events
5299 of Stop can't be consumed immediately, so that events should be
5300 queued first, and be consumed by remote_wait_{ns,as} one per
5301 time. Other notifications can consume their events immediately,
5302 so queue is not needed for them. */
5303static QUEUE (stop_reply_p) *stop_reply_queue;
74531fed
PA
5304
5305static void
5306stop_reply_xfree (struct stop_reply *r)
5307{
f48ff2a7 5308 notif_event_xfree ((struct notif_event *) r);
c906108c
SS
5309}
5310
722247f1
YQ
5311static void
5312remote_notif_stop_parse (struct notif_client *self, char *buf,
5313 struct notif_event *event)
5314{
5315 remote_parse_stop_reply (buf, (struct stop_reply *) event);
5316}
5317
5318static void
5319remote_notif_stop_ack (struct notif_client *self, char *buf,
5320 struct notif_event *event)
5321{
5322 struct stop_reply *stop_reply = (struct stop_reply *) event;
5323
5324 /* acknowledge */
5325 putpkt ((char *) self->ack_command);
5326
5327 if (stop_reply->ws.kind == TARGET_WAITKIND_IGNORE)
5328 /* We got an unknown stop reply. */
5329 error (_("Unknown stop reply"));
5330
5331 push_stop_reply (stop_reply);
5332}
5333
5334static int
5335remote_notif_stop_can_get_pending_events (struct notif_client *self)
5336{
5337 /* We can't get pending events in remote_notif_process for
5338 notification stop, and we have to do this in remote_wait_ns
5339 instead. If we fetch all queued events from stub, remote stub
5340 may exit and we have no chance to process them back in
5341 remote_wait_ns. */
5342 mark_async_event_handler (remote_async_inferior_event_token);
5343 return 0;
5344}
5345
5346static void
5347stop_reply_dtr (struct notif_event *event)
5348{
5349 struct stop_reply *r = (struct stop_reply *) event;
5350
5351 VEC_free (cached_reg_t, r->regcache);
5352}
5353
5354static struct notif_event *
5355remote_notif_stop_alloc_reply (void)
5356{
5357 struct notif_event *r
5358 = (struct notif_event *) XMALLOC (struct stop_reply);
5359
5360 r->dtr = stop_reply_dtr;
5361
5362 return r;
5363}
5364
5365/* A client of notification Stop. */
5366
5367struct notif_client notif_client_stop =
5368{
5369 "Stop",
5370 "vStopped",
5371 remote_notif_stop_parse,
5372 remote_notif_stop_ack,
5373 remote_notif_stop_can_get_pending_events,
5374 remote_notif_stop_alloc_reply,
f48ff2a7 5375 REMOTE_NOTIF_STOP,
722247f1
YQ
5376};
5377
5378/* A parameter to pass data in and out. */
5379
5380struct queue_iter_param
5381{
5382 void *input;
5383 struct stop_reply *output;
5384};
5385
f48ff2a7
YQ
5386/* Remove stop replies in the queue if its pid is equal to the given
5387 inferior's pid. */
722247f1
YQ
5388
5389static int
f48ff2a7
YQ
5390remove_stop_reply_for_inferior (QUEUE (stop_reply_p) *q,
5391 QUEUE_ITER (stop_reply_p) *iter,
5392 stop_reply_p event,
5393 void *data)
722247f1
YQ
5394{
5395 struct queue_iter_param *param = data;
5396 struct inferior *inf = param->input;
5397
f48ff2a7 5398 if (ptid_get_pid (event->ptid) == inf->pid)
722247f1
YQ
5399 {
5400 stop_reply_xfree (event);
5401 QUEUE_remove_elem (stop_reply_p, q, iter);
5402 }
5403
5404 return 1;
5405}
5406
f48ff2a7 5407/* Discard all pending stop replies of inferior INF. */
c906108c 5408
74531fed 5409static void
5f4cf0bb 5410discard_pending_stop_replies (struct inferior *inf)
c906108c 5411{
722247f1
YQ
5412 int i;
5413 struct queue_iter_param param;
f48ff2a7
YQ
5414 struct stop_reply *reply;
5415 struct remote_state *rs = get_remote_state ();
5416 struct remote_notif_state *rns = rs->notif_state;
5417
5418 /* This function can be notified when an inferior exists. When the
5419 target is not remote, the notification state is NULL. */
5420 if (rs->remote_desc == NULL)
5421 return;
5422
5423 reply = (struct stop_reply *) rns->pending_event[notif_client_stop.id];
c906108c 5424
74531fed 5425 /* Discard the in-flight notification. */
f48ff2a7 5426 if (reply != NULL && ptid_get_pid (reply->ptid) == inf->pid)
74531fed 5427 {
722247f1 5428 stop_reply_xfree (reply);
f48ff2a7 5429 rns->pending_event[notif_client_stop.id] = NULL;
74531fed 5430 }
c906108c 5431
722247f1
YQ
5432 param.input = inf;
5433 param.output = NULL;
74531fed
PA
5434 /* Discard the stop replies we have already pulled with
5435 vStopped. */
722247f1 5436 QUEUE_iterate (stop_reply_p, stop_reply_queue,
f48ff2a7
YQ
5437 remove_stop_reply_for_inferior, &param);
5438}
5439
bcc75809
YQ
5440/* If its remote state is equal to the given remote state,
5441 remove EVENT from the stop reply queue. */
5442
5443static int
5444remove_stop_reply_of_remote_state (QUEUE (stop_reply_p) *q,
5445 QUEUE_ITER (stop_reply_p) *iter,
5446 stop_reply_p event,
5447 void *data)
5448{
5449 struct queue_iter_param *param = data;
5450 struct remote_state *rs = param->input;
5451
5452 if (event->rs == rs)
5453 {
5454 stop_reply_xfree (event);
5455 QUEUE_remove_elem (stop_reply_p, q, iter);
5456 }
5457
5458 return 1;
5459}
5460
5461/* Discard the stop replies for RS in stop_reply_queue. */
f48ff2a7
YQ
5462
5463static void
bcc75809 5464discard_pending_stop_replies_in_queue (struct remote_state *rs)
f48ff2a7
YQ
5465{
5466 struct queue_iter_param param;
5467
bcc75809 5468 param.input = rs;
f48ff2a7
YQ
5469 param.output = NULL;
5470 /* Discard the stop replies we have already pulled with
5471 vStopped. */
5472 QUEUE_iterate (stop_reply_p, stop_reply_queue,
bcc75809 5473 remove_stop_reply_of_remote_state, &param);
722247f1 5474}
74531fed 5475
722247f1
YQ
5476/* A parameter to pass data in and out. */
5477
5478static int
5479remote_notif_remove_once_on_match (QUEUE (stop_reply_p) *q,
5480 QUEUE_ITER (stop_reply_p) *iter,
5481 stop_reply_p event,
5482 void *data)
5483{
5484 struct queue_iter_param *param = data;
5485 ptid_t *ptid = param->input;
5486
5487 if (ptid_match (event->ptid, *ptid))
5488 {
5489 param->output = event;
5490 QUEUE_remove_elem (stop_reply_p, q, iter);
5491 return 0;
c8e38a49 5492 }
722247f1
YQ
5493
5494 return 1;
74531fed 5495}
43ff13b4 5496
722247f1
YQ
5497/* Remove the first reply in 'stop_reply_queue' which matches
5498 PTID. */
2e9f7625 5499
722247f1
YQ
5500static struct stop_reply *
5501remote_notif_remove_queued_reply (ptid_t ptid)
74531fed 5502{
722247f1
YQ
5503 struct queue_iter_param param;
5504
5505 param.input = &ptid;
5506 param.output = NULL;
5507
5508 QUEUE_iterate (stop_reply_p, stop_reply_queue,
5509 remote_notif_remove_once_on_match, &param);
5510 if (notif_debug)
5511 fprintf_unfiltered (gdb_stdlog,
5512 "notif: discard queued event: 'Stop' in %s\n",
5513 target_pid_to_str (ptid));
a744cf53 5514
722247f1 5515 return param.output;
74531fed 5516}
75c99385 5517
74531fed
PA
5518/* Look for a queued stop reply belonging to PTID. If one is found,
5519 remove it from the queue, and return it. Returns NULL if none is
5520 found. If there are still queued events left to process, tell the
5521 event loop to get back to target_wait soon. */
e24a49d8 5522
74531fed
PA
5523static struct stop_reply *
5524queued_stop_reply (ptid_t ptid)
5525{
722247f1 5526 struct stop_reply *r = remote_notif_remove_queued_reply (ptid);
74531fed 5527
722247f1 5528 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed
PA
5529 /* There's still at least an event left. */
5530 mark_async_event_handler (remote_async_inferior_event_token);
5531
722247f1 5532 return r;
74531fed
PA
5533}
5534
5535/* Push a fully parsed stop reply in the stop reply queue. Since we
5536 know that we now have at least one queued event left to pass to the
5537 core side, tell the event loop to get back to target_wait soon. */
5538
5539static void
5540push_stop_reply (struct stop_reply *new_event)
5541{
722247f1 5542 QUEUE_enque (stop_reply_p, stop_reply_queue, new_event);
74531fed 5543
722247f1
YQ
5544 if (notif_debug)
5545 fprintf_unfiltered (gdb_stdlog,
5546 "notif: push 'Stop' %s to queue %d\n",
5547 target_pid_to_str (new_event->ptid),
5548 QUEUE_length (stop_reply_p,
5549 stop_reply_queue));
74531fed
PA
5550
5551 mark_async_event_handler (remote_async_inferior_event_token);
5552}
5553
722247f1
YQ
5554static int
5555stop_reply_match_ptid_and_ws (QUEUE (stop_reply_p) *q,
5556 QUEUE_ITER (stop_reply_p) *iter,
5557 struct stop_reply *event,
5558 void *data)
5559{
5560 ptid_t *ptid = data;
5561
5562 return !(ptid_equal (*ptid, event->ptid)
5563 && event->ws.kind == TARGET_WAITKIND_STOPPED);
5564}
5565
74531fed
PA
5566/* Returns true if we have a stop reply for PTID. */
5567
5568static int
5569peek_stop_reply (ptid_t ptid)
5570{
722247f1
YQ
5571 return !QUEUE_iterate (stop_reply_p, stop_reply_queue,
5572 stop_reply_match_ptid_and_ws, &ptid);
74531fed
PA
5573}
5574
5575/* Parse the stop reply in BUF. Either the function succeeds, and the
5576 result is stored in EVENT, or throws an error. */
5577
5578static void
5579remote_parse_stop_reply (char *buf, struct stop_reply *event)
5580{
5581 struct remote_arch_state *rsa = get_remote_arch_state ();
5582 ULONGEST addr;
5583 char *p;
5584
5585 event->ptid = null_ptid;
bcc75809 5586 event->rs = get_remote_state ();
74531fed
PA
5587 event->ws.kind = TARGET_WAITKIND_IGNORE;
5588 event->ws.value.integer = 0;
74531fed
PA
5589 event->stopped_by_watchpoint_p = 0;
5590 event->regcache = NULL;
dc146f7c 5591 event->core = -1;
74531fed
PA
5592
5593 switch (buf[0])
5594 {
5595 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
5596 /* Expedited reply, containing Signal, {regno, reg} repeat. */
5597 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
5598 ss = signal number
5599 n... = register number
5600 r... = register contents
5601 */
5602
5603 p = &buf[3]; /* after Txx */
5604 while (*p)
5605 {
5606 char *p1;
5607 char *p_temp;
5608 int fieldsize;
5609 LONGEST pnum = 0;
43ff13b4 5610
cea39f65
MS
5611 /* If the packet contains a register number, save it in
5612 pnum and set p1 to point to the character following it.
5613 Otherwise p1 points to p. */
3c3bea1c 5614
cea39f65
MS
5615 /* If this packet is an awatch packet, don't parse the 'a'
5616 as a register number. */
c8e38a49 5617
dc146f7c
VP
5618 if (strncmp (p, "awatch", strlen("awatch")) != 0
5619 && strncmp (p, "core", strlen ("core") != 0))
cea39f65
MS
5620 {
5621 /* Read the ``P'' register number. */
5622 pnum = strtol (p, &p_temp, 16);
5623 p1 = p_temp;
5624 }
5625 else
5626 p1 = p;
802188a7 5627
cea39f65
MS
5628 if (p1 == p) /* No register number present here. */
5629 {
5630 p1 = strchr (p, ':');
5631 if (p1 == NULL)
5632 error (_("Malformed packet(a) (missing colon): %s\n\
c8e38a49 5633Packet: '%s'\n"),
cea39f65
MS
5634 p, buf);
5635 if (strncmp (p, "thread", p1 - p) == 0)
5636 event->ptid = read_ptid (++p1, &p);
5637 else if ((strncmp (p, "watch", p1 - p) == 0)
5638 || (strncmp (p, "rwatch", p1 - p) == 0)
5639 || (strncmp (p, "awatch", p1 - p) == 0))
5640 {
5641 event->stopped_by_watchpoint_p = 1;
5642 p = unpack_varlen_hex (++p1, &addr);
5643 event->watch_data_address = (CORE_ADDR) addr;
5644 }
5645 else if (strncmp (p, "library", p1 - p) == 0)
5646 {
5647 p1++;
5648 p_temp = p1;
5649 while (*p_temp && *p_temp != ';')
5650 p_temp++;
c8e38a49 5651
5b5596ff 5652 event->ws.kind = TARGET_WAITKIND_LOADED;
cea39f65
MS
5653 p = p_temp;
5654 }
5655 else if (strncmp (p, "replaylog", p1 - p) == 0)
5656 {
5b5596ff
PA
5657 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
5658 /* p1 will indicate "begin" or "end", but it makes
5659 no difference for now, so ignore it. */
cea39f65
MS
5660 p_temp = strchr (p1 + 1, ';');
5661 if (p_temp)
c8e38a49 5662 p = p_temp;
cea39f65 5663 }
dc146f7c
VP
5664 else if (strncmp (p, "core", p1 - p) == 0)
5665 {
5666 ULONGEST c;
a744cf53 5667
dc146f7c
VP
5668 p = unpack_varlen_hex (++p1, &c);
5669 event->core = c;
5670 }
cea39f65
MS
5671 else
5672 {
5673 /* Silently skip unknown optional info. */
5674 p_temp = strchr (p1 + 1, ';');
5675 if (p_temp)
5676 p = p_temp;
5677 }
5678 }
5679 else
5680 {
5681 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
5682 cached_reg_t cached_reg;
74531fed 5683
cea39f65 5684 p = p1;
75c99385 5685
cea39f65
MS
5686 if (*p != ':')
5687 error (_("Malformed packet(b) (missing colon): %s\n\
8a3fe4f8 5688Packet: '%s'\n"),
cea39f65
MS
5689 p, buf);
5690 ++p;
43ff13b4 5691
cea39f65
MS
5692 if (reg == NULL)
5693 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 5694Packet: '%s'\n"),
7c47795c 5695 hex_string (pnum), p, buf);
c8e38a49 5696
cea39f65 5697 cached_reg.num = reg->regnum;
4100683b 5698
cea39f65 5699 fieldsize = hex2bin (p, cached_reg.data,
f5656ead 5700 register_size (target_gdbarch (),
cea39f65
MS
5701 reg->regnum));
5702 p += 2 * fieldsize;
f5656ead 5703 if (fieldsize < register_size (target_gdbarch (),
cea39f65
MS
5704 reg->regnum))
5705 warning (_("Remote reply is too short: %s"), buf);
74531fed 5706
cea39f65
MS
5707 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
5708 }
c8e38a49 5709
cea39f65
MS
5710 if (*p != ';')
5711 error (_("Remote register badly formatted: %s\nhere: %s"),
5712 buf, p);
5713 ++p;
5714 }
5b5596ff
PA
5715
5716 if (event->ws.kind != TARGET_WAITKIND_IGNORE)
5717 break;
5718
c8e38a49
PA
5719 /* fall through */
5720 case 'S': /* Old style status, just signal only. */
3a09da41
PA
5721 {
5722 int sig;
5723
5724 event->ws.kind = TARGET_WAITKIND_STOPPED;
5725 sig = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
5726 if (GDB_SIGNAL_FIRST <= sig && sig < GDB_SIGNAL_LAST)
5727 event->ws.value.sig = (enum gdb_signal) sig;
5728 else
5729 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
5730 }
c8e38a49
PA
5731 break;
5732 case 'W': /* Target exited. */
5733 case 'X':
5734 {
5735 char *p;
5736 int pid;
5737 ULONGEST value;
82f73884 5738
c8e38a49
PA
5739 /* GDB used to accept only 2 hex chars here. Stubs should
5740 only send more if they detect GDB supports multi-process
5741 support. */
5742 p = unpack_varlen_hex (&buf[1], &value);
82f73884 5743
c8e38a49
PA
5744 if (buf[0] == 'W')
5745 {
5746 /* The remote process exited. */
74531fed
PA
5747 event->ws.kind = TARGET_WAITKIND_EXITED;
5748 event->ws.value.integer = value;
c8e38a49
PA
5749 }
5750 else
5751 {
5752 /* The remote process exited with a signal. */
74531fed 5753 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
3a09da41
PA
5754 if (GDB_SIGNAL_FIRST <= value && value < GDB_SIGNAL_LAST)
5755 event->ws.value.sig = (enum gdb_signal) value;
5756 else
5757 event->ws.value.sig = GDB_SIGNAL_UNKNOWN;
c8e38a49 5758 }
82f73884 5759
c8e38a49
PA
5760 /* If no process is specified, assume inferior_ptid. */
5761 pid = ptid_get_pid (inferior_ptid);
5762 if (*p == '\0')
5763 ;
5764 else if (*p == ';')
5765 {
5766 p++;
5767
5768 if (p == '\0')
82f73884 5769 ;
c8e38a49
PA
5770 else if (strncmp (p,
5771 "process:", sizeof ("process:") - 1) == 0)
82f73884 5772 {
c8e38a49 5773 ULONGEST upid;
a744cf53 5774
c8e38a49
PA
5775 p += sizeof ("process:") - 1;
5776 unpack_varlen_hex (p, &upid);
5777 pid = upid;
82f73884
PA
5778 }
5779 else
5780 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 5781 }
c8e38a49
PA
5782 else
5783 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
5784 event->ptid = pid_to_ptid (pid);
5785 }
5786 break;
5787 }
5788
5789 if (non_stop && ptid_equal (event->ptid, null_ptid))
5790 error (_("No process or thread specified in stop reply: %s"), buf);
5791}
5792
722247f1
YQ
5793/* When the stub wants to tell GDB about a new notification reply, it
5794 sends a notification (%Stop, for example). Those can come it at
5795 any time, hence, we have to make sure that any pending
5796 putpkt/getpkt sequence we're making is finished, before querying
5797 the stub for more events with the corresponding ack command
5798 (vStopped, for example). E.g., if we started a vStopped sequence
5799 immediately upon receiving the notification, something like this
5800 could happen:
74531fed
PA
5801
5802 1.1) --> Hg 1
5803 1.2) <-- OK
5804 1.3) --> g
5805 1.4) <-- %Stop
5806 1.5) --> vStopped
5807 1.6) <-- (registers reply to step #1.3)
5808
5809 Obviously, the reply in step #1.6 would be unexpected to a vStopped
5810 query.
5811
796cb314 5812 To solve this, whenever we parse a %Stop notification successfully,
74531fed
PA
5813 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
5814 doing whatever we were doing:
5815
5816 2.1) --> Hg 1
5817 2.2) <-- OK
5818 2.3) --> g
5819 2.4) <-- %Stop
5820 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
5821 2.5) <-- (registers reply to step #2.3)
5822
5823 Eventualy after step #2.5, we return to the event loop, which
5824 notices there's an event on the
5825 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
5826 associated callback --- the function below. At this point, we're
5827 always safe to start a vStopped sequence. :
5828
5829 2.6) --> vStopped
5830 2.7) <-- T05 thread:2
5831 2.8) --> vStopped
5832 2.9) --> OK
5833*/
5834
722247f1
YQ
5835void
5836remote_notif_get_pending_events (struct notif_client *nc)
74531fed
PA
5837{
5838 struct remote_state *rs = get_remote_state ();
74531fed 5839
f48ff2a7 5840 if (rs->notif_state->pending_event[nc->id] != NULL)
74531fed 5841 {
722247f1
YQ
5842 if (notif_debug)
5843 fprintf_unfiltered (gdb_stdlog,
5844 "notif: process: '%s' ack pending event\n",
5845 nc->name);
74531fed 5846
722247f1 5847 /* acknowledge */
f48ff2a7
YQ
5848 nc->ack (nc, rs->buf, rs->notif_state->pending_event[nc->id]);
5849 rs->notif_state->pending_event[nc->id] = NULL;
74531fed
PA
5850
5851 while (1)
5852 {
5853 getpkt (&rs->buf, &rs->buf_size, 0);
5854 if (strcmp (rs->buf, "OK") == 0)
5855 break;
5856 else
722247f1 5857 remote_notif_ack (nc, rs->buf);
74531fed
PA
5858 }
5859 }
722247f1
YQ
5860 else
5861 {
5862 if (notif_debug)
5863 fprintf_unfiltered (gdb_stdlog,
5864 "notif: process: '%s' no pending reply\n",
5865 nc->name);
5866 }
74531fed
PA
5867}
5868
74531fed
PA
5869/* Called when it is decided that STOP_REPLY holds the info of the
5870 event that is to be returned to the core. This function always
5871 destroys STOP_REPLY. */
5872
5873static ptid_t
5874process_stop_reply (struct stop_reply *stop_reply,
5875 struct target_waitstatus *status)
5876{
5877 ptid_t ptid;
5878
5879 *status = stop_reply->ws;
5880 ptid = stop_reply->ptid;
5881
5882 /* If no thread/process was reported by the stub, assume the current
5883 inferior. */
5884 if (ptid_equal (ptid, null_ptid))
5885 ptid = inferior_ptid;
5886
5f3563ea
PA
5887 if (status->kind != TARGET_WAITKIND_EXITED
5888 && status->kind != TARGET_WAITKIND_SIGNALLED)
74531fed 5889 {
ee154bee
TT
5890 struct remote_state *rs = get_remote_state ();
5891
5f3563ea
PA
5892 /* Expedited registers. */
5893 if (stop_reply->regcache)
5894 {
217f1f79 5895 struct regcache *regcache
f5656ead 5896 = get_thread_arch_regcache (ptid, target_gdbarch ());
5f3563ea
PA
5897 cached_reg_t *reg;
5898 int ix;
5899
5900 for (ix = 0;
5901 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
5902 ix++)
217f1f79 5903 regcache_raw_supply (regcache, reg->num, reg->data);
5f3563ea
PA
5904 VEC_free (cached_reg_t, stop_reply->regcache);
5905 }
74531fed 5906
ee154bee
TT
5907 rs->remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
5908 rs->remote_watch_data_address = stop_reply->watch_data_address;
1941c569
PA
5909
5910 remote_notice_new_inferior (ptid, 0);
dc146f7c 5911 demand_private_info (ptid)->core = stop_reply->core;
74531fed
PA
5912 }
5913
74531fed
PA
5914 stop_reply_xfree (stop_reply);
5915 return ptid;
5916}
5917
5918/* The non-stop mode version of target_wait. */
5919
5920static ptid_t
47608cb1 5921remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
5922{
5923 struct remote_state *rs = get_remote_state ();
74531fed
PA
5924 struct stop_reply *stop_reply;
5925 int ret;
fee9eda9 5926 int is_notif = 0;
74531fed
PA
5927
5928 /* If in non-stop mode, get out of getpkt even if a
5929 notification is received. */
5930
5931 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 5932 0 /* forever */, &is_notif);
74531fed
PA
5933 while (1)
5934 {
fee9eda9 5935 if (ret != -1 && !is_notif)
74531fed
PA
5936 switch (rs->buf[0])
5937 {
5938 case 'E': /* Error of some sort. */
5939 /* We're out of sync with the target now. Did it continue
5940 or not? We can't tell which thread it was in non-stop,
5941 so just ignore this. */
5942 warning (_("Remote failure reply: %s"), rs->buf);
5943 break;
5944 case 'O': /* Console output. */
5945 remote_console_output (rs->buf + 1);
5946 break;
5947 default:
5948 warning (_("Invalid remote reply: %s"), rs->buf);
5949 break;
5950 }
5951
5952 /* Acknowledge a pending stop reply that may have arrived in the
5953 mean time. */
f48ff2a7 5954 if (rs->notif_state->pending_event[notif_client_stop.id] != NULL)
722247f1 5955 remote_notif_get_pending_events (&notif_client_stop);
74531fed
PA
5956
5957 /* If indeed we noticed a stop reply, we're done. */
5958 stop_reply = queued_stop_reply (ptid);
5959 if (stop_reply != NULL)
5960 return process_stop_reply (stop_reply, status);
5961
47608cb1 5962 /* Still no event. If we're just polling for an event, then
74531fed 5963 return to the event loop. */
47608cb1 5964 if (options & TARGET_WNOHANG)
74531fed
PA
5965 {
5966 status->kind = TARGET_WAITKIND_IGNORE;
5967 return minus_one_ptid;
5968 }
5969
47608cb1 5970 /* Otherwise do a blocking wait. */
74531fed 5971 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
fee9eda9 5972 1 /* forever */, &is_notif);
74531fed
PA
5973 }
5974}
5975
5976/* Wait until the remote machine stops, then return, storing status in
5977 STATUS just as `wait' would. */
5978
5979static ptid_t
47608cb1 5980remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
5981{
5982 struct remote_state *rs = get_remote_state ();
74531fed 5983 ptid_t event_ptid = null_ptid;
cea39f65 5984 char *buf;
74531fed
PA
5985 struct stop_reply *stop_reply;
5986
47608cb1
PA
5987 again:
5988
74531fed
PA
5989 status->kind = TARGET_WAITKIND_IGNORE;
5990 status->value.integer = 0;
5991
5992 stop_reply = queued_stop_reply (ptid);
5993 if (stop_reply != NULL)
5994 return process_stop_reply (stop_reply, status);
5995
5996 if (rs->cached_wait_status)
5997 /* Use the cached wait status, but only once. */
5998 rs->cached_wait_status = 0;
5999 else
6000 {
6001 int ret;
722247f1 6002 int is_notif;
74531fed
PA
6003
6004 if (!target_is_async_p ())
6005 {
934b9bac 6006 ofunc = signal (SIGINT, sync_remote_interrupt);
74531fed
PA
6007 /* If the user hit C-c before this packet, or between packets,
6008 pretend that it was hit right here. */
522002f9 6009 if (check_quit_flag ())
74531fed 6010 {
522002f9 6011 clear_quit_flag ();
934b9bac 6012 sync_remote_interrupt (SIGINT);
74531fed
PA
6013 }
6014 }
6015
6016 /* FIXME: cagney/1999-09-27: If we're in async mode we should
6017 _never_ wait for ever -> test on target_is_async_p().
6018 However, before we do that we need to ensure that the caller
6019 knows how to take the target into/out of async mode. */
722247f1
YQ
6020 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
6021 wait_forever_enabled_p, &is_notif);
6022
5e1b953b
SDJ
6023 if (!target_is_async_p ())
6024 signal (SIGINT, ofunc);
6025
722247f1
YQ
6026 /* GDB gets a notification. Return to core as this event is
6027 not interesting. */
6028 if (ret != -1 && is_notif)
6029 return minus_one_ptid;
74531fed
PA
6030 }
6031
6032 buf = rs->buf;
6033
ee154bee 6034 rs->remote_stopped_by_watchpoint_p = 0;
74531fed
PA
6035
6036 /* We got something. */
6037 rs->waiting_for_stop_reply = 0;
6038
3a29589a
DJ
6039 /* Assume that the target has acknowledged Ctrl-C unless we receive
6040 an 'F' or 'O' packet. */
6041 if (buf[0] != 'F' && buf[0] != 'O')
6042 rs->ctrlc_pending_p = 0;
6043
74531fed
PA
6044 switch (buf[0])
6045 {
6046 case 'E': /* Error of some sort. */
6047 /* We're out of sync with the target now. Did it continue or
6048 not? Not is more likely, so report a stop. */
6049 warning (_("Remote failure reply: %s"), buf);
6050 status->kind = TARGET_WAITKIND_STOPPED;
a493e3e2 6051 status->value.sig = GDB_SIGNAL_0;
74531fed
PA
6052 break;
6053 case 'F': /* File-I/O request. */
3a29589a
DJ
6054 remote_fileio_request (buf, rs->ctrlc_pending_p);
6055 rs->ctrlc_pending_p = 0;
74531fed
PA
6056 break;
6057 case 'T': case 'S': case 'X': case 'W':
6058 {
722247f1
YQ
6059 struct stop_reply *stop_reply
6060 = (struct stop_reply *) remote_notif_parse (&notif_client_stop,
6061 rs->buf);
74531fed 6062
74531fed 6063 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
6064 break;
6065 }
6066 case 'O': /* Console output. */
6067 remote_console_output (buf + 1);
e24a49d8 6068
c8e38a49
PA
6069 /* The target didn't really stop; keep waiting. */
6070 rs->waiting_for_stop_reply = 1;
e24a49d8 6071
c8e38a49
PA
6072 break;
6073 case '\0':
b73be471 6074 if (rs->last_sent_signal != GDB_SIGNAL_0)
c8e38a49
PA
6075 {
6076 /* Zero length reply means that we tried 'S' or 'C' and the
6077 remote system doesn't support it. */
6078 target_terminal_ours_for_output ();
6079 printf_filtered
6080 ("Can't send signals to this remote system. %s not sent.\n",
b73be471
TT
6081 gdb_signal_to_name (rs->last_sent_signal));
6082 rs->last_sent_signal = GDB_SIGNAL_0;
c8e38a49
PA
6083 target_terminal_inferior ();
6084
280ceea3 6085 strcpy ((char *) buf, rs->last_sent_step ? "s" : "c");
c8e38a49
PA
6086 putpkt ((char *) buf);
6087
6088 /* We just told the target to resume, so a stop reply is in
6089 order. */
e24a49d8 6090 rs->waiting_for_stop_reply = 1;
c8e38a49 6091 break;
43ff13b4 6092 }
c8e38a49
PA
6093 /* else fallthrough */
6094 default:
6095 warning (_("Invalid remote reply: %s"), buf);
6096 /* Keep waiting. */
6097 rs->waiting_for_stop_reply = 1;
6098 break;
43ff13b4 6099 }
c8e38a49 6100
c8e38a49 6101 if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
6102 {
6103 /* Nothing interesting happened. If we're doing a non-blocking
6104 poll, we're done. Otherwise, go back to waiting. */
6105 if (options & TARGET_WNOHANG)
6106 return minus_one_ptid;
6107 else
6108 goto again;
6109 }
74531fed
PA
6110 else if (status->kind != TARGET_WAITKIND_EXITED
6111 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
6112 {
6113 if (!ptid_equal (event_ptid, null_ptid))
47f8a51d 6114 record_currthread (rs, event_ptid);
82f73884
PA
6115 else
6116 event_ptid = inferior_ptid;
43ff13b4 6117 }
74531fed
PA
6118 else
6119 /* A process exit. Invalidate our notion of current thread. */
47f8a51d 6120 record_currthread (rs, minus_one_ptid);
79d7f229 6121
82f73884 6122 return event_ptid;
43ff13b4
JM
6123}
6124
74531fed
PA
6125/* Wait until the remote machine stops, then return, storing status in
6126 STATUS just as `wait' would. */
6127
c8e38a49 6128static ptid_t
117de6a9 6129remote_wait (struct target_ops *ops,
47608cb1 6130 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
6131{
6132 ptid_t event_ptid;
6133
74531fed 6134 if (non_stop)
47608cb1 6135 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 6136 else
47608cb1 6137 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 6138
74531fed 6139 if (target_can_async_p ())
c8e38a49 6140 {
74531fed
PA
6141 /* If there are are events left in the queue tell the event loop
6142 to return here. */
722247f1 6143 if (!QUEUE_is_empty (stop_reply_p, stop_reply_queue))
74531fed 6144 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 6145 }
c8e38a49
PA
6146
6147 return event_ptid;
6148}
6149
74ca34ce 6150/* Fetch a single register using a 'p' packet. */
c906108c 6151
b96ec7ac 6152static int
56be3814 6153fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac
AC
6154{
6155 struct remote_state *rs = get_remote_state ();
2e9f7625 6156 char *buf, *p;
b96ec7ac
AC
6157 char regp[MAX_REGISTER_SIZE];
6158 int i;
6159
74ca34ce
DJ
6160 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
6161 return 0;
6162
6163 if (reg->pnum == -1)
6164 return 0;
6165
2e9f7625 6166 p = rs->buf;
fcad0fa4 6167 *p++ = 'p';
74ca34ce 6168 p += hexnumstr (p, reg->pnum);
fcad0fa4 6169 *p++ = '\0';
1f4437a4
MS
6170 putpkt (rs->buf);
6171 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 6172
2e9f7625
DJ
6173 buf = rs->buf;
6174
74ca34ce
DJ
6175 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
6176 {
6177 case PACKET_OK:
6178 break;
6179 case PACKET_UNKNOWN:
6180 return 0;
6181 case PACKET_ERROR:
27a9c0bf
MS
6182 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
6183 gdbarch_register_name (get_regcache_arch (regcache),
6184 reg->regnum),
6185 buf);
74ca34ce 6186 }
3f9a994c
JB
6187
6188 /* If this register is unfetchable, tell the regcache. */
6189 if (buf[0] == 'x')
8480adf2 6190 {
56be3814 6191 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 6192 return 1;
b96ec7ac 6193 }
b96ec7ac 6194
3f9a994c
JB
6195 /* Otherwise, parse and supply the value. */
6196 p = buf;
6197 i = 0;
6198 while (p[0] != 0)
6199 {
6200 if (p[1] == 0)
74ca34ce 6201 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
6202
6203 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
6204 p += 2;
6205 }
56be3814 6206 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 6207 return 1;
b96ec7ac
AC
6208}
6209
74ca34ce
DJ
6210/* Fetch the registers included in the target's 'g' packet. */
6211
29709017
DJ
6212static int
6213send_g_packet (void)
c906108c 6214{
d01949b6 6215 struct remote_state *rs = get_remote_state ();
cea39f65 6216 int buf_len;
c906108c 6217
bba74b36 6218 xsnprintf (rs->buf, get_remote_packet_size (), "g");
74ca34ce 6219 remote_send (&rs->buf, &rs->buf_size);
c906108c 6220
29709017
DJ
6221 /* We can get out of synch in various cases. If the first character
6222 in the buffer is not a hex character, assume that has happened
6223 and try to fetch another packet to read. */
6224 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
6225 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
6226 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
6227 && rs->buf[0] != 'x') /* New: unavailable register value. */
6228 {
6229 if (remote_debug)
6230 fprintf_unfiltered (gdb_stdlog,
6231 "Bad register packet; fetching a new packet\n");
6232 getpkt (&rs->buf, &rs->buf_size, 0);
6233 }
6234
74ca34ce
DJ
6235 buf_len = strlen (rs->buf);
6236
6237 /* Sanity check the received packet. */
6238 if (buf_len % 2 != 0)
6239 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
6240
6241 return buf_len / 2;
6242}
6243
6244static void
56be3814 6245process_g_packet (struct regcache *regcache)
29709017 6246{
4a22f64d 6247 struct gdbarch *gdbarch = get_regcache_arch (regcache);
29709017
DJ
6248 struct remote_state *rs = get_remote_state ();
6249 struct remote_arch_state *rsa = get_remote_arch_state ();
6250 int i, buf_len;
6251 char *p;
6252 char *regs;
6253
6254 buf_len = strlen (rs->buf);
6255
6256 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce
DJ
6257 if (buf_len > 2 * rsa->sizeof_g_packet)
6258 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
6259
6260 /* Save the size of the packet sent to us by the target. It is used
6261 as a heuristic when determining the max size of packets that the
6262 target can safely receive. */
6263 if (rsa->actual_register_packet_size == 0)
6264 rsa->actual_register_packet_size = buf_len;
6265
6266 /* If this is smaller than we guessed the 'g' packet would be,
6267 update our records. A 'g' reply that doesn't include a register's
6268 value implies either that the register is not available, or that
6269 the 'p' packet must be used. */
6270 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 6271 {
74ca34ce
DJ
6272 rsa->sizeof_g_packet = buf_len / 2;
6273
4a22f64d 6274 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 6275 {
74ca34ce
DJ
6276 if (rsa->regs[i].pnum == -1)
6277 continue;
6278
6279 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
6280 rsa->regs[i].in_g_packet = 0;
b96ec7ac 6281 else
74ca34ce 6282 rsa->regs[i].in_g_packet = 1;
b96ec7ac 6283 }
74ca34ce 6284 }
b323314b 6285
74ca34ce 6286 regs = alloca (rsa->sizeof_g_packet);
c906108c
SS
6287
6288 /* Unimplemented registers read as all bits zero. */
ea9c271d 6289 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 6290
c906108c
SS
6291 /* Reply describes registers byte by byte, each byte encoded as two
6292 hex characters. Suck them all up, then supply them to the
6293 register cacheing/storage mechanism. */
6294
74ca34ce 6295 p = rs->buf;
ea9c271d 6296 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 6297 {
74ca34ce
DJ
6298 if (p[0] == 0 || p[1] == 0)
6299 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
6300 internal_error (__FILE__, __LINE__,
9b20d036 6301 _("unexpected end of 'g' packet reply"));
74ca34ce 6302
c906108c 6303 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 6304 regs[i] = 0; /* 'x' */
c906108c
SS
6305 else
6306 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
6307 p += 2;
6308 }
6309
a744cf53
MS
6310 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
6311 {
6312 struct packet_reg *r = &rsa->regs[i];
6313
6314 if (r->in_g_packet)
6315 {
6316 if (r->offset * 2 >= strlen (rs->buf))
6317 /* This shouldn't happen - we adjusted in_g_packet above. */
6318 internal_error (__FILE__, __LINE__,
9b20d036 6319 _("unexpected end of 'g' packet reply"));
a744cf53
MS
6320 else if (rs->buf[r->offset * 2] == 'x')
6321 {
6322 gdb_assert (r->offset * 2 < strlen (rs->buf));
6323 /* The register isn't available, mark it as such (at
6324 the same time setting the value to zero). */
6325 regcache_raw_supply (regcache, r->regnum, NULL);
6326 }
6327 else
6328 regcache_raw_supply (regcache, r->regnum,
6329 regs + r->offset);
6330 }
6331 }
c906108c
SS
6332}
6333
29709017 6334static void
56be3814 6335fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
6336{
6337 send_g_packet ();
56be3814 6338 process_g_packet (regcache);
29709017
DJ
6339}
6340
e6e4e701
PA
6341/* Make the remote selected traceframe match GDB's selected
6342 traceframe. */
6343
6344static void
6345set_remote_traceframe (void)
6346{
6347 int newnum;
262e1174 6348 struct remote_state *rs = get_remote_state ();
e6e4e701 6349
262e1174 6350 if (rs->remote_traceframe_number == get_traceframe_number ())
e6e4e701
PA
6351 return;
6352
6353 /* Avoid recursion, remote_trace_find calls us again. */
262e1174 6354 rs->remote_traceframe_number = get_traceframe_number ();
e6e4e701
PA
6355
6356 newnum = target_trace_find (tfind_number,
6357 get_traceframe_number (), 0, 0, NULL);
6358
6359 /* Should not happen. If it does, all bets are off. */
6360 if (newnum != get_traceframe_number ())
6361 warning (_("could not set remote traceframe"));
6362}
6363
74ca34ce 6364static void
28439f5e
PA
6365remote_fetch_registers (struct target_ops *ops,
6366 struct regcache *regcache, int regnum)
74ca34ce 6367{
74ca34ce
DJ
6368 struct remote_arch_state *rsa = get_remote_arch_state ();
6369 int i;
6370
e6e4e701 6371 set_remote_traceframe ();
79d7f229 6372 set_general_thread (inferior_ptid);
74ca34ce
DJ
6373
6374 if (regnum >= 0)
6375 {
6376 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
a744cf53 6377
74ca34ce
DJ
6378 gdb_assert (reg != NULL);
6379
6380 /* If this register might be in the 'g' packet, try that first -
6381 we are likely to read more than one register. If this is the
6382 first 'g' packet, we might be overly optimistic about its
6383 contents, so fall back to 'p'. */
6384 if (reg->in_g_packet)
6385 {
56be3814 6386 fetch_registers_using_g (regcache);
74ca34ce
DJ
6387 if (reg->in_g_packet)
6388 return;
6389 }
6390
56be3814 6391 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
6392 return;
6393
6394 /* This register is not available. */
56be3814 6395 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
6396
6397 return;
6398 }
6399
56be3814 6400 fetch_registers_using_g (regcache);
74ca34ce 6401
4a22f64d 6402 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 6403 if (!rsa->regs[i].in_g_packet)
56be3814 6404 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
6405 {
6406 /* This register is not available. */
56be3814 6407 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
6408 }
6409}
6410
c906108c
SS
6411/* Prepare to store registers. Since we may send them all (using a
6412 'G' request), we have to read out the ones we don't want to change
6413 first. */
6414
c5aa993b 6415static void
316f2060 6416remote_prepare_to_store (struct regcache *regcache)
c906108c 6417{
ea9c271d 6418 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 6419 int i;
cfd77fa1 6420 gdb_byte buf[MAX_REGISTER_SIZE];
cf0e1e0d 6421
c906108c 6422 /* Make sure the entire registers array is valid. */
444abaca 6423 switch (remote_protocol_packets[PACKET_P].support)
5a2468f5
JM
6424 {
6425 case PACKET_DISABLE:
6426 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 6427 /* Make sure all the necessary registers are cached. */
4a22f64d 6428 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ea9c271d 6429 if (rsa->regs[i].in_g_packet)
316f2060 6430 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5a2468f5
JM
6431 break;
6432 case PACKET_ENABLE:
6433 break;
6434 }
6435}
6436
ad10f812 6437/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 6438 packet was not recognized. */
5a2468f5
JM
6439
6440static int
1f4437a4
MS
6441store_register_using_P (const struct regcache *regcache,
6442 struct packet_reg *reg)
5a2468f5 6443{
4a22f64d 6444 struct gdbarch *gdbarch = get_regcache_arch (regcache);
d01949b6 6445 struct remote_state *rs = get_remote_state ();
5a2468f5 6446 /* Try storing a single register. */
6d820c5c 6447 char *buf = rs->buf;
cfd77fa1 6448 gdb_byte regp[MAX_REGISTER_SIZE];
5a2468f5 6449 char *p;
5a2468f5 6450
74ca34ce
DJ
6451 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
6452 return 0;
6453
6454 if (reg->pnum == -1)
6455 return 0;
6456
ea9c271d 6457 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 6458 p = buf + strlen (buf);
56be3814 6459 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 6460 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
6461 putpkt (rs->buf);
6462 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 6463
74ca34ce
DJ
6464 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
6465 {
6466 case PACKET_OK:
6467 return 1;
6468 case PACKET_ERROR:
27a9c0bf
MS
6469 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
6470 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
6471 case PACKET_UNKNOWN:
6472 return 0;
6473 default:
6474 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
6475 }
c906108c
SS
6476}
6477
23860348
MS
6478/* Store register REGNUM, or all registers if REGNUM == -1, from the
6479 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
6480
6481static void
56be3814 6482store_registers_using_G (const struct regcache *regcache)
c906108c 6483{
d01949b6 6484 struct remote_state *rs = get_remote_state ();
ea9c271d 6485 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 6486 gdb_byte *regs;
c906108c
SS
6487 char *p;
6488
193cb69f
AC
6489 /* Extract all the registers in the regcache copying them into a
6490 local buffer. */
6491 {
b323314b 6492 int i;
a744cf53 6493
ea9c271d
DJ
6494 regs = alloca (rsa->sizeof_g_packet);
6495 memset (regs, 0, rsa->sizeof_g_packet);
4a22f64d 6496 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
193cb69f 6497 {
ea9c271d 6498 struct packet_reg *r = &rsa->regs[i];
a744cf53 6499
b323314b 6500 if (r->in_g_packet)
56be3814 6501 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
6502 }
6503 }
c906108c
SS
6504
6505 /* Command describes registers byte by byte,
6506 each byte encoded as two hex characters. */
6d820c5c 6507 p = rs->buf;
193cb69f 6508 *p++ = 'G';
74ca34ce
DJ
6509 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
6510 updated. */
6511 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
6512 putpkt (rs->buf);
6513 getpkt (&rs->buf, &rs->buf_size, 0);
6514 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
6515 error (_("Could not write registers; remote failure reply '%s'"),
6516 rs->buf);
c906108c 6517}
74ca34ce
DJ
6518
6519/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
6520 of the register cache buffer. FIXME: ignores errors. */
6521
6522static void
28439f5e
PA
6523remote_store_registers (struct target_ops *ops,
6524 struct regcache *regcache, int regnum)
74ca34ce 6525{
74ca34ce
DJ
6526 struct remote_arch_state *rsa = get_remote_arch_state ();
6527 int i;
6528
e6e4e701 6529 set_remote_traceframe ();
79d7f229 6530 set_general_thread (inferior_ptid);
74ca34ce
DJ
6531
6532 if (regnum >= 0)
6533 {
6534 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
a744cf53 6535
74ca34ce
DJ
6536 gdb_assert (reg != NULL);
6537
6538 /* Always prefer to store registers using the 'P' packet if
6539 possible; we often change only a small number of registers.
6540 Sometimes we change a larger number; we'd need help from a
6541 higher layer to know to use 'G'. */
56be3814 6542 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
6543 return;
6544
6545 /* For now, don't complain if we have no way to write the
6546 register. GDB loses track of unavailable registers too
6547 easily. Some day, this may be an error. We don't have
0df8b418 6548 any way to read the register, either... */
74ca34ce
DJ
6549 if (!reg->in_g_packet)
6550 return;
6551
56be3814 6552 store_registers_using_G (regcache);
74ca34ce
DJ
6553 return;
6554 }
6555
56be3814 6556 store_registers_using_G (regcache);
74ca34ce 6557
4a22f64d 6558 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 6559 if (!rsa->regs[i].in_g_packet)
56be3814 6560 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
6561 /* See above for why we do not issue an error here. */
6562 continue;
6563}
c906108c
SS
6564\f
6565
6566/* Return the number of hex digits in num. */
6567
6568static int
fba45db2 6569hexnumlen (ULONGEST num)
c906108c
SS
6570{
6571 int i;
6572
6573 for (i = 0; num != 0; i++)
6574 num >>= 4;
6575
6576 return max (i, 1);
6577}
6578
2df3850c 6579/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
6580
6581static int
fba45db2 6582hexnumstr (char *buf, ULONGEST num)
c906108c 6583{
c906108c 6584 int len = hexnumlen (num);
a744cf53 6585
2df3850c
JM
6586 return hexnumnstr (buf, num, len);
6587}
6588
c906108c 6589
2df3850c 6590/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 6591
2df3850c 6592static int
fba45db2 6593hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
6594{
6595 int i;
6596
6597 buf[width] = '\0';
6598
6599 for (i = width - 1; i >= 0; i--)
c906108c 6600 {
c5aa993b 6601 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
6602 num >>= 4;
6603 }
6604
2df3850c 6605 return width;
c906108c
SS
6606}
6607
23860348 6608/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
6609
6610static CORE_ADDR
fba45db2 6611remote_address_masked (CORE_ADDR addr)
c906108c 6612{
883b9c6c 6613 unsigned int address_size = remote_address_size;
a744cf53 6614
911c95a5
UW
6615 /* If "remoteaddresssize" was not set, default to target address size. */
6616 if (!address_size)
f5656ead 6617 address_size = gdbarch_addr_bit (target_gdbarch ());
911c95a5
UW
6618
6619 if (address_size > 0
6620 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
6621 {
6622 /* Only create a mask when that mask can safely be constructed
23860348 6623 in a ULONGEST variable. */
c906108c 6624 ULONGEST mask = 1;
a744cf53 6625
911c95a5 6626 mask = (mask << address_size) - 1;
c906108c
SS
6627 addr &= mask;
6628 }
6629 return addr;
6630}
6631
a31ea83d
DJ
6632/* Convert BUFFER, binary data at least LEN bytes long, into escaped
6633 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
6634 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
6635 (which may be more than *OUT_LEN due to escape characters). The
6636 total number of bytes in the output buffer will be at most
6637 OUT_MAXLEN. */
6638
6639static int
6640remote_escape_output (const gdb_byte *buffer, int len,
6641 gdb_byte *out_buf, int *out_len,
6642 int out_maxlen)
6643{
6644 int input_index, output_index;
6645
6646 output_index = 0;
6647 for (input_index = 0; input_index < len; input_index++)
6648 {
6649 gdb_byte b = buffer[input_index];
6650
6651 if (b == '$' || b == '#' || b == '}')
6652 {
6653 /* These must be escaped. */
6654 if (output_index + 2 > out_maxlen)
6655 break;
6656 out_buf[output_index++] = '}';
6657 out_buf[output_index++] = b ^ 0x20;
6658 }
6659 else
6660 {
6661 if (output_index + 1 > out_maxlen)
6662 break;
6663 out_buf[output_index++] = b;
6664 }
6665 }
6666
6667 *out_len = input_index;
6668 return output_index;
6669}
6670
0876f84a
DJ
6671/* Convert BUFFER, escaped data LEN bytes long, into binary data
6672 in OUT_BUF. Return the number of bytes written to OUT_BUF.
6673 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
6674
6675 This function reverses remote_escape_output. It allows more
6676 escaped characters than that function does, in particular because
6677 '*' must be escaped to avoid the run-length encoding processing
6678 in reading packets. */
6679
6680static int
6681remote_unescape_input (const gdb_byte *buffer, int len,
6682 gdb_byte *out_buf, int out_maxlen)
6683{
6684 int input_index, output_index;
6685 int escaped;
6686
6687 output_index = 0;
6688 escaped = 0;
6689 for (input_index = 0; input_index < len; input_index++)
6690 {
6691 gdb_byte b = buffer[input_index];
6692
6693 if (output_index + 1 > out_maxlen)
6694 {
6695 warning (_("Received too much data from remote target;"
6696 " ignoring overflow."));
6697 return output_index;
6698 }
6699
6700 if (escaped)
6701 {
6702 out_buf[output_index++] = b ^ 0x20;
6703 escaped = 0;
6704 }
6705 else if (b == '}')
6706 escaped = 1;
6707 else
6708 out_buf[output_index++] = b;
6709 }
6710
6711 if (escaped)
6712 error (_("Unmatched escape character in target response."));
6713
6714 return output_index;
6715}
6716
c906108c
SS
6717/* Determine whether the remote target supports binary downloading.
6718 This is accomplished by sending a no-op memory write of zero length
6719 to the target at the specified address. It does not suffice to send
23860348
MS
6720 the whole packet, since many stubs strip the eighth bit and
6721 subsequently compute a wrong checksum, which causes real havoc with
6722 remote_write_bytes.
7a292a7a 6723
96baa820 6724 NOTE: This can still lose if the serial line is not eight-bit
0df8b418 6725 clean. In cases like this, the user should clear "remote
23860348 6726 X-packet". */
96baa820 6727
c906108c 6728static void
fba45db2 6729check_binary_download (CORE_ADDR addr)
c906108c 6730{
d01949b6 6731 struct remote_state *rs = get_remote_state ();
24b06219 6732
444abaca 6733 switch (remote_protocol_packets[PACKET_X].support)
c906108c 6734 {
96baa820
JM
6735 case PACKET_DISABLE:
6736 break;
6737 case PACKET_ENABLE:
6738 break;
6739 case PACKET_SUPPORT_UNKNOWN:
6740 {
96baa820 6741 char *p;
802188a7 6742
2e9f7625 6743 p = rs->buf;
96baa820
JM
6744 *p++ = 'X';
6745 p += hexnumstr (p, (ULONGEST) addr);
6746 *p++ = ',';
6747 p += hexnumstr (p, (ULONGEST) 0);
6748 *p++ = ':';
6749 *p = '\0';
802188a7 6750
2e9f7625 6751 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 6752 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 6753
2e9f7625 6754 if (rs->buf[0] == '\0')
96baa820
JM
6755 {
6756 if (remote_debug)
6757 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
6758 "binary downloading NOT "
6759 "supported by target\n");
444abaca 6760 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
6761 }
6762 else
6763 {
6764 if (remote_debug)
6765 fprintf_unfiltered (gdb_stdlog,
64b9b334 6766 "binary downloading supported by target\n");
444abaca 6767 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
6768 }
6769 break;
6770 }
c906108c
SS
6771 }
6772}
6773
6774/* Write memory data directly to the remote machine.
6775 This does not inform the data cache; the data cache uses this.
a76d924d 6776 HEADER is the starting part of the packet.
c906108c
SS
6777 MEMADDR is the address in the remote memory space.
6778 MYADDR is the address of the buffer in our space.
6779 LEN is the number of bytes.
a76d924d
DJ
6780 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
6781 should send data as binary ('X'), or hex-encoded ('M').
6782
6783 The function creates packet of the form
6784 <HEADER><ADDRESS>,<LENGTH>:<DATA>
6785
6786 where encoding of <DATA> is termined by PACKET_FORMAT.
6787
6788 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
6789 are omitted.
6790
00d84524
PA
6791 Returns the number of bytes transferred, or a negative value (an
6792 'enum target_xfer_error' value) for error. Only transfer a single
6793 packet. */
c906108c 6794
00d84524 6795static LONGEST
a76d924d 6796remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
45aa4659 6797 const gdb_byte *myaddr, ssize_t len,
a76d924d 6798 char packet_format, int use_length)
c906108c 6799{
6d820c5c 6800 struct remote_state *rs = get_remote_state ();
cfd77fa1 6801 char *p;
a76d924d
DJ
6802 char *plen = NULL;
6803 int plenlen = 0;
917317f4
JM
6804 int todo;
6805 int nr_bytes;
a257b5bb 6806 int payload_size;
6765f3e5 6807 int payload_length;
a76d924d
DJ
6808 int header_length;
6809
6810 if (packet_format != 'X' && packet_format != 'M')
6811 internal_error (__FILE__, __LINE__,
9b20d036 6812 _("remote_write_bytes_aux: bad packet format"));
c906108c 6813
b2182ed2
DJ
6814 if (len <= 0)
6815 return 0;
6816
3de11b2e 6817 payload_size = get_memory_write_packet_size ();
2bc416ba 6818
6d820c5c
DJ
6819 /* The packet buffer will be large enough for the payload;
6820 get_memory_packet_size ensures this. */
a76d924d 6821 rs->buf[0] = '\0';
c906108c 6822
a257b5bb 6823 /* Compute the size of the actual payload by subtracting out the
0df8b418
MS
6824 packet header and footer overhead: "$M<memaddr>,<len>:...#nn". */
6825
a76d924d
DJ
6826 payload_size -= strlen ("$,:#NN");
6827 if (!use_length)
0df8b418 6828 /* The comma won't be used. */
a76d924d
DJ
6829 payload_size += 1;
6830 header_length = strlen (header);
6831 payload_size -= header_length;
3de11b2e 6832 payload_size -= hexnumlen (memaddr);
c906108c 6833
a76d924d 6834 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 6835
a76d924d
DJ
6836 strcat (rs->buf, header);
6837 p = rs->buf + strlen (header);
6838
6839 /* Compute a best guess of the number of bytes actually transfered. */
6840 if (packet_format == 'X')
c906108c 6841 {
23860348 6842 /* Best guess at number of bytes that will fit. */
a257b5bb 6843 todo = min (len, payload_size);
a76d924d
DJ
6844 if (use_length)
6845 payload_size -= hexnumlen (todo);
3de11b2e 6846 todo = min (todo, payload_size);
a76d924d
DJ
6847 }
6848 else
6849 {
23860348 6850 /* Num bytes that will fit. */
a257b5bb 6851 todo = min (len, payload_size / 2);
a76d924d
DJ
6852 if (use_length)
6853 payload_size -= hexnumlen (todo);
3de11b2e 6854 todo = min (todo, payload_size / 2);
917317f4 6855 }
a76d924d 6856
3de11b2e
NS
6857 if (todo <= 0)
6858 internal_error (__FILE__, __LINE__,
405f8e94 6859 _("minimum packet size too small to write data"));
802188a7 6860
6765f3e5
DJ
6861 /* If we already need another packet, then try to align the end
6862 of this packet to a useful boundary. */
6863 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
6864 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
6865
a257b5bb 6866 /* Append "<memaddr>". */
917317f4
JM
6867 memaddr = remote_address_masked (memaddr);
6868 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 6869
a76d924d
DJ
6870 if (use_length)
6871 {
6872 /* Append ",". */
6873 *p++ = ',';
802188a7 6874
a76d924d
DJ
6875 /* Append <len>. Retain the location/size of <len>. It may need to
6876 be adjusted once the packet body has been created. */
6877 plen = p;
6878 plenlen = hexnumstr (p, (ULONGEST) todo);
6879 p += plenlen;
6880 }
a257b5bb
AC
6881
6882 /* Append ":". */
917317f4
JM
6883 *p++ = ':';
6884 *p = '\0';
802188a7 6885
a257b5bb 6886 /* Append the packet body. */
a76d924d 6887 if (packet_format == 'X')
917317f4 6888 {
917317f4
JM
6889 /* Binary mode. Send target system values byte by byte, in
6890 increasing byte addresses. Only escape certain critical
6891 characters. */
bc20a4af
PA
6892 payload_length = remote_escape_output (myaddr, todo, (gdb_byte *) p,
6893 &nr_bytes, payload_size);
6765f3e5
DJ
6894
6895 /* If not all TODO bytes fit, then we'll need another packet. Make
9b7194bc
DJ
6896 a second try to keep the end of the packet aligned. Don't do
6897 this if the packet is tiny. */
6898 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6765f3e5
DJ
6899 {
6900 int new_nr_bytes;
6901
6902 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
6903 - memaddr);
6904 if (new_nr_bytes != nr_bytes)
6905 payload_length = remote_escape_output (myaddr, new_nr_bytes,
bc20a4af 6906 (gdb_byte *) p, &nr_bytes,
6765f3e5
DJ
6907 payload_size);
6908 }
6909
6910 p += payload_length;
a76d924d 6911 if (use_length && nr_bytes < todo)
c906108c 6912 {
802188a7 6913 /* Escape chars have filled up the buffer prematurely,
917317f4
JM
6914 and we have actually sent fewer bytes than planned.
6915 Fix-up the length field of the packet. Use the same
6916 number of characters as before. */
917317f4
JM
6917 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
6918 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 6919 }
a76d924d
DJ
6920 }
6921 else
6922 {
917317f4
JM
6923 /* Normal mode: Send target system values byte by byte, in
6924 increasing byte addresses. Each byte is encoded as a two hex
6925 value. */
2644f393 6926 nr_bytes = bin2hex (myaddr, p, todo);
aa6c0017 6927 p += 2 * nr_bytes;
c906108c 6928 }
802188a7 6929
2e9f7625 6930 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 6931 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 6932
2e9f7625 6933 if (rs->buf[0] == 'E')
00d84524 6934 return TARGET_XFER_E_IO;
802188a7 6935
23860348
MS
6936 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
6937 fewer bytes than we'd planned. */
917317f4 6938 return nr_bytes;
c906108c
SS
6939}
6940
a76d924d
DJ
6941/* Write memory data directly to the remote machine.
6942 This does not inform the data cache; the data cache uses this.
6943 MEMADDR is the address in the remote memory space.
6944 MYADDR is the address of the buffer in our space.
6945 LEN is the number of bytes.
6946
00d84524
PA
6947 Returns number of bytes transferred, or a negative value (an 'enum
6948 target_xfer_error' value) for error. Only transfer a single
6949 packet. */
a76d924d 6950
00d84524 6951static LONGEST
45aa4659 6952remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
a76d924d
DJ
6953{
6954 char *packet_format = 0;
6955
6956 /* Check whether the target supports binary download. */
6957 check_binary_download (memaddr);
6958
6959 switch (remote_protocol_packets[PACKET_X].support)
6960 {
6961 case PACKET_ENABLE:
6962 packet_format = "X";
6963 break;
6964 case PACKET_DISABLE:
6965 packet_format = "M";
6966 break;
6967 case PACKET_SUPPORT_UNKNOWN:
6968 internal_error (__FILE__, __LINE__,
6969 _("remote_write_bytes: bad internal state"));
6970 default:
6971 internal_error (__FILE__, __LINE__, _("bad switch"));
6972 }
6973
6974 return remote_write_bytes_aux (packet_format,
6975 memaddr, myaddr, len, packet_format[0], 1);
6976}
6977
c906108c
SS
6978/* Read memory data directly from the remote machine.
6979 This does not use the data cache; the data cache uses this.
6980 MEMADDR is the address in the remote memory space.
6981 MYADDR is the address of the buffer in our space.
6982 LEN is the number of bytes.
6983
00d84524
PA
6984 Returns number of bytes transferred, or a negative value (an 'enum
6985 target_xfer_error' value) for error. */
c906108c 6986
00d84524 6987static LONGEST
cfd77fa1 6988remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 6989{
6d820c5c 6990 struct remote_state *rs = get_remote_state ();
23860348 6991 int max_buf_size; /* Max size of packet output buffer. */
f7605bc2
PA
6992 char *p;
6993 int todo;
6994 int i;
c906108c 6995
b2182ed2
DJ
6996 if (len <= 0)
6997 return 0;
6998
11cf8741 6999 max_buf_size = get_memory_read_packet_size ();
6d820c5c
DJ
7000 /* The packet buffer will be large enough for the payload;
7001 get_memory_packet_size ensures this. */
c906108c 7002
f7605bc2
PA
7003 /* Number if bytes that will fit. */
7004 todo = min (len, max_buf_size / 2);
c906108c 7005
f7605bc2
PA
7006 /* Construct "m"<memaddr>","<len>". */
7007 memaddr = remote_address_masked (memaddr);
7008 p = rs->buf;
7009 *p++ = 'm';
7010 p += hexnumstr (p, (ULONGEST) memaddr);
7011 *p++ = ',';
7012 p += hexnumstr (p, (ULONGEST) todo);
7013 *p = '\0';
7014 putpkt (rs->buf);
7015 getpkt (&rs->buf, &rs->buf_size, 0);
7016 if (rs->buf[0] == 'E'
7017 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
7018 && rs->buf[3] == '\0')
00d84524 7019 return TARGET_XFER_E_IO;
f7605bc2
PA
7020 /* Reply describes memory byte by byte, each byte encoded as two hex
7021 characters. */
7022 p = rs->buf;
7023 i = hex2bin (p, myaddr, todo);
7024 /* Return what we have. Let higher layers handle partial reads. */
7025 return i;
c906108c 7026}
74531fed 7027
c906108c 7028\f
c906108c 7029
a76d924d
DJ
7030/* Sends a packet with content determined by the printf format string
7031 FORMAT and the remaining arguments, then gets the reply. Returns
7032 whether the packet was a success, a failure, or unknown. */
7033
2c0b251b 7034static enum packet_result
a76d924d
DJ
7035remote_send_printf (const char *format, ...)
7036{
7037 struct remote_state *rs = get_remote_state ();
7038 int max_size = get_remote_packet_size ();
a76d924d 7039 va_list ap;
a744cf53 7040
a76d924d
DJ
7041 va_start (ap, format);
7042
7043 rs->buf[0] = '\0';
7044 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
9b20d036 7045 internal_error (__FILE__, __LINE__, _("Too long remote packet."));
a76d924d
DJ
7046
7047 if (putpkt (rs->buf) < 0)
7048 error (_("Communication problem with target."));
7049
7050 rs->buf[0] = '\0';
7051 getpkt (&rs->buf, &rs->buf_size, 0);
7052
7053 return packet_check_result (rs->buf);
7054}
7055
7056static void
7057restore_remote_timeout (void *p)
7058{
7059 int value = *(int *)p;
a744cf53 7060
a76d924d
DJ
7061 remote_timeout = value;
7062}
7063
7064/* Flash writing can take quite some time. We'll set
7065 effectively infinite timeout for flash operations.
7066 In future, we'll need to decide on a better approach. */
7067static const int remote_flash_timeout = 1000;
7068
7069static void
7070remote_flash_erase (struct target_ops *ops,
7071 ULONGEST address, LONGEST length)
7072{
f5656ead 7073 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
a76d924d
DJ
7074 int saved_remote_timeout = remote_timeout;
7075 enum packet_result ret;
a76d924d
DJ
7076 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7077 &saved_remote_timeout);
a744cf53 7078
a76d924d
DJ
7079 remote_timeout = remote_flash_timeout;
7080
7081 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 7082 phex (address, addr_size),
a76d924d
DJ
7083 phex (length, 4));
7084 switch (ret)
7085 {
7086 case PACKET_UNKNOWN:
7087 error (_("Remote target does not support flash erase"));
7088 case PACKET_ERROR:
7089 error (_("Error erasing flash with vFlashErase packet"));
7090 default:
7091 break;
7092 }
7093
7094 do_cleanups (back_to);
7095}
7096
7097static LONGEST
7098remote_flash_write (struct target_ops *ops,
7099 ULONGEST address, LONGEST length,
7100 const gdb_byte *data)
7101{
7102 int saved_remote_timeout = remote_timeout;
00d84524 7103 LONGEST ret;
a76d924d
DJ
7104 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7105 &saved_remote_timeout);
7106
7107 remote_timeout = remote_flash_timeout;
7108 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
7109 do_cleanups (back_to);
7110
7111 return ret;
7112}
7113
7114static void
7115remote_flash_done (struct target_ops *ops)
7116{
7117 int saved_remote_timeout = remote_timeout;
7118 int ret;
7119 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
7120 &saved_remote_timeout);
7121
7122 remote_timeout = remote_flash_timeout;
7123 ret = remote_send_printf ("vFlashDone");
7124 do_cleanups (back_to);
7125
7126 switch (ret)
7127 {
7128 case PACKET_UNKNOWN:
7129 error (_("Remote target does not support vFlashDone"));
7130 case PACKET_ERROR:
7131 error (_("Error finishing flash operation"));
7132 default:
7133 break;
7134 }
7135}
7136
c906108c 7137static void
fba45db2 7138remote_files_info (struct target_ops *ignore)
c906108c
SS
7139{
7140 puts_filtered ("Debugging a target over a serial line.\n");
7141}
7142\f
7143/* Stuff for dealing with the packets which are part of this protocol.
7144 See comment at top of file for details. */
7145
1927e618
PA
7146/* Close/unpush the remote target, and throw a TARGET_CLOSE_ERROR
7147 error to higher layers. Called when a serial error is detected.
7148 The exception message is STRING, followed by a colon and a blank,
d6cb50a2
JK
7149 the system error message for errno at function entry and final dot
7150 for output compatibility with throw_perror_with_name. */
1927e618
PA
7151
7152static void
7153unpush_and_perror (const char *string)
7154{
d6cb50a2 7155 int saved_errno = errno;
1927e618
PA
7156
7157 remote_unpush_target ();
d6cb50a2
JK
7158 throw_error (TARGET_CLOSE_ERROR, "%s: %s.", string,
7159 safe_strerror (saved_errno));
1927e618
PA
7160}
7161
0876f84a 7162/* Read a single character from the remote end. */
c906108c
SS
7163
7164static int
fba45db2 7165readchar (int timeout)
c906108c
SS
7166{
7167 int ch;
5d93a237 7168 struct remote_state *rs = get_remote_state ();
c906108c 7169
5d93a237 7170 ch = serial_readchar (rs->remote_desc, timeout);
c906108c 7171
2acceee2 7172 if (ch >= 0)
0876f84a 7173 return ch;
2acceee2
JM
7174
7175 switch ((enum serial_rc) ch)
c906108c
SS
7176 {
7177 case SERIAL_EOF:
78a095c3 7178 remote_unpush_target ();
598d3636 7179 throw_error (TARGET_CLOSE_ERROR, _("Remote connection closed"));
2acceee2 7180 /* no return */
c906108c 7181 case SERIAL_ERROR:
1927e618
PA
7182 unpush_and_perror (_("Remote communication error. "
7183 "Target disconnected."));
2acceee2 7184 /* no return */
c906108c 7185 case SERIAL_TIMEOUT:
2acceee2 7186 break;
c906108c 7187 }
2acceee2 7188 return ch;
c906108c
SS
7189}
7190
c33e31fd
PA
7191/* Wrapper for serial_write that closes the target and throws if
7192 writing fails. */
7193
7194static void
7195remote_serial_write (const char *str, int len)
7196{
5d93a237
TT
7197 struct remote_state *rs = get_remote_state ();
7198
7199 if (serial_write (rs->remote_desc, str, len))
c33e31fd 7200 {
1927e618
PA
7201 unpush_and_perror (_("Remote communication error. "
7202 "Target disconnected."));
c33e31fd
PA
7203 }
7204}
7205
6d820c5c
DJ
7206/* Send the command in *BUF to the remote machine, and read the reply
7207 into *BUF. Report an error if we get an error reply. Resize
7208 *BUF using xrealloc if necessary to hold the result, and update
7209 *SIZEOF_BUF. */
c906108c
SS
7210
7211static void
6d820c5c
DJ
7212remote_send (char **buf,
7213 long *sizeof_buf)
c906108c 7214{
6d820c5c 7215 putpkt (*buf);
c2d11a7d 7216 getpkt (buf, sizeof_buf, 0);
c906108c 7217
6d820c5c
DJ
7218 if ((*buf)[0] == 'E')
7219 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
7220}
7221
6e5abd65
PA
7222/* Return a pointer to an xmalloc'ed string representing an escaped
7223 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
7224 etc. The caller is responsible for releasing the returned
7225 memory. */
7226
7227static char *
7228escape_buffer (const char *buf, int n)
7229{
7230 struct cleanup *old_chain;
7231 struct ui_file *stb;
7232 char *str;
6e5abd65
PA
7233
7234 stb = mem_fileopen ();
7235 old_chain = make_cleanup_ui_file_delete (stb);
7236
7237 fputstrn_unfiltered (buf, n, 0, stb);
759ef836 7238 str = ui_file_xstrdup (stb, NULL);
6e5abd65
PA
7239 do_cleanups (old_chain);
7240 return str;
7241}
7242
c906108c
SS
7243/* Display a null-terminated packet on stdout, for debugging, using C
7244 string notation. */
7245
7246static void
fba45db2 7247print_packet (char *buf)
c906108c
SS
7248{
7249 puts_filtered ("\"");
43e526b9 7250 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
7251 puts_filtered ("\"");
7252}
7253
7254int
fba45db2 7255putpkt (char *buf)
c906108c
SS
7256{
7257 return putpkt_binary (buf, strlen (buf));
7258}
7259
7260/* Send a packet to the remote machine, with error checking. The data
23860348 7261 of the packet is in BUF. The string in BUF can be at most
ea9c271d 7262 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
7263 and for a possible /0 if we are debugging (remote_debug) and want
7264 to print the sent packet as a string. */
c906108c
SS
7265
7266static int
fba45db2 7267putpkt_binary (char *buf, int cnt)
c906108c 7268{
2d717e4f 7269 struct remote_state *rs = get_remote_state ();
c906108c
SS
7270 int i;
7271 unsigned char csum = 0;
11cf8741 7272 char *buf2 = alloca (cnt + 6);
085dd6e6 7273
c906108c
SS
7274 int ch;
7275 int tcount = 0;
7276 char *p;
dd61ec5c 7277 char *message;
c906108c 7278
e24a49d8
PA
7279 /* Catch cases like trying to read memory or listing threads while
7280 we're waiting for a stop reply. The remote server wouldn't be
7281 ready to handle this request, so we'd hang and timeout. We don't
7282 have to worry about this in synchronous mode, because in that
7283 case it's not possible to issue a command while the target is
74531fed
PA
7284 running. This is not a problem in non-stop mode, because in that
7285 case, the stub is always ready to process serial input. */
7286 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
e24a49d8
PA
7287 error (_("Cannot execute this command while the target is running."));
7288
2d717e4f
DJ
7289 /* We're sending out a new packet. Make sure we don't look at a
7290 stale cached response. */
7291 rs->cached_wait_status = 0;
7292
c906108c
SS
7293 /* Copy the packet into buffer BUF2, encapsulating it
7294 and giving it a checksum. */
7295
c906108c
SS
7296 p = buf2;
7297 *p++ = '$';
7298
7299 for (i = 0; i < cnt; i++)
7300 {
7301 csum += buf[i];
7302 *p++ = buf[i];
7303 }
7304 *p++ = '#';
7305 *p++ = tohex ((csum >> 4) & 0xf);
7306 *p++ = tohex (csum & 0xf);
7307
7308 /* Send it over and over until we get a positive ack. */
7309
7310 while (1)
7311 {
7312 int started_error_output = 0;
7313
7314 if (remote_debug)
7315 {
6e5abd65
PA
7316 struct cleanup *old_chain;
7317 char *str;
7318
c906108c 7319 *p = '\0';
6e5abd65
PA
7320 str = escape_buffer (buf2, p - buf2);
7321 old_chain = make_cleanup (xfree, str);
7322 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
0f71a2f6 7323 gdb_flush (gdb_stdlog);
6e5abd65 7324 do_cleanups (old_chain);
c906108c 7325 }
c33e31fd 7326 remote_serial_write (buf2, p - buf2);
c906108c 7327
a6f3e723
SL
7328 /* If this is a no acks version of the remote protocol, send the
7329 packet and move on. */
7330 if (rs->noack_mode)
7331 break;
7332
74531fed
PA
7333 /* Read until either a timeout occurs (-2) or '+' is read.
7334 Handle any notification that arrives in the mean time. */
c906108c
SS
7335 while (1)
7336 {
7337 ch = readchar (remote_timeout);
7338
c5aa993b 7339 if (remote_debug)
c906108c
SS
7340 {
7341 switch (ch)
7342 {
7343 case '+':
1216fa2c 7344 case '-':
c906108c
SS
7345 case SERIAL_TIMEOUT:
7346 case '$':
74531fed 7347 case '%':
c906108c
SS
7348 if (started_error_output)
7349 {
7350 putchar_unfiltered ('\n');
7351 started_error_output = 0;
7352 }
7353 }
7354 }
7355
7356 switch (ch)
7357 {
7358 case '+':
7359 if (remote_debug)
0f71a2f6 7360 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 7361 return 1;
1216fa2c
AC
7362 case '-':
7363 if (remote_debug)
7364 fprintf_unfiltered (gdb_stdlog, "Nak\n");
a17d146e 7365 /* FALLTHROUGH */
c906108c 7366 case SERIAL_TIMEOUT:
c5aa993b 7367 tcount++;
c906108c
SS
7368 if (tcount > 3)
7369 return 0;
23860348 7370 break; /* Retransmit buffer. */
c906108c
SS
7371 case '$':
7372 {
40e3f985 7373 if (remote_debug)
2bc416ba 7374 fprintf_unfiltered (gdb_stdlog,
23860348 7375 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
7376 /* It's probably an old response sent because an ACK
7377 was lost. Gobble up the packet and ack it so it
7378 doesn't get retransmitted when we resend this
7379 packet. */
6d820c5c 7380 skip_frame ();
c33e31fd 7381 remote_serial_write ("+", 1);
23860348 7382 continue; /* Now, go look for +. */
c906108c 7383 }
74531fed
PA
7384
7385 case '%':
7386 {
7387 int val;
7388
7389 /* If we got a notification, handle it, and go back to looking
7390 for an ack. */
7391 /* We've found the start of a notification. Now
7392 collect the data. */
7393 val = read_frame (&rs->buf, &rs->buf_size);
7394 if (val >= 0)
7395 {
7396 if (remote_debug)
7397 {
6e5abd65
PA
7398 struct cleanup *old_chain;
7399 char *str;
7400
7401 str = escape_buffer (rs->buf, val);
7402 old_chain = make_cleanup (xfree, str);
7403 fprintf_unfiltered (gdb_stdlog,
7404 " Notification received: %s\n",
7405 str);
7406 do_cleanups (old_chain);
74531fed 7407 }
5965e028 7408 handle_notification (rs->notif_state, rs->buf);
74531fed
PA
7409 /* We're in sync now, rewait for the ack. */
7410 tcount = 0;
7411 }
7412 else
7413 {
7414 if (remote_debug)
7415 {
7416 if (!started_error_output)
7417 {
7418 started_error_output = 1;
7419 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
7420 }
7421 fputc_unfiltered (ch & 0177, gdb_stdlog);
7422 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
7423 }
7424 }
7425 continue;
7426 }
7427 /* fall-through */
c906108c
SS
7428 default:
7429 if (remote_debug)
7430 {
7431 if (!started_error_output)
7432 {
7433 started_error_output = 1;
0f71a2f6 7434 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 7435 }
0f71a2f6 7436 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
7437 }
7438 continue;
7439 }
23860348 7440 break; /* Here to retransmit. */
c906108c
SS
7441 }
7442
7443#if 0
7444 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
7445 able to get out next time we call QUIT, without anything as
7446 violent as interrupt_query. If we want to provide a way out of
7447 here without getting to the next QUIT, it should be based on
7448 hitting ^C twice as in remote_wait. */
c906108c
SS
7449 if (quit_flag)
7450 {
7451 quit_flag = 0;
7452 interrupt_query ();
7453 }
7454#endif
7455 }
a6f3e723 7456 return 0;
c906108c
SS
7457}
7458
6d820c5c
DJ
7459/* Come here after finding the start of a frame when we expected an
7460 ack. Do our best to discard the rest of this packet. */
7461
7462static void
7463skip_frame (void)
7464{
7465 int c;
7466
7467 while (1)
7468 {
7469 c = readchar (remote_timeout);
7470 switch (c)
7471 {
7472 case SERIAL_TIMEOUT:
7473 /* Nothing we can do. */
7474 return;
7475 case '#':
7476 /* Discard the two bytes of checksum and stop. */
7477 c = readchar (remote_timeout);
7478 if (c >= 0)
7479 c = readchar (remote_timeout);
7480
7481 return;
7482 case '*': /* Run length encoding. */
7483 /* Discard the repeat count. */
7484 c = readchar (remote_timeout);
7485 if (c < 0)
7486 return;
7487 break;
7488 default:
7489 /* A regular character. */
7490 break;
7491 }
7492 }
7493}
7494
c906108c 7495/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
7496 into *BUF, verifying the checksum, length, and handling run-length
7497 compression. NUL terminate the buffer. If there is not enough room,
7498 expand *BUF using xrealloc.
c906108c 7499
c2d11a7d
JM
7500 Returns -1 on error, number of characters in buffer (ignoring the
7501 trailing NULL) on success. (could be extended to return one of the
23860348 7502 SERIAL status indications). */
c2d11a7d
JM
7503
7504static long
6d820c5c
DJ
7505read_frame (char **buf_p,
7506 long *sizeof_buf)
c906108c
SS
7507{
7508 unsigned char csum;
c2d11a7d 7509 long bc;
c906108c 7510 int c;
6d820c5c 7511 char *buf = *buf_p;
a6f3e723 7512 struct remote_state *rs = get_remote_state ();
c906108c
SS
7513
7514 csum = 0;
c2d11a7d 7515 bc = 0;
c906108c
SS
7516
7517 while (1)
7518 {
7519 c = readchar (remote_timeout);
c906108c
SS
7520 switch (c)
7521 {
7522 case SERIAL_TIMEOUT:
7523 if (remote_debug)
0f71a2f6 7524 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 7525 return -1;
c906108c
SS
7526 case '$':
7527 if (remote_debug)
0f71a2f6
JM
7528 fputs_filtered ("Saw new packet start in middle of old one\n",
7529 gdb_stdlog);
23860348 7530 return -1; /* Start a new packet, count retries. */
c906108c
SS
7531 case '#':
7532 {
7533 unsigned char pktcsum;
e1b09194
AC
7534 int check_0 = 0;
7535 int check_1 = 0;
c906108c 7536
c2d11a7d 7537 buf[bc] = '\0';
c906108c 7538
e1b09194
AC
7539 check_0 = readchar (remote_timeout);
7540 if (check_0 >= 0)
7541 check_1 = readchar (remote_timeout);
802188a7 7542
e1b09194
AC
7543 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
7544 {
7545 if (remote_debug)
2bc416ba 7546 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 7547 gdb_stdlog);
e1b09194
AC
7548 return -1;
7549 }
7550 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
7551 {
7552 if (remote_debug)
2bc416ba 7553 fputs_filtered ("Communication error in checksum\n",
23860348 7554 gdb_stdlog);
40e3f985
FN
7555 return -1;
7556 }
c906108c 7557
a6f3e723
SL
7558 /* Don't recompute the checksum; with no ack packets we
7559 don't have any way to indicate a packet retransmission
7560 is necessary. */
7561 if (rs->noack_mode)
7562 return bc;
7563
e1b09194 7564 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 7565 if (csum == pktcsum)
c2d11a7d 7566 return bc;
c906108c 7567
c5aa993b 7568 if (remote_debug)
c906108c 7569 {
6e5abd65
PA
7570 struct cleanup *old_chain;
7571 char *str;
7572
7573 str = escape_buffer (buf, bc);
7574 old_chain = make_cleanup (xfree, str);
7575 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
7576 "Bad checksum, sentsum=0x%x, "
7577 "csum=0x%x, buf=%s\n",
6e5abd65
PA
7578 pktcsum, csum, str);
7579 do_cleanups (old_chain);
c906108c 7580 }
c2d11a7d 7581 /* Number of characters in buffer ignoring trailing
23860348 7582 NULL. */
c2d11a7d 7583 return -1;
c906108c 7584 }
23860348 7585 case '*': /* Run length encoding. */
c2c6d25f
JM
7586 {
7587 int repeat;
c906108c 7588
a744cf53 7589 csum += c;
b4501125
AC
7590 c = readchar (remote_timeout);
7591 csum += c;
23860348 7592 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 7593
23860348 7594 /* The character before ``*'' is repeated. */
c2d11a7d 7595
6d820c5c 7596 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 7597 {
6d820c5c
DJ
7598 if (bc + repeat - 1 >= *sizeof_buf - 1)
7599 {
7600 /* Make some more room in the buffer. */
7601 *sizeof_buf += repeat;
7602 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7603 buf = *buf_p;
7604 }
7605
c2d11a7d
JM
7606 memset (&buf[bc], buf[bc - 1], repeat);
7607 bc += repeat;
c2c6d25f
JM
7608 continue;
7609 }
7610
c2d11a7d 7611 buf[bc] = '\0';
6d820c5c 7612 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 7613 return -1;
c2c6d25f 7614 }
c906108c 7615 default:
6d820c5c 7616 if (bc >= *sizeof_buf - 1)
c906108c 7617 {
6d820c5c
DJ
7618 /* Make some more room in the buffer. */
7619 *sizeof_buf *= 2;
7620 *buf_p = xrealloc (*buf_p, *sizeof_buf);
7621 buf = *buf_p;
c906108c
SS
7622 }
7623
6d820c5c
DJ
7624 buf[bc++] = c;
7625 csum += c;
7626 continue;
c906108c
SS
7627 }
7628 }
7629}
7630
7631/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
7632 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7633 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7634 rather than timing out; this is used (in synchronous mode) to wait
7635 for a target that is is executing user code to stop. */
d9fcf2fb
JM
7636/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
7637 don't have to change all the calls to getpkt to deal with the
7638 return value, because at the moment I don't know what the right
23860348 7639 thing to do it for those. */
c906108c 7640void
6d820c5c
DJ
7641getpkt (char **buf,
7642 long *sizeof_buf,
c2d11a7d 7643 int forever)
d9fcf2fb
JM
7644{
7645 int timed_out;
7646
7647 timed_out = getpkt_sane (buf, sizeof_buf, forever);
7648}
7649
7650
7651/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
7652 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
7653 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
7654 rather than timing out; this is used (in synchronous mode) to wait
7655 for a target that is is executing user code to stop. If FOREVER ==
7656 0, this function is allowed to time out gracefully and return an
74531fed
PA
7657 indication of this to the caller. Otherwise return the number of
7658 bytes read. If EXPECTING_NOTIF, consider receiving a notification
fee9eda9
YQ
7659 enough reason to return to the caller. *IS_NOTIF is an output
7660 boolean that indicates whether *BUF holds a notification or not
7661 (a regular packet). */
74531fed 7662
3172dc30 7663static int
74531fed 7664getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
fee9eda9 7665 int expecting_notif, int *is_notif)
c906108c 7666{
2d717e4f 7667 struct remote_state *rs = get_remote_state ();
c906108c
SS
7668 int c;
7669 int tries;
7670 int timeout;
df4b58fe 7671 int val = -1;
c906108c 7672
2d717e4f
DJ
7673 /* We're reading a new response. Make sure we don't look at a
7674 previously cached response. */
7675 rs->cached_wait_status = 0;
7676
6d820c5c 7677 strcpy (*buf, "timeout");
c906108c
SS
7678
7679 if (forever)
74531fed
PA
7680 timeout = watchdog > 0 ? watchdog : -1;
7681 else if (expecting_notif)
7682 timeout = 0; /* There should already be a char in the buffer. If
7683 not, bail out. */
c906108c
SS
7684 else
7685 timeout = remote_timeout;
7686
7687#define MAX_TRIES 3
7688
74531fed
PA
7689 /* Process any number of notifications, and then return when
7690 we get a packet. */
7691 for (;;)
c906108c 7692 {
74531fed
PA
7693 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
7694 times. */
7695 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 7696 {
74531fed
PA
7697 /* This can loop forever if the remote side sends us
7698 characters continuously, but if it pauses, we'll get
7699 SERIAL_TIMEOUT from readchar because of timeout. Then
7700 we'll count that as a retry.
7701
7702 Note that even when forever is set, we will only wait
7703 forever prior to the start of a packet. After that, we
7704 expect characters to arrive at a brisk pace. They should
7705 show up within remote_timeout intervals. */
7706 do
7707 c = readchar (timeout);
7708 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
7709
7710 if (c == SERIAL_TIMEOUT)
7711 {
74531fed
PA
7712 if (expecting_notif)
7713 return -1; /* Don't complain, it's normal to not get
7714 anything in this case. */
7715
23860348 7716 if (forever) /* Watchdog went off? Kill the target. */
c906108c 7717 {
2acceee2 7718 QUIT;
78a095c3 7719 remote_unpush_target ();
598d3636
JK
7720 throw_error (TARGET_CLOSE_ERROR,
7721 _("Watchdog timeout has expired. "
7722 "Target detached."));
c906108c 7723 }
c906108c 7724 if (remote_debug)
0f71a2f6 7725 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 7726 }
74531fed
PA
7727 else
7728 {
7729 /* We've found the start of a packet or notification.
7730 Now collect the data. */
7731 val = read_frame (buf, sizeof_buf);
7732 if (val >= 0)
7733 break;
7734 }
7735
c33e31fd 7736 remote_serial_write ("-", 1);
c906108c 7737 }
c906108c 7738
74531fed
PA
7739 if (tries > MAX_TRIES)
7740 {
7741 /* We have tried hard enough, and just can't receive the
7742 packet/notification. Give up. */
7743 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 7744
74531fed
PA
7745 /* Skip the ack char if we're in no-ack mode. */
7746 if (!rs->noack_mode)
c33e31fd 7747 remote_serial_write ("+", 1);
74531fed
PA
7748 return -1;
7749 }
c906108c 7750
74531fed
PA
7751 /* If we got an ordinary packet, return that to our caller. */
7752 if (c == '$')
c906108c
SS
7753 {
7754 if (remote_debug)
43e526b9 7755 {
6e5abd65
PA
7756 struct cleanup *old_chain;
7757 char *str;
7758
7759 str = escape_buffer (*buf, val);
7760 old_chain = make_cleanup (xfree, str);
7761 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
7762 do_cleanups (old_chain);
43e526b9 7763 }
a6f3e723
SL
7764
7765 /* Skip the ack char if we're in no-ack mode. */
7766 if (!rs->noack_mode)
c33e31fd 7767 remote_serial_write ("+", 1);
fee9eda9
YQ
7768 if (is_notif != NULL)
7769 *is_notif = 0;
0876f84a 7770 return val;
c906108c
SS
7771 }
7772
74531fed
PA
7773 /* If we got a notification, handle it, and go back to looking
7774 for a packet. */
7775 else
7776 {
7777 gdb_assert (c == '%');
7778
7779 if (remote_debug)
7780 {
6e5abd65
PA
7781 struct cleanup *old_chain;
7782 char *str;
7783
7784 str = escape_buffer (*buf, val);
7785 old_chain = make_cleanup (xfree, str);
7786 fprintf_unfiltered (gdb_stdlog,
7787 " Notification received: %s\n",
7788 str);
7789 do_cleanups (old_chain);
74531fed 7790 }
fee9eda9
YQ
7791 if (is_notif != NULL)
7792 *is_notif = 1;
c906108c 7793
5965e028 7794 handle_notification (rs->notif_state, *buf);
c906108c 7795
74531fed 7796 /* Notifications require no acknowledgement. */
a6f3e723 7797
74531fed 7798 if (expecting_notif)
fee9eda9 7799 return val;
74531fed
PA
7800 }
7801 }
7802}
7803
7804static int
7805getpkt_sane (char **buf, long *sizeof_buf, int forever)
7806{
fee9eda9 7807 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0, NULL);
74531fed
PA
7808}
7809
7810static int
fee9eda9
YQ
7811getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever,
7812 int *is_notif)
74531fed 7813{
fee9eda9
YQ
7814 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1,
7815 is_notif);
c906108c 7816}
74531fed 7817
c906108c 7818\f
732f3f12
TT
7819/* A helper function that just calls putpkt; for type correctness. */
7820
7821static int
7822putpkt_for_catch_errors (void *arg)
7823{
7824 return putpkt (arg);
7825}
7826
c906108c 7827static void
7d85a9c0 7828remote_kill (struct target_ops *ops)
43ff13b4 7829{
23860348
MS
7830 /* Use catch_errors so the user can quit from gdb even when we
7831 aren't on speaking terms with the remote system. */
732f3f12 7832 catch_errors (putpkt_for_catch_errors, "k", "", RETURN_MASK_ERROR);
43ff13b4
JM
7833
7834 /* Don't wait for it to die. I'm not really sure it matters whether
7835 we do or not. For the existing stubs, kill is a noop. */
7836 target_mourn_inferior ();
7837}
7838
82f73884
PA
7839static int
7840remote_vkill (int pid, struct remote_state *rs)
7841{
7842 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7843 return -1;
7844
7845 /* Tell the remote target to detach. */
bba74b36 7846 xsnprintf (rs->buf, get_remote_packet_size (), "vKill;%x", pid);
82f73884
PA
7847 putpkt (rs->buf);
7848 getpkt (&rs->buf, &rs->buf_size, 0);
7849
7850 if (packet_ok (rs->buf,
7851 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
7852 return 0;
7853 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
7854 return -1;
7855 else
7856 return 1;
7857}
7858
7859static void
7d85a9c0 7860extended_remote_kill (struct target_ops *ops)
82f73884
PA
7861{
7862 int res;
7863 int pid = ptid_get_pid (inferior_ptid);
7864 struct remote_state *rs = get_remote_state ();
7865
7866 res = remote_vkill (pid, rs);
901f9912 7867 if (res == -1 && !(rs->extended && remote_multi_process_p (rs)))
82f73884
PA
7868 {
7869 /* Don't try 'k' on a multi-process aware stub -- it has no way
7870 to specify the pid. */
7871
7872 putpkt ("k");
7873#if 0
7874 getpkt (&rs->buf, &rs->buf_size, 0);
7875 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
7876 res = 1;
7877#else
7878 /* Don't wait for it to die. I'm not really sure it matters whether
7879 we do or not. For the existing stubs, kill is a noop. */
7880 res = 0;
7881#endif
7882 }
7883
7884 if (res != 0)
7885 error (_("Can't kill process"));
7886
82f73884
PA
7887 target_mourn_inferior ();
7888}
7889
c906108c 7890static void
136d6dae 7891remote_mourn (struct target_ops *ops)
c906108c 7892{
136d6dae 7893 remote_mourn_1 (ops);
c906108c
SS
7894}
7895
c906108c
SS
7896/* Worker function for remote_mourn. */
7897static void
fba45db2 7898remote_mourn_1 (struct target_ops *target)
c906108c
SS
7899{
7900 unpush_target (target);
ce5ce7ed 7901
8a2492ee
PA
7902 /* remote_close takes care of doing most of the clean up. */
7903 generic_mourn_inferior ();
c906108c
SS
7904}
7905
2d717e4f
DJ
7906static void
7907extended_remote_mourn_1 (struct target_ops *target)
7908{
7909 struct remote_state *rs = get_remote_state ();
c906108c 7910
e24a49d8
PA
7911 /* In case we got here due to an error, but we're going to stay
7912 connected. */
7913 rs->waiting_for_stop_reply = 0;
7914
dc1981d7
PA
7915 /* If the current general thread belonged to the process we just
7916 detached from or has exited, the remote side current general
7917 thread becomes undefined. Considering a case like this:
7918
7919 - We just got here due to a detach.
7920 - The process that we're detaching from happens to immediately
7921 report a global breakpoint being hit in non-stop mode, in the
7922 same thread we had selected before.
7923 - GDB attaches to this process again.
7924 - This event happens to be the next event we handle.
7925
7926 GDB would consider that the current general thread didn't need to
7927 be set on the stub side (with Hg), since for all it knew,
7928 GENERAL_THREAD hadn't changed.
7929
7930 Notice that although in all-stop mode, the remote server always
7931 sets the current thread to the thread reporting the stop event,
7932 that doesn't happen in non-stop mode; in non-stop, the stub *must
7933 not* change the current thread when reporting a breakpoint hit,
7934 due to the decoupling of event reporting and event handling.
7935
7936 To keep things simple, we always invalidate our notion of the
7937 current thread. */
47f8a51d 7938 record_currthread (rs, minus_one_ptid);
dc1981d7 7939
2d717e4f
DJ
7940 /* Unlike "target remote", we do not want to unpush the target; then
7941 the next time the user says "run", we won't be connected. */
7942
48aa3c27
PA
7943 /* Call common code to mark the inferior as not running. */
7944 generic_mourn_inferior ();
7945
d729566a 7946 if (!have_inferiors ())
2d717e4f 7947 {
82f73884
PA
7948 if (!remote_multi_process_p (rs))
7949 {
7950 /* Check whether the target is running now - some remote stubs
7951 automatically restart after kill. */
7952 putpkt ("?");
7953 getpkt (&rs->buf, &rs->buf_size, 0);
7954
7955 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
7956 {
3e43a32a
MS
7957 /* Assume that the target has been restarted. Set
7958 inferior_ptid so that bits of core GDB realizes
7959 there's something here, e.g., so that the user can
7960 say "kill" again. */
82f73884
PA
7961 inferior_ptid = magic_null_ptid;
7962 }
82f73884 7963 }
2d717e4f
DJ
7964 }
7965}
c906108c
SS
7966
7967static void
136d6dae 7968extended_remote_mourn (struct target_ops *ops)
c906108c 7969{
136d6dae 7970 extended_remote_mourn_1 (ops);
2d717e4f 7971}
c906108c 7972
03583c20
UW
7973static int
7974extended_remote_supports_disable_randomization (void)
7975{
7976 return (remote_protocol_packets[PACKET_QDisableRandomization].support
7977 == PACKET_ENABLE);
7978}
7979
7980static void
7981extended_remote_disable_randomization (int val)
7982{
7983 struct remote_state *rs = get_remote_state ();
7984 char *reply;
7985
bba74b36
YQ
7986 xsnprintf (rs->buf, get_remote_packet_size (), "QDisableRandomization:%x",
7987 val);
03583c20
UW
7988 putpkt (rs->buf);
7989 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
7990 if (*reply == '\0')
7991 error (_("Target does not support QDisableRandomization."));
7992 if (strcmp (reply, "OK") != 0)
7993 error (_("Bogus QDisableRandomization reply from target: %s"), reply);
7994}
7995
2d717e4f
DJ
7996static int
7997extended_remote_run (char *args)
7998{
7999 struct remote_state *rs = get_remote_state ();
2d717e4f 8000 int len;
c906108c 8001
2d717e4f
DJ
8002 /* If the user has disabled vRun support, or we have detected that
8003 support is not available, do not try it. */
8004 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
8005 return -1;
424163ea 8006
2d717e4f
DJ
8007 strcpy (rs->buf, "vRun;");
8008 len = strlen (rs->buf);
c906108c 8009
2d717e4f
DJ
8010 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
8011 error (_("Remote file name too long for run packet"));
8012 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
8013
d1a41061 8014 gdb_assert (args != NULL);
2d717e4f
DJ
8015 if (*args)
8016 {
8017 struct cleanup *back_to;
8018 int i;
8019 char **argv;
8020
d1a41061 8021 argv = gdb_buildargv (args);
2d717e4f
DJ
8022 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
8023 for (i = 0; argv[i] != NULL; i++)
8024 {
8025 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
8026 error (_("Argument list too long for run packet"));
8027 rs->buf[len++] = ';';
8028 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
8029 }
8030 do_cleanups (back_to);
8031 }
8032
8033 rs->buf[len++] = '\0';
8034
8035 putpkt (rs->buf);
8036 getpkt (&rs->buf, &rs->buf_size, 0);
8037
8038 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
8039 {
3405876a 8040 /* We have a wait response. All is well. */
2d717e4f
DJ
8041 return 0;
8042 }
8043 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
8044 /* It wasn't disabled before, but it is now. */
8045 return -1;
8046 else
8047 {
8048 if (remote_exec_file[0] == '\0')
8049 error (_("Running the default executable on the remote target failed; "
8050 "try \"set remote exec-file\"?"));
8051 else
8052 error (_("Running \"%s\" on the remote target failed"),
8053 remote_exec_file);
8054 }
c906108c
SS
8055}
8056
2d717e4f
DJ
8057/* In the extended protocol we want to be able to do things like
8058 "run" and have them basically work as expected. So we need
8059 a special create_inferior function. We support changing the
8060 executable file and the command line arguments, but not the
8061 environment. */
8062
43ff13b4 8063static void
2d717e4f 8064extended_remote_create_inferior_1 (char *exec_file, char *args,
75c99385 8065 char **env, int from_tty)
43ff13b4 8066{
3405876a
PA
8067 int run_worked;
8068 char *stop_reply;
8069 struct remote_state *rs = get_remote_state ();
8070
43ff13b4 8071 /* If running asynchronously, register the target file descriptor
23860348 8072 with the event loop. */
75c99385 8073 if (target_can_async_p ())
2acceee2 8074 target_async (inferior_event_handler, 0);
43ff13b4 8075
03583c20
UW
8076 /* Disable address space randomization if requested (and supported). */
8077 if (extended_remote_supports_disable_randomization ())
8078 extended_remote_disable_randomization (disable_randomization);
8079
43ff13b4 8080 /* Now restart the remote server. */
3405876a
PA
8081 run_worked = extended_remote_run (args) != -1;
8082 if (!run_worked)
2d717e4f
DJ
8083 {
8084 /* vRun was not supported. Fail if we need it to do what the
8085 user requested. */
8086 if (remote_exec_file[0])
8087 error (_("Remote target does not support \"set remote exec-file\""));
8088 if (args[0])
8089 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 8090
2d717e4f
DJ
8091 /* Fall back to "R". */
8092 extended_remote_restart ();
8093 }
424163ea 8094
6c95b8df
PA
8095 if (!have_inferiors ())
8096 {
8097 /* Clean up from the last time we ran, before we mark the target
8098 running again. This will mark breakpoints uninserted, and
8099 get_offsets may insert breakpoints. */
8100 init_thread_list ();
8101 init_wait_for_inferior ();
8102 }
45280a52 8103
3405876a
PA
8104 /* vRun's success return is a stop reply. */
8105 stop_reply = run_worked ? rs->buf : NULL;
8106 add_current_inferior_and_thread (stop_reply);
c0a2216e 8107
2d717e4f
DJ
8108 /* Get updated offsets, if the stub uses qOffsets. */
8109 get_offsets ();
2d717e4f
DJ
8110}
8111
8112static void
136d6dae
VP
8113extended_remote_create_inferior (struct target_ops *ops,
8114 char *exec_file, char *args,
2d717e4f
DJ
8115 char **env, int from_tty)
8116{
75c99385 8117 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
43ff13b4 8118}
c906108c 8119\f
c5aa993b 8120
b775012e
LM
8121/* Given a location's target info BP_TGT and the packet buffer BUF, output
8122 the list of conditions (in agent expression bytecode format), if any, the
8123 target needs to evaluate. The output is placed into the packet buffer
bba74b36 8124 started from BUF and ended at BUF_END. */
b775012e
LM
8125
8126static int
8127remote_add_target_side_condition (struct gdbarch *gdbarch,
bba74b36
YQ
8128 struct bp_target_info *bp_tgt, char *buf,
8129 char *buf_end)
b775012e
LM
8130{
8131 struct agent_expr *aexpr = NULL;
8132 int i, ix;
8133 char *pkt;
8134 char *buf_start = buf;
8135
8136 if (VEC_empty (agent_expr_p, bp_tgt->conditions))
8137 return 0;
8138
8139 buf += strlen (buf);
bba74b36 8140 xsnprintf (buf, buf_end - buf, "%s", ";");
b775012e
LM
8141 buf++;
8142
8143 /* Send conditions to the target and free the vector. */
8144 for (ix = 0;
8145 VEC_iterate (agent_expr_p, bp_tgt->conditions, ix, aexpr);
8146 ix++)
8147 {
bba74b36 8148 xsnprintf (buf, buf_end - buf, "X%x,", aexpr->len);
b775012e
LM
8149 buf += strlen (buf);
8150 for (i = 0; i < aexpr->len; ++i)
8151 buf = pack_hex_byte (buf, aexpr->buf[i]);
8152 *buf = '\0';
8153 }
8154
8155 VEC_free (agent_expr_p, bp_tgt->conditions);
8156 return 0;
8157}
8158
d3ce09f5
SS
8159static void
8160remote_add_target_side_commands (struct gdbarch *gdbarch,
8161 struct bp_target_info *bp_tgt, char *buf)
8162{
8163 struct agent_expr *aexpr = NULL;
8164 int i, ix;
8165
8166 if (VEC_empty (agent_expr_p, bp_tgt->tcommands))
8167 return;
8168
8169 buf += strlen (buf);
8170
8171 sprintf (buf, ";cmds:%x,", bp_tgt->persist);
8172 buf += strlen (buf);
8173
8174 /* Concatenate all the agent expressions that are commands into the
8175 cmds parameter. */
8176 for (ix = 0;
8177 VEC_iterate (agent_expr_p, bp_tgt->tcommands, ix, aexpr);
8178 ix++)
8179 {
8180 sprintf (buf, "X%x,", aexpr->len);
8181 buf += strlen (buf);
8182 for (i = 0; i < aexpr->len; ++i)
8183 buf = pack_hex_byte (buf, aexpr->buf[i]);
8184 *buf = '\0';
8185 }
8186
8187 VEC_free (agent_expr_p, bp_tgt->tcommands);
8188}
8189
8181d85f
DJ
8190/* Insert a breakpoint. On targets that have software breakpoint
8191 support, we ask the remote target to do the work; on targets
8192 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
8193
8194static int
a6d9a66e
UW
8195remote_insert_breakpoint (struct gdbarch *gdbarch,
8196 struct bp_target_info *bp_tgt)
c906108c 8197{
d471ea57
AC
8198 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
8199 If it succeeds, then set the support to PACKET_ENABLE. If it
8200 fails, and the user has explicitly requested the Z support then
23860348 8201 report an error, otherwise, mark it disabled and go on. */
802188a7 8202
444abaca 8203 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 8204 {
7c0f6dcc 8205 CORE_ADDR addr = bp_tgt->placed_address;
4fff2411 8206 struct remote_state *rs;
bba74b36 8207 char *p, *endbuf;
7c0f6dcc 8208 int bpsize;
b775012e 8209 struct condition_list *cond = NULL;
4fff2411 8210
28439a30
PA
8211 /* Make sure the remote is pointing at the right process, if
8212 necessary. */
8213 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8214 set_general_process ();
8215
a1dcb23a 8216 gdbarch_remote_breakpoint_from_pc (gdbarch, &addr, &bpsize);
4fff2411
JZ
8217
8218 rs = get_remote_state ();
8219 p = rs->buf;
bba74b36 8220 endbuf = rs->buf + get_remote_packet_size ();
802188a7 8221
96baa820
JM
8222 *(p++) = 'Z';
8223 *(p++) = '0';
8224 *(p++) = ',';
7c0f6dcc 8225 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 8226 p += hexnumstr (p, addr);
bba74b36 8227 xsnprintf (p, endbuf - p, ",%d", bpsize);
802188a7 8228
b775012e 8229 if (remote_supports_cond_breakpoints ())
bba74b36 8230 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 8231
d3ce09f5
SS
8232 if (remote_can_run_breakpoint_commands ())
8233 remote_add_target_side_commands (gdbarch, bp_tgt, p);
8234
6d820c5c
DJ
8235 putpkt (rs->buf);
8236 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 8237
6d820c5c 8238 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 8239 {
d471ea57
AC
8240 case PACKET_ERROR:
8241 return -1;
8242 case PACKET_OK:
7c0f6dcc
JL
8243 bp_tgt->placed_address = addr;
8244 bp_tgt->placed_size = bpsize;
d471ea57
AC
8245 return 0;
8246 case PACKET_UNKNOWN:
8247 break;
96baa820
JM
8248 }
8249 }
c906108c 8250
a6d9a66e 8251 return memory_insert_breakpoint (gdbarch, bp_tgt);
c906108c
SS
8252}
8253
8254static int
a6d9a66e
UW
8255remote_remove_breakpoint (struct gdbarch *gdbarch,
8256 struct bp_target_info *bp_tgt)
c906108c 8257{
8181d85f 8258 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 8259 struct remote_state *rs = get_remote_state ();
96baa820 8260
444abaca 8261 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 8262 {
6d820c5c 8263 char *p = rs->buf;
bba74b36 8264 char *endbuf = rs->buf + get_remote_packet_size ();
802188a7 8265
28439a30
PA
8266 /* Make sure the remote is pointing at the right process, if
8267 necessary. */
8268 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8269 set_general_process ();
8270
96baa820
JM
8271 *(p++) = 'z';
8272 *(p++) = '0';
8273 *(p++) = ',';
8274
8181d85f
DJ
8275 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
8276 p += hexnumstr (p, addr);
bba74b36 8277 xsnprintf (p, endbuf - p, ",%d", bp_tgt->placed_size);
802188a7 8278
6d820c5c
DJ
8279 putpkt (rs->buf);
8280 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 8281
6d820c5c 8282 return (rs->buf[0] == 'E');
96baa820
JM
8283 }
8284
a6d9a66e 8285 return memory_remove_breakpoint (gdbarch, bp_tgt);
c906108c
SS
8286}
8287
d471ea57
AC
8288static int
8289watchpoint_to_Z_packet (int type)
8290{
8291 switch (type)
8292 {
8293 case hw_write:
bb858e6a 8294 return Z_PACKET_WRITE_WP;
d471ea57
AC
8295 break;
8296 case hw_read:
bb858e6a 8297 return Z_PACKET_READ_WP;
d471ea57
AC
8298 break;
8299 case hw_access:
bb858e6a 8300 return Z_PACKET_ACCESS_WP;
d471ea57
AC
8301 break;
8302 default:
8e65ff28 8303 internal_error (__FILE__, __LINE__,
e2e0b3e5 8304 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
8305 }
8306}
8307
3c3bea1c 8308static int
0cf6dd15
TJB
8309remote_insert_watchpoint (CORE_ADDR addr, int len, int type,
8310 struct expression *cond)
96baa820 8311{
d01949b6 8312 struct remote_state *rs = get_remote_state ();
bba74b36 8313 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 8314 char *p;
d471ea57 8315 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 8316
444abaca 8317 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
85d721b8 8318 return 1;
802188a7 8319
28439a30
PA
8320 /* Make sure the remote is pointing at the right process, if
8321 necessary. */
8322 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8323 set_general_process ();
8324
bba74b36 8325 xsnprintf (rs->buf, endbuf - rs->buf, "Z%x,", packet);
6d820c5c 8326 p = strchr (rs->buf, '\0');
96baa820
JM
8327 addr = remote_address_masked (addr);
8328 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 8329 xsnprintf (p, endbuf - p, ",%x", len);
802188a7 8330
6d820c5c
DJ
8331 putpkt (rs->buf);
8332 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 8333
6d820c5c 8334 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
8335 {
8336 case PACKET_ERROR:
d471ea57 8337 return -1;
85d721b8
PA
8338 case PACKET_UNKNOWN:
8339 return 1;
d471ea57
AC
8340 case PACKET_OK:
8341 return 0;
8342 }
8e65ff28 8343 internal_error (__FILE__, __LINE__,
e2e0b3e5 8344 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
8345}
8346
283002cf
MR
8347static int
8348remote_watchpoint_addr_within_range (struct target_ops *target, CORE_ADDR addr,
8349 CORE_ADDR start, int length)
8350{
8351 CORE_ADDR diff = remote_address_masked (addr - start);
8352
8353 return diff < length;
8354}
8355
d471ea57 8356
3c3bea1c 8357static int
0cf6dd15
TJB
8358remote_remove_watchpoint (CORE_ADDR addr, int len, int type,
8359 struct expression *cond)
96baa820 8360{
d01949b6 8361 struct remote_state *rs = get_remote_state ();
bba74b36 8362 char *endbuf = rs->buf + get_remote_packet_size ();
e514a9d6 8363 char *p;
d471ea57
AC
8364 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
8365
444abaca 8366 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 8367 return -1;
802188a7 8368
28439a30
PA
8369 /* Make sure the remote is pointing at the right process, if
8370 necessary. */
8371 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8372 set_general_process ();
8373
bba74b36 8374 xsnprintf (rs->buf, endbuf - rs->buf, "z%x,", packet);
6d820c5c 8375 p = strchr (rs->buf, '\0');
96baa820
JM
8376 addr = remote_address_masked (addr);
8377 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 8378 xsnprintf (p, endbuf - p, ",%x", len);
6d820c5c
DJ
8379 putpkt (rs->buf);
8380 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 8381
6d820c5c 8382 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
8383 {
8384 case PACKET_ERROR:
8385 case PACKET_UNKNOWN:
8386 return -1;
8387 case PACKET_OK:
8388 return 0;
8389 }
8e65ff28 8390 internal_error (__FILE__, __LINE__,
e2e0b3e5 8391 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
8392}
8393
3c3bea1c 8394
501eef12 8395int remote_hw_watchpoint_limit = -1;
480a3f21 8396int remote_hw_watchpoint_length_limit = -1;
501eef12 8397int remote_hw_breakpoint_limit = -1;
d471ea57 8398
480a3f21
PW
8399static int
8400remote_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
8401{
8402 if (remote_hw_watchpoint_length_limit == 0)
8403 return 0;
8404 else if (remote_hw_watchpoint_length_limit < 0)
8405 return 1;
8406 else if (len <= remote_hw_watchpoint_length_limit)
8407 return 1;
8408 else
8409 return 0;
8410}
8411
b9362cc7 8412static int
3c3bea1c 8413remote_check_watch_resources (int type, int cnt, int ot)
96baa820 8414{
3c3bea1c
GS
8415 if (type == bp_hardware_breakpoint)
8416 {
8417 if (remote_hw_breakpoint_limit == 0)
8418 return 0;
501eef12
AC
8419 else if (remote_hw_breakpoint_limit < 0)
8420 return 1;
3c3bea1c
GS
8421 else if (cnt <= remote_hw_breakpoint_limit)
8422 return 1;
8423 }
8424 else
8425 {
8426 if (remote_hw_watchpoint_limit == 0)
8427 return 0;
501eef12
AC
8428 else if (remote_hw_watchpoint_limit < 0)
8429 return 1;
3c3bea1c
GS
8430 else if (ot)
8431 return -1;
8432 else if (cnt <= remote_hw_watchpoint_limit)
8433 return 1;
8434 }
8435 return -1;
8436}
8437
b9362cc7 8438static int
3c3bea1c
GS
8439remote_stopped_by_watchpoint (void)
8440{
ee154bee
TT
8441 struct remote_state *rs = get_remote_state ();
8442
8443 return rs->remote_stopped_by_watchpoint_p;
3c3bea1c
GS
8444}
8445
4aa7a7f5
JJ
8446static int
8447remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 8448{
ee154bee 8449 struct remote_state *rs = get_remote_state ();
4aa7a7f5 8450 int rc = 0;
a744cf53 8451
d983da9c 8452 if (remote_stopped_by_watchpoint ())
4aa7a7f5 8453 {
ee154bee 8454 *addr_p = rs->remote_watch_data_address;
4aa7a7f5
JJ
8455 rc = 1;
8456 }
8457
8458 return rc;
3c3bea1c
GS
8459}
8460
8461
8462static int
a6d9a66e
UW
8463remote_insert_hw_breakpoint (struct gdbarch *gdbarch,
8464 struct bp_target_info *bp_tgt)
3c3bea1c 8465{
8181d85f 8466 CORE_ADDR addr;
4fff2411 8467 struct remote_state *rs;
bba74b36 8468 char *p, *endbuf;
dd61ec5c 8469 char *message;
802188a7 8470
c8189ed1 8471 /* The length field should be set to the size of a breakpoint
8181d85f 8472 instruction, even though we aren't inserting one ourselves. */
c8189ed1 8473
a1dcb23a 8474 gdbarch_remote_breakpoint_from_pc
a6d9a66e 8475 (gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
3c3bea1c 8476
444abaca 8477 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 8478 return -1;
2bc416ba 8479
28439a30
PA
8480 /* Make sure the remote is pointing at the right process, if
8481 necessary. */
8482 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8483 set_general_process ();
8484
4fff2411
JZ
8485 rs = get_remote_state ();
8486 p = rs->buf;
bba74b36 8487 endbuf = rs->buf + get_remote_packet_size ();
4fff2411 8488
96baa820
JM
8489 *(p++) = 'Z';
8490 *(p++) = '1';
8491 *(p++) = ',';
802188a7 8492
8181d85f 8493 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 8494 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 8495 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
96baa820 8496
b775012e 8497 if (remote_supports_cond_breakpoints ())
bba74b36 8498 remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf);
b775012e 8499
d3ce09f5
SS
8500 if (remote_can_run_breakpoint_commands ())
8501 remote_add_target_side_commands (gdbarch, bp_tgt, p);
8502
6d820c5c
DJ
8503 putpkt (rs->buf);
8504 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 8505
6d820c5c 8506 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
8507 {
8508 case PACKET_ERROR:
dd61ec5c
MW
8509 if (rs->buf[1] == '.')
8510 {
8511 message = strchr (rs->buf + 2, '.');
8512 if (message)
0316657e 8513 error (_("Remote failure reply: %s"), message + 1);
dd61ec5c
MW
8514 }
8515 return -1;
d471ea57
AC
8516 case PACKET_UNKNOWN:
8517 return -1;
8518 case PACKET_OK:
8519 return 0;
8520 }
8e65ff28 8521 internal_error (__FILE__, __LINE__,
e2e0b3e5 8522 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
8523}
8524
d471ea57 8525
802188a7 8526static int
a6d9a66e
UW
8527remote_remove_hw_breakpoint (struct gdbarch *gdbarch,
8528 struct bp_target_info *bp_tgt)
96baa820 8529{
8181d85f 8530 CORE_ADDR addr;
d01949b6 8531 struct remote_state *rs = get_remote_state ();
6d820c5c 8532 char *p = rs->buf;
bba74b36 8533 char *endbuf = rs->buf + get_remote_packet_size ();
c8189ed1 8534
444abaca 8535 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 8536 return -1;
802188a7 8537
28439a30
PA
8538 /* Make sure the remote is pointing at the right process, if
8539 necessary. */
8540 if (!gdbarch_has_global_breakpoints (target_gdbarch ()))
8541 set_general_process ();
8542
96baa820
JM
8543 *(p++) = 'z';
8544 *(p++) = '1';
8545 *(p++) = ',';
802188a7 8546
8181d85f 8547 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 8548 p += hexnumstr (p, (ULONGEST) addr);
bba74b36 8549 xsnprintf (p, endbuf - p, ",%x", bp_tgt->placed_size);
96baa820 8550
6d820c5c
DJ
8551 putpkt (rs->buf);
8552 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 8553
6d820c5c 8554 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
8555 {
8556 case PACKET_ERROR:
8557 case PACKET_UNKNOWN:
8558 return -1;
8559 case PACKET_OK:
8560 return 0;
8561 }
8e65ff28 8562 internal_error (__FILE__, __LINE__,
e2e0b3e5 8563 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 8564}
96baa820 8565
4a5e7a5b
PA
8566/* Verify memory using the "qCRC:" request. */
8567
8568static int
8569remote_verify_memory (struct target_ops *ops,
8570 const gdb_byte *data, CORE_ADDR lma, ULONGEST size)
8571{
8572 struct remote_state *rs = get_remote_state ();
8573 unsigned long host_crc, target_crc;
8574 char *tmp;
8575
28439a30
PA
8576 /* Make sure the remote is pointing at the right process. */
8577 set_general_process ();
8578
4a5e7a5b
PA
8579 /* FIXME: assumes lma can fit into long. */
8580 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
8581 (long) lma, (long) size);
8582 putpkt (rs->buf);
8583
8584 /* Be clever; compute the host_crc before waiting for target
8585 reply. */
85ec6ce7 8586 host_crc = xcrc32 (data, size, 0xffffffff);
4a5e7a5b
PA
8587
8588 getpkt (&rs->buf, &rs->buf_size, 0);
8589 if (rs->buf[0] == 'E')
8590 return -1;
8591
8592 if (rs->buf[0] != 'C')
8593 error (_("remote target does not support this operation"));
8594
8595 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
8596 target_crc = target_crc * 16 + fromhex (*tmp);
8597
8598 return (host_crc == target_crc);
8599}
8600
c906108c
SS
8601/* compare-sections command
8602
8603 With no arguments, compares each loadable section in the exec bfd
8604 with the same memory range on the target, and reports mismatches.
4a5e7a5b 8605 Useful for verifying the image on the target against the exec file. */
e514a9d6 8606
c906108c 8607static void
fba45db2 8608compare_sections_command (char *args, int from_tty)
c906108c
SS
8609{
8610 asection *s;
c906108c 8611 struct cleanup *old_chain;
948f8e3d 8612 gdb_byte *sectdata;
ce359b09 8613 const char *sectname;
c906108c
SS
8614 bfd_size_type size;
8615 bfd_vma lma;
8616 int matched = 0;
8617 int mismatched = 0;
4a5e7a5b 8618 int res;
c906108c
SS
8619
8620 if (!exec_bfd)
8a3fe4f8 8621 error (_("command cannot be used without an exec file"));
c906108c 8622
28439a30
PA
8623 /* Make sure the remote is pointing at the right process. */
8624 set_general_process ();
8625
c5aa993b 8626 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
8627 {
8628 if (!(s->flags & SEC_LOAD))
0df8b418 8629 continue; /* Skip non-loadable section. */
c906108c 8630
2c500098 8631 size = bfd_get_section_size (s);
c906108c 8632 if (size == 0)
0df8b418 8633 continue; /* Skip zero-length section. */
c906108c 8634
ce359b09 8635 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 8636 if (args && strcmp (args, sectname) != 0)
0df8b418 8637 continue; /* Not the section selected by user. */
c906108c 8638
0df8b418 8639 matched = 1; /* Do this section. */
c906108c 8640 lma = s->lma;
c906108c 8641
c906108c 8642 sectdata = xmalloc (size);
b8c9b27d 8643 old_chain = make_cleanup (xfree, sectdata);
c906108c 8644 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
c906108c 8645
4a5e7a5b
PA
8646 res = target_verify_memory (sectdata, lma, size);
8647
8648 if (res == -1)
5af949e3 8649 error (_("target memory fault, section %s, range %s -- %s"), sectname,
f5656ead
TT
8650 paddress (target_gdbarch (), lma),
8651 paddress (target_gdbarch (), lma + size));
c906108c 8652
5af949e3 8653 printf_filtered ("Section %s, range %s -- %s: ", sectname,
f5656ead
TT
8654 paddress (target_gdbarch (), lma),
8655 paddress (target_gdbarch (), lma + size));
4a5e7a5b 8656 if (res)
c906108c
SS
8657 printf_filtered ("matched.\n");
8658 else
c5aa993b
JM
8659 {
8660 printf_filtered ("MIS-MATCHED!\n");
8661 mismatched++;
8662 }
c906108c
SS
8663
8664 do_cleanups (old_chain);
8665 }
8666 if (mismatched > 0)
8a3fe4f8
AC
8667 warning (_("One or more sections of the remote executable does not match\n\
8668the loaded file\n"));
c906108c 8669 if (args && !matched)
a3f17187 8670 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
8671}
8672
0e7f50da
UW
8673/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
8674 into remote target. The number of bytes written to the remote
8675 target is returned, or -1 for error. */
8676
8677static LONGEST
8678remote_write_qxfer (struct target_ops *ops, const char *object_name,
8679 const char *annex, const gdb_byte *writebuf,
8680 ULONGEST offset, LONGEST len,
8681 struct packet_config *packet)
8682{
8683 int i, buf_len;
8684 ULONGEST n;
0e7f50da
UW
8685 struct remote_state *rs = get_remote_state ();
8686 int max_size = get_memory_write_packet_size ();
8687
8688 if (packet->support == PACKET_DISABLE)
8689 return -1;
8690
8691 /* Insert header. */
8692 i = snprintf (rs->buf, max_size,
8693 "qXfer:%s:write:%s:%s:",
8694 object_name, annex ? annex : "",
8695 phex_nz (offset, sizeof offset));
8696 max_size -= (i + 1);
8697
8698 /* Escape as much data as fits into rs->buf. */
8699 buf_len = remote_escape_output
bc20a4af 8700 (writebuf, len, (gdb_byte *) rs->buf + i, &max_size, max_size);
0e7f50da
UW
8701
8702 if (putpkt_binary (rs->buf, i + buf_len) < 0
8703 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
8704 || packet_ok (rs->buf, packet) != PACKET_OK)
8705 return -1;
8706
8707 unpack_varlen_hex (rs->buf, &n);
8708 return n;
8709}
8710
0876f84a
DJ
8711/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
8712 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
8713 number of bytes read is returned, or 0 for EOF, or -1 for error.
8714 The number of bytes read may be less than LEN without indicating an
8715 EOF. PACKET is checked and updated to indicate whether the remote
8716 target supports this object. */
8717
8718static LONGEST
8719remote_read_qxfer (struct target_ops *ops, const char *object_name,
8720 const char *annex,
8721 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
8722 struct packet_config *packet)
8723{
0876f84a 8724 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
8725 LONGEST i, n, packet_len;
8726
8727 if (packet->support == PACKET_DISABLE)
8728 return -1;
8729
8730 /* Check whether we've cached an end-of-object packet that matches
8731 this request. */
8e88304f 8732 if (rs->finished_object)
0876f84a 8733 {
8e88304f
TT
8734 if (strcmp (object_name, rs->finished_object) == 0
8735 && strcmp (annex ? annex : "", rs->finished_annex) == 0
8736 && offset == rs->finished_offset)
0876f84a
DJ
8737 return 0;
8738
8739 /* Otherwise, we're now reading something different. Discard
8740 the cache. */
8e88304f
TT
8741 xfree (rs->finished_object);
8742 xfree (rs->finished_annex);
8743 rs->finished_object = NULL;
8744 rs->finished_annex = NULL;
0876f84a
DJ
8745 }
8746
8747 /* Request only enough to fit in a single packet. The actual data
8748 may not, since we don't know how much of it will need to be escaped;
8749 the target is free to respond with slightly less data. We subtract
8750 five to account for the response type and the protocol frame. */
8751 n = min (get_remote_packet_size () - 5, len);
8752 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
8753 object_name, annex ? annex : "",
8754 phex_nz (offset, sizeof offset),
8755 phex_nz (n, sizeof n));
8756 i = putpkt (rs->buf);
8757 if (i < 0)
8758 return -1;
8759
8760 rs->buf[0] = '\0';
8761 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8762 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
8763 return -1;
8764
8765 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
8766 error (_("Unknown remote qXfer reply: %s"), rs->buf);
8767
8768 /* 'm' means there is (or at least might be) more data after this
8769 batch. That does not make sense unless there's at least one byte
8770 of data in this reply. */
8771 if (rs->buf[0] == 'm' && packet_len == 1)
8772 error (_("Remote qXfer reply contained no data."));
8773
8774 /* Got some data. */
bc20a4af
PA
8775 i = remote_unescape_input ((gdb_byte *) rs->buf + 1,
8776 packet_len - 1, readbuf, n);
0876f84a
DJ
8777
8778 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
8779 or possibly empty. If we have the final block of a non-empty
8780 object, record this fact to bypass a subsequent partial read. */
8781 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a 8782 {
8e88304f
TT
8783 rs->finished_object = xstrdup (object_name);
8784 rs->finished_annex = xstrdup (annex ? annex : "");
8785 rs->finished_offset = offset + i;
0876f84a
DJ
8786 }
8787
8788 return i;
8789}
8790
1e3ff5ad 8791static LONGEST
4b8a223f 8792remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5
MK
8793 const char *annex, gdb_byte *readbuf,
8794 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
c906108c 8795{
82f73884 8796 struct remote_state *rs;
c906108c 8797 int i;
6d820c5c 8798 char *p2;
1e3ff5ad 8799 char query_type;
c906108c 8800
e6e4e701 8801 set_remote_traceframe ();
82f73884
PA
8802 set_general_thread (inferior_ptid);
8803
8804 rs = get_remote_state ();
8805
b2182ed2 8806 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
8807 if (object == TARGET_OBJECT_MEMORY)
8808 {
00d84524 8809 LONGEST xfered;
21e3b9b9 8810
2d717e4f
DJ
8811 /* If the remote target is connected but not running, we should
8812 pass this request down to a lower stratum (e.g. the executable
8813 file). */
8814 if (!target_has_execution)
8815 return 0;
8816
21e3b9b9 8817 if (writebuf != NULL)
b2182ed2 8818 xfered = remote_write_bytes (offset, writebuf, len);
21e3b9b9 8819 else
b2182ed2 8820 xfered = remote_read_bytes (offset, readbuf, len);
21e3b9b9 8821
00d84524 8822 return xfered;
21e3b9b9
DJ
8823 }
8824
0df8b418 8825 /* Handle SPU memory using qxfer packets. */
0e7f50da
UW
8826 if (object == TARGET_OBJECT_SPU)
8827 {
8828 if (readbuf)
8829 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
8830 &remote_protocol_packets
8831 [PACKET_qXfer_spu_read]);
8832 else
8833 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
8834 &remote_protocol_packets
8835 [PACKET_qXfer_spu_write]);
8836 }
8837
4aa995e1
PA
8838 /* Handle extra signal info using qxfer packets. */
8839 if (object == TARGET_OBJECT_SIGNAL_INFO)
8840 {
8841 if (readbuf)
8842 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
8843 &remote_protocol_packets
8844 [PACKET_qXfer_siginfo_read]);
8845 else
3e43a32a
MS
8846 return remote_write_qxfer (ops, "siginfo", annex,
8847 writebuf, offset, len,
4aa995e1
PA
8848 &remote_protocol_packets
8849 [PACKET_qXfer_siginfo_write]);
8850 }
8851
0fb4aa4b
PA
8852 if (object == TARGET_OBJECT_STATIC_TRACE_DATA)
8853 {
8854 if (readbuf)
3e43a32a
MS
8855 return remote_read_qxfer (ops, "statictrace", annex,
8856 readbuf, offset, len,
0fb4aa4b
PA
8857 &remote_protocol_packets
8858 [PACKET_qXfer_statictrace_read]);
8859 else
8860 return -1;
8861 }
8862
a76d924d
DJ
8863 /* Only handle flash writes. */
8864 if (writebuf != NULL)
8865 {
8866 LONGEST xfered;
8867
8868 switch (object)
8869 {
8870 case TARGET_OBJECT_FLASH:
00d84524 8871 return remote_flash_write (ops, offset, len, writebuf);
a76d924d
DJ
8872
8873 default:
8874 return -1;
8875 }
8876 }
4b8a223f 8877
1e3ff5ad
AC
8878 /* Map pre-existing objects onto letters. DO NOT do this for new
8879 objects!!! Instead specify new query packets. */
8880 switch (object)
c906108c 8881 {
1e3ff5ad
AC
8882 case TARGET_OBJECT_AVR:
8883 query_type = 'R';
8884 break;
802188a7
RM
8885
8886 case TARGET_OBJECT_AUXV:
0876f84a
DJ
8887 gdb_assert (annex == NULL);
8888 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
8889 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 8890
23181151
DJ
8891 case TARGET_OBJECT_AVAILABLE_FEATURES:
8892 return remote_read_qxfer
8893 (ops, "features", annex, readbuf, offset, len,
8894 &remote_protocol_packets[PACKET_qXfer_features]);
8895
cfa9d6d9
DJ
8896 case TARGET_OBJECT_LIBRARIES:
8897 return remote_read_qxfer
8898 (ops, "libraries", annex, readbuf, offset, len,
8899 &remote_protocol_packets[PACKET_qXfer_libraries]);
8900
2268b414
JK
8901 case TARGET_OBJECT_LIBRARIES_SVR4:
8902 return remote_read_qxfer
8903 (ops, "libraries-svr4", annex, readbuf, offset, len,
8904 &remote_protocol_packets[PACKET_qXfer_libraries_svr4]);
8905
fd79ecee
DJ
8906 case TARGET_OBJECT_MEMORY_MAP:
8907 gdb_assert (annex == NULL);
8908 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
8909 &remote_protocol_packets[PACKET_qXfer_memory_map]);
8910
07e059b5
VP
8911 case TARGET_OBJECT_OSDATA:
8912 /* Should only get here if we're connected. */
5d93a237 8913 gdb_assert (rs->remote_desc);
07e059b5
VP
8914 return remote_read_qxfer
8915 (ops, "osdata", annex, readbuf, offset, len,
8916 &remote_protocol_packets[PACKET_qXfer_osdata]);
8917
dc146f7c
VP
8918 case TARGET_OBJECT_THREADS:
8919 gdb_assert (annex == NULL);
8920 return remote_read_qxfer (ops, "threads", annex, readbuf, offset, len,
8921 &remote_protocol_packets[PACKET_qXfer_threads]);
8922
b3b9301e
PA
8923 case TARGET_OBJECT_TRACEFRAME_INFO:
8924 gdb_assert (annex == NULL);
8925 return remote_read_qxfer
8926 (ops, "traceframe-info", annex, readbuf, offset, len,
8927 &remote_protocol_packets[PACKET_qXfer_traceframe_info]);
78d85199
YQ
8928
8929 case TARGET_OBJECT_FDPIC:
8930 return remote_read_qxfer (ops, "fdpic", annex, readbuf, offset, len,
8931 &remote_protocol_packets[PACKET_qXfer_fdpic]);
169081d0
TG
8932
8933 case TARGET_OBJECT_OPENVMS_UIB:
8934 return remote_read_qxfer (ops, "uib", annex, readbuf, offset, len,
8935 &remote_protocol_packets[PACKET_qXfer_uib]);
8936
9accd112
MM
8937 case TARGET_OBJECT_BTRACE:
8938 return remote_read_qxfer (ops, "btrace", annex, readbuf, offset, len,
8939 &remote_protocol_packets[PACKET_qXfer_btrace]);
8940
1e3ff5ad 8941 default:
c906108c
SS
8942 return -1;
8943 }
8944
4b8a223f 8945 /* Note: a zero OFFSET and LEN can be used to query the minimum
1e3ff5ad 8946 buffer size. */
4b8a223f 8947 if (offset == 0 && len == 0)
ea9c271d 8948 return (get_remote_packet_size ());
0df8b418 8949 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 8950 large enough let the caller deal with it. */
ea9c271d 8951 if (len < get_remote_packet_size ())
1e3ff5ad 8952 return -1;
ea9c271d 8953 len = get_remote_packet_size ();
1e3ff5ad 8954
23860348 8955 /* Except for querying the minimum buffer size, target must be open. */
5d93a237 8956 if (!rs->remote_desc)
8a3fe4f8 8957 error (_("remote query is only available after target open"));
c906108c 8958
1e3ff5ad 8959 gdb_assert (annex != NULL);
4b8a223f 8960 gdb_assert (readbuf != NULL);
c906108c 8961
6d820c5c 8962 p2 = rs->buf;
c906108c
SS
8963 *p2++ = 'q';
8964 *p2++ = query_type;
8965
23860348
MS
8966 /* We used one buffer char for the remote protocol q command and
8967 another for the query type. As the remote protocol encapsulation
8968 uses 4 chars plus one extra in case we are debugging
8969 (remote_debug), we have PBUFZIZ - 7 left to pack the query
8970 string. */
c906108c 8971 i = 0;
ea9c271d 8972 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 8973 {
1e3ff5ad
AC
8974 /* Bad caller may have sent forbidden characters. */
8975 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
8976 *p2++ = annex[i];
c906108c
SS
8977 i++;
8978 }
1e3ff5ad
AC
8979 *p2 = '\0';
8980 gdb_assert (annex[i] == '\0');
c906108c 8981
6d820c5c 8982 i = putpkt (rs->buf);
c5aa993b
JM
8983 if (i < 0)
8984 return i;
c906108c 8985
6d820c5c
DJ
8986 getpkt (&rs->buf, &rs->buf_size, 0);
8987 strcpy ((char *) readbuf, rs->buf);
c906108c 8988
cfd77fa1 8989 return strlen ((char *) readbuf);
c906108c
SS
8990}
8991
08388c79
DE
8992static int
8993remote_search_memory (struct target_ops* ops,
8994 CORE_ADDR start_addr, ULONGEST search_space_len,
8995 const gdb_byte *pattern, ULONGEST pattern_len,
8996 CORE_ADDR *found_addrp)
8997{
f5656ead 8998 int addr_size = gdbarch_addr_bit (target_gdbarch ()) / 8;
08388c79
DE
8999 struct remote_state *rs = get_remote_state ();
9000 int max_size = get_memory_write_packet_size ();
9001 struct packet_config *packet =
9002 &remote_protocol_packets[PACKET_qSearch_memory];
0df8b418
MS
9003 /* Number of packet bytes used to encode the pattern;
9004 this could be more than PATTERN_LEN due to escape characters. */
08388c79 9005 int escaped_pattern_len;
0df8b418 9006 /* Amount of pattern that was encodable in the packet. */
08388c79
DE
9007 int used_pattern_len;
9008 int i;
9009 int found;
9010 ULONGEST found_addr;
9011
9012 /* Don't go to the target if we don't have to.
9013 This is done before checking packet->support to avoid the possibility that
9014 a success for this edge case means the facility works in general. */
9015 if (pattern_len > search_space_len)
9016 return 0;
9017 if (pattern_len == 0)
9018 {
9019 *found_addrp = start_addr;
9020 return 1;
9021 }
9022
9023 /* If we already know the packet isn't supported, fall back to the simple
9024 way of searching memory. */
9025
9026 if (packet->support == PACKET_DISABLE)
9027 {
9028 /* Target doesn't provided special support, fall back and use the
9029 standard support (copy memory and do the search here). */
9030 return simple_search_memory (ops, start_addr, search_space_len,
9031 pattern, pattern_len, found_addrp);
9032 }
9033
28439a30
PA
9034 /* Make sure the remote is pointing at the right process. */
9035 set_general_process ();
9036
08388c79
DE
9037 /* Insert header. */
9038 i = snprintf (rs->buf, max_size,
9039 "qSearch:memory:%s;%s;",
5af949e3 9040 phex_nz (start_addr, addr_size),
08388c79
DE
9041 phex_nz (search_space_len, sizeof (search_space_len)));
9042 max_size -= (i + 1);
9043
9044 /* Escape as much data as fits into rs->buf. */
9045 escaped_pattern_len =
bc20a4af 9046 remote_escape_output (pattern, pattern_len, (gdb_byte *) rs->buf + i,
08388c79
DE
9047 &used_pattern_len, max_size);
9048
9049 /* Bail if the pattern is too large. */
9050 if (used_pattern_len != pattern_len)
9b20d036 9051 error (_("Pattern is too large to transmit to remote target."));
08388c79
DE
9052
9053 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
9054 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
9055 || packet_ok (rs->buf, packet) != PACKET_OK)
9056 {
9057 /* The request may not have worked because the command is not
9058 supported. If so, fall back to the simple way. */
9059 if (packet->support == PACKET_DISABLE)
9060 {
9061 return simple_search_memory (ops, start_addr, search_space_len,
9062 pattern, pattern_len, found_addrp);
9063 }
9064 return -1;
9065 }
9066
9067 if (rs->buf[0] == '0')
9068 found = 0;
9069 else if (rs->buf[0] == '1')
9070 {
9071 found = 1;
9072 if (rs->buf[1] != ',')
10e0fa18 9073 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
9074 unpack_varlen_hex (rs->buf + 2, &found_addr);
9075 *found_addrp = found_addr;
9076 }
9077 else
10e0fa18 9078 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
9079
9080 return found;
9081}
9082
96baa820
JM
9083static void
9084remote_rcmd (char *command,
d9fcf2fb 9085 struct ui_file *outbuf)
96baa820 9086{
d01949b6 9087 struct remote_state *rs = get_remote_state ();
2e9f7625 9088 char *p = rs->buf;
96baa820 9089
5d93a237 9090 if (!rs->remote_desc)
8a3fe4f8 9091 error (_("remote rcmd is only available after target open"));
96baa820 9092
23860348 9093 /* Send a NULL command across as an empty command. */
7be570e7
JM
9094 if (command == NULL)
9095 command = "";
9096
23860348 9097 /* The query prefix. */
2e9f7625
DJ
9098 strcpy (rs->buf, "qRcmd,");
9099 p = strchr (rs->buf, '\0');
96baa820 9100
3e43a32a
MS
9101 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/)
9102 > get_remote_packet_size ())
8a3fe4f8 9103 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 9104
23860348 9105 /* Encode the actual command. */
cfd77fa1 9106 bin2hex ((gdb_byte *) command, p, 0);
96baa820 9107
6d820c5c 9108 if (putpkt (rs->buf) < 0)
8a3fe4f8 9109 error (_("Communication problem with target."));
96baa820
JM
9110
9111 /* get/display the response */
9112 while (1)
9113 {
2e9f7625
DJ
9114 char *buf;
9115
00bf0b85 9116 /* XXX - see also remote_get_noisy_reply(). */
5b37825d 9117 QUIT; /* Allow user to bail out with ^C. */
2e9f7625 9118 rs->buf[0] = '\0';
5b37825d
PW
9119 if (getpkt_sane (&rs->buf, &rs->buf_size, 0) == -1)
9120 {
9121 /* Timeout. Continue to (try to) read responses.
9122 This is better than stopping with an error, assuming the stub
9123 is still executing the (long) monitor command.
9124 If needed, the user can interrupt gdb using C-c, obtaining
9125 an effect similar to stop on timeout. */
9126 continue;
9127 }
2e9f7625 9128 buf = rs->buf;
96baa820 9129 if (buf[0] == '\0')
8a3fe4f8 9130 error (_("Target does not support this command."));
96baa820
JM
9131 if (buf[0] == 'O' && buf[1] != 'K')
9132 {
23860348 9133 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
9134 continue;
9135 }
9136 if (strcmp (buf, "OK") == 0)
9137 break;
7be570e7
JM
9138 if (strlen (buf) == 3 && buf[0] == 'E'
9139 && isdigit (buf[1]) && isdigit (buf[2]))
9140 {
8a3fe4f8 9141 error (_("Protocol error with Rcmd"));
7be570e7 9142 }
96baa820
JM
9143 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
9144 {
9145 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
a744cf53 9146
96baa820
JM
9147 fputc_unfiltered (c, outbuf);
9148 }
9149 break;
9150 }
9151}
9152
fd79ecee
DJ
9153static VEC(mem_region_s) *
9154remote_memory_map (struct target_ops *ops)
9155{
9156 VEC(mem_region_s) *result = NULL;
9157 char *text = target_read_stralloc (&current_target,
9158 TARGET_OBJECT_MEMORY_MAP, NULL);
9159
9160 if (text)
9161 {
9162 struct cleanup *back_to = make_cleanup (xfree, text);
a744cf53 9163
fd79ecee
DJ
9164 result = parse_memory_map (text);
9165 do_cleanups (back_to);
9166 }
9167
9168 return result;
9169}
9170
c906108c 9171static void
fba45db2 9172packet_command (char *args, int from_tty)
c906108c 9173{
d01949b6 9174 struct remote_state *rs = get_remote_state ();
c906108c 9175
5d93a237 9176 if (!rs->remote_desc)
8a3fe4f8 9177 error (_("command can only be used with remote target"));
c906108c 9178
c5aa993b 9179 if (!args)
8a3fe4f8 9180 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
9181
9182 puts_filtered ("sending: ");
9183 print_packet (args);
9184 puts_filtered ("\n");
9185 putpkt (args);
9186
6d820c5c 9187 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 9188 puts_filtered ("received: ");
6d820c5c 9189 print_packet (rs->buf);
c906108c
SS
9190 puts_filtered ("\n");
9191}
9192
9193#if 0
23860348 9194/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 9195
a14ed312 9196static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 9197
a14ed312 9198static void threadset_test_cmd (char *cmd, int tty);
c906108c 9199
a14ed312 9200static void threadalive_test (char *cmd, int tty);
c906108c 9201
a14ed312 9202static void threadlist_test_cmd (char *cmd, int tty);
c906108c 9203
23860348 9204int get_and_display_threadinfo (threadref *ref);
c906108c 9205
a14ed312 9206static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 9207
23860348 9208static int thread_display_step (threadref *ref, void *context);
c906108c 9209
a14ed312 9210static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 9211
a14ed312 9212static void init_remote_threadtests (void);
c906108c 9213
23860348 9214#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
9215
9216static void
fba45db2 9217threadset_test_cmd (char *cmd, int tty)
c906108c
SS
9218{
9219 int sample_thread = SAMPLE_THREAD;
9220
a3f17187 9221 printf_filtered (_("Remote threadset test\n"));
79d7f229 9222 set_general_thread (sample_thread);
c906108c
SS
9223}
9224
9225
9226static void
fba45db2 9227threadalive_test (char *cmd, int tty)
c906108c
SS
9228{
9229 int sample_thread = SAMPLE_THREAD;
79d7f229
PA
9230 int pid = ptid_get_pid (inferior_ptid);
9231 ptid_t ptid = ptid_build (pid, 0, sample_thread);
c906108c 9232
79d7f229 9233 if (remote_thread_alive (ptid))
c906108c
SS
9234 printf_filtered ("PASS: Thread alive test\n");
9235 else
9236 printf_filtered ("FAIL: Thread alive test\n");
9237}
9238
23860348 9239void output_threadid (char *title, threadref *ref);
c906108c
SS
9240
9241void
fba45db2 9242output_threadid (char *title, threadref *ref)
c906108c
SS
9243{
9244 char hexid[20];
9245
23860348 9246 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
9247 hexid[16] = 0;
9248 printf_filtered ("%s %s\n", title, (&hexid[0]));
9249}
9250
9251static void
fba45db2 9252threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
9253{
9254 int startflag = 1;
9255 threadref nextthread;
9256 int done, result_count;
9257 threadref threadlist[3];
9258
9259 printf_filtered ("Remote Threadlist test\n");
9260 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
9261 &result_count, &threadlist[0]))
9262 printf_filtered ("FAIL: threadlist test\n");
9263 else
9264 {
9265 threadref *scan = threadlist;
9266 threadref *limit = scan + result_count;
9267
9268 while (scan < limit)
9269 output_threadid (" thread ", scan++);
9270 }
9271}
9272
9273void
fba45db2 9274display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
9275{
9276 output_threadid ("Threadid: ", &info->threadid);
9277 printf_filtered ("Name: %s\n ", info->shortname);
9278 printf_filtered ("State: %s\n", info->display);
9279 printf_filtered ("other: %s\n\n", info->more_display);
9280}
9281
9282int
fba45db2 9283get_and_display_threadinfo (threadref *ref)
c906108c
SS
9284{
9285 int result;
9286 int set;
9287 struct gdb_ext_thread_info threadinfo;
9288
9289 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
9290 | TAG_MOREDISPLAY | TAG_DISPLAY;
9291 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
9292 display_thread_info (&threadinfo);
9293 return result;
9294}
9295
9296static void
fba45db2 9297threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
9298{
9299 int athread = SAMPLE_THREAD;
9300 threadref thread;
9301 int set;
9302
9303 int_to_threadref (&thread, athread);
9304 printf_filtered ("Remote Threadinfo test\n");
9305 if (!get_and_display_threadinfo (&thread))
9306 printf_filtered ("FAIL cannot get thread info\n");
9307}
9308
9309static int
fba45db2 9310thread_display_step (threadref *ref, void *context)
c906108c
SS
9311{
9312 /* output_threadid(" threadstep ",ref); *//* simple test */
9313 return get_and_display_threadinfo (ref);
9314}
9315
9316static void
fba45db2 9317threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
9318{
9319 printf_filtered ("Remote Threadlist update test\n");
9320 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
9321}
9322
9323static void
9324init_remote_threadtests (void)
9325{
3e43a32a
MS
9326 add_com ("tlist", class_obscure, threadlist_test_cmd,
9327 _("Fetch and print the remote list of "
9328 "thread identifiers, one pkt only"));
c906108c 9329 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 9330 _("Fetch and display info about one thread"));
c906108c 9331 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 9332 _("Test setting to a different thread"));
c906108c 9333 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 9334 _("Iterate through updating all remote thread info"));
c906108c 9335 add_com ("talive", class_obscure, threadalive_test,
1bedd215 9336 _(" Remote thread alive test "));
c906108c
SS
9337}
9338
9339#endif /* 0 */
9340
f3fb8c85
MS
9341/* Convert a thread ID to a string. Returns the string in a static
9342 buffer. */
9343
9344static char *
117de6a9 9345remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 9346{
79d7f229 9347 static char buf[64];
82f73884 9348 struct remote_state *rs = get_remote_state ();
f3fb8c85 9349
7cee1e54
PA
9350 if (ptid_equal (ptid, null_ptid))
9351 return normal_pid_to_str (ptid);
9352 else if (ptid_is_pid (ptid))
ecd0ada5
PA
9353 {
9354 /* Printing an inferior target id. */
9355
9356 /* When multi-process extensions are off, there's no way in the
9357 remote protocol to know the remote process id, if there's any
9358 at all. There's one exception --- when we're connected with
9359 target extended-remote, and we manually attached to a process
9360 with "attach PID". We don't record anywhere a flag that
9361 allows us to distinguish that case from the case of
9362 connecting with extended-remote and the stub already being
9363 attached to a process, and reporting yes to qAttached, hence
9364 no smart special casing here. */
9365 if (!remote_multi_process_p (rs))
9366 {
9367 xsnprintf (buf, sizeof buf, "Remote target");
9368 return buf;
9369 }
9370
9371 return normal_pid_to_str (ptid);
82f73884 9372 }
ecd0ada5 9373 else
79d7f229 9374 {
ecd0ada5
PA
9375 if (ptid_equal (magic_null_ptid, ptid))
9376 xsnprintf (buf, sizeof buf, "Thread <main>");
901f9912 9377 else if (rs->extended && remote_multi_process_p (rs))
ecd0ada5
PA
9378 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
9379 ptid_get_pid (ptid), ptid_get_tid (ptid));
9380 else
9381 xsnprintf (buf, sizeof buf, "Thread %ld",
9382 ptid_get_tid (ptid));
79d7f229
PA
9383 return buf;
9384 }
f3fb8c85
MS
9385}
9386
38691318
KB
9387/* Get the address of the thread local variable in OBJFILE which is
9388 stored at OFFSET within the thread local storage for thread PTID. */
9389
9390static CORE_ADDR
117de6a9
PA
9391remote_get_thread_local_address (struct target_ops *ops,
9392 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 9393{
444abaca 9394 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
38691318
KB
9395 {
9396 struct remote_state *rs = get_remote_state ();
6d820c5c 9397 char *p = rs->buf;
82f73884 9398 char *endp = rs->buf + get_remote_packet_size ();
571dd617 9399 enum packet_result result;
38691318
KB
9400
9401 strcpy (p, "qGetTLSAddr:");
9402 p += strlen (p);
82f73884 9403 p = write_ptid (p, endp, ptid);
38691318
KB
9404 *p++ = ',';
9405 p += hexnumstr (p, offset);
9406 *p++ = ',';
9407 p += hexnumstr (p, lm);
9408 *p++ = '\0';
9409
6d820c5c
DJ
9410 putpkt (rs->buf);
9411 getpkt (&rs->buf, &rs->buf_size, 0);
3e43a32a
MS
9412 result = packet_ok (rs->buf,
9413 &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 9414 if (result == PACKET_OK)
38691318
KB
9415 {
9416 ULONGEST result;
9417
6d820c5c 9418 unpack_varlen_hex (rs->buf, &result);
38691318
KB
9419 return result;
9420 }
571dd617 9421 else if (result == PACKET_UNKNOWN)
109c3e39
AC
9422 throw_error (TLS_GENERIC_ERROR,
9423 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 9424 else
109c3e39
AC
9425 throw_error (TLS_GENERIC_ERROR,
9426 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
9427 }
9428 else
109c3e39
AC
9429 throw_error (TLS_GENERIC_ERROR,
9430 _("TLS not supported or disabled on this target"));
38691318
KB
9431 /* Not reached. */
9432 return 0;
9433}
9434
711e434b
PM
9435/* Provide thread local base, i.e. Thread Information Block address.
9436 Returns 1 if ptid is found and thread_local_base is non zero. */
9437
70221824 9438static int
711e434b
PM
9439remote_get_tib_address (ptid_t ptid, CORE_ADDR *addr)
9440{
9441 if (remote_protocol_packets[PACKET_qGetTIBAddr].support != PACKET_DISABLE)
9442 {
9443 struct remote_state *rs = get_remote_state ();
9444 char *p = rs->buf;
9445 char *endp = rs->buf + get_remote_packet_size ();
9446 enum packet_result result;
9447
9448 strcpy (p, "qGetTIBAddr:");
9449 p += strlen (p);
9450 p = write_ptid (p, endp, ptid);
9451 *p++ = '\0';
9452
9453 putpkt (rs->buf);
9454 getpkt (&rs->buf, &rs->buf_size, 0);
9455 result = packet_ok (rs->buf,
9456 &remote_protocol_packets[PACKET_qGetTIBAddr]);
9457 if (result == PACKET_OK)
9458 {
9459 ULONGEST result;
9460
9461 unpack_varlen_hex (rs->buf, &result);
9462 if (addr)
9463 *addr = (CORE_ADDR) result;
9464 return 1;
9465 }
9466 else if (result == PACKET_UNKNOWN)
9467 error (_("Remote target doesn't support qGetTIBAddr packet"));
9468 else
9469 error (_("Remote target failed to process qGetTIBAddr request"));
9470 }
9471 else
9472 error (_("qGetTIBAddr not supported or disabled on this target"));
9473 /* Not reached. */
9474 return 0;
9475}
9476
29709017
DJ
9477/* Support for inferring a target description based on the current
9478 architecture and the size of a 'g' packet. While the 'g' packet
9479 can have any size (since optional registers can be left off the
9480 end), some sizes are easily recognizable given knowledge of the
9481 approximate architecture. */
9482
9483struct remote_g_packet_guess
9484{
9485 int bytes;
9486 const struct target_desc *tdesc;
9487};
9488typedef struct remote_g_packet_guess remote_g_packet_guess_s;
9489DEF_VEC_O(remote_g_packet_guess_s);
9490
9491struct remote_g_packet_data
9492{
9493 VEC(remote_g_packet_guess_s) *guesses;
9494};
9495
9496static struct gdbarch_data *remote_g_packet_data_handle;
9497
9498static void *
9499remote_g_packet_data_init (struct obstack *obstack)
9500{
9501 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
9502}
9503
9504void
9505register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
9506 const struct target_desc *tdesc)
9507{
9508 struct remote_g_packet_data *data
9509 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
9510 struct remote_g_packet_guess new_guess, *guess;
9511 int ix;
9512
9513 gdb_assert (tdesc != NULL);
9514
9515 for (ix = 0;
9516 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9517 ix++)
9518 if (guess->bytes == bytes)
9519 internal_error (__FILE__, __LINE__,
9b20d036 9520 _("Duplicate g packet description added for size %d"),
29709017
DJ
9521 bytes);
9522
9523 new_guess.bytes = bytes;
9524 new_guess.tdesc = tdesc;
9525 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
9526}
9527
d962ef82
DJ
9528/* Return 1 if remote_read_description would do anything on this target
9529 and architecture, 0 otherwise. */
9530
9531static int
9532remote_read_description_p (struct target_ops *target)
9533{
9534 struct remote_g_packet_data *data
f5656ead 9535 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
d962ef82
DJ
9536
9537 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9538 return 1;
9539
9540 return 0;
9541}
9542
29709017
DJ
9543static const struct target_desc *
9544remote_read_description (struct target_ops *target)
9545{
9546 struct remote_g_packet_data *data
f5656ead 9547 = gdbarch_data (target_gdbarch (), remote_g_packet_data_handle);
29709017 9548
d962ef82
DJ
9549 /* Do not try this during initial connection, when we do not know
9550 whether there is a running but stopped thread. */
9551 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
9552 return NULL;
9553
29709017
DJ
9554 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
9555 {
9556 struct remote_g_packet_guess *guess;
9557 int ix;
9558 int bytes = send_g_packet ();
9559
9560 for (ix = 0;
9561 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
9562 ix++)
9563 if (guess->bytes == bytes)
9564 return guess->tdesc;
9565
9566 /* We discard the g packet. A minor optimization would be to
9567 hold on to it, and fill the register cache once we have selected
9568 an architecture, but it's too tricky to do safely. */
9569 }
9570
9571 return NULL;
9572}
9573
a6b151f1
DJ
9574/* Remote file transfer support. This is host-initiated I/O, not
9575 target-initiated; for target-initiated, see remote-fileio.c. */
9576
9577/* If *LEFT is at least the length of STRING, copy STRING to
9578 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9579 decrease *LEFT. Otherwise raise an error. */
9580
9581static void
9582remote_buffer_add_string (char **buffer, int *left, char *string)
9583{
9584 int len = strlen (string);
9585
9586 if (len > *left)
9587 error (_("Packet too long for target."));
9588
9589 memcpy (*buffer, string, len);
9590 *buffer += len;
9591 *left -= len;
9592
9593 /* NUL-terminate the buffer as a convenience, if there is
9594 room. */
9595 if (*left)
9596 **buffer = '\0';
9597}
9598
9599/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
9600 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9601 decrease *LEFT. Otherwise raise an error. */
9602
9603static void
9604remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
9605 int len)
9606{
9607 if (2 * len > *left)
9608 error (_("Packet too long for target."));
9609
9610 bin2hex (bytes, *buffer, len);
9611 *buffer += 2 * len;
9612 *left -= 2 * len;
9613
9614 /* NUL-terminate the buffer as a convenience, if there is
9615 room. */
9616 if (*left)
9617 **buffer = '\0';
9618}
9619
9620/* If *LEFT is large enough, convert VALUE to hex and add it to
9621 *BUFFER, update *BUFFER to point to the new end of the buffer, and
9622 decrease *LEFT. Otherwise raise an error. */
9623
9624static void
9625remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
9626{
9627 int len = hexnumlen (value);
9628
9629 if (len > *left)
9630 error (_("Packet too long for target."));
9631
9632 hexnumstr (*buffer, value);
9633 *buffer += len;
9634 *left -= len;
9635
9636 /* NUL-terminate the buffer as a convenience, if there is
9637 room. */
9638 if (*left)
9639 **buffer = '\0';
9640}
9641
9642/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
9643 value, *REMOTE_ERRNO to the remote error number or zero if none
9644 was included, and *ATTACHMENT to point to the start of the annex
9645 if any. The length of the packet isn't needed here; there may
9646 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
9647
9648 Return 0 if the packet could be parsed, -1 if it could not. If
9649 -1 is returned, the other variables may not be initialized. */
9650
9651static int
9652remote_hostio_parse_result (char *buffer, int *retcode,
9653 int *remote_errno, char **attachment)
9654{
9655 char *p, *p2;
9656
9657 *remote_errno = 0;
9658 *attachment = NULL;
9659
9660 if (buffer[0] != 'F')
9661 return -1;
9662
9663 errno = 0;
9664 *retcode = strtol (&buffer[1], &p, 16);
9665 if (errno != 0 || p == &buffer[1])
9666 return -1;
9667
9668 /* Check for ",errno". */
9669 if (*p == ',')
9670 {
9671 errno = 0;
9672 *remote_errno = strtol (p + 1, &p2, 16);
9673 if (errno != 0 || p + 1 == p2)
9674 return -1;
9675 p = p2;
9676 }
9677
9678 /* Check for ";attachment". If there is no attachment, the
9679 packet should end here. */
9680 if (*p == ';')
9681 {
9682 *attachment = p + 1;
9683 return 0;
9684 }
9685 else if (*p == '\0')
9686 return 0;
9687 else
9688 return -1;
9689}
9690
9691/* Send a prepared I/O packet to the target and read its response.
9692 The prepared packet is in the global RS->BUF before this function
9693 is called, and the answer is there when we return.
9694
9695 COMMAND_BYTES is the length of the request to send, which may include
9696 binary data. WHICH_PACKET is the packet configuration to check
9697 before attempting a packet. If an error occurs, *REMOTE_ERRNO
9698 is set to the error number and -1 is returned. Otherwise the value
9699 returned by the function is returned.
9700
9701 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
9702 attachment is expected; an error will be reported if there's a
9703 mismatch. If one is found, *ATTACHMENT will be set to point into
9704 the packet buffer and *ATTACHMENT_LEN will be set to the
9705 attachment's length. */
9706
9707static int
9708remote_hostio_send_command (int command_bytes, int which_packet,
9709 int *remote_errno, char **attachment,
9710 int *attachment_len)
9711{
9712 struct remote_state *rs = get_remote_state ();
9713 int ret, bytes_read;
9714 char *attachment_tmp;
9715
5d93a237 9716 if (!rs->remote_desc
f1838a98 9717 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
a6b151f1
DJ
9718 {
9719 *remote_errno = FILEIO_ENOSYS;
9720 return -1;
9721 }
9722
9723 putpkt_binary (rs->buf, command_bytes);
9724 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
9725
9726 /* If it timed out, something is wrong. Don't try to parse the
9727 buffer. */
9728 if (bytes_read < 0)
9729 {
9730 *remote_errno = FILEIO_EINVAL;
9731 return -1;
9732 }
9733
9734 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
9735 {
9736 case PACKET_ERROR:
9737 *remote_errno = FILEIO_EINVAL;
9738 return -1;
9739 case PACKET_UNKNOWN:
9740 *remote_errno = FILEIO_ENOSYS;
9741 return -1;
9742 case PACKET_OK:
9743 break;
9744 }
9745
9746 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
9747 &attachment_tmp))
9748 {
9749 *remote_errno = FILEIO_EINVAL;
9750 return -1;
9751 }
9752
9753 /* Make sure we saw an attachment if and only if we expected one. */
9754 if ((attachment_tmp == NULL && attachment != NULL)
9755 || (attachment_tmp != NULL && attachment == NULL))
9756 {
9757 *remote_errno = FILEIO_EINVAL;
9758 return -1;
9759 }
9760
9761 /* If an attachment was found, it must point into the packet buffer;
9762 work out how many bytes there were. */
9763 if (attachment_tmp != NULL)
9764 {
9765 *attachment = attachment_tmp;
9766 *attachment_len = bytes_read - (*attachment - rs->buf);
9767 }
9768
9769 return ret;
9770}
9771
9772/* Open FILENAME on the remote target, using FLAGS and MODE. Return a
9773 remote file descriptor, or -1 if an error occurs (and set
9774 *REMOTE_ERRNO). */
9775
9776static int
9777remote_hostio_open (const char *filename, int flags, int mode,
9778 int *remote_errno)
9779{
9780 struct remote_state *rs = get_remote_state ();
9781 char *p = rs->buf;
9782 int left = get_remote_packet_size () - 1;
9783
9784 remote_buffer_add_string (&p, &left, "vFile:open:");
9785
9786 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9787 strlen (filename));
9788 remote_buffer_add_string (&p, &left, ",");
9789
9790 remote_buffer_add_int (&p, &left, flags);
9791 remote_buffer_add_string (&p, &left, ",");
9792
9793 remote_buffer_add_int (&p, &left, mode);
9794
9795 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
9796 remote_errno, NULL, NULL);
9797}
9798
9799/* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
9800 Return the number of bytes written, or -1 if an error occurs (and
9801 set *REMOTE_ERRNO). */
9802
9803static int
9804remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
9805 ULONGEST offset, int *remote_errno)
9806{
9807 struct remote_state *rs = get_remote_state ();
9808 char *p = rs->buf;
9809 int left = get_remote_packet_size ();
9810 int out_len;
9811
9812 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
9813
9814 remote_buffer_add_int (&p, &left, fd);
9815 remote_buffer_add_string (&p, &left, ",");
9816
9817 remote_buffer_add_int (&p, &left, offset);
9818 remote_buffer_add_string (&p, &left, ",");
9819
bc20a4af 9820 p += remote_escape_output (write_buf, len, (gdb_byte *) p, &out_len,
a6b151f1
DJ
9821 get_remote_packet_size () - (p - rs->buf));
9822
9823 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
9824 remote_errno, NULL, NULL);
9825}
9826
9827/* Read up to LEN bytes FD on the remote target into READ_BUF
9828 Return the number of bytes read, or -1 if an error occurs (and
9829 set *REMOTE_ERRNO). */
9830
9831static int
9832remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
9833 ULONGEST offset, int *remote_errno)
9834{
9835 struct remote_state *rs = get_remote_state ();
9836 char *p = rs->buf;
9837 char *attachment;
9838 int left = get_remote_packet_size ();
9839 int ret, attachment_len;
9840 int read_len;
9841
9842 remote_buffer_add_string (&p, &left, "vFile:pread:");
9843
9844 remote_buffer_add_int (&p, &left, fd);
9845 remote_buffer_add_string (&p, &left, ",");
9846
9847 remote_buffer_add_int (&p, &left, len);
9848 remote_buffer_add_string (&p, &left, ",");
9849
9850 remote_buffer_add_int (&p, &left, offset);
9851
9852 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
9853 remote_errno, &attachment,
9854 &attachment_len);
9855
9856 if (ret < 0)
9857 return ret;
9858
bc20a4af 9859 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
a6b151f1
DJ
9860 read_buf, len);
9861 if (read_len != ret)
9862 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
9863
9864 return ret;
9865}
9866
9867/* Close FD on the remote target. Return 0, or -1 if an error occurs
9868 (and set *REMOTE_ERRNO). */
9869
9870static int
9871remote_hostio_close (int fd, int *remote_errno)
9872{
9873 struct remote_state *rs = get_remote_state ();
9874 char *p = rs->buf;
9875 int left = get_remote_packet_size () - 1;
9876
9877 remote_buffer_add_string (&p, &left, "vFile:close:");
9878
9879 remote_buffer_add_int (&p, &left, fd);
9880
9881 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
9882 remote_errno, NULL, NULL);
9883}
9884
9885/* Unlink FILENAME on the remote target. Return 0, or -1 if an error
9886 occurs (and set *REMOTE_ERRNO). */
9887
9888static int
9889remote_hostio_unlink (const char *filename, int *remote_errno)
9890{
9891 struct remote_state *rs = get_remote_state ();
9892 char *p = rs->buf;
9893 int left = get_remote_packet_size () - 1;
9894
9895 remote_buffer_add_string (&p, &left, "vFile:unlink:");
9896
9897 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9898 strlen (filename));
9899
9900 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
9901 remote_errno, NULL, NULL);
9902}
9903
b9e7b9c3
UW
9904/* Read value of symbolic link FILENAME on the remote target. Return
9905 a null-terminated string allocated via xmalloc, or NULL if an error
9906 occurs (and set *REMOTE_ERRNO). */
9907
9908static char *
9909remote_hostio_readlink (const char *filename, int *remote_errno)
9910{
9911 struct remote_state *rs = get_remote_state ();
9912 char *p = rs->buf;
9913 char *attachment;
9914 int left = get_remote_packet_size ();
9915 int len, attachment_len;
9916 int read_len;
9917 char *ret;
9918
9919 remote_buffer_add_string (&p, &left, "vFile:readlink:");
9920
9921 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
9922 strlen (filename));
9923
9924 len = remote_hostio_send_command (p - rs->buf, PACKET_vFile_readlink,
9925 remote_errno, &attachment,
9926 &attachment_len);
9927
9928 if (len < 0)
9929 return NULL;
9930
9931 ret = xmalloc (len + 1);
9932
bc20a4af
PA
9933 read_len = remote_unescape_input ((gdb_byte *) attachment, attachment_len,
9934 (gdb_byte *) ret, len);
b9e7b9c3
UW
9935 if (read_len != len)
9936 error (_("Readlink returned %d, but %d bytes."), len, read_len);
9937
9938 ret[len] = '\0';
9939 return ret;
9940}
9941
a6b151f1
DJ
9942static int
9943remote_fileio_errno_to_host (int errnum)
9944{
9945 switch (errnum)
9946 {
9947 case FILEIO_EPERM:
9948 return EPERM;
9949 case FILEIO_ENOENT:
9950 return ENOENT;
9951 case FILEIO_EINTR:
9952 return EINTR;
9953 case FILEIO_EIO:
9954 return EIO;
9955 case FILEIO_EBADF:
9956 return EBADF;
9957 case FILEIO_EACCES:
9958 return EACCES;
9959 case FILEIO_EFAULT:
9960 return EFAULT;
9961 case FILEIO_EBUSY:
9962 return EBUSY;
9963 case FILEIO_EEXIST:
9964 return EEXIST;
9965 case FILEIO_ENODEV:
9966 return ENODEV;
9967 case FILEIO_ENOTDIR:
9968 return ENOTDIR;
9969 case FILEIO_EISDIR:
9970 return EISDIR;
9971 case FILEIO_EINVAL:
9972 return EINVAL;
9973 case FILEIO_ENFILE:
9974 return ENFILE;
9975 case FILEIO_EMFILE:
9976 return EMFILE;
9977 case FILEIO_EFBIG:
9978 return EFBIG;
9979 case FILEIO_ENOSPC:
9980 return ENOSPC;
9981 case FILEIO_ESPIPE:
9982 return ESPIPE;
9983 case FILEIO_EROFS:
9984 return EROFS;
9985 case FILEIO_ENOSYS:
9986 return ENOSYS;
9987 case FILEIO_ENAMETOOLONG:
9988 return ENAMETOOLONG;
9989 }
9990 return -1;
9991}
9992
9993static char *
9994remote_hostio_error (int errnum)
9995{
9996 int host_error = remote_fileio_errno_to_host (errnum);
9997
9998 if (host_error == -1)
9999 error (_("Unknown remote I/O error %d"), errnum);
10000 else
10001 error (_("Remote I/O error: %s"), safe_strerror (host_error));
10002}
10003
a6b151f1
DJ
10004static void
10005remote_hostio_close_cleanup (void *opaque)
10006{
10007 int fd = *(int *) opaque;
10008 int remote_errno;
10009
10010 remote_hostio_close (fd, &remote_errno);
10011}
10012
f1838a98
UW
10013
10014static void *
10015remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
10016{
10017 const char *filename = bfd_get_filename (abfd);
10018 int fd, remote_errno;
10019 int *stream;
10020
10021 gdb_assert (remote_filename_p (filename));
10022
10023 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
10024 if (fd == -1)
10025 {
10026 errno = remote_fileio_errno_to_host (remote_errno);
10027 bfd_set_error (bfd_error_system_call);
10028 return NULL;
10029 }
10030
10031 stream = xmalloc (sizeof (int));
10032 *stream = fd;
10033 return stream;
10034}
10035
10036static int
10037remote_bfd_iovec_close (struct bfd *abfd, void *stream)
10038{
10039 int fd = *(int *)stream;
10040 int remote_errno;
10041
10042 xfree (stream);
10043
10044 /* Ignore errors on close; these may happen if the remote
10045 connection was already torn down. */
10046 remote_hostio_close (fd, &remote_errno);
10047
39ed5604
JK
10048 /* Zero means success. */
10049 return 0;
f1838a98
UW
10050}
10051
10052static file_ptr
10053remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
10054 file_ptr nbytes, file_ptr offset)
10055{
10056 int fd = *(int *)stream;
10057 int remote_errno;
10058 file_ptr pos, bytes;
10059
10060 pos = 0;
10061 while (nbytes > pos)
10062 {
bc20a4af 10063 bytes = remote_hostio_pread (fd, (gdb_byte *) buf + pos, nbytes - pos,
f1838a98
UW
10064 offset + pos, &remote_errno);
10065 if (bytes == 0)
10066 /* Success, but no bytes, means end-of-file. */
10067 break;
10068 if (bytes == -1)
10069 {
10070 errno = remote_fileio_errno_to_host (remote_errno);
10071 bfd_set_error (bfd_error_system_call);
10072 return -1;
10073 }
10074
10075 pos += bytes;
10076 }
10077
10078 return pos;
10079}
10080
10081static int
10082remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
10083{
10084 /* FIXME: We should probably implement remote_hostio_stat. */
10085 sb->st_size = INT_MAX;
10086 return 0;
10087}
10088
10089int
10090remote_filename_p (const char *filename)
10091{
3736004f
PA
10092 return strncmp (filename,
10093 REMOTE_SYSROOT_PREFIX,
10094 sizeof (REMOTE_SYSROOT_PREFIX) - 1) == 0;
f1838a98
UW
10095}
10096
10097bfd *
10098remote_bfd_open (const char *remote_file, const char *target)
10099{
64c31149
TT
10100 bfd *abfd = gdb_bfd_openr_iovec (remote_file, target,
10101 remote_bfd_iovec_open, NULL,
10102 remote_bfd_iovec_pread,
10103 remote_bfd_iovec_close,
10104 remote_bfd_iovec_stat);
10105
a4453b7e 10106 return abfd;
f1838a98
UW
10107}
10108
a6b151f1
DJ
10109void
10110remote_file_put (const char *local_file, const char *remote_file, int from_tty)
10111{
10112 struct cleanup *back_to, *close_cleanup;
10113 int retcode, fd, remote_errno, bytes, io_size;
10114 FILE *file;
10115 gdb_byte *buffer;
10116 int bytes_in_buffer;
10117 int saw_eof;
10118 ULONGEST offset;
5d93a237 10119 struct remote_state *rs = get_remote_state ();
a6b151f1 10120
5d93a237 10121 if (!rs->remote_desc)
a6b151f1
DJ
10122 error (_("command can only be used with remote target"));
10123
614c279d 10124 file = gdb_fopen_cloexec (local_file, "rb");
a6b151f1
DJ
10125 if (file == NULL)
10126 perror_with_name (local_file);
7c8a8b04 10127 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
10128
10129 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
10130 | FILEIO_O_TRUNC),
10131 0700, &remote_errno);
10132 if (fd == -1)
10133 remote_hostio_error (remote_errno);
10134
10135 /* Send up to this many bytes at once. They won't all fit in the
10136 remote packet limit, so we'll transfer slightly fewer. */
10137 io_size = get_remote_packet_size ();
10138 buffer = xmalloc (io_size);
10139 make_cleanup (xfree, buffer);
10140
10141 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
10142
10143 bytes_in_buffer = 0;
10144 saw_eof = 0;
10145 offset = 0;
10146 while (bytes_in_buffer || !saw_eof)
10147 {
10148 if (!saw_eof)
10149 {
3e43a32a
MS
10150 bytes = fread (buffer + bytes_in_buffer, 1,
10151 io_size - bytes_in_buffer,
a6b151f1
DJ
10152 file);
10153 if (bytes == 0)
10154 {
10155 if (ferror (file))
10156 error (_("Error reading %s."), local_file);
10157 else
10158 {
10159 /* EOF. Unless there is something still in the
10160 buffer from the last iteration, we are done. */
10161 saw_eof = 1;
10162 if (bytes_in_buffer == 0)
10163 break;
10164 }
10165 }
10166 }
10167 else
10168 bytes = 0;
10169
10170 bytes += bytes_in_buffer;
10171 bytes_in_buffer = 0;
10172
3e43a32a
MS
10173 retcode = remote_hostio_pwrite (fd, buffer, bytes,
10174 offset, &remote_errno);
a6b151f1
DJ
10175
10176 if (retcode < 0)
10177 remote_hostio_error (remote_errno);
10178 else if (retcode == 0)
10179 error (_("Remote write of %d bytes returned 0!"), bytes);
10180 else if (retcode < bytes)
10181 {
10182 /* Short write. Save the rest of the read data for the next
10183 write. */
10184 bytes_in_buffer = bytes - retcode;
10185 memmove (buffer, buffer + retcode, bytes_in_buffer);
10186 }
10187
10188 offset += retcode;
10189 }
10190
10191 discard_cleanups (close_cleanup);
10192 if (remote_hostio_close (fd, &remote_errno))
10193 remote_hostio_error (remote_errno);
10194
10195 if (from_tty)
10196 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
10197 do_cleanups (back_to);
10198}
10199
10200void
10201remote_file_get (const char *remote_file, const char *local_file, int from_tty)
10202{
10203 struct cleanup *back_to, *close_cleanup;
cea39f65 10204 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
10205 FILE *file;
10206 gdb_byte *buffer;
10207 ULONGEST offset;
5d93a237 10208 struct remote_state *rs = get_remote_state ();
a6b151f1 10209
5d93a237 10210 if (!rs->remote_desc)
a6b151f1
DJ
10211 error (_("command can only be used with remote target"));
10212
10213 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
10214 if (fd == -1)
10215 remote_hostio_error (remote_errno);
10216
614c279d 10217 file = gdb_fopen_cloexec (local_file, "wb");
a6b151f1
DJ
10218 if (file == NULL)
10219 perror_with_name (local_file);
7c8a8b04 10220 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
10221
10222 /* Send up to this many bytes at once. They won't all fit in the
10223 remote packet limit, so we'll transfer slightly fewer. */
10224 io_size = get_remote_packet_size ();
10225 buffer = xmalloc (io_size);
10226 make_cleanup (xfree, buffer);
10227
10228 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
10229
10230 offset = 0;
10231 while (1)
10232 {
10233 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
10234 if (bytes == 0)
10235 /* Success, but no bytes, means end-of-file. */
10236 break;
10237 if (bytes == -1)
10238 remote_hostio_error (remote_errno);
10239
10240 offset += bytes;
10241
10242 bytes = fwrite (buffer, 1, bytes, file);
10243 if (bytes == 0)
10244 perror_with_name (local_file);
10245 }
10246
10247 discard_cleanups (close_cleanup);
10248 if (remote_hostio_close (fd, &remote_errno))
10249 remote_hostio_error (remote_errno);
10250
10251 if (from_tty)
10252 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
10253 do_cleanups (back_to);
10254}
10255
10256void
10257remote_file_delete (const char *remote_file, int from_tty)
10258{
10259 int retcode, remote_errno;
5d93a237 10260 struct remote_state *rs = get_remote_state ();
a6b151f1 10261
5d93a237 10262 if (!rs->remote_desc)
a6b151f1
DJ
10263 error (_("command can only be used with remote target"));
10264
10265 retcode = remote_hostio_unlink (remote_file, &remote_errno);
10266 if (retcode == -1)
10267 remote_hostio_error (remote_errno);
10268
10269 if (from_tty)
10270 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
10271}
10272
10273static void
10274remote_put_command (char *args, int from_tty)
10275{
10276 struct cleanup *back_to;
10277 char **argv;
10278
d1a41061
PP
10279 if (args == NULL)
10280 error_no_arg (_("file to put"));
10281
10282 argv = gdb_buildargv (args);
a6b151f1
DJ
10283 back_to = make_cleanup_freeargv (argv);
10284 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
10285 error (_("Invalid parameters to remote put"));
10286
10287 remote_file_put (argv[0], argv[1], from_tty);
10288
10289 do_cleanups (back_to);
10290}
10291
10292static void
10293remote_get_command (char *args, int from_tty)
10294{
10295 struct cleanup *back_to;
10296 char **argv;
10297
d1a41061
PP
10298 if (args == NULL)
10299 error_no_arg (_("file to get"));
10300
10301 argv = gdb_buildargv (args);
a6b151f1
DJ
10302 back_to = make_cleanup_freeargv (argv);
10303 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
10304 error (_("Invalid parameters to remote get"));
10305
10306 remote_file_get (argv[0], argv[1], from_tty);
10307
10308 do_cleanups (back_to);
10309}
10310
10311static void
10312remote_delete_command (char *args, int from_tty)
10313{
10314 struct cleanup *back_to;
10315 char **argv;
10316
d1a41061
PP
10317 if (args == NULL)
10318 error_no_arg (_("file to delete"));
10319
10320 argv = gdb_buildargv (args);
a6b151f1
DJ
10321 back_to = make_cleanup_freeargv (argv);
10322 if (argv[0] == NULL || argv[1] != NULL)
10323 error (_("Invalid parameters to remote delete"));
10324
10325 remote_file_delete (argv[0], from_tty);
10326
10327 do_cleanups (back_to);
10328}
10329
10330static void
10331remote_command (char *args, int from_tty)
10332{
10333 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
10334}
10335
b2175913
MS
10336static int
10337remote_can_execute_reverse (void)
10338{
40ab02ce
MS
10339 if (remote_protocol_packets[PACKET_bs].support == PACKET_ENABLE
10340 || remote_protocol_packets[PACKET_bc].support == PACKET_ENABLE)
10341 return 1;
10342 else
10343 return 0;
b2175913
MS
10344}
10345
74531fed
PA
10346static int
10347remote_supports_non_stop (void)
10348{
10349 return 1;
10350}
10351
03583c20
UW
10352static int
10353remote_supports_disable_randomization (void)
10354{
10355 /* Only supported in extended mode. */
10356 return 0;
10357}
10358
8a305172
PA
10359static int
10360remote_supports_multi_process (void)
10361{
10362 struct remote_state *rs = get_remote_state ();
a744cf53 10363
901f9912
UW
10364 /* Only extended-remote handles being attached to multiple
10365 processes, even though plain remote can use the multi-process
10366 thread id extensions, so that GDB knows the target process's
10367 PID. */
10368 return rs->extended && remote_multi_process_p (rs);
8a305172
PA
10369}
10370
70221824 10371static int
782b2b07
SS
10372remote_supports_cond_tracepoints (void)
10373{
10374 struct remote_state *rs = get_remote_state ();
a744cf53 10375
782b2b07
SS
10376 return rs->cond_tracepoints;
10377}
10378
3788aec7
LM
10379static int
10380remote_supports_cond_breakpoints (void)
10381{
10382 struct remote_state *rs = get_remote_state ();
10383
10384 return rs->cond_breakpoints;
10385}
10386
70221824 10387static int
7a697b8d
SS
10388remote_supports_fast_tracepoints (void)
10389{
10390 struct remote_state *rs = get_remote_state ();
a744cf53 10391
7a697b8d
SS
10392 return rs->fast_tracepoints;
10393}
10394
0fb4aa4b
PA
10395static int
10396remote_supports_static_tracepoints (void)
10397{
10398 struct remote_state *rs = get_remote_state ();
10399
10400 return rs->static_tracepoints;
10401}
10402
1e4d1764
YQ
10403static int
10404remote_supports_install_in_trace (void)
10405{
10406 struct remote_state *rs = get_remote_state ();
10407
10408 return rs->install_in_trace;
10409}
10410
d248b706
KY
10411static int
10412remote_supports_enable_disable_tracepoint (void)
10413{
10414 struct remote_state *rs = get_remote_state ();
10415
10416 return rs->enable_disable_tracepoints;
10417}
10418
3065dfb6
SS
10419static int
10420remote_supports_string_tracing (void)
10421{
10422 struct remote_state *rs = get_remote_state ();
10423
10424 return rs->string_tracing;
10425}
10426
d3ce09f5
SS
10427static int
10428remote_can_run_breakpoint_commands (void)
10429{
10430 struct remote_state *rs = get_remote_state ();
10431
10432 return rs->breakpoint_commands;
10433}
10434
35b1e5cc 10435static void
ad91cd99 10436remote_trace_init (void)
35b1e5cc
SS
10437{
10438 putpkt ("QTinit");
10439 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99 10440 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
10441 error (_("Target does not support this command."));
10442}
10443
10444static void free_actions_list (char **actions_list);
10445static void free_actions_list_cleanup_wrapper (void *);
10446static void
10447free_actions_list_cleanup_wrapper (void *al)
10448{
10449 free_actions_list (al);
10450}
10451
10452static void
10453free_actions_list (char **actions_list)
10454{
10455 int ndx;
10456
10457 if (actions_list == 0)
10458 return;
10459
10460 for (ndx = 0; actions_list[ndx]; ndx++)
10461 xfree (actions_list[ndx]);
10462
10463 xfree (actions_list);
10464}
10465
409873ef
SS
10466/* Recursive routine to walk through command list including loops, and
10467 download packets for each command. */
10468
10469static void
10470remote_download_command_source (int num, ULONGEST addr,
10471 struct command_line *cmds)
10472{
10473 struct remote_state *rs = get_remote_state ();
10474 struct command_line *cmd;
10475
10476 for (cmd = cmds; cmd; cmd = cmd->next)
10477 {
0df8b418 10478 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
10479 strcpy (rs->buf, "QTDPsrc:");
10480 encode_source_string (num, addr, "cmd", cmd->line,
10481 rs->buf + strlen (rs->buf),
10482 rs->buf_size - strlen (rs->buf));
10483 putpkt (rs->buf);
10484 remote_get_noisy_reply (&target_buf, &target_buf_size);
10485 if (strcmp (target_buf, "OK"))
10486 warning (_("Target does not support source download."));
10487
10488 if (cmd->control_type == while_control
10489 || cmd->control_type == while_stepping_control)
10490 {
10491 remote_download_command_source (num, addr, *cmd->body_list);
10492
0df8b418 10493 QUIT; /* Allow user to bail out with ^C. */
409873ef
SS
10494 strcpy (rs->buf, "QTDPsrc:");
10495 encode_source_string (num, addr, "cmd", "end",
10496 rs->buf + strlen (rs->buf),
10497 rs->buf_size - strlen (rs->buf));
10498 putpkt (rs->buf);
10499 remote_get_noisy_reply (&target_buf, &target_buf_size);
10500 if (strcmp (target_buf, "OK"))
10501 warning (_("Target does not support source download."));
10502 }
10503 }
10504}
10505
35b1e5cc 10506static void
e8ba3115 10507remote_download_tracepoint (struct bp_location *loc)
35b1e5cc 10508{
bba74b36 10509#define BUF_SIZE 2048
e8ba3115 10510
35b1e5cc 10511 CORE_ADDR tpaddr;
409873ef 10512 char addrbuf[40];
bba74b36 10513 char buf[BUF_SIZE];
35b1e5cc
SS
10514 char **tdp_actions;
10515 char **stepping_actions;
10516 int ndx;
10517 struct cleanup *old_chain = NULL;
10518 struct agent_expr *aexpr;
10519 struct cleanup *aexpr_chain = NULL;
10520 char *pkt;
e8ba3115 10521 struct breakpoint *b = loc->owner;
d9b3f62e 10522 struct tracepoint *t = (struct tracepoint *) b;
35b1e5cc 10523
dc673c81 10524 encode_actions_rsp (loc, &tdp_actions, &stepping_actions);
e8ba3115
YQ
10525 old_chain = make_cleanup (free_actions_list_cleanup_wrapper,
10526 tdp_actions);
10527 (void) make_cleanup (free_actions_list_cleanup_wrapper,
10528 stepping_actions);
10529
10530 tpaddr = loc->address;
10531 sprintf_vma (addrbuf, tpaddr);
bba74b36
YQ
10532 xsnprintf (buf, BUF_SIZE, "QTDP:%x:%s:%c:%lx:%x", b->number,
10533 addrbuf, /* address */
10534 (b->enable_state == bp_enabled ? 'E' : 'D'),
10535 t->step_count, t->pass_count);
e8ba3115
YQ
10536 /* Fast tracepoints are mostly handled by the target, but we can
10537 tell the target how big of an instruction block should be moved
10538 around. */
10539 if (b->type == bp_fast_tracepoint)
10540 {
10541 /* Only test for support at download time; we may not know
10542 target capabilities at definition time. */
10543 if (remote_supports_fast_tracepoints ())
35b1e5cc 10544 {
e8ba3115 10545 int isize;
35b1e5cc 10546
f5656ead 10547 if (gdbarch_fast_tracepoint_valid_at (target_gdbarch (),
e8ba3115 10548 tpaddr, &isize, NULL))
bba74b36
YQ
10549 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":F%x",
10550 isize);
35b1e5cc 10551 else
e8ba3115
YQ
10552 /* If it passed validation at definition but fails now,
10553 something is very wrong. */
10554 internal_error (__FILE__, __LINE__,
10555 _("Fast tracepoint not "
10556 "valid during download"));
35b1e5cc 10557 }
e8ba3115
YQ
10558 else
10559 /* Fast tracepoints are functionally identical to regular
10560 tracepoints, so don't take lack of support as a reason to
10561 give up on the trace run. */
10562 warning (_("Target does not support fast tracepoints, "
10563 "downloading %d as regular tracepoint"), b->number);
10564 }
10565 else if (b->type == bp_static_tracepoint)
10566 {
10567 /* Only test for support at download time; we may not know
10568 target capabilities at definition time. */
10569 if (remote_supports_static_tracepoints ())
0fb4aa4b 10570 {
e8ba3115 10571 struct static_tracepoint_marker marker;
0fb4aa4b 10572
e8ba3115
YQ
10573 if (target_static_tracepoint_marker_at (tpaddr, &marker))
10574 strcat (buf, ":S");
0fb4aa4b 10575 else
e8ba3115 10576 error (_("Static tracepoint not valid during download"));
0fb4aa4b 10577 }
e8ba3115
YQ
10578 else
10579 /* Fast tracepoints are functionally identical to regular
10580 tracepoints, so don't take lack of support as a reason
10581 to give up on the trace run. */
10582 error (_("Target does not support static tracepoints"));
10583 }
10584 /* If the tracepoint has a conditional, make it into an agent
10585 expression and append to the definition. */
10586 if (loc->cond)
10587 {
10588 /* Only test support at download time, we may not know target
10589 capabilities at definition time. */
10590 if (remote_supports_cond_tracepoints ())
35b1e5cc 10591 {
e8ba3115
YQ
10592 aexpr = gen_eval_for_expr (tpaddr, loc->cond);
10593 aexpr_chain = make_cleanup_free_agent_expr (aexpr);
bba74b36
YQ
10594 xsnprintf (buf + strlen (buf), BUF_SIZE - strlen (buf), ":X%x,",
10595 aexpr->len);
e8ba3115
YQ
10596 pkt = buf + strlen (buf);
10597 for (ndx = 0; ndx < aexpr->len; ++ndx)
10598 pkt = pack_hex_byte (pkt, aexpr->buf[ndx]);
10599 *pkt = '\0';
10600 do_cleanups (aexpr_chain);
35b1e5cc 10601 }
e8ba3115
YQ
10602 else
10603 warning (_("Target does not support conditional tracepoints, "
10604 "ignoring tp %d cond"), b->number);
10605 }
35b1e5cc 10606
d9b3f62e 10607 if (b->commands || *default_collect)
e8ba3115
YQ
10608 strcat (buf, "-");
10609 putpkt (buf);
10610 remote_get_noisy_reply (&target_buf, &target_buf_size);
10611 if (strcmp (target_buf, "OK"))
10612 error (_("Target does not support tracepoints."));
35b1e5cc 10613
e8ba3115
YQ
10614 /* do_single_steps (t); */
10615 if (tdp_actions)
10616 {
10617 for (ndx = 0; tdp_actions[ndx]; ndx++)
35b1e5cc 10618 {
e8ba3115 10619 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
10620 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%c",
10621 b->number, addrbuf, /* address */
10622 tdp_actions[ndx],
10623 ((tdp_actions[ndx + 1] || stepping_actions)
10624 ? '-' : 0));
e8ba3115
YQ
10625 putpkt (buf);
10626 remote_get_noisy_reply (&target_buf,
10627 &target_buf_size);
10628 if (strcmp (target_buf, "OK"))
10629 error (_("Error on target while setting tracepoints."));
35b1e5cc 10630 }
e8ba3115
YQ
10631 }
10632 if (stepping_actions)
10633 {
10634 for (ndx = 0; stepping_actions[ndx]; ndx++)
35b1e5cc 10635 {
e8ba3115 10636 QUIT; /* Allow user to bail out with ^C. */
bba74b36
YQ
10637 xsnprintf (buf, BUF_SIZE, "QTDP:-%x:%s:%s%s%s",
10638 b->number, addrbuf, /* address */
10639 ((ndx == 0) ? "S" : ""),
10640 stepping_actions[ndx],
10641 (stepping_actions[ndx + 1] ? "-" : ""));
e8ba3115
YQ
10642 putpkt (buf);
10643 remote_get_noisy_reply (&target_buf,
10644 &target_buf_size);
10645 if (strcmp (target_buf, "OK"))
10646 error (_("Error on target while setting tracepoints."));
35b1e5cc 10647 }
e8ba3115 10648 }
409873ef 10649
e8ba3115
YQ
10650 if (remote_protocol_packets[PACKET_TracepointSource].support
10651 == PACKET_ENABLE)
10652 {
10653 if (b->addr_string)
409873ef 10654 {
e8ba3115
YQ
10655 strcpy (buf, "QTDPsrc:");
10656 encode_source_string (b->number, loc->address,
10657 "at", b->addr_string, buf + strlen (buf),
10658 2048 - strlen (buf));
409873ef 10659
e8ba3115
YQ
10660 putpkt (buf);
10661 remote_get_noisy_reply (&target_buf, &target_buf_size);
10662 if (strcmp (target_buf, "OK"))
10663 warning (_("Target does not support source download."));
409873ef 10664 }
e8ba3115
YQ
10665 if (b->cond_string)
10666 {
10667 strcpy (buf, "QTDPsrc:");
10668 encode_source_string (b->number, loc->address,
10669 "cond", b->cond_string, buf + strlen (buf),
10670 2048 - strlen (buf));
10671 putpkt (buf);
10672 remote_get_noisy_reply (&target_buf, &target_buf_size);
10673 if (strcmp (target_buf, "OK"))
10674 warning (_("Target does not support source download."));
10675 }
10676 remote_download_command_source (b->number, loc->address,
10677 breakpoint_commands (b));
35b1e5cc 10678 }
e8ba3115
YQ
10679
10680 do_cleanups (old_chain);
35b1e5cc
SS
10681}
10682
1e4d1764
YQ
10683static int
10684remote_can_download_tracepoint (void)
10685{
1e51243a
PA
10686 struct remote_state *rs = get_remote_state ();
10687 struct trace_status *ts;
10688 int status;
10689
10690 /* Don't try to install tracepoints until we've relocated our
10691 symbols, and fetched and merged the target's tracepoint list with
10692 ours. */
10693 if (rs->starting_up)
10694 return 0;
10695
10696 ts = current_trace_status ();
10697 status = remote_get_trace_status (ts);
1e4d1764
YQ
10698
10699 if (status == -1 || !ts->running_known || !ts->running)
10700 return 0;
10701
10702 /* If we are in a tracing experiment, but remote stub doesn't support
10703 installing tracepoint in trace, we have to return. */
10704 if (!remote_supports_install_in_trace ())
10705 return 0;
10706
10707 return 1;
10708}
10709
10710
35b1e5cc
SS
10711static void
10712remote_download_trace_state_variable (struct trace_state_variable *tsv)
10713{
10714 struct remote_state *rs = get_remote_state ();
00bf0b85 10715 char *p;
35b1e5cc 10716
bba74b36
YQ
10717 xsnprintf (rs->buf, get_remote_packet_size (), "QTDV:%x:%s:%x:",
10718 tsv->number, phex ((ULONGEST) tsv->initial_value, 8),
10719 tsv->builtin);
00bf0b85
SS
10720 p = rs->buf + strlen (rs->buf);
10721 if ((p - rs->buf) + strlen (tsv->name) * 2 >= get_remote_packet_size ())
10722 error (_("Trace state variable name too long for tsv definition packet"));
10723 p += 2 * bin2hex ((gdb_byte *) (tsv->name), p, 0);
10724 *p++ = '\0';
35b1e5cc
SS
10725 putpkt (rs->buf);
10726 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
10727 if (*target_buf == '\0')
10728 error (_("Target does not support this command."));
10729 if (strcmp (target_buf, "OK") != 0)
10730 error (_("Error on target while downloading trace state variable."));
35b1e5cc
SS
10731}
10732
d248b706
KY
10733static void
10734remote_enable_tracepoint (struct bp_location *location)
10735{
10736 struct remote_state *rs = get_remote_state ();
10737 char addr_buf[40];
10738
10739 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
10740 xsnprintf (rs->buf, get_remote_packet_size (), "QTEnable:%x:%s",
10741 location->owner->number, addr_buf);
d248b706
KY
10742 putpkt (rs->buf);
10743 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10744 if (*rs->buf == '\0')
10745 error (_("Target does not support enabling tracepoints while a trace run is ongoing."));
10746 if (strcmp (rs->buf, "OK") != 0)
10747 error (_("Error on target while enabling tracepoint."));
10748}
10749
10750static void
10751remote_disable_tracepoint (struct bp_location *location)
10752{
10753 struct remote_state *rs = get_remote_state ();
10754 char addr_buf[40];
10755
10756 sprintf_vma (addr_buf, location->address);
bba74b36
YQ
10757 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisable:%x:%s",
10758 location->owner->number, addr_buf);
d248b706
KY
10759 putpkt (rs->buf);
10760 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
10761 if (*rs->buf == '\0')
10762 error (_("Target does not support disabling tracepoints while a trace run is ongoing."));
10763 if (strcmp (rs->buf, "OK") != 0)
10764 error (_("Error on target while disabling tracepoint."));
10765}
10766
35b1e5cc 10767static void
ad91cd99 10768remote_trace_set_readonly_regions (void)
35b1e5cc
SS
10769{
10770 asection *s;
81b9b86e 10771 bfd *abfd = NULL;
35b1e5cc 10772 bfd_size_type size;
608bcef2 10773 bfd_vma vma;
35b1e5cc 10774 int anysecs = 0;
c2fa21f1 10775 int offset = 0;
35b1e5cc
SS
10776
10777 if (!exec_bfd)
10778 return; /* No information to give. */
10779
10780 strcpy (target_buf, "QTro");
9779ab84 10781 offset = strlen (target_buf);
35b1e5cc
SS
10782 for (s = exec_bfd->sections; s; s = s->next)
10783 {
10784 char tmp1[40], tmp2[40];
c2fa21f1 10785 int sec_length;
35b1e5cc
SS
10786
10787 if ((s->flags & SEC_LOAD) == 0 ||
0df8b418 10788 /* (s->flags & SEC_CODE) == 0 || */
35b1e5cc
SS
10789 (s->flags & SEC_READONLY) == 0)
10790 continue;
10791
10792 anysecs = 1;
81b9b86e 10793 vma = bfd_get_section_vma (abfd, s);
35b1e5cc 10794 size = bfd_get_section_size (s);
608bcef2
HZ
10795 sprintf_vma (tmp1, vma);
10796 sprintf_vma (tmp2, vma + size);
c2fa21f1
HZ
10797 sec_length = 1 + strlen (tmp1) + 1 + strlen (tmp2);
10798 if (offset + sec_length + 1 > target_buf_size)
10799 {
864ac8a7
HZ
10800 if (remote_protocol_packets[PACKET_qXfer_traceframe_info].support
10801 != PACKET_ENABLE)
10802 warning (_("\
c2fa21f1
HZ
10803Too many sections for read-only sections definition packet."));
10804 break;
10805 }
bba74b36
YQ
10806 xsnprintf (target_buf + offset, target_buf_size - offset, ":%s,%s",
10807 tmp1, tmp2);
c2fa21f1 10808 offset += sec_length;
35b1e5cc
SS
10809 }
10810 if (anysecs)
10811 {
10812 putpkt (target_buf);
10813 getpkt (&target_buf, &target_buf_size, 0);
10814 }
10815}
10816
10817static void
ad91cd99 10818remote_trace_start (void)
35b1e5cc
SS
10819{
10820 putpkt ("QTStart");
10821 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
10822 if (*target_buf == '\0')
10823 error (_("Target does not support this command."));
10824 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
10825 error (_("Bogus reply from target: %s"), target_buf);
10826}
10827
10828static int
00bf0b85 10829remote_get_trace_status (struct trace_status *ts)
35b1e5cc 10830{
953b98d1 10831 /* Initialize it just to avoid a GCC false warning. */
f652de6f 10832 char *p = NULL;
0df8b418 10833 /* FIXME we need to get register block size some other way. */
00bf0b85 10834 extern int trace_regblock_size;
67f41397 10835 volatile struct gdb_exception ex;
bd3eecc3
PA
10836 enum packet_result result;
10837
10838 if (remote_protocol_packets[PACKET_qTStatus].support == PACKET_DISABLE)
10839 return -1;
a744cf53 10840
00bf0b85
SS
10841 trace_regblock_size = get_remote_arch_state ()->sizeof_g_packet;
10842
049dc89b
JK
10843 putpkt ("qTStatus");
10844
67f41397
JK
10845 TRY_CATCH (ex, RETURN_MASK_ERROR)
10846 {
10847 p = remote_get_noisy_reply (&target_buf, &target_buf_size);
10848 }
10849 if (ex.reason < 0)
10850 {
598d3636
JK
10851 if (ex.error != TARGET_CLOSE_ERROR)
10852 {
10853 exception_fprintf (gdb_stderr, ex, "qTStatus: ");
10854 return -1;
10855 }
10856 throw_exception (ex);
67f41397 10857 }
00bf0b85 10858
bd3eecc3
PA
10859 result = packet_ok (p, &remote_protocol_packets[PACKET_qTStatus]);
10860
00bf0b85 10861 /* If the remote target doesn't do tracing, flag it. */
bd3eecc3 10862 if (result == PACKET_UNKNOWN)
00bf0b85 10863 return -1;
35b1e5cc 10864
00bf0b85 10865 /* We're working with a live target. */
f5911ea1 10866 ts->filename = NULL;
00bf0b85 10867
00bf0b85 10868 if (*p++ != 'T')
35b1e5cc
SS
10869 error (_("Bogus trace status reply from target: %s"), target_buf);
10870
84cebc4a
YQ
10871 /* Function 'parse_trace_status' sets default value of each field of
10872 'ts' at first, so we don't have to do it here. */
00bf0b85
SS
10873 parse_trace_status (p, ts);
10874
10875 return ts->running;
35b1e5cc
SS
10876}
10877
70221824 10878static void
f196051f
SS
10879remote_get_tracepoint_status (struct breakpoint *bp,
10880 struct uploaded_tp *utp)
10881{
10882 struct remote_state *rs = get_remote_state ();
f196051f
SS
10883 char *reply;
10884 struct bp_location *loc;
10885 struct tracepoint *tp = (struct tracepoint *) bp;
bba74b36 10886 size_t size = get_remote_packet_size ();
f196051f
SS
10887
10888 if (tp)
10889 {
10890 tp->base.hit_count = 0;
10891 tp->traceframe_usage = 0;
10892 for (loc = tp->base.loc; loc; loc = loc->next)
10893 {
10894 /* If the tracepoint was never downloaded, don't go asking for
10895 any status. */
10896 if (tp->number_on_target == 0)
10897 continue;
bba74b36
YQ
10898 xsnprintf (rs->buf, size, "qTP:%x:%s", tp->number_on_target,
10899 phex_nz (loc->address, 0));
f196051f
SS
10900 putpkt (rs->buf);
10901 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10902 if (reply && *reply)
10903 {
10904 if (*reply == 'V')
10905 parse_tracepoint_status (reply + 1, bp, utp);
10906 }
10907 }
10908 }
10909 else if (utp)
10910 {
10911 utp->hit_count = 0;
10912 utp->traceframe_usage = 0;
bba74b36
YQ
10913 xsnprintf (rs->buf, size, "qTP:%x:%s", utp->number,
10914 phex_nz (utp->addr, 0));
f196051f
SS
10915 putpkt (rs->buf);
10916 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
10917 if (reply && *reply)
10918 {
10919 if (*reply == 'V')
10920 parse_tracepoint_status (reply + 1, bp, utp);
10921 }
10922 }
10923}
10924
35b1e5cc 10925static void
ad91cd99 10926remote_trace_stop (void)
35b1e5cc
SS
10927{
10928 putpkt ("QTStop");
10929 remote_get_noisy_reply (&target_buf, &target_buf_size);
ad91cd99
PA
10930 if (*target_buf == '\0')
10931 error (_("Target does not support this command."));
10932 if (strcmp (target_buf, "OK") != 0)
35b1e5cc
SS
10933 error (_("Bogus reply from target: %s"), target_buf);
10934}
10935
10936static int
10937remote_trace_find (enum trace_find_type type, int num,
cc5925ad 10938 CORE_ADDR addr1, CORE_ADDR addr2,
35b1e5cc
SS
10939 int *tpp)
10940{
10941 struct remote_state *rs = get_remote_state ();
bba74b36 10942 char *endbuf = rs->buf + get_remote_packet_size ();
35b1e5cc
SS
10943 char *p, *reply;
10944 int target_frameno = -1, target_tracept = -1;
10945
e6e4e701
PA
10946 /* Lookups other than by absolute frame number depend on the current
10947 trace selected, so make sure it is correct on the remote end
10948 first. */
10949 if (type != tfind_number)
10950 set_remote_traceframe ();
10951
35b1e5cc
SS
10952 p = rs->buf;
10953 strcpy (p, "QTFrame:");
10954 p = strchr (p, '\0');
10955 switch (type)
10956 {
10957 case tfind_number:
bba74b36 10958 xsnprintf (p, endbuf - p, "%x", num);
35b1e5cc
SS
10959 break;
10960 case tfind_pc:
bba74b36 10961 xsnprintf (p, endbuf - p, "pc:%s", phex_nz (addr1, 0));
35b1e5cc
SS
10962 break;
10963 case tfind_tp:
bba74b36 10964 xsnprintf (p, endbuf - p, "tdp:%x", num);
35b1e5cc
SS
10965 break;
10966 case tfind_range:
bba74b36
YQ
10967 xsnprintf (p, endbuf - p, "range:%s:%s", phex_nz (addr1, 0),
10968 phex_nz (addr2, 0));
35b1e5cc
SS
10969 break;
10970 case tfind_outside:
bba74b36
YQ
10971 xsnprintf (p, endbuf - p, "outside:%s:%s", phex_nz (addr1, 0),
10972 phex_nz (addr2, 0));
35b1e5cc
SS
10973 break;
10974 default:
9b20d036 10975 error (_("Unknown trace find type %d"), type);
35b1e5cc
SS
10976 }
10977
10978 putpkt (rs->buf);
2f65bcb7 10979 reply = remote_get_noisy_reply (&(rs->buf), &rs->buf_size);
ad91cd99
PA
10980 if (*reply == '\0')
10981 error (_("Target does not support this command."));
35b1e5cc
SS
10982
10983 while (reply && *reply)
10984 switch (*reply)
10985 {
10986 case 'F':
f197e0f1
VP
10987 p = ++reply;
10988 target_frameno = (int) strtol (p, &reply, 16);
10989 if (reply == p)
10990 error (_("Unable to parse trace frame number"));
e6e4e701
PA
10991 /* Don't update our remote traceframe number cache on failure
10992 to select a remote traceframe. */
f197e0f1
VP
10993 if (target_frameno == -1)
10994 return -1;
35b1e5cc
SS
10995 break;
10996 case 'T':
f197e0f1
VP
10997 p = ++reply;
10998 target_tracept = (int) strtol (p, &reply, 16);
10999 if (reply == p)
11000 error (_("Unable to parse tracepoint number"));
35b1e5cc
SS
11001 break;
11002 case 'O': /* "OK"? */
11003 if (reply[1] == 'K' && reply[2] == '\0')
11004 reply += 2;
11005 else
11006 error (_("Bogus reply from target: %s"), reply);
11007 break;
11008 default:
11009 error (_("Bogus reply from target: %s"), reply);
11010 }
11011 if (tpp)
11012 *tpp = target_tracept;
e6e4e701 11013
262e1174 11014 rs->remote_traceframe_number = target_frameno;
35b1e5cc
SS
11015 return target_frameno;
11016}
11017
11018static int
11019remote_get_trace_state_variable_value (int tsvnum, LONGEST *val)
11020{
11021 struct remote_state *rs = get_remote_state ();
11022 char *reply;
11023 ULONGEST uval;
11024
e6e4e701
PA
11025 set_remote_traceframe ();
11026
bba74b36 11027 xsnprintf (rs->buf, get_remote_packet_size (), "qTV:%x", tsvnum);
35b1e5cc
SS
11028 putpkt (rs->buf);
11029 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11030 if (reply && *reply)
11031 {
11032 if (*reply == 'V')
11033 {
11034 unpack_varlen_hex (reply + 1, &uval);
11035 *val = (LONGEST) uval;
11036 return 1;
11037 }
11038 }
11039 return 0;
11040}
11041
00bf0b85 11042static int
011aacb0 11043remote_save_trace_data (const char *filename)
00bf0b85
SS
11044{
11045 struct remote_state *rs = get_remote_state ();
11046 char *p, *reply;
11047
11048 p = rs->buf;
11049 strcpy (p, "QTSave:");
11050 p += strlen (p);
11051 if ((p - rs->buf) + strlen (filename) * 2 >= get_remote_packet_size ())
11052 error (_("Remote file name too long for trace save packet"));
11053 p += 2 * bin2hex ((gdb_byte *) filename, p, 0);
11054 *p++ = '\0';
11055 putpkt (rs->buf);
ad91cd99 11056 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
d6c5869f 11057 if (*reply == '\0')
ad91cd99
PA
11058 error (_("Target does not support this command."));
11059 if (strcmp (reply, "OK") != 0)
11060 error (_("Bogus reply from target: %s"), reply);
00bf0b85
SS
11061 return 0;
11062}
11063
11064/* This is basically a memory transfer, but needs to be its own packet
11065 because we don't know how the target actually organizes its trace
11066 memory, plus we want to be able to ask for as much as possible, but
11067 not be unhappy if we don't get as much as we ask for. */
11068
11069static LONGEST
11070remote_get_raw_trace_data (gdb_byte *buf, ULONGEST offset, LONGEST len)
11071{
11072 struct remote_state *rs = get_remote_state ();
11073 char *reply;
11074 char *p;
11075 int rslt;
11076
11077 p = rs->buf;
11078 strcpy (p, "qTBuffer:");
11079 p += strlen (p);
11080 p += hexnumstr (p, offset);
11081 *p++ = ',';
11082 p += hexnumstr (p, len);
11083 *p++ = '\0';
11084
11085 putpkt (rs->buf);
11086 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11087 if (reply && *reply)
11088 {
11089 /* 'l' by itself means we're at the end of the buffer and
11090 there is nothing more to get. */
11091 if (*reply == 'l')
11092 return 0;
11093
11094 /* Convert the reply into binary. Limit the number of bytes to
11095 convert according to our passed-in buffer size, rather than
11096 what was returned in the packet; if the target is
11097 unexpectedly generous and gives us a bigger reply than we
11098 asked for, we don't want to crash. */
11099 rslt = hex2bin (target_buf, buf, len);
11100 return rslt;
11101 }
11102
11103 /* Something went wrong, flag as an error. */
11104 return -1;
11105}
11106
35b1e5cc
SS
11107static void
11108remote_set_disconnected_tracing (int val)
11109{
11110 struct remote_state *rs = get_remote_state ();
11111
33da3f1c
SS
11112 if (rs->disconnected_tracing)
11113 {
ad91cd99
PA
11114 char *reply;
11115
bba74b36 11116 xsnprintf (rs->buf, get_remote_packet_size (), "QTDisconnected:%x", val);
33da3f1c 11117 putpkt (rs->buf);
ad91cd99
PA
11118 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11119 if (*reply == '\0')
33da3f1c 11120 error (_("Target does not support this command."));
ad91cd99
PA
11121 if (strcmp (reply, "OK") != 0)
11122 error (_("Bogus reply from target: %s"), reply);
33da3f1c
SS
11123 }
11124 else if (val)
11125 warning (_("Target does not support disconnected tracing."));
35b1e5cc
SS
11126}
11127
dc146f7c
VP
11128static int
11129remote_core_of_thread (struct target_ops *ops, ptid_t ptid)
11130{
11131 struct thread_info *info = find_thread_ptid (ptid);
a744cf53 11132
dc146f7c
VP
11133 if (info && info->private)
11134 return info->private->core;
11135 return -1;
11136}
11137
4daf5ac0
SS
11138static void
11139remote_set_circular_trace_buffer (int val)
11140{
11141 struct remote_state *rs = get_remote_state ();
ad91cd99 11142 char *reply;
4daf5ac0 11143
bba74b36 11144 xsnprintf (rs->buf, get_remote_packet_size (), "QTBuffer:circular:%x", val);
4daf5ac0 11145 putpkt (rs->buf);
ad91cd99
PA
11146 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11147 if (*reply == '\0')
4daf5ac0 11148 error (_("Target does not support this command."));
ad91cd99
PA
11149 if (strcmp (reply, "OK") != 0)
11150 error (_("Bogus reply from target: %s"), reply);
4daf5ac0
SS
11151}
11152
b3b9301e
PA
11153static struct traceframe_info *
11154remote_traceframe_info (void)
11155{
11156 char *text;
11157
6c177e28
YQ
11158 /* If current traceframe is not selected, don't bother the remote
11159 stub. */
11160 if (get_traceframe_number () < 0)
11161 return NULL;
11162
b3b9301e
PA
11163 text = target_read_stralloc (&current_target,
11164 TARGET_OBJECT_TRACEFRAME_INFO, NULL);
11165 if (text != NULL)
11166 {
11167 struct traceframe_info *info;
11168 struct cleanup *back_to = make_cleanup (xfree, text);
11169
11170 info = parse_traceframe_info (text);
11171 do_cleanups (back_to);
11172 return info;
11173 }
11174
11175 return NULL;
11176}
11177
405f8e94
SS
11178/* Handle the qTMinFTPILen packet. Returns the minimum length of
11179 instruction on which a fast tracepoint may be placed. Returns -1
11180 if the packet is not supported, and 0 if the minimum instruction
11181 length is unknown. */
11182
11183static int
11184remote_get_min_fast_tracepoint_insn_len (void)
11185{
11186 struct remote_state *rs = get_remote_state ();
11187 char *reply;
11188
e886a173
PA
11189 /* If we're not debugging a process yet, the IPA can't be
11190 loaded. */
11191 if (!target_has_execution)
11192 return 0;
11193
11194 /* Make sure the remote is pointing at the right process. */
11195 set_general_process ();
11196
bba74b36 11197 xsnprintf (rs->buf, get_remote_packet_size (), "qTMinFTPILen");
405f8e94
SS
11198 putpkt (rs->buf);
11199 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11200 if (*reply == '\0')
11201 return -1;
11202 else
11203 {
11204 ULONGEST min_insn_len;
11205
11206 unpack_varlen_hex (reply, &min_insn_len);
11207
11208 return (int) min_insn_len;
11209 }
11210}
11211
f6f899bf
HAQ
11212static void
11213remote_set_trace_buffer_size (LONGEST val)
11214{
90585175
HAQ
11215 if (remote_protocol_packets[PACKET_QTBuffer_size].support
11216 != PACKET_DISABLE)
f6f899bf
HAQ
11217 {
11218 struct remote_state *rs = get_remote_state ();
11219 char *buf = rs->buf;
11220 char *endbuf = rs->buf + get_remote_packet_size ();
11221 enum packet_result result;
11222
11223 gdb_assert (val >= 0 || val == -1);
11224 buf += xsnprintf (buf, endbuf - buf, "QTBuffer:size:");
11225 /* Send -1 as literal "-1" to avoid host size dependency. */
11226 if (val < 0)
11227 {
11228 *buf++ = '-';
11229 buf += hexnumstr (buf, (ULONGEST) -val);
11230 }
11231 else
11232 buf += hexnumstr (buf, (ULONGEST) val);
11233
11234 putpkt (rs->buf);
11235 remote_get_noisy_reply (&rs->buf, &rs->buf_size);
11236 result = packet_ok (rs->buf,
11237 &remote_protocol_packets[PACKET_QTBuffer_size]);
11238
11239 if (result != PACKET_OK)
11240 warning (_("Bogus reply from target: %s"), rs->buf);
11241 }
11242}
11243
f196051f 11244static int
ca623f82
TT
11245remote_set_trace_notes (const char *user, const char *notes,
11246 const char *stop_notes)
f196051f
SS
11247{
11248 struct remote_state *rs = get_remote_state ();
11249 char *reply;
11250 char *buf = rs->buf;
11251 char *endbuf = rs->buf + get_remote_packet_size ();
11252 int nbytes;
11253
11254 buf += xsnprintf (buf, endbuf - buf, "QTNotes:");
11255 if (user)
11256 {
11257 buf += xsnprintf (buf, endbuf - buf, "user:");
bc20a4af 11258 nbytes = bin2hex ((gdb_byte *) user, buf, 0);
f196051f
SS
11259 buf += 2 * nbytes;
11260 *buf++ = ';';
11261 }
11262 if (notes)
11263 {
11264 buf += xsnprintf (buf, endbuf - buf, "notes:");
bc20a4af 11265 nbytes = bin2hex ((gdb_byte *) notes, buf, 0);
f196051f
SS
11266 buf += 2 * nbytes;
11267 *buf++ = ';';
11268 }
11269 if (stop_notes)
11270 {
11271 buf += xsnprintf (buf, endbuf - buf, "tstop:");
bc20a4af 11272 nbytes = bin2hex ((gdb_byte *) stop_notes, buf, 0);
f196051f
SS
11273 buf += 2 * nbytes;
11274 *buf++ = ';';
11275 }
11276 /* Ensure the buffer is terminated. */
11277 *buf = '\0';
11278
11279 putpkt (rs->buf);
11280 reply = remote_get_noisy_reply (&target_buf, &target_buf_size);
11281 if (*reply == '\0')
11282 return 0;
11283
11284 if (strcmp (reply, "OK") != 0)
11285 error (_("Bogus reply from target: %s"), reply);
11286
11287 return 1;
11288}
11289
d1feda86
YQ
11290static int
11291remote_use_agent (int use)
11292{
11293 if (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE)
11294 {
11295 struct remote_state *rs = get_remote_state ();
11296
11297 /* If the stub supports QAgent. */
bba74b36 11298 xsnprintf (rs->buf, get_remote_packet_size (), "QAgent:%d", use);
d1feda86
YQ
11299 putpkt (rs->buf);
11300 getpkt (&rs->buf, &rs->buf_size, 0);
11301
11302 if (strcmp (rs->buf, "OK") == 0)
11303 {
11304 use_agent = use;
11305 return 1;
11306 }
11307 }
11308
11309 return 0;
11310}
11311
11312static int
11313remote_can_use_agent (void)
11314{
11315 return (remote_protocol_packets[PACKET_QAgent].support != PACKET_DISABLE);
11316}
11317
9accd112
MM
11318struct btrace_target_info
11319{
11320 /* The ptid of the traced thread. */
11321 ptid_t ptid;
11322};
11323
11324/* Check whether the target supports branch tracing. */
11325
11326static int
11327remote_supports_btrace (void)
11328{
11329 if (remote_protocol_packets[PACKET_Qbtrace_off].support != PACKET_ENABLE)
11330 return 0;
11331 if (remote_protocol_packets[PACKET_Qbtrace_bts].support != PACKET_ENABLE)
11332 return 0;
11333 if (remote_protocol_packets[PACKET_qXfer_btrace].support != PACKET_ENABLE)
11334 return 0;
11335
11336 return 1;
11337}
11338
11339/* Enable branch tracing. */
11340
11341static struct btrace_target_info *
11342remote_enable_btrace (ptid_t ptid)
11343{
11344 struct btrace_target_info *tinfo = NULL;
11345 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_bts];
11346 struct remote_state *rs = get_remote_state ();
11347 char *buf = rs->buf;
11348 char *endbuf = rs->buf + get_remote_packet_size ();
11349
11350 if (packet->support != PACKET_ENABLE)
11351 error (_("Target does not support branch tracing."));
11352
11353 set_general_thread (ptid);
11354
11355 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
11356 putpkt (rs->buf);
11357 getpkt (&rs->buf, &rs->buf_size, 0);
11358
11359 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
11360 {
11361 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
11362 error (_("Could not enable branch tracing for %s: %s"),
11363 target_pid_to_str (ptid), rs->buf + 2);
11364 else
11365 error (_("Could not enable branch tracing for %s."),
11366 target_pid_to_str (ptid));
11367 }
11368
11369 tinfo = xzalloc (sizeof (*tinfo));
11370 tinfo->ptid = ptid;
11371
11372 return tinfo;
11373}
11374
11375/* Disable branch tracing. */
11376
11377static void
11378remote_disable_btrace (struct btrace_target_info *tinfo)
11379{
11380 struct packet_config *packet = &remote_protocol_packets[PACKET_Qbtrace_off];
11381 struct remote_state *rs = get_remote_state ();
11382 char *buf = rs->buf;
11383 char *endbuf = rs->buf + get_remote_packet_size ();
11384
11385 if (packet->support != PACKET_ENABLE)
11386 error (_("Target does not support branch tracing."));
11387
11388 set_general_thread (tinfo->ptid);
11389
11390 buf += xsnprintf (buf, endbuf - buf, "%s", packet->name);
11391 putpkt (rs->buf);
11392 getpkt (&rs->buf, &rs->buf_size, 0);
11393
11394 if (packet_ok (rs->buf, packet) == PACKET_ERROR)
11395 {
11396 if (rs->buf[0] == 'E' && rs->buf[1] == '.')
11397 error (_("Could not disable branch tracing for %s: %s"),
11398 target_pid_to_str (tinfo->ptid), rs->buf + 2);
11399 else
11400 error (_("Could not disable branch tracing for %s."),
11401 target_pid_to_str (tinfo->ptid));
11402 }
11403
11404 xfree (tinfo);
11405}
11406
11407/* Teardown branch tracing. */
11408
11409static void
11410remote_teardown_btrace (struct btrace_target_info *tinfo)
11411{
11412 /* We must not talk to the target during teardown. */
11413 xfree (tinfo);
11414}
11415
11416/* Read the branch trace. */
11417
11418static VEC (btrace_block_s) *
11419remote_read_btrace (struct btrace_target_info *tinfo,
11420 enum btrace_read_type type)
11421{
11422 struct packet_config *packet = &remote_protocol_packets[PACKET_qXfer_btrace];
11423 struct remote_state *rs = get_remote_state ();
11424 VEC (btrace_block_s) *btrace = NULL;
11425 const char *annex;
11426 char *xml;
11427
11428 if (packet->support != PACKET_ENABLE)
11429 error (_("Target does not support branch tracing."));
11430
11431#if !defined(HAVE_LIBEXPAT)
11432 error (_("Cannot process branch tracing result. XML parsing not supported."));
11433#endif
11434
11435 switch (type)
11436 {
11437 case btrace_read_all:
11438 annex = "all";
11439 break;
11440 case btrace_read_new:
11441 annex = "new";
11442 break;
11443 default:
11444 internal_error (__FILE__, __LINE__,
11445 _("Bad branch tracing read type: %u."),
11446 (unsigned int) type);
11447 }
11448
11449 xml = target_read_stralloc (&current_target,
11450 TARGET_OBJECT_BTRACE, annex);
11451 if (xml != NULL)
11452 {
11453 struct cleanup *cleanup = make_cleanup (xfree, xml);
11454
11455 btrace = parse_xml_btrace (xml);
11456 do_cleanups (cleanup);
11457 }
11458
11459 return btrace;
11460}
11461
ced63ec0
GB
11462static int
11463remote_augmented_libraries_svr4_read (void)
11464{
11465 struct remote_state *rs = get_remote_state ();
11466
11467 return rs->augmented_libraries_svr4_read;
11468}
11469
c906108c 11470static void
fba45db2 11471init_remote_ops (void)
c906108c 11472{
c5aa993b 11473 remote_ops.to_shortname = "remote";
c906108c 11474 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 11475 remote_ops.to_doc =
c906108c 11476 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
11477Specify the serial device it is connected to\n\
11478(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
11479 remote_ops.to_open = remote_open;
11480 remote_ops.to_close = remote_close;
c906108c 11481 remote_ops.to_detach = remote_detach;
6ad8ae5c 11482 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 11483 remote_ops.to_resume = remote_resume;
c906108c
SS
11484 remote_ops.to_wait = remote_wait;
11485 remote_ops.to_fetch_registers = remote_fetch_registers;
11486 remote_ops.to_store_registers = remote_store_registers;
11487 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c5aa993b 11488 remote_ops.to_files_info = remote_files_info;
c906108c
SS
11489 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
11490 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
3c3bea1c
GS
11491 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
11492 remote_ops.to_stopped_data_address = remote_stopped_data_address;
283002cf
MR
11493 remote_ops.to_watchpoint_addr_within_range =
11494 remote_watchpoint_addr_within_range;
3c3bea1c
GS
11495 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
11496 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
11497 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
480a3f21
PW
11498 remote_ops.to_region_ok_for_hw_watchpoint
11499 = remote_region_ok_for_hw_watchpoint;
3c3bea1c
GS
11500 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
11501 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b
JM
11502 remote_ops.to_kill = remote_kill;
11503 remote_ops.to_load = generic_load;
c906108c 11504 remote_ops.to_mourn_inferior = remote_mourn;
2455069d 11505 remote_ops.to_pass_signals = remote_pass_signals;
9b224c5e 11506 remote_ops.to_program_signals = remote_program_signals;
c906108c 11507 remote_ops.to_thread_alive = remote_thread_alive;
0f71a2f6 11508 remote_ops.to_find_new_threads = remote_threads_info;
0caabb7e 11509 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 11510 remote_ops.to_extra_thread_info = remote_threads_extra_info;
10760264 11511 remote_ops.to_get_ada_task_ptid = remote_get_ada_task_ptid;
c906108c 11512 remote_ops.to_stop = remote_stop;
4b8a223f 11513 remote_ops.to_xfer_partial = remote_xfer_partial;
96baa820 11514 remote_ops.to_rcmd = remote_rcmd;
49d03eab 11515 remote_ops.to_log_command = serial_log_command;
38691318 11516 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 11517 remote_ops.to_stratum = process_stratum;
c35b1492
PA
11518 remote_ops.to_has_all_memory = default_child_has_all_memory;
11519 remote_ops.to_has_memory = default_child_has_memory;
11520 remote_ops.to_has_stack = default_child_has_stack;
11521 remote_ops.to_has_registers = default_child_has_registers;
11522 remote_ops.to_has_execution = default_child_has_execution;
3e43a32a 11523 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 11524 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 11525 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 11526 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
11527 remote_ops.to_flash_erase = remote_flash_erase;
11528 remote_ops.to_flash_done = remote_flash_done;
29709017 11529 remote_ops.to_read_description = remote_read_description;
08388c79 11530 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
11531 remote_ops.to_can_async_p = remote_can_async_p;
11532 remote_ops.to_is_async_p = remote_is_async_p;
11533 remote_ops.to_async = remote_async;
75c99385
PA
11534 remote_ops.to_terminal_inferior = remote_terminal_inferior;
11535 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 11536 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 11537 remote_ops.to_supports_multi_process = remote_supports_multi_process;
03583c20
UW
11538 remote_ops.to_supports_disable_randomization
11539 = remote_supports_disable_randomization;
7313baad
UW
11540 remote_ops.to_fileio_open = remote_hostio_open;
11541 remote_ops.to_fileio_pwrite = remote_hostio_pwrite;
11542 remote_ops.to_fileio_pread = remote_hostio_pread;
11543 remote_ops.to_fileio_close = remote_hostio_close;
11544 remote_ops.to_fileio_unlink = remote_hostio_unlink;
b9e7b9c3 11545 remote_ops.to_fileio_readlink = remote_hostio_readlink;
d248b706 11546 remote_ops.to_supports_enable_disable_tracepoint = remote_supports_enable_disable_tracepoint;
3065dfb6 11547 remote_ops.to_supports_string_tracing = remote_supports_string_tracing;
b775012e 11548 remote_ops.to_supports_evaluation_of_breakpoint_conditions = remote_supports_cond_breakpoints;
d3ce09f5 11549 remote_ops.to_can_run_breakpoint_commands = remote_can_run_breakpoint_commands;
35b1e5cc
SS
11550 remote_ops.to_trace_init = remote_trace_init;
11551 remote_ops.to_download_tracepoint = remote_download_tracepoint;
1e4d1764 11552 remote_ops.to_can_download_tracepoint = remote_can_download_tracepoint;
3e43a32a
MS
11553 remote_ops.to_download_trace_state_variable
11554 = remote_download_trace_state_variable;
d248b706
KY
11555 remote_ops.to_enable_tracepoint = remote_enable_tracepoint;
11556 remote_ops.to_disable_tracepoint = remote_disable_tracepoint;
35b1e5cc
SS
11557 remote_ops.to_trace_set_readonly_regions = remote_trace_set_readonly_regions;
11558 remote_ops.to_trace_start = remote_trace_start;
11559 remote_ops.to_get_trace_status = remote_get_trace_status;
f196051f 11560 remote_ops.to_get_tracepoint_status = remote_get_tracepoint_status;
35b1e5cc
SS
11561 remote_ops.to_trace_stop = remote_trace_stop;
11562 remote_ops.to_trace_find = remote_trace_find;
3e43a32a
MS
11563 remote_ops.to_get_trace_state_variable_value
11564 = remote_get_trace_state_variable_value;
00bf0b85
SS
11565 remote_ops.to_save_trace_data = remote_save_trace_data;
11566 remote_ops.to_upload_tracepoints = remote_upload_tracepoints;
3e43a32a
MS
11567 remote_ops.to_upload_trace_state_variables
11568 = remote_upload_trace_state_variables;
00bf0b85 11569 remote_ops.to_get_raw_trace_data = remote_get_raw_trace_data;
405f8e94 11570 remote_ops.to_get_min_fast_tracepoint_insn_len = remote_get_min_fast_tracepoint_insn_len;
35b1e5cc 11571 remote_ops.to_set_disconnected_tracing = remote_set_disconnected_tracing;
4daf5ac0 11572 remote_ops.to_set_circular_trace_buffer = remote_set_circular_trace_buffer;
f6f899bf 11573 remote_ops.to_set_trace_buffer_size = remote_set_trace_buffer_size;
f196051f 11574 remote_ops.to_set_trace_notes = remote_set_trace_notes;
dc146f7c 11575 remote_ops.to_core_of_thread = remote_core_of_thread;
4a5e7a5b 11576 remote_ops.to_verify_memory = remote_verify_memory;
711e434b 11577 remote_ops.to_get_tib_address = remote_get_tib_address;
d914c394 11578 remote_ops.to_set_permissions = remote_set_permissions;
0fb4aa4b
PA
11579 remote_ops.to_static_tracepoint_marker_at
11580 = remote_static_tracepoint_marker_at;
11581 remote_ops.to_static_tracepoint_markers_by_strid
11582 = remote_static_tracepoint_markers_by_strid;
b3b9301e 11583 remote_ops.to_traceframe_info = remote_traceframe_info;
d1feda86
YQ
11584 remote_ops.to_use_agent = remote_use_agent;
11585 remote_ops.to_can_use_agent = remote_can_use_agent;
9accd112
MM
11586 remote_ops.to_supports_btrace = remote_supports_btrace;
11587 remote_ops.to_enable_btrace = remote_enable_btrace;
11588 remote_ops.to_disable_btrace = remote_disable_btrace;
11589 remote_ops.to_teardown_btrace = remote_teardown_btrace;
11590 remote_ops.to_read_btrace = remote_read_btrace;
ced63ec0
GB
11591 remote_ops.to_augmented_libraries_svr4_read =
11592 remote_augmented_libraries_svr4_read;
c906108c
SS
11593}
11594
11595/* Set up the extended remote vector by making a copy of the standard
11596 remote vector and adding to it. */
11597
11598static void
fba45db2 11599init_extended_remote_ops (void)
c906108c
SS
11600{
11601 extended_remote_ops = remote_ops;
11602
0f71a2f6 11603 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 11604 extended_remote_ops.to_longname =
c906108c 11605 "Extended remote serial target in gdb-specific protocol";
c5aa993b 11606 extended_remote_ops.to_doc =
c906108c 11607 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
11608Specify the serial device it is connected to (e.g. /dev/ttya).";
11609 extended_remote_ops.to_open = extended_remote_open;
c906108c
SS
11610 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
11611 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
2d717e4f
DJ
11612 extended_remote_ops.to_detach = extended_remote_detach;
11613 extended_remote_ops.to_attach = extended_remote_attach;
82f73884 11614 extended_remote_ops.to_kill = extended_remote_kill;
03583c20
UW
11615 extended_remote_ops.to_supports_disable_randomization
11616 = extended_remote_supports_disable_randomization;
0f71a2f6
JM
11617}
11618
6426a772
JM
11619static int
11620remote_can_async_p (void)
11621{
5d93a237
TT
11622 struct remote_state *rs = get_remote_state ();
11623
c6ebd6cf 11624 if (!target_async_permitted)
75c99385
PA
11625 /* We only enable async when the user specifically asks for it. */
11626 return 0;
11627
23860348 11628 /* We're async whenever the serial device is. */
5d93a237 11629 return serial_can_async_p (rs->remote_desc);
6426a772
JM
11630}
11631
11632static int
11633remote_is_async_p (void)
11634{
5d93a237
TT
11635 struct remote_state *rs = get_remote_state ();
11636
c6ebd6cf 11637 if (!target_async_permitted)
75c99385
PA
11638 /* We only enable async when the user specifically asks for it. */
11639 return 0;
11640
23860348 11641 /* We're async whenever the serial device is. */
5d93a237 11642 return serial_is_async_p (rs->remote_desc);
6426a772
JM
11643}
11644
2acceee2
JM
11645/* Pass the SERIAL event on and up to the client. One day this code
11646 will be able to delay notifying the client of an event until the
23860348 11647 point where an entire packet has been received. */
2acceee2 11648
2acceee2
JM
11649static serial_event_ftype remote_async_serial_handler;
11650
6426a772 11651static void
819cc324 11652remote_async_serial_handler (struct serial *scb, void *context)
6426a772 11653{
88b496c3
TT
11654 struct remote_state *rs = context;
11655
2acceee2
JM
11656 /* Don't propogate error information up to the client. Instead let
11657 the client find out about the error by querying the target. */
88b496c3 11658 rs->async_client_callback (INF_REG_EVENT, rs->async_client_context);
2acceee2
JM
11659}
11660
74531fed
PA
11661static void
11662remote_async_inferior_event_handler (gdb_client_data data)
11663{
11664 inferior_event_handler (INF_REG_EVENT, NULL);
11665}
11666
2acceee2 11667static void
2bc416ba 11668remote_async (void (*callback) (enum inferior_event_type event_type,
23860348 11669 void *context), void *context)
2acceee2 11670{
5d93a237
TT
11671 struct remote_state *rs = get_remote_state ();
11672
2acceee2
JM
11673 if (callback != NULL)
11674 {
88b496c3
TT
11675 serial_async (rs->remote_desc, remote_async_serial_handler, rs);
11676 rs->async_client_callback = callback;
11677 rs->async_client_context = context;
2acceee2
JM
11678 }
11679 else
5d93a237 11680 serial_async (rs->remote_desc, NULL, NULL);
6426a772
JM
11681}
11682
5a2468f5 11683static void
c2d11a7d 11684set_remote_cmd (char *args, int from_tty)
5a2468f5 11685{
427c3a89 11686 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
5a2468f5
JM
11687}
11688
d471ea57
AC
11689static void
11690show_remote_cmd (char *args, int from_tty)
11691{
37a105a1 11692 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 11693 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1
DJ
11694 struct cleanup *showlist_chain;
11695 struct cmd_list_element *list = remote_show_cmdlist;
79a45e25 11696 struct ui_out *uiout = current_uiout;
37a105a1
DJ
11697
11698 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
11699 for (; list != NULL; list = list->next)
11700 if (strcmp (list->name, "Z-packet") == 0)
11701 continue;
427c3a89
DJ
11702 else if (list->type == not_set_cmd)
11703 /* Alias commands are exactly like the original, except they
11704 don't have the normal type. */
11705 continue;
11706 else
37a105a1
DJ
11707 {
11708 struct cleanup *option_chain
11709 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
a744cf53 11710
37a105a1
DJ
11711 ui_out_field_string (uiout, "name", list->name);
11712 ui_out_text (uiout, ": ");
427c3a89 11713 if (list->type == show_cmd)
5b9afe8a 11714 do_show_command ((char *) NULL, from_tty, list);
427c3a89
DJ
11715 else
11716 cmd_func (list, NULL, from_tty);
37a105a1
DJ
11717 /* Close the tuple. */
11718 do_cleanups (option_chain);
11719 }
427c3a89
DJ
11720
11721 /* Close the tuple. */
11722 do_cleanups (showlist_chain);
d471ea57 11723}
5a2468f5 11724
0f71a2f6 11725
23860348 11726/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
11727static void
11728remote_new_objfile (struct objfile *objfile)
11729{
5d93a237
TT
11730 struct remote_state *rs = get_remote_state ();
11731
11732 if (rs->remote_desc != 0) /* Have a remote connection. */
36d25514 11733 remote_check_symbols ();
dc8acb97
MS
11734}
11735
00bf0b85
SS
11736/* Pull all the tracepoints defined on the target and create local
11737 data structures representing them. We don't want to create real
11738 tracepoints yet, we don't want to mess up the user's existing
11739 collection. */
11740
11741static int
11742remote_upload_tracepoints (struct uploaded_tp **utpp)
d5551862 11743{
00bf0b85
SS
11744 struct remote_state *rs = get_remote_state ();
11745 char *p;
d5551862 11746
00bf0b85
SS
11747 /* Ask for a first packet of tracepoint definition. */
11748 putpkt ("qTfP");
11749 getpkt (&rs->buf, &rs->buf_size, 0);
11750 p = rs->buf;
11751 while (*p && *p != 'l')
d5551862 11752 {
00bf0b85
SS
11753 parse_tracepoint_definition (p, utpp);
11754 /* Ask for another packet of tracepoint definition. */
11755 putpkt ("qTsP");
11756 getpkt (&rs->buf, &rs->buf_size, 0);
11757 p = rs->buf;
d5551862 11758 }
00bf0b85 11759 return 0;
d5551862
SS
11760}
11761
00bf0b85
SS
11762static int
11763remote_upload_trace_state_variables (struct uploaded_tsv **utsvp)
d5551862 11764{
00bf0b85 11765 struct remote_state *rs = get_remote_state ();
d5551862 11766 char *p;
d5551862 11767
00bf0b85
SS
11768 /* Ask for a first packet of variable definition. */
11769 putpkt ("qTfV");
d5551862
SS
11770 getpkt (&rs->buf, &rs->buf_size, 0);
11771 p = rs->buf;
00bf0b85 11772 while (*p && *p != 'l')
d5551862 11773 {
00bf0b85
SS
11774 parse_tsv_definition (p, utsvp);
11775 /* Ask for another packet of variable definition. */
11776 putpkt ("qTsV");
d5551862
SS
11777 getpkt (&rs->buf, &rs->buf_size, 0);
11778 p = rs->buf;
11779 }
00bf0b85 11780 return 0;
d5551862
SS
11781}
11782
c1e36e3e
PA
11783/* The "set/show range-stepping" show hook. */
11784
11785static void
11786show_range_stepping (struct ui_file *file, int from_tty,
11787 struct cmd_list_element *c,
11788 const char *value)
11789{
11790 fprintf_filtered (file,
11791 _("Debugger's willingness to use range stepping "
11792 "is %s.\n"), value);
11793}
11794
11795/* The "set/show range-stepping" set hook. */
11796
11797static void
11798set_range_stepping (char *ignore_args, int from_tty,
11799 struct cmd_list_element *c)
11800{
5d93a237
TT
11801 struct remote_state *rs = get_remote_state ();
11802
c1e36e3e
PA
11803 /* Whene enabling, check whether range stepping is actually
11804 supported by the target, and warn if not. */
11805 if (use_range_stepping)
11806 {
5d93a237 11807 if (rs->remote_desc != NULL)
c1e36e3e 11808 {
c1e36e3e
PA
11809 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
11810 remote_vcont_probe (rs);
11811
11812 if (remote_protocol_packets[PACKET_vCont].support == PACKET_ENABLE
11813 && rs->supports_vCont.r)
11814 return;
11815 }
11816
11817 warning (_("Range stepping is not supported by the current target"));
11818 }
11819}
11820
c906108c 11821void
fba45db2 11822_initialize_remote (void)
c906108c 11823{
ea9c271d 11824 struct remote_state *rs;
9a7071a8 11825 struct cmd_list_element *cmd;
6f937416 11826 const char *cmd_name;
ea9c271d 11827
0f71a2f6 11828 /* architecture specific data */
2bc416ba 11829 remote_gdbarch_data_handle =
23860348 11830 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
11831 remote_g_packet_data_handle =
11832 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 11833
ea9c271d
DJ
11834 /* Initialize the per-target state. At the moment there is only one
11835 of these, not one per target. Only one target is active at a
cf792862
TT
11836 time. */
11837 remote_state = new_remote_state ();
ea9c271d 11838
c906108c
SS
11839 init_remote_ops ();
11840 add_target (&remote_ops);
11841
11842 init_extended_remote_ops ();
11843 add_target (&extended_remote_ops);
cce74817 11844
dc8acb97 11845 /* Hook into new objfile notification. */
06d3b283 11846 observer_attach_new_objfile (remote_new_objfile);
5f4cf0bb
YQ
11847 /* We're no longer interested in notification events of an inferior
11848 when it exits. */
11849 observer_attach_inferior_exit (discard_pending_stop_replies);
dc8acb97 11850
b803fb0f 11851 /* Set up signal handlers. */
934b9bac 11852 async_sigint_remote_token =
b803fb0f 11853 create_async_signal_handler (async_remote_interrupt, NULL);
934b9bac 11854 async_sigint_remote_twice_token =
6d549500 11855 create_async_signal_handler (async_remote_interrupt_twice, NULL);
b803fb0f 11856
c906108c
SS
11857#if 0
11858 init_remote_threadtests ();
11859#endif
11860
722247f1 11861 stop_reply_queue = QUEUE_alloc (stop_reply_p, stop_reply_xfree);
23860348 11862 /* set/show remote ... */
d471ea57 11863
1bedd215 11864 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
11865Remote protocol specific variables\n\
11866Configure various remote-protocol specific variables such as\n\
1bedd215 11867the packets being used"),
cff3e48b 11868 &remote_set_cmdlist, "set remote ",
23860348 11869 0 /* allow-unknown */, &setlist);
1bedd215 11870 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
11871Remote protocol specific variables\n\
11872Configure various remote-protocol specific variables such as\n\
1bedd215 11873the packets being used"),
cff3e48b 11874 &remote_show_cmdlist, "show remote ",
23860348 11875 0 /* allow-unknown */, &showlist);
5a2468f5 11876
1a966eab
AC
11877 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
11878Compare section data on target to the exec file.\n\
11879Argument is a single section name (default: all loaded sections)."),
c906108c
SS
11880 &cmdlist);
11881
1a966eab
AC
11882 add_cmd ("packet", class_maintenance, packet_command, _("\
11883Send an arbitrary packet to a remote target.\n\
c906108c
SS
11884 maintenance packet TEXT\n\
11885If GDB is talking to an inferior via the GDB serial protocol, then\n\
11886this command sends the string TEXT to the inferior, and displays the\n\
11887response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 11888terminating `#' character and checksum."),
c906108c
SS
11889 &maintenancelist);
11890
7915a72c
AC
11891 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
11892Set whether to send break if interrupted."), _("\
11893Show whether to send break if interrupted."), _("\
11894If set, a break, instead of a cntrl-c, is sent to the remote target."),
9a7071a8 11895 set_remotebreak, show_remotebreak,
e707bbc2 11896 &setlist, &showlist);
9a7071a8
JB
11897 cmd_name = "remotebreak";
11898 cmd = lookup_cmd (&cmd_name, setlist, "", -1, 1);
11899 deprecate_cmd (cmd, "set remote interrupt-sequence");
11900 cmd_name = "remotebreak"; /* needed because lookup_cmd updates the pointer */
11901 cmd = lookup_cmd (&cmd_name, showlist, "", -1, 1);
11902 deprecate_cmd (cmd, "show remote interrupt-sequence");
11903
11904 add_setshow_enum_cmd ("interrupt-sequence", class_support,
3e43a32a
MS
11905 interrupt_sequence_modes, &interrupt_sequence_mode,
11906 _("\
9a7071a8
JB
11907Set interrupt sequence to remote target."), _("\
11908Show interrupt sequence to remote target."), _("\
11909Valid value is \"Ctrl-C\", \"BREAK\" or \"BREAK-g\". The default is \"Ctrl-C\"."),
11910 NULL, show_interrupt_sequence,
11911 &remote_set_cmdlist,
11912 &remote_show_cmdlist);
11913
11914 add_setshow_boolean_cmd ("interrupt-on-connect", class_support,
11915 &interrupt_on_connect, _("\
11916Set whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11917Show whether interrupt-sequence is sent to remote target when gdb connects to."), _(" \
11918If set, interrupt sequence is sent to remote target."),
11919 NULL, NULL,
11920 &remote_set_cmdlist, &remote_show_cmdlist);
c906108c 11921
23860348 11922 /* Install commands for configuring memory read/write packets. */
11cf8741 11923
1a966eab
AC
11924 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
11925Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 11926 &setlist);
1a966eab
AC
11927 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
11928Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
11929 &showlist);
11930 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
11931 set_memory_write_packet_size, _("\
11932Set the maximum number of bytes per memory-write packet.\n\
11933Specify the number of bytes in a packet or 0 (zero) for the\n\
11934default packet size. The actual limit is further reduced\n\
11935dependent on the target. Specify ``fixed'' to disable the\n\
11936further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
11937 &remote_set_cmdlist);
11938 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
11939 set_memory_read_packet_size, _("\
11940Set the maximum number of bytes per memory-read packet.\n\
11941Specify the number of bytes in a packet or 0 (zero) for the\n\
11942default packet size. The actual limit is further reduced\n\
11943dependent on the target. Specify ``fixed'' to disable the\n\
11944further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
11945 &remote_set_cmdlist);
11946 add_cmd ("memory-write-packet-size", no_class,
11947 show_memory_write_packet_size,
1a966eab 11948 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
11949 &remote_show_cmdlist);
11950 add_cmd ("memory-read-packet-size", no_class,
11951 show_memory_read_packet_size,
1a966eab 11952 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 11953 &remote_show_cmdlist);
c906108c 11954
b3f42336 11955 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
11956 &remote_hw_watchpoint_limit, _("\
11957Set the maximum number of target hardware watchpoints."), _("\
11958Show the maximum number of target hardware watchpoints."), _("\
11959Specify a negative limit for unlimited."),
3e43a32a
MS
11960 NULL, NULL, /* FIXME: i18n: The maximum
11961 number of target hardware
11962 watchpoints is %s. */
b3f42336 11963 &remote_set_cmdlist, &remote_show_cmdlist);
480a3f21
PW
11964 add_setshow_zinteger_cmd ("hardware-watchpoint-length-limit", no_class,
11965 &remote_hw_watchpoint_length_limit, _("\
11966Set the maximum length (in bytes) of a target hardware watchpoint."), _("\
11967Show the maximum length (in bytes) of a target hardware watchpoint."), _("\
11968Specify a negative limit for unlimited."),
11969 NULL, NULL, /* FIXME: i18n: The maximum
11970 length (in bytes) of a target
11971 hardware watchpoint is %s. */
11972 &remote_set_cmdlist, &remote_show_cmdlist);
b3f42336 11973 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
11974 &remote_hw_breakpoint_limit, _("\
11975Set the maximum number of target hardware breakpoints."), _("\
11976Show the maximum number of target hardware breakpoints."), _("\
11977Specify a negative limit for unlimited."),
3e43a32a
MS
11978 NULL, NULL, /* FIXME: i18n: The maximum
11979 number of target hardware
11980 breakpoints is %s. */
b3f42336 11981 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 11982
1b493192
PA
11983 add_setshow_zuinteger_cmd ("remoteaddresssize", class_obscure,
11984 &remote_address_size, _("\
4d28ad1e
AC
11985Set the maximum size of the address (in bits) in a memory packet."), _("\
11986Show the maximum size of the address (in bits) in a memory packet."), NULL,
1b493192
PA
11987 NULL,
11988 NULL, /* FIXME: i18n: */
11989 &setlist, &showlist);
c906108c 11990
444abaca 11991 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 11992 "X", "binary-download", 1);
0f71a2f6 11993
444abaca 11994 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 11995 "vCont", "verbose-resume", 0);
506fb367 11996
89be2091
DJ
11997 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
11998 "QPassSignals", "pass-signals", 0);
11999
9b224c5e
PA
12000 add_packet_config_cmd (&remote_protocol_packets[PACKET_QProgramSignals],
12001 "QProgramSignals", "program-signals", 0);
12002
444abaca 12003 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 12004 "qSymbol", "symbol-lookup", 0);
dc8acb97 12005
444abaca 12006 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 12007 "P", "set-register", 1);
d471ea57 12008
444abaca 12009 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 12010 "p", "fetch-register", 1);
b96ec7ac 12011
444abaca 12012 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 12013 "Z0", "software-breakpoint", 0);
d471ea57 12014
444abaca 12015 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 12016 "Z1", "hardware-breakpoint", 0);
d471ea57 12017
444abaca 12018 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 12019 "Z2", "write-watchpoint", 0);
d471ea57 12020
444abaca 12021 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 12022 "Z3", "read-watchpoint", 0);
d471ea57 12023
444abaca 12024 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 12025 "Z4", "access-watchpoint", 0);
d471ea57 12026
0876f84a
DJ
12027 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
12028 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 12029
23181151
DJ
12030 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
12031 "qXfer:features:read", "target-features", 0);
12032
cfa9d6d9
DJ
12033 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
12034 "qXfer:libraries:read", "library-info", 0);
12035
2268b414
JK
12036 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries_svr4],
12037 "qXfer:libraries-svr4:read", "library-info-svr4", 0);
12038
fd79ecee
DJ
12039 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
12040 "qXfer:memory-map:read", "memory-map", 0);
12041
0e7f50da
UW
12042 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
12043 "qXfer:spu:read", "read-spu-object", 0);
12044
12045 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
12046 "qXfer:spu:write", "write-spu-object", 0);
12047
07e059b5
VP
12048 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
12049 "qXfer:osdata:read", "osdata", 0);
12050
dc146f7c
VP
12051 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_threads],
12052 "qXfer:threads:read", "threads", 0);
12053
4aa995e1
PA
12054 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
12055 "qXfer:siginfo:read", "read-siginfo-object", 0);
12056
12057 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
12058 "qXfer:siginfo:write", "write-siginfo-object", 0);
12059
b3b9301e
PA
12060 add_packet_config_cmd
12061 (&remote_protocol_packets[PACKET_qXfer_traceframe_info],
eb9fe518 12062 "qXfer:traceframe-info:read", "traceframe-info", 0);
b3b9301e 12063
169081d0
TG
12064 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_uib],
12065 "qXfer:uib:read", "unwind-info-block", 0);
12066
444abaca 12067 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 12068 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
12069 0);
12070
711e434b
PM
12071 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTIBAddr],
12072 "qGetTIBAddr", "get-thread-information-block-address",
12073 0);
12074
40ab02ce
MS
12075 add_packet_config_cmd (&remote_protocol_packets[PACKET_bc],
12076 "bc", "reverse-continue", 0);
12077
12078 add_packet_config_cmd (&remote_protocol_packets[PACKET_bs],
12079 "bs", "reverse-step", 0);
12080
be2a5f71
DJ
12081 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
12082 "qSupported", "supported-packets", 0);
12083
08388c79
DE
12084 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
12085 "qSearch:memory", "search-memory", 0);
12086
bd3eecc3
PA
12087 add_packet_config_cmd (&remote_protocol_packets[PACKET_qTStatus],
12088 "qTStatus", "trace-status", 0);
12089
a6b151f1
DJ
12090 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
12091 "vFile:open", "hostio-open", 0);
12092
12093 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
12094 "vFile:pread", "hostio-pread", 0);
12095
12096 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
12097 "vFile:pwrite", "hostio-pwrite", 0);
12098
12099 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
12100 "vFile:close", "hostio-close", 0);
12101
12102 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
12103 "vFile:unlink", "hostio-unlink", 0);
12104
b9e7b9c3
UW
12105 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_readlink],
12106 "vFile:readlink", "hostio-readlink", 0);
12107
2d717e4f
DJ
12108 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
12109 "vAttach", "attach", 0);
12110
12111 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
12112 "vRun", "run", 0);
12113
a6f3e723
SL
12114 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
12115 "QStartNoAckMode", "noack", 0);
12116
82f73884
PA
12117 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
12118 "vKill", "kill", 0);
12119
0b16c5cf
PA
12120 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
12121 "qAttached", "query-attached", 0);
12122
782b2b07 12123 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
3e43a32a
MS
12124 "ConditionalTracepoints",
12125 "conditional-tracepoints", 0);
3788aec7
LM
12126
12127 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalBreakpoints],
12128 "ConditionalBreakpoints",
12129 "conditional-breakpoints", 0);
12130
d3ce09f5
SS
12131 add_packet_config_cmd (&remote_protocol_packets[PACKET_BreakpointCommands],
12132 "BreakpointCommands",
12133 "breakpoint-commands", 0);
12134
7a697b8d
SS
12135 add_packet_config_cmd (&remote_protocol_packets[PACKET_FastTracepoints],
12136 "FastTracepoints", "fast-tracepoints", 0);
782b2b07 12137
409873ef
SS
12138 add_packet_config_cmd (&remote_protocol_packets[PACKET_TracepointSource],
12139 "TracepointSource", "TracepointSource", 0);
12140
d914c394
SS
12141 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAllow],
12142 "QAllow", "allow", 0);
12143
0fb4aa4b
PA
12144 add_packet_config_cmd (&remote_protocol_packets[PACKET_StaticTracepoints],
12145 "StaticTracepoints", "static-tracepoints", 0);
12146
1e4d1764
YQ
12147 add_packet_config_cmd (&remote_protocol_packets[PACKET_InstallInTrace],
12148 "InstallInTrace", "install-in-trace", 0);
12149
0fb4aa4b
PA
12150 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_statictrace_read],
12151 "qXfer:statictrace:read", "read-sdata-object", 0);
12152
78d85199
YQ
12153 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_fdpic],
12154 "qXfer:fdpic:read", "read-fdpic-loadmap", 0);
12155
03583c20
UW
12156 add_packet_config_cmd (&remote_protocol_packets[PACKET_QDisableRandomization],
12157 "QDisableRandomization", "disable-randomization", 0);
12158
d1feda86
YQ
12159 add_packet_config_cmd (&remote_protocol_packets[PACKET_QAgent],
12160 "QAgent", "agent", 0);
12161
f6f899bf
HAQ
12162 add_packet_config_cmd (&remote_protocol_packets[PACKET_QTBuffer_size],
12163 "QTBuffer:size", "trace-buffer-size", 0);
12164
9accd112
MM
12165 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_off],
12166 "Qbtrace:off", "disable-btrace", 0);
12167
12168 add_packet_config_cmd (&remote_protocol_packets[PACKET_Qbtrace_bts],
12169 "Qbtrace:bts", "enable-btrace", 0);
12170
12171 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_btrace],
12172 "qXfer:btrace", "read-btrace", 0);
12173
37a105a1
DJ
12174 /* Keep the old ``set remote Z-packet ...'' working. Each individual
12175 Z sub-packet has its own set and show commands, but users may
12176 have sets to this variable in their .gdbinit files (or in their
12177 documentation). */
e9e68a56 12178 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
12179 &remote_Z_packet_detect, _("\
12180Set use of remote protocol `Z' packets"), _("\
12181Show use of remote protocol `Z' packets "), _("\
3b64bf98 12182When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 12183packets."),
e9e68a56 12184 set_remote_protocol_Z_packet_cmd,
3e43a32a
MS
12185 show_remote_protocol_Z_packet_cmd,
12186 /* FIXME: i18n: Use of remote protocol
12187 `Z' packets is %s. */
e9e68a56 12188 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 12189
a6b151f1
DJ
12190 add_prefix_cmd ("remote", class_files, remote_command, _("\
12191Manipulate files on the remote system\n\
12192Transfer files to and from the remote target system."),
12193 &remote_cmdlist, "remote ",
12194 0 /* allow-unknown */, &cmdlist);
12195
12196 add_cmd ("put", class_files, remote_put_command,
12197 _("Copy a local file to the remote system."),
12198 &remote_cmdlist);
12199
12200 add_cmd ("get", class_files, remote_get_command,
12201 _("Copy a remote file to the local system."),
12202 &remote_cmdlist);
12203
12204 add_cmd ("delete", class_files, remote_delete_command,
12205 _("Delete a remote file."),
12206 &remote_cmdlist);
12207
2d717e4f
DJ
12208 remote_exec_file = xstrdup ("");
12209 add_setshow_string_noescape_cmd ("exec-file", class_files,
12210 &remote_exec_file, _("\
12211Set the remote pathname for \"run\""), _("\
12212Show the remote pathname for \"run\""), NULL, NULL, NULL,
12213 &remote_set_cmdlist, &remote_show_cmdlist);
12214
c1e36e3e
PA
12215 add_setshow_boolean_cmd ("range-stepping", class_run,
12216 &use_range_stepping, _("\
12217Enable or disable range stepping."), _("\
12218Show whether target-assisted range stepping is enabled."), _("\
12219If on, and the target supports it, when stepping a source line, GDB\n\
12220tells the target to step the corresponding range of addresses itself instead\n\
12221of issuing multiple single-steps. This speeds up source level\n\
12222stepping. If off, GDB always issues single-steps, even if range\n\
12223stepping is supported by the target. The default is on."),
12224 set_range_stepping,
12225 show_range_stepping,
12226 &setlist,
12227 &showlist);
12228
449092f6
CV
12229 /* Eventually initialize fileio. See fileio.c */
12230 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229
PA
12231
12232 /* Take advantage of the fact that the LWP field is not used, to tag
12233 special ptids with it set to != 0. */
82f73884
PA
12234 magic_null_ptid = ptid_build (42000, 1, -1);
12235 not_sent_ptid = ptid_build (42000, 1, -2);
12236 any_thread_ptid = ptid_build (42000, 1, 0);
35b1e5cc
SS
12237
12238 target_buf_size = 2048;
12239 target_buf = xmalloc (target_buf_size);
c906108c 12240}
10760264 12241