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