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