* Makefile.in (ALL_TARGET_OBS): Remove prologue-value.o, solib.o.
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
6aba47ca 3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
0fb0cc75 4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
29182b13 5 Free Software Foundation, Inc.
c906108c 6
c5aa993b
JM
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c5aa993b 21
23860348 22/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 23
c906108c
SS
24#include "defs.h"
25#include "gdb_string.h"
26#include <ctype.h>
27#include <fcntl.h>
c906108c
SS
28#include "inferior.h"
29#include "bfd.h"
30#include "symfile.h"
60250e8b 31#include "exceptions.h"
c906108c 32#include "target.h"
c5aa993b 33/*#include "terminal.h" */
c906108c
SS
34#include "gdbcmd.h"
35#include "objfiles.h"
36#include "gdb-stabs.h"
37#include "gdbthread.h"
c2c6d25f 38#include "remote.h"
4e052eda 39#include "regcache.h"
fd0407d6 40#include "value.h"
1ff9c3d6 41#include "gdb_assert.h"
6867ae3e 42#include "observer.h"
a77053c2 43#include "solib.h"
37a105a1
DJ
44#include "cli/cli-decode.h"
45#include "cli/cli-setshow.h"
424163ea 46#include "target-descriptions.h"
c906108c 47
7a292a7a 48#include <ctype.h>
9846de1b 49#include <sys/time.h>
c906108c 50
43ff13b4 51#include "event-loop.h"
c2c6d25f 52#include "event-top.h"
2acceee2 53#include "inf-loop.h"
43ff13b4 54
c906108c
SS
55#include <signal.h>
56#include "serial.h"
57
6240bebf
MS
58#include "gdbcore.h" /* for exec_bfd */
59
449092f6 60#include "remote-fileio.h"
a6b151f1 61#include "gdb/fileio.h"
3e88cf8d 62#include "gdb_stat.h"
449092f6 63
fd79ecee
DJ
64#include "memory-map.h"
65
6765f3e5
DJ
66/* The size to align memory write packets, when practical. The protocol
67 does not guarantee any alignment, and gdb will generate short
68 writes and unaligned writes, but even as a best-effort attempt this
69 can improve bulk transfers. For instance, if a write is misaligned
70 relative to the target's data bus, the stub may need to make an extra
71 round trip fetching data from the target. This doesn't make a
72 huge difference, but it's easy to do, so we try to be helpful.
73
74 The alignment chosen is arbitrary; usually data bus width is
75 important here, not the possibly larger cache line size. */
76enum { REMOTE_ALIGN_WRITES = 16 };
77
23860348 78/* Prototypes for local functions. */
6426a772
JM
79static void cleanup_sigint_signal_handler (void *dummy);
80static void initialize_sigint_signal_handler (void);
6d820c5c 81static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
74531fed
PA
82static int getpkt_or_notif_sane (char **buf, long *sizeof_buf,
83 int forever);
6426a772 84
a14ed312
KB
85static void handle_remote_sigint (int);
86static void handle_remote_sigint_twice (int);
87static void async_remote_interrupt (gdb_client_data);
88void async_remote_interrupt_twice (gdb_client_data);
43ff13b4 89
a14ed312 90static void remote_files_info (struct target_ops *ignore);
c906108c 91
316f2060 92static void remote_prepare_to_store (struct regcache *regcache);
c906108c 93
a14ed312 94static void remote_open (char *name, int from_tty);
c906108c 95
a14ed312 96static void extended_remote_open (char *name, int from_tty);
c906108c 97
75c99385 98static void remote_open_1 (char *, int, struct target_ops *, int extended_p);
c906108c 99
a14ed312 100static void remote_close (int quitting);
c906108c 101
136d6dae 102static void remote_mourn (struct target_ops *ops);
c906108c 103
a14ed312 104static void extended_remote_restart (void);
c906108c 105
136d6dae 106static void extended_remote_mourn (struct target_ops *);
c906108c 107
a14ed312 108static void remote_mourn_1 (struct target_ops *);
c906108c 109
6d820c5c 110static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 111
a14ed312 112static int readchar (int timeout);
c906108c 113
7d85a9c0 114static void remote_kill (struct target_ops *ops);
c906108c 115
a14ed312 116static int tohex (int nib);
c906108c 117
75c99385
PA
118static int remote_can_async_p (void);
119
120static int remote_is_async_p (void);
121
122static void remote_async (void (*callback) (enum inferior_event_type event_type,
123 void *context), void *context);
124
125static int remote_async_mask (int new_mask);
126
136d6dae 127static void remote_detach (struct target_ops *ops, char *args, int from_tty);
c906108c 128
a14ed312 129static void remote_interrupt (int signo);
c906108c 130
a14ed312 131static void remote_interrupt_twice (int signo);
7a292a7a 132
a14ed312 133static void interrupt_query (void);
c906108c 134
79d7f229
PA
135static void set_general_thread (struct ptid ptid);
136static void set_continue_thread (struct ptid ptid);
c906108c 137
a14ed312 138static void get_offsets (void);
c906108c 139
6d820c5c
DJ
140static void skip_frame (void);
141
142static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 143
a14ed312 144static int hexnumlen (ULONGEST num);
c906108c 145
a14ed312 146static void init_remote_ops (void);
c906108c 147
a14ed312 148static void init_extended_remote_ops (void);
c906108c 149
94cc34af 150static void remote_stop (ptid_t);
c906108c 151
a14ed312 152static int ishex (int ch, int *val);
c906108c 153
a14ed312 154static int stubhex (int ch);
c906108c 155
a14ed312 156static int hexnumstr (char *, ULONGEST);
c906108c 157
a14ed312 158static int hexnumnstr (char *, ULONGEST, int);
2df3850c 159
a14ed312 160static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 161
a14ed312 162static void print_packet (char *);
c906108c 163
a14ed312 164static unsigned long crc32 (unsigned char *, int, unsigned int);
c906108c 165
a14ed312 166static void compare_sections_command (char *, int);
c906108c 167
a14ed312 168static void packet_command (char *, int);
c906108c 169
a14ed312 170static int stub_unpack_int (char *buff, int fieldlength);
c906108c 171
39f77062 172static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 173
a14ed312 174static void remote_find_new_threads (void);
c906108c 175
79d7f229 176static void record_currthread (ptid_t currthread);
c906108c 177
30559e10 178static int fromhex (int a);
c906108c 179
cfd77fa1 180static int hex2bin (const char *hex, gdb_byte *bin, int count);
c906108c 181
cfd77fa1 182static int bin2hex (const gdb_byte *bin, char *hex, int count);
234fa6d1 183
a14ed312 184static int putpkt_binary (char *buf, int cnt);
c906108c 185
a14ed312 186static void check_binary_download (CORE_ADDR addr);
c906108c 187
5a2468f5 188struct packet_config;
5a2468f5 189
a14ed312 190static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 191
d471ea57 192static void update_packet_config (struct packet_config *config);
5a2468f5 193
bb572ddd
DJ
194static void set_remote_protocol_packet_cmd (char *args, int from_tty,
195 struct cmd_list_element *c);
196
197static void show_remote_protocol_packet_cmd (struct ui_file *file,
198 int from_tty,
199 struct cmd_list_element *c,
200 const char *value);
201
82f73884
PA
202static char *write_ptid (char *buf, const char *endbuf, ptid_t ptid);
203static ptid_t read_ptid (char *buf, char **obuf);
204
c8d104ad
PA
205static void remote_query_supported (void);
206
207static void remote_check_symbols (struct objfile *objfile);
208
a14ed312 209void _initialize_remote (void);
c906108c 210
74531fed
PA
211struct stop_reply;
212static struct stop_reply *stop_reply_xmalloc (void);
213static void stop_reply_xfree (struct stop_reply *);
214static void do_stop_reply_xfree (void *arg);
215static void remote_parse_stop_reply (char *buf, struct stop_reply *);
216static void push_stop_reply (struct stop_reply *);
217static void remote_get_pending_stop_replies (void);
218static void discard_pending_stop_replies (int pid);
219static int peek_stop_reply (ptid_t ptid);
220
221static void remote_async_inferior_event_handler (gdb_client_data);
222static void remote_async_get_pending_events_handler (gdb_client_data);
223
d3fd5342
PA
224static void remote_terminal_ours (void);
225
d962ef82
DJ
226static int remote_read_description_p (struct target_ops *target);
227
74531fed
PA
228/* The non-stop remote protocol provisions for one pending stop reply.
229 This is where we keep it until it is acknowledged. */
230
231static struct stop_reply *pending_stop_reply = NULL;
232
a6b151f1
DJ
233/* For "remote". */
234
235static struct cmd_list_element *remote_cmdlist;
236
bb572ddd
DJ
237/* For "set remote" and "show remote". */
238
239static struct cmd_list_element *remote_set_cmdlist;
240static struct cmd_list_element *remote_show_cmdlist;
241
ea9c271d
DJ
242/* Description of the remote protocol state for the currently
243 connected target. This is per-target state, and independent of the
244 selected architecture. */
245
246struct remote_state
247{
248 /* A buffer to use for incoming packets, and its current size. The
249 buffer is grown dynamically for larger incoming packets.
250 Outgoing packets may also be constructed in this buffer.
251 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
252 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
253 packets. */
254 char *buf;
255 long buf_size;
be2a5f71
DJ
256
257 /* If we negotiated packet size explicitly (and thus can bypass
258 heuristics for the largest packet size that will not overflow
259 a buffer in the stub), this will be set to that packet size.
260 Otherwise zero, meaning to use the guessed size. */
261 long explicit_packet_size;
2d717e4f
DJ
262
263 /* remote_wait is normally called when the target is running and
264 waits for a stop reply packet. But sometimes we need to call it
265 when the target is already stopped. We can send a "?" packet
266 and have remote_wait read the response. Or, if we already have
267 the response, we can stash it in BUF and tell remote_wait to
268 skip calling getpkt. This flag is set when BUF contains a
269 stop reply packet and the target is not waiting. */
270 int cached_wait_status;
a6f3e723
SL
271
272 /* True, if in no ack mode. That is, neither GDB nor the stub will
273 expect acks from each other. The connection is assumed to be
274 reliable. */
275 int noack_mode;
82f73884
PA
276
277 /* True if we're connected in extended remote mode. */
278 int extended;
279
280 /* True if the stub reported support for multi-process
281 extensions. */
282 int multi_process_aware;
e24a49d8
PA
283
284 /* True if we resumed the target and we're waiting for the target to
285 stop. In the mean time, we can't start another command/query.
286 The remote server wouldn't be ready to process it, so we'd
287 timeout waiting for a reply that would never come and eventually
288 we'd close the connection. This can happen in asynchronous mode
289 because we allow GDB commands while the target is running. */
290 int waiting_for_stop_reply;
74531fed
PA
291
292 /* True if the stub reports support for non-stop mode. */
293 int non_stop_aware;
294
295 /* True if the stub reports support for vCont;t. */
296 int support_vCont_t;
782b2b07
SS
297
298 /* True if the stub reports support for conditional tracepoints. */
299 int cond_tracepoints;
ea9c271d
DJ
300};
301
82f73884
PA
302/* Returns true if the multi-process extensions are in effect. */
303static int
304remote_multi_process_p (struct remote_state *rs)
305{
306 return rs->extended && rs->multi_process_aware;
307}
308
ea9c271d
DJ
309/* This data could be associated with a target, but we do not always
310 have access to the current target when we need it, so for now it is
311 static. This will be fine for as long as only one target is in use
312 at a time. */
313static struct remote_state remote_state;
314
315static struct remote_state *
0b83947e 316get_remote_state_raw (void)
ea9c271d
DJ
317{
318 return &remote_state;
319}
320
321/* Description of the remote protocol for a given architecture. */
d01949b6 322
ad10f812
AC
323struct packet_reg
324{
325 long offset; /* Offset into G packet. */
326 long regnum; /* GDB's internal register number. */
327 LONGEST pnum; /* Remote protocol register number. */
b323314b 328 int in_g_packet; /* Always part of G packet. */
1cf3db46 329 /* long size in bytes; == register_size (target_gdbarch, regnum);
23860348 330 at present. */
1cf3db46 331 /* char *name; == gdbarch_register_name (target_gdbarch, regnum);
c9f4d572 332 at present. */
ad10f812
AC
333};
334
ea9c271d 335struct remote_arch_state
d01949b6 336{
ad10f812
AC
337 /* Description of the remote protocol registers. */
338 long sizeof_g_packet;
b323314b
AC
339
340 /* Description of the remote protocol registers indexed by REGNUM
f57d151a 341 (making an array gdbarch_num_regs in size). */
b323314b 342 struct packet_reg *regs;
ad10f812 343
d01949b6
AC
344 /* This is the size (in chars) of the first response to the ``g''
345 packet. It is used as a heuristic when determining the maximum
346 size of memory-read and memory-write packets. A target will
347 typically only reserve a buffer large enough to hold the ``g''
348 packet. The size does not include packet overhead (headers and
23860348 349 trailers). */
d01949b6
AC
350 long actual_register_packet_size;
351
352 /* This is the maximum size (in chars) of a non read/write packet.
23860348 353 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
354 long remote_packet_size;
355};
356
3c3bea1c 357
d01949b6
AC
358/* Handle for retreving the remote protocol data from gdbarch. */
359static struct gdbarch_data *remote_gdbarch_data_handle;
360
ea9c271d
DJ
361static struct remote_arch_state *
362get_remote_arch_state (void)
d01949b6 363{
1cf3db46 364 return gdbarch_data (target_gdbarch, remote_gdbarch_data_handle);
d01949b6
AC
365}
366
0b83947e
DJ
367/* Fetch the global remote target state. */
368
369static struct remote_state *
370get_remote_state (void)
371{
372 /* Make sure that the remote architecture state has been
373 initialized, because doing so might reallocate rs->buf. Any
374 function which calls getpkt also needs to be mindful of changes
375 to rs->buf, but this call limits the number of places which run
376 into trouble. */
377 get_remote_arch_state ();
378
379 return get_remote_state_raw ();
380}
381
74ca34ce
DJ
382static int
383compare_pnums (const void *lhs_, const void *rhs_)
384{
385 const struct packet_reg * const *lhs = lhs_;
386 const struct packet_reg * const *rhs = rhs_;
387
388 if ((*lhs)->pnum < (*rhs)->pnum)
389 return -1;
390 else if ((*lhs)->pnum == (*rhs)->pnum)
391 return 0;
392 else
393 return 1;
394}
395
d01949b6
AC
396static void *
397init_remote_state (struct gdbarch *gdbarch)
398{
74ca34ce 399 int regnum, num_remote_regs, offset;
0b83947e 400 struct remote_state *rs = get_remote_state_raw ();
ea9c271d 401 struct remote_arch_state *rsa;
74ca34ce 402 struct packet_reg **remote_regs;
ea9c271d
DJ
403
404 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
d01949b6 405
123dc839
DJ
406 /* Use the architecture to build a regnum<->pnum table, which will be
407 1:1 unless a feature set specifies otherwise. */
f57d151a 408 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch,
4a22f64d 409 gdbarch_num_regs (gdbarch),
f57d151a 410 struct packet_reg);
4a22f64d 411 for (regnum = 0; regnum < gdbarch_num_regs (gdbarch); regnum++)
ad10f812 412 {
ea9c271d 413 struct packet_reg *r = &rsa->regs[regnum];
baef701f 414
4a22f64d 415 if (register_size (gdbarch, regnum) == 0)
baef701f
DJ
416 /* Do not try to fetch zero-sized (placeholder) registers. */
417 r->pnum = -1;
418 else
419 r->pnum = gdbarch_remote_register_number (gdbarch, regnum);
420
b323314b 421 r->regnum = regnum;
74ca34ce
DJ
422 }
423
424 /* Define the g/G packet format as the contents of each register
425 with a remote protocol number, in order of ascending protocol
426 number. */
427
4a22f64d
UW
428 remote_regs = alloca (gdbarch_num_regs (gdbarch)
429 * sizeof (struct packet_reg *));
f57d151a 430 for (num_remote_regs = 0, regnum = 0;
4a22f64d 431 regnum < gdbarch_num_regs (gdbarch);
f57d151a 432 regnum++)
74ca34ce
DJ
433 if (rsa->regs[regnum].pnum != -1)
434 remote_regs[num_remote_regs++] = &rsa->regs[regnum];
7d58c67d 435
74ca34ce
DJ
436 qsort (remote_regs, num_remote_regs, sizeof (struct packet_reg *),
437 compare_pnums);
438
439 for (regnum = 0, offset = 0; regnum < num_remote_regs; regnum++)
440 {
441 remote_regs[regnum]->in_g_packet = 1;
442 remote_regs[regnum]->offset = offset;
4a22f64d 443 offset += register_size (gdbarch, remote_regs[regnum]->regnum);
ad10f812
AC
444 }
445
74ca34ce
DJ
446 /* Record the maximum possible size of the g packet - it may turn out
447 to be smaller. */
448 rsa->sizeof_g_packet = offset;
449
d01949b6
AC
450 /* Default maximum number of characters in a packet body. Many
451 remote stubs have a hardwired buffer size of 400 bytes
452 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
453 as the maximum packet-size to ensure that the packet and an extra
454 NUL character can always fit in the buffer. This stops GDB
455 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
456 already a full buffer (As of 1999-12-04 that was most stubs). */
457 rsa->remote_packet_size = 400 - 1;
d01949b6 458
ea9c271d
DJ
459 /* This one is filled in when a ``g'' packet is received. */
460 rsa->actual_register_packet_size = 0;
461
462 /* Should rsa->sizeof_g_packet needs more space than the
ad10f812
AC
463 default, adjust the size accordingly. Remember that each byte is
464 encoded as two characters. 32 is the overhead for the packet
465 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 466 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 467 little. */
ea9c271d
DJ
468 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
469 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 470
ea9c271d
DJ
471 /* Make sure that the packet buffer is plenty big enough for
472 this architecture. */
473 if (rs->buf_size < rsa->remote_packet_size)
474 {
475 rs->buf_size = 2 * rsa->remote_packet_size;
7fca722e 476 rs->buf = xrealloc (rs->buf, rs->buf_size);
ea9c271d 477 }
6d820c5c 478
ea9c271d
DJ
479 return rsa;
480}
481
482/* Return the current allowed size of a remote packet. This is
483 inferred from the current architecture, and should be used to
484 limit the length of outgoing packets. */
485static long
486get_remote_packet_size (void)
487{
be2a5f71 488 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
489 struct remote_arch_state *rsa = get_remote_arch_state ();
490
be2a5f71
DJ
491 if (rs->explicit_packet_size)
492 return rs->explicit_packet_size;
493
ea9c271d 494 return rsa->remote_packet_size;
d01949b6
AC
495}
496
ad10f812 497static struct packet_reg *
ea9c271d 498packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
ad10f812 499{
1cf3db46 500 if (regnum < 0 && regnum >= gdbarch_num_regs (target_gdbarch))
b323314b
AC
501 return NULL;
502 else
ad10f812 503 {
ea9c271d 504 struct packet_reg *r = &rsa->regs[regnum];
b323314b
AC
505 gdb_assert (r->regnum == regnum);
506 return r;
ad10f812 507 }
ad10f812
AC
508}
509
510static struct packet_reg *
ea9c271d 511packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
ad10f812 512{
b323314b 513 int i;
1cf3db46 514 for (i = 0; i < gdbarch_num_regs (target_gdbarch); i++)
ad10f812 515 {
ea9c271d 516 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
517 if (r->pnum == pnum)
518 return r;
ad10f812
AC
519 }
520 return NULL;
d01949b6
AC
521}
522
3c3bea1c
GS
523/* FIXME: graces/2002-08-08: These variables should eventually be
524 bound to an instance of the target object (as in gdbarch-tdep()),
525 when such a thing exists. */
526
527/* This is set to the data address of the access causing the target
528 to stop for a watchpoint. */
529static CORE_ADDR remote_watch_data_address;
530
94e08568 531/* This is non-zero if target stopped for a watchpoint. */
3c3bea1c
GS
532static int remote_stopped_by_watchpoint_p;
533
c906108c
SS
534static struct target_ops remote_ops;
535
536static struct target_ops extended_remote_ops;
537
b84876c2
PA
538static int remote_async_mask_value = 1;
539
6426a772
JM
540/* FIXME: cagney/1999-09-23: Even though getpkt was called with
541 ``forever'' still use the normal timeout mechanism. This is
542 currently used by the ASYNC code to guarentee that target reads
543 during the initial connect always time-out. Once getpkt has been
544 modified to return a timeout indication and, in turn
545 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 546 this can go away. */
6426a772
JM
547static int wait_forever_enabled_p = 1;
548
549
c906108c
SS
550/* This variable chooses whether to send a ^C or a break when the user
551 requests program interruption. Although ^C is usually what remote
552 systems expect, and that is the default here, sometimes a break is
553 preferable instead. */
554
555static int remote_break;
556
c906108c
SS
557/* Descriptor for I/O to remote machine. Initialize it to NULL so that
558 remote_open knows that we don't have a file open when the program
559 starts. */
819cc324 560static struct serial *remote_desc = NULL;
c906108c 561
c906108c
SS
562/* This variable sets the number of bits in an address that are to be
563 sent in a memory ("M" or "m") packet. Normally, after stripping
564 leading zeros, the entire address would be sent. This variable
565 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
566 initial implementation of remote.c restricted the address sent in
567 memory packets to ``host::sizeof long'' bytes - (typically 32
568 bits). Consequently, for 64 bit targets, the upper 32 bits of an
569 address was never sent. Since fixing this bug may cause a break in
570 some remote targets this variable is principly provided to
23860348 571 facilitate backward compatibility. */
c906108c
SS
572
573static int remote_address_size;
574
75c99385
PA
575/* Temporary to track who currently owns the terminal. See
576 remote_terminal_* for more details. */
6426a772
JM
577
578static int remote_async_terminal_ours_p;
579
2d717e4f
DJ
580/* The executable file to use for "run" on the remote side. */
581
582static char *remote_exec_file = "";
583
11cf8741 584\f
11cf8741 585/* User configurable variables for the number of characters in a
ea9c271d
DJ
586 memory read/write packet. MIN (rsa->remote_packet_size,
587 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 588 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
589 (speed up transfers). The variables ``preferred_*'' (the user
590 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 591 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
592
593struct memory_packet_config
594{
595 char *name;
596 long size;
597 int fixed_p;
598};
599
600/* Compute the current size of a read/write packet. Since this makes
601 use of ``actual_register_packet_size'' the computation is dynamic. */
602
603static long
604get_memory_packet_size (struct memory_packet_config *config)
605{
d01949b6 606 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
607 struct remote_arch_state *rsa = get_remote_arch_state ();
608
11cf8741
JM
609 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
610 law?) that some hosts don't cope very well with large alloca()
611 calls. Eventually the alloca() code will be replaced by calls to
612 xmalloc() and make_cleanups() allowing this restriction to either
23860348 613 be lifted or removed. */
11cf8741
JM
614#ifndef MAX_REMOTE_PACKET_SIZE
615#define MAX_REMOTE_PACKET_SIZE 16384
616#endif
3de11b2e 617 /* NOTE: 20 ensures we can write at least one byte. */
11cf8741 618#ifndef MIN_REMOTE_PACKET_SIZE
3de11b2e 619#define MIN_REMOTE_PACKET_SIZE 20
11cf8741
JM
620#endif
621 long what_they_get;
622 if (config->fixed_p)
623 {
624 if (config->size <= 0)
625 what_they_get = MAX_REMOTE_PACKET_SIZE;
626 else
627 what_they_get = config->size;
628 }
629 else
630 {
ea9c271d 631 what_they_get = get_remote_packet_size ();
23860348 632 /* Limit the packet to the size specified by the user. */
11cf8741
JM
633 if (config->size > 0
634 && what_they_get > config->size)
635 what_they_get = config->size;
be2a5f71
DJ
636
637 /* Limit it to the size of the targets ``g'' response unless we have
638 permission from the stub to use a larger packet size. */
639 if (rs->explicit_packet_size == 0
640 && rsa->actual_register_packet_size > 0
641 && what_they_get > rsa->actual_register_packet_size)
642 what_they_get = rsa->actual_register_packet_size;
11cf8741
JM
643 }
644 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
645 what_they_get = MAX_REMOTE_PACKET_SIZE;
646 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
647 what_they_get = MIN_REMOTE_PACKET_SIZE;
6d820c5c
DJ
648
649 /* Make sure there is room in the global buffer for this packet
650 (including its trailing NUL byte). */
651 if (rs->buf_size < what_they_get + 1)
652 {
653 rs->buf_size = 2 * what_they_get;
654 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
655 }
656
11cf8741
JM
657 return what_they_get;
658}
659
660/* Update the size of a read/write packet. If they user wants
23860348 661 something really big then do a sanity check. */
11cf8741
JM
662
663static void
664set_memory_packet_size (char *args, struct memory_packet_config *config)
665{
666 int fixed_p = config->fixed_p;
667 long size = config->size;
668 if (args == NULL)
8a3fe4f8 669 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
670 else if (strcmp (args, "hard") == 0
671 || strcmp (args, "fixed") == 0)
672 fixed_p = 1;
673 else if (strcmp (args, "soft") == 0
674 || strcmp (args, "limit") == 0)
675 fixed_p = 0;
676 else
677 {
678 char *end;
679 size = strtoul (args, &end, 0);
680 if (args == end)
8a3fe4f8 681 error (_("Invalid %s (bad syntax)."), config->name);
11cf8741
JM
682#if 0
683 /* Instead of explicitly capping the size of a packet to
684 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
685 instead allowed to set the size to something arbitrarily
23860348 686 large. */
11cf8741 687 if (size > MAX_REMOTE_PACKET_SIZE)
8a3fe4f8 688 error (_("Invalid %s (too large)."), config->name);
11cf8741
JM
689#endif
690 }
23860348 691 /* Extra checks? */
11cf8741
JM
692 if (fixed_p && !config->fixed_p)
693 {
e2e0b3e5
AC
694 if (! query (_("The target may not be able to correctly handle a %s\n"
695 "of %ld bytes. Change the packet size? "),
11cf8741 696 config->name, size))
8a3fe4f8 697 error (_("Packet size not changed."));
11cf8741 698 }
23860348 699 /* Update the config. */
11cf8741
JM
700 config->fixed_p = fixed_p;
701 config->size = size;
702}
703
704static void
705show_memory_packet_size (struct memory_packet_config *config)
706{
a3f17187 707 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 708 if (config->fixed_p)
a3f17187 709 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
710 get_memory_packet_size (config));
711 else
a3f17187 712 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
713 get_memory_packet_size (config));
714}
715
716static struct memory_packet_config memory_write_packet_config =
717{
718 "memory-write-packet-size",
719};
720
721static void
722set_memory_write_packet_size (char *args, int from_tty)
723{
724 set_memory_packet_size (args, &memory_write_packet_config);
725}
726
727static void
728show_memory_write_packet_size (char *args, int from_tty)
729{
730 show_memory_packet_size (&memory_write_packet_config);
731}
732
733static long
734get_memory_write_packet_size (void)
735{
736 return get_memory_packet_size (&memory_write_packet_config);
737}
738
739static struct memory_packet_config memory_read_packet_config =
740{
741 "memory-read-packet-size",
742};
743
744static void
745set_memory_read_packet_size (char *args, int from_tty)
746{
747 set_memory_packet_size (args, &memory_read_packet_config);
748}
749
750static void
751show_memory_read_packet_size (char *args, int from_tty)
752{
753 show_memory_packet_size (&memory_read_packet_config);
754}
755
756static long
757get_memory_read_packet_size (void)
758{
759 long size = get_memory_packet_size (&memory_read_packet_config);
760 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
761 extra buffer size argument before the memory read size can be
ea9c271d
DJ
762 increased beyond this. */
763 if (size > get_remote_packet_size ())
764 size = get_remote_packet_size ();
11cf8741
JM
765 return size;
766}
767
11cf8741 768\f
5a2468f5
JM
769/* Generic configuration support for packets the stub optionally
770 supports. Allows the user to specify the use of the packet as well
23860348 771 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
772
773enum packet_support
774 {
775 PACKET_SUPPORT_UNKNOWN = 0,
776 PACKET_ENABLE,
777 PACKET_DISABLE
778 };
779
5a2468f5
JM
780struct packet_config
781 {
bb572ddd
DJ
782 const char *name;
783 const char *title;
7f19b9a2 784 enum auto_boolean detect;
5a2468f5
JM
785 enum packet_support support;
786 };
787
d471ea57 788/* Analyze a packet's return value and update the packet config
23860348 789 accordingly. */
d471ea57
AC
790
791enum packet_result
792{
793 PACKET_ERROR,
794 PACKET_OK,
795 PACKET_UNKNOWN
796};
797
5a2468f5 798static void
d471ea57 799update_packet_config (struct packet_config *config)
5a2468f5 800{
d471ea57
AC
801 switch (config->detect)
802 {
7f19b9a2 803 case AUTO_BOOLEAN_TRUE:
d471ea57
AC
804 config->support = PACKET_ENABLE;
805 break;
7f19b9a2 806 case AUTO_BOOLEAN_FALSE:
d471ea57
AC
807 config->support = PACKET_DISABLE;
808 break;
7f19b9a2 809 case AUTO_BOOLEAN_AUTO:
d471ea57
AC
810 config->support = PACKET_SUPPORT_UNKNOWN;
811 break;
812 }
5a2468f5
JM
813}
814
815static void
fba45db2 816show_packet_config_cmd (struct packet_config *config)
5a2468f5
JM
817{
818 char *support = "internal-error";
819 switch (config->support)
820 {
821 case PACKET_ENABLE:
822 support = "enabled";
823 break;
824 case PACKET_DISABLE:
825 support = "disabled";
826 break;
827 case PACKET_SUPPORT_UNKNOWN:
828 support = "unknown";
829 break;
830 }
831 switch (config->detect)
832 {
7f19b9a2 833 case AUTO_BOOLEAN_AUTO:
37a105a1
DJ
834 printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
835 config->name, support);
5a2468f5 836 break;
7f19b9a2
AC
837 case AUTO_BOOLEAN_TRUE:
838 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
839 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
840 config->name, support);
8e248173 841 break;
5a2468f5
JM
842 }
843}
844
845static void
bb572ddd
DJ
846add_packet_config_cmd (struct packet_config *config, const char *name,
847 const char *title, int legacy)
d471ea57 848{
5a2468f5
JM
849 char *set_doc;
850 char *show_doc;
d471ea57 851 char *cmd_name;
3ed07be4 852
5a2468f5
JM
853 config->name = name;
854 config->title = title;
7f19b9a2 855 config->detect = AUTO_BOOLEAN_AUTO;
8e248173 856 config->support = PACKET_SUPPORT_UNKNOWN;
b435e160
AC
857 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
858 name, title);
859 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
860 name, title);
d471ea57 861 /* set/show TITLE-packet {auto,on,off} */
b435e160 862 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 863 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
2c5b56ce 864 &config->detect, set_doc, show_doc, NULL, /* help_doc */
bb572ddd
DJ
865 set_remote_protocol_packet_cmd,
866 show_remote_protocol_packet_cmd,
867 &remote_set_cmdlist, &remote_show_cmdlist);
23860348 868 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
869 if (legacy)
870 {
871 char *legacy_name;
b435e160 872 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 873 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 874 &remote_set_cmdlist);
d471ea57 875 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 876 &remote_show_cmdlist);
d471ea57 877 }
5a2468f5
JM
878}
879
d471ea57 880static enum packet_result
a76d924d 881packet_check_result (const char *buf)
5a2468f5 882{
d471ea57 883 if (buf[0] != '\0')
5a2468f5 884 {
d471ea57 885 /* The stub recognized the packet request. Check that the
23860348 886 operation succeeded. */
a76d924d
DJ
887 if (buf[0] == 'E'
888 && isxdigit (buf[1]) && isxdigit (buf[2])
889 && buf[3] == '\0')
890 /* "Enn" - definitly an error. */
891 return PACKET_ERROR;
892
893 /* Always treat "E." as an error. This will be used for
894 more verbose error messages, such as E.memtypes. */
895 if (buf[0] == 'E' && buf[1] == '.')
896 return PACKET_ERROR;
897
898 /* The packet may or may not be OK. Just assume it is. */
899 return PACKET_OK;
900 }
901 else
902 /* The stub does not support the packet. */
903 return PACKET_UNKNOWN;
904}
905
906static enum packet_result
907packet_ok (const char *buf, struct packet_config *config)
908{
909 enum packet_result result;
910
911 result = packet_check_result (buf);
912 switch (result)
913 {
914 case PACKET_OK:
915 case PACKET_ERROR:
916 /* The stub recognized the packet request. */
d471ea57
AC
917 switch (config->support)
918 {
919 case PACKET_SUPPORT_UNKNOWN:
920 if (remote_debug)
921 fprintf_unfiltered (gdb_stdlog,
922 "Packet %s (%s) is supported\n",
923 config->name, config->title);
924 config->support = PACKET_ENABLE;
925 break;
926 case PACKET_DISABLE:
8e65ff28 927 internal_error (__FILE__, __LINE__,
e2e0b3e5 928 _("packet_ok: attempt to use a disabled packet"));
d471ea57
AC
929 break;
930 case PACKET_ENABLE:
931 break;
932 }
a76d924d
DJ
933 break;
934 case PACKET_UNKNOWN:
23860348 935 /* The stub does not support the packet. */
d471ea57
AC
936 switch (config->support)
937 {
938 case PACKET_ENABLE:
7f19b9a2 939 if (config->detect == AUTO_BOOLEAN_AUTO)
d471ea57 940 /* If the stub previously indicated that the packet was
23860348 941 supported then there is a protocol error.. */
8a3fe4f8 942 error (_("Protocol error: %s (%s) conflicting enabled responses."),
d471ea57
AC
943 config->name, config->title);
944 else
23860348 945 /* The user set it wrong. */
8a3fe4f8 946 error (_("Enabled packet %s (%s) not recognized by stub"),
d471ea57
AC
947 config->name, config->title);
948 break;
949 case PACKET_SUPPORT_UNKNOWN:
950 if (remote_debug)
951 fprintf_unfiltered (gdb_stdlog,
952 "Packet %s (%s) is NOT supported\n",
953 config->name, config->title);
954 config->support = PACKET_DISABLE;
955 break;
956 case PACKET_DISABLE:
957 break;
958 }
a76d924d 959 break;
5a2468f5 960 }
a76d924d
DJ
961
962 return result;
5a2468f5
JM
963}
964
444abaca
DJ
965enum {
966 PACKET_vCont = 0,
967 PACKET_X,
968 PACKET_qSymbol,
969 PACKET_P,
970 PACKET_p,
971 PACKET_Z0,
972 PACKET_Z1,
973 PACKET_Z2,
974 PACKET_Z3,
975 PACKET_Z4,
a6b151f1
DJ
976 PACKET_vFile_open,
977 PACKET_vFile_pread,
978 PACKET_vFile_pwrite,
979 PACKET_vFile_close,
980 PACKET_vFile_unlink,
0876f84a 981 PACKET_qXfer_auxv,
23181151 982 PACKET_qXfer_features,
cfa9d6d9 983 PACKET_qXfer_libraries,
fd79ecee 984 PACKET_qXfer_memory_map,
0e7f50da
UW
985 PACKET_qXfer_spu_read,
986 PACKET_qXfer_spu_write,
07e059b5 987 PACKET_qXfer_osdata,
444abaca 988 PACKET_qGetTLSAddr,
be2a5f71 989 PACKET_qSupported,
89be2091 990 PACKET_QPassSignals,
08388c79 991 PACKET_qSearch_memory,
2d717e4f
DJ
992 PACKET_vAttach,
993 PACKET_vRun,
a6f3e723 994 PACKET_QStartNoAckMode,
82f73884 995 PACKET_vKill,
4aa995e1
PA
996 PACKET_qXfer_siginfo_read,
997 PACKET_qXfer_siginfo_write,
0b16c5cf 998 PACKET_qAttached,
782b2b07 999 PACKET_ConditionalTracepoints,
444abaca
DJ
1000 PACKET_MAX
1001};
506fb367 1002
444abaca 1003static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97
MS
1004
1005static void
444abaca
DJ
1006set_remote_protocol_packet_cmd (char *args, int from_tty,
1007 struct cmd_list_element *c)
dc8acb97 1008{
444abaca 1009 struct packet_config *packet;
dc8acb97 1010
444abaca
DJ
1011 for (packet = remote_protocol_packets;
1012 packet < &remote_protocol_packets[PACKET_MAX];
1013 packet++)
1014 {
1015 if (&packet->detect == c->var)
1016 {
1017 update_packet_config (packet);
1018 return;
1019 }
1020 }
1021 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1022 c->name);
dc8acb97
MS
1023}
1024
5a2468f5 1025static void
444abaca
DJ
1026show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
1027 struct cmd_list_element *c,
1028 const char *value)
5a2468f5 1029{
444abaca 1030 struct packet_config *packet;
5a2468f5 1031
444abaca
DJ
1032 for (packet = remote_protocol_packets;
1033 packet < &remote_protocol_packets[PACKET_MAX];
1034 packet++)
1035 {
1036 if (&packet->detect == c->var)
1037 {
1038 show_packet_config_cmd (packet);
1039 return;
1040 }
1041 }
1042 internal_error (__FILE__, __LINE__, "Could not find config for %s",
1043 c->name);
5a2468f5
JM
1044}
1045
d471ea57
AC
1046/* Should we try one of the 'Z' requests? */
1047
1048enum Z_packet_type
1049{
1050 Z_PACKET_SOFTWARE_BP,
1051 Z_PACKET_HARDWARE_BP,
1052 Z_PACKET_WRITE_WP,
1053 Z_PACKET_READ_WP,
1054 Z_PACKET_ACCESS_WP,
1055 NR_Z_PACKET_TYPES
1056};
96baa820 1057
d471ea57 1058/* For compatibility with older distributions. Provide a ``set remote
23860348 1059 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 1060
7f19b9a2 1061static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
1062
1063static void
fba45db2
KB
1064set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
1065 struct cmd_list_element *c)
96baa820 1066{
d471ea57
AC
1067 int i;
1068 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1069 {
444abaca
DJ
1070 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
1071 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1072 }
96baa820
JM
1073}
1074
1075static void
08546159
AC
1076show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
1077 struct cmd_list_element *c,
1078 const char *value)
96baa820 1079{
d471ea57
AC
1080 int i;
1081 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
1082 {
444abaca 1083 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 1084 }
96baa820
JM
1085}
1086
9d1f7ab2
MS
1087/* Should we try the 'ThreadInfo' query packet?
1088
1089 This variable (NOT available to the user: auto-detect only!)
1090 determines whether GDB will use the new, simpler "ThreadInfo"
1091 query or the older, more complex syntax for thread queries.
802188a7 1092 This is an auto-detect variable (set to true at each connect,
9d1f7ab2
MS
1093 and set to false when the target fails to recognize it). */
1094
1095static int use_threadinfo_query;
1096static int use_threadextra_query;
1097
23860348 1098/* Tokens for use by the asynchronous signal handlers for SIGINT. */
d5d6fca5
DJ
1099static struct async_signal_handler *sigint_remote_twice_token;
1100static struct async_signal_handler *sigint_remote_token;
43ff13b4 1101
74531fed
PA
1102\f
1103/* Asynchronous signal handle registered as event loop source for
1104 when we have pending events ready to be passed to the core. */
1105
1106static struct async_event_handler *remote_async_inferior_event_token;
1107
1108/* Asynchronous signal handle registered as event loop source for when
1109 the remote sent us a %Stop notification. The registered callback
1110 will do a vStopped sequence to pull the rest of the events out of
1111 the remote side into our event queue. */
1112
1113static struct async_event_handler *remote_async_get_pending_events_token;
c906108c
SS
1114\f
1115
79d7f229
PA
1116static ptid_t magic_null_ptid;
1117static ptid_t not_sent_ptid;
1118static ptid_t any_thread_ptid;
1119
1120/* These are the threads which we last sent to the remote system. The
1121 TID member will be -1 for all or -2 for not sent yet. */
1122
1123static ptid_t general_thread;
1124static ptid_t continue_thread;
c5aa993b 1125
0b16c5cf
PA
1126/* Find out if the stub attached to PID (and hence GDB should offer to
1127 detach instead of killing it when bailing out). */
1128
1129static int
1130remote_query_attached (int pid)
1131{
1132 struct remote_state *rs = get_remote_state ();
1133
1134 if (remote_protocol_packets[PACKET_qAttached].support == PACKET_DISABLE)
1135 return 0;
1136
1137 if (remote_multi_process_p (rs))
1138 sprintf (rs->buf, "qAttached:%x", pid);
1139 else
1140 sprintf (rs->buf, "qAttached");
1141
1142 putpkt (rs->buf);
1143 getpkt (&rs->buf, &rs->buf_size, 0);
1144
1145 switch (packet_ok (rs->buf,
1554e9be 1146 &remote_protocol_packets[PACKET_qAttached]))
0b16c5cf
PA
1147 {
1148 case PACKET_OK:
1149 if (strcmp (rs->buf, "1") == 0)
1150 return 1;
1151 break;
1152 case PACKET_ERROR:
1153 warning (_("Remote failure reply: %s"), rs->buf);
1154 break;
1155 case PACKET_UNKNOWN:
1156 break;
1157 }
1158
1159 return 0;
1160}
1161
1941c569
PA
1162/* Add PID to GDB's inferior table. Since we can be connected to a
1163 remote system before before knowing about any inferior, mark the
0b16c5cf
PA
1164 target with execution when we find the first inferior. If ATTACHED
1165 is 1, then we had just attached to this inferior. If it is 0, then
1166 we just created this inferior. If it is -1, then try querying the
1167 remote stub to find out if it had attached to the inferior or
1168 not. */
1941c569
PA
1169
1170static struct inferior *
0b16c5cf 1171remote_add_inferior (int pid, int attached)
1941c569 1172{
1941c569
PA
1173 struct inferior *inf;
1174
0b16c5cf
PA
1175 /* Check whether this process we're learning about is to be
1176 considered attached, or if is to be considered to have been
1177 spawned by the stub. */
1178 if (attached == -1)
1179 attached = remote_query_attached (pid);
1180
1941c569
PA
1181 inf = add_inferior (pid);
1182
0b16c5cf
PA
1183 inf->attach_flag = attached;
1184
1941c569
PA
1185 return inf;
1186}
1187
1188/* Add thread PTID to GDB's thread list. Tag it as executing/running
1189 according to RUNNING. */
1190
c906108c 1191static void
1941c569 1192remote_add_thread (ptid_t ptid, int running)
c906108c 1193{
1941c569
PA
1194 add_thread (ptid);
1195
1196 set_executing (ptid, running);
1197 set_running (ptid, running);
1198}
1199
1200/* Come here when we learn about a thread id from the remote target.
1201 It may be the first time we hear about such thread, so take the
1202 opportunity to add it to GDB's thread list. In case this is the
1203 first time we're noticing its corresponding inferior, add it to
1204 GDB's inferior list as well. */
1205
1206static void
1207remote_notice_new_inferior (ptid_t currthread, int running)
1208{
c906108c
SS
1209 /* If this is a new thread, add it to GDB's thread list.
1210 If we leave it up to WFI to do this, bad things will happen. */
82f73884
PA
1211
1212 if (in_thread_list (currthread) && is_exited (currthread))
1213 {
1214 /* We're seeing an event on a thread id we knew had exited.
1215 This has to be a new thread reusing the old id. Add it. */
1941c569 1216 remote_add_thread (currthread, running);
82f73884
PA
1217 return;
1218 }
1219
79d7f229 1220 if (!in_thread_list (currthread))
c0a2216e 1221 {
1941c569 1222 struct inferior *inf = NULL;
bad34192 1223 int pid = ptid_get_pid (currthread);
1941c569 1224
bad34192
PA
1225 if (ptid_is_pid (inferior_ptid)
1226 && pid == ptid_get_pid (inferior_ptid))
c0a2216e
PA
1227 {
1228 /* inferior_ptid has no thread member yet. This can happen
1229 with the vAttach -> remote_wait,"TAAthread:" path if the
1230 stub doesn't support qC. This is the first stop reported
1231 after an attach, so this is the main thread. Update the
1232 ptid in the thread list. */
bad34192
PA
1233 if (in_thread_list (pid_to_ptid (pid)))
1234 thread_change_ptid (inferior_ptid, currthread);
1235 else
1236 {
1237 remote_add_thread (currthread, running);
1238 inferior_ptid = currthread;
1239 }
82f73884 1240 return;
c0a2216e 1241 }
82f73884
PA
1242
1243 if (ptid_equal (magic_null_ptid, inferior_ptid))
c0a2216e
PA
1244 {
1245 /* inferior_ptid is not set yet. This can happen with the
1246 vRun -> remote_wait,"TAAthread:" path if the stub
1247 doesn't support qC. This is the first stop reported
1248 after an attach, so this is the main thread. Update the
1249 ptid in the thread list. */
82f73884
PA
1250 thread_change_ptid (inferior_ptid, currthread);
1251 return;
c0a2216e 1252 }
82f73884 1253
29c87f7f
PA
1254 /* When connecting to a target remote, or to a target
1255 extended-remote which already was debugging an inferior, we
1256 may not know about it yet. Add it before adding its child
1257 thread, so notifications are emitted in a sensible order. */
1258 if (!in_inferior_list (ptid_get_pid (currthread)))
0b16c5cf 1259 inf = remote_add_inferior (ptid_get_pid (currthread), -1);
29c87f7f 1260
82f73884 1261 /* This is really a new thread. Add it. */
1941c569
PA
1262 remote_add_thread (currthread, running);
1263
1264 /* If we found a new inferior, let the common code do whatever
1265 it needs to with it (e.g., read shared libraries, insert
1266 breakpoints). */
1267 if (inf != NULL)
1268 notice_new_inferior (currthread, running, 0);
c0a2216e 1269 }
c906108c
SS
1270}
1271
74531fed
PA
1272/* Call this function as a result of
1273 1) A halt indication (T packet) containing a thread id
1274 2) A direct query of currthread
1275 3) Successful execution of set thread
1276 */
1277
1278static void
1279record_currthread (ptid_t currthread)
1280{
1281 general_thread = currthread;
1282
1283 if (ptid_equal (currthread, minus_one_ptid))
1284 /* We're just invalidating the local thread mirror. */
1285 return;
1286
1941c569 1287 remote_notice_new_inferior (currthread, 0);
74531fed
PA
1288}
1289
89be2091
DJ
1290static char *last_pass_packet;
1291
1292/* If 'QPassSignals' is supported, tell the remote stub what signals
1293 it can simply pass through to the inferior without reporting. */
1294
1295static void
1296remote_pass_signals (void)
1297{
1298 if (remote_protocol_packets[PACKET_QPassSignals].support != PACKET_DISABLE)
1299 {
1300 char *pass_packet, *p;
1301 int numsigs = (int) TARGET_SIGNAL_LAST;
1302 int count = 0, i;
1303
1304 gdb_assert (numsigs < 256);
1305 for (i = 0; i < numsigs; i++)
1306 {
1307 if (signal_stop_state (i) == 0
1308 && signal_print_state (i) == 0
1309 && signal_pass_state (i) == 1)
1310 count++;
1311 }
1312 pass_packet = xmalloc (count * 3 + strlen ("QPassSignals:") + 1);
1313 strcpy (pass_packet, "QPassSignals:");
1314 p = pass_packet + strlen (pass_packet);
1315 for (i = 0; i < numsigs; i++)
1316 {
1317 if (signal_stop_state (i) == 0
1318 && signal_print_state (i) == 0
1319 && signal_pass_state (i) == 1)
1320 {
1321 if (i >= 16)
1322 *p++ = tohex (i >> 4);
1323 *p++ = tohex (i & 15);
1324 if (count)
1325 *p++ = ';';
1326 else
1327 break;
1328 count--;
1329 }
1330 }
1331 *p = 0;
1332 if (!last_pass_packet || strcmp (last_pass_packet, pass_packet))
1333 {
1334 struct remote_state *rs = get_remote_state ();
1335 char *buf = rs->buf;
1336
1337 putpkt (pass_packet);
1338 getpkt (&rs->buf, &rs->buf_size, 0);
1339 packet_ok (buf, &remote_protocol_packets[PACKET_QPassSignals]);
1340 if (last_pass_packet)
1341 xfree (last_pass_packet);
1342 last_pass_packet = pass_packet;
1343 }
1344 else
1345 xfree (pass_packet);
1346 }
1347}
1348
79d7f229
PA
1349/* If PTID is MAGIC_NULL_PTID, don't set any thread. If PTID is
1350 MINUS_ONE_PTID, set the thread to -1, so the stub returns the
1351 thread. If GEN is set, set the general thread, if not, then set
1352 the step/continue thread. */
c906108c 1353static void
79d7f229 1354set_thread (struct ptid ptid, int gen)
c906108c 1355{
d01949b6 1356 struct remote_state *rs = get_remote_state ();
79d7f229 1357 ptid_t state = gen ? general_thread : continue_thread;
6d820c5c 1358 char *buf = rs->buf;
79d7f229 1359 char *endbuf = rs->buf + get_remote_packet_size ();
c906108c 1360
79d7f229 1361 if (ptid_equal (state, ptid))
c906108c
SS
1362 return;
1363
79d7f229
PA
1364 *buf++ = 'H';
1365 *buf++ = gen ? 'g' : 'c';
1366 if (ptid_equal (ptid, magic_null_ptid))
1367 xsnprintf (buf, endbuf - buf, "0");
1368 else if (ptid_equal (ptid, any_thread_ptid))
1369 xsnprintf (buf, endbuf - buf, "0");
1370 else if (ptid_equal (ptid, minus_one_ptid))
1371 xsnprintf (buf, endbuf - buf, "-1");
1372 else
82f73884 1373 write_ptid (buf, endbuf, ptid);
79d7f229 1374 putpkt (rs->buf);
6d820c5c 1375 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 1376 if (gen)
79d7f229 1377 general_thread = ptid;
c906108c 1378 else
79d7f229 1379 continue_thread = ptid;
c906108c 1380}
79d7f229
PA
1381
1382static void
1383set_general_thread (struct ptid ptid)
1384{
1385 set_thread (ptid, 1);
1386}
1387
1388static void
1389set_continue_thread (struct ptid ptid)
1390{
1391 set_thread (ptid, 0);
1392}
1393
3c9c4b83
PA
1394/* Change the remote current process. Which thread within the process
1395 ends up selected isn't important, as long as it is the same process
1396 as what INFERIOR_PTID points to.
1397
1398 This comes from that fact that there is no explicit notion of
1399 "selected process" in the protocol. The selected process for
1400 general operations is the process the selected general thread
1401 belongs to. */
1402
1403static void
1404set_general_process (void)
1405{
1406 struct remote_state *rs = get_remote_state ();
1407
1408 /* If the remote can't handle multiple processes, don't bother. */
1409 if (!remote_multi_process_p (rs))
1410 return;
1411
1412 /* We only need to change the remote current thread if it's pointing
1413 at some other process. */
1414 if (ptid_get_pid (general_thread) != ptid_get_pid (inferior_ptid))
1415 set_general_thread (inferior_ptid);
1416}
1417
c906108c 1418\f
79d7f229
PA
1419/* Return nonzero if the thread PTID is still alive on the remote
1420 system. */
c906108c
SS
1421
1422static int
28439f5e 1423remote_thread_alive (struct target_ops *ops, ptid_t ptid)
c906108c 1424{
6d820c5c 1425 struct remote_state *rs = get_remote_state ();
82f73884 1426 char *p, *endp;
c906108c 1427
c0a2216e
PA
1428 if (ptid_equal (ptid, magic_null_ptid))
1429 /* The main thread is always alive. */
1430 return 1;
1431
1432 if (ptid_get_pid (ptid) != 0 && ptid_get_tid (ptid) == 0)
1433 /* The main thread is always alive. This can happen after a
1434 vAttach, if the remote side doesn't support
1435 multi-threading. */
1436 return 1;
1437
82f73884
PA
1438 p = rs->buf;
1439 endp = rs->buf + get_remote_packet_size ();
1440
1441 *p++ = 'T';
1442 write_ptid (p, endp, ptid);
1443
2e9f7625 1444 putpkt (rs->buf);
6d820c5c 1445 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1446 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
1447}
1448
1449/* About these extended threadlist and threadinfo packets. They are
1450 variable length packets but, the fields within them are often fixed
1451 length. They are redundent enough to send over UDP as is the
1452 remote protocol in general. There is a matching unit test module
1453 in libstub. */
1454
cce74817
JM
1455#define OPAQUETHREADBYTES 8
1456
1457/* a 64 bit opaque identifier */
1458typedef unsigned char threadref[OPAQUETHREADBYTES];
1459
23860348
MS
1460/* WARNING: This threadref data structure comes from the remote O.S.,
1461 libstub protocol encoding, and remote.c. it is not particularly
1462 changable. */
cce74817
JM
1463
1464/* Right now, the internal structure is int. We want it to be bigger.
1465 Plan to fix this.
c5aa993b 1466 */
cce74817 1467
23860348 1468typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 1469
9d1f7ab2 1470/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 1471 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
1472
1473struct gdb_ext_thread_info
c5aa993b 1474 {
23860348 1475 threadref threadid; /* External form of thread reference. */
2bc416ba 1476 int active; /* Has state interesting to GDB?
23860348 1477 regs, stack. */
2bc416ba 1478 char display[256]; /* Brief state display, name,
cedea757 1479 blocked/suspended. */
23860348 1480 char shortname[32]; /* To be used to name threads. */
2bc416ba 1481 char more_display[256]; /* Long info, statistics, queue depth,
23860348 1482 whatever. */
c5aa993b 1483 };
cce74817
JM
1484
1485/* The volume of remote transfers can be limited by submitting
1486 a mask containing bits specifying the desired information.
1487 Use a union of these values as the 'selection' parameter to
1488 get_thread_info. FIXME: Make these TAG names more thread specific.
c5aa993b 1489 */
cce74817
JM
1490
1491#define TAG_THREADID 1
1492#define TAG_EXISTS 2
1493#define TAG_DISPLAY 4
1494#define TAG_THREADNAME 8
c5aa993b 1495#define TAG_MOREDISPLAY 16
cce74817 1496
23860348 1497#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 1498
b2dd6311 1499char *unpack_varlen_hex (char *buff, ULONGEST *result);
cce74817 1500
a14ed312 1501static char *unpack_nibble (char *buf, int *val);
cce74817 1502
a14ed312 1503static char *pack_nibble (char *buf, int nibble);
cce74817 1504
23860348 1505static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
cce74817 1506
a14ed312 1507static char *unpack_byte (char *buf, int *value);
cce74817 1508
a14ed312 1509static char *pack_int (char *buf, int value);
cce74817 1510
a14ed312 1511static char *unpack_int (char *buf, int *value);
cce74817 1512
a14ed312 1513static char *unpack_string (char *src, char *dest, int length);
cce74817 1514
23860348 1515static char *pack_threadid (char *pkt, threadref *id);
cce74817 1516
23860348 1517static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 1518
23860348 1519void int_to_threadref (threadref *id, int value);
cce74817 1520
23860348 1521static int threadref_to_int (threadref *ref);
cce74817 1522
23860348 1523static void copy_threadref (threadref *dest, threadref *src);
cce74817 1524
23860348 1525static int threadmatch (threadref *dest, threadref *src);
cce74817 1526
2bc416ba 1527static char *pack_threadinfo_request (char *pkt, int mode,
23860348 1528 threadref *id);
cce74817 1529
a14ed312 1530static int remote_unpack_thread_info_response (char *pkt,
23860348 1531 threadref *expectedref,
a14ed312
KB
1532 struct gdb_ext_thread_info
1533 *info);
cce74817
JM
1534
1535
2bc416ba 1536static int remote_get_threadinfo (threadref *threadid,
23860348 1537 int fieldset, /*TAG mask */
a14ed312 1538 struct gdb_ext_thread_info *info);
cce74817 1539
a14ed312
KB
1540static char *pack_threadlist_request (char *pkt, int startflag,
1541 int threadcount,
23860348 1542 threadref *nextthread);
cce74817 1543
a14ed312
KB
1544static int parse_threadlist_response (char *pkt,
1545 int result_limit,
23860348 1546 threadref *original_echo,
2bc416ba 1547 threadref *resultlist,
23860348 1548 int *doneflag);
cce74817 1549
a14ed312 1550static int remote_get_threadlist (int startflag,
23860348 1551 threadref *nextthread,
a14ed312
KB
1552 int result_limit,
1553 int *done,
2bc416ba 1554 int *result_count,
23860348 1555 threadref *threadlist);
cce74817 1556
23860348 1557typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 1558
a14ed312
KB
1559static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1560 void *context, int looplimit);
cce74817 1561
23860348 1562static int remote_newthread_step (threadref *ref, void *context);
cce74817 1563
82f73884
PA
1564
1565/* Write a PTID to BUF. ENDBUF points to one-passed-the-end of the
1566 buffer we're allowed to write to. Returns
1567 BUF+CHARACTERS_WRITTEN. */
1568
1569static char *
1570write_ptid (char *buf, const char *endbuf, ptid_t ptid)
1571{
1572 int pid, tid;
1573 struct remote_state *rs = get_remote_state ();
1574
1575 if (remote_multi_process_p (rs))
1576 {
1577 pid = ptid_get_pid (ptid);
1578 if (pid < 0)
1579 buf += xsnprintf (buf, endbuf - buf, "p-%x.", -pid);
1580 else
1581 buf += xsnprintf (buf, endbuf - buf, "p%x.", pid);
1582 }
1583 tid = ptid_get_tid (ptid);
1584 if (tid < 0)
1585 buf += xsnprintf (buf, endbuf - buf, "-%x", -tid);
1586 else
1587 buf += xsnprintf (buf, endbuf - buf, "%x", tid);
1588
1589 return buf;
1590}
1591
1592/* Extract a PTID from BUF. If non-null, OBUF is set to the to one
1593 passed the last parsed char. Returns null_ptid on error. */
1594
1595static ptid_t
1596read_ptid (char *buf, char **obuf)
1597{
1598 char *p = buf;
1599 char *pp;
1600 ULONGEST pid = 0, tid = 0;
82f73884
PA
1601
1602 if (*p == 'p')
1603 {
1604 /* Multi-process ptid. */
1605 pp = unpack_varlen_hex (p + 1, &pid);
1606 if (*pp != '.')
1607 error (_("invalid remote ptid: %s\n"), p);
1608
1609 p = pp;
1610 pp = unpack_varlen_hex (p + 1, &tid);
1611 if (obuf)
1612 *obuf = pp;
1613 return ptid_build (pid, 0, tid);
1614 }
1615
1616 /* No multi-process. Just a tid. */
1617 pp = unpack_varlen_hex (p, &tid);
1618
1619 /* Since the stub is not sending a process id, then default to
ca19bf23
PA
1620 what's in inferior_ptid, unless it's null at this point. If so,
1621 then since there's no way to know the pid of the reported
1622 threads, use the magic number. */
1623 if (ptid_equal (inferior_ptid, null_ptid))
1624 pid = ptid_get_pid (magic_null_ptid);
1625 else
1626 pid = ptid_get_pid (inferior_ptid);
82f73884
PA
1627
1628 if (obuf)
1629 *obuf = pp;
1630 return ptid_build (pid, 0, tid);
1631}
1632
23860348 1633/* Encode 64 bits in 16 chars of hex. */
c906108c
SS
1634
1635static const char hexchars[] = "0123456789abcdef";
1636
1637static int
fba45db2 1638ishex (int ch, int *val)
c906108c
SS
1639{
1640 if ((ch >= 'a') && (ch <= 'f'))
1641 {
1642 *val = ch - 'a' + 10;
1643 return 1;
1644 }
1645 if ((ch >= 'A') && (ch <= 'F'))
1646 {
1647 *val = ch - 'A' + 10;
1648 return 1;
1649 }
1650 if ((ch >= '0') && (ch <= '9'))
1651 {
1652 *val = ch - '0';
1653 return 1;
1654 }
1655 return 0;
1656}
1657
1658static int
fba45db2 1659stubhex (int ch)
c906108c
SS
1660{
1661 if (ch >= 'a' && ch <= 'f')
1662 return ch - 'a' + 10;
1663 if (ch >= '0' && ch <= '9')
1664 return ch - '0';
1665 if (ch >= 'A' && ch <= 'F')
1666 return ch - 'A' + 10;
1667 return -1;
1668}
1669
1670static int
fba45db2 1671stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
1672{
1673 int nibble;
1674 int retval = 0;
1675
1676 while (fieldlength)
1677 {
1678 nibble = stubhex (*buff++);
1679 retval |= nibble;
1680 fieldlength--;
1681 if (fieldlength)
1682 retval = retval << 4;
1683 }
1684 return retval;
1685}
1686
1687char *
fba45db2 1688unpack_varlen_hex (char *buff, /* packet to parse */
b2dd6311 1689 ULONGEST *result)
c906108c
SS
1690{
1691 int nibble;
d49c44d5 1692 ULONGEST retval = 0;
c906108c
SS
1693
1694 while (ishex (*buff, &nibble))
1695 {
1696 buff++;
1697 retval = retval << 4;
1698 retval |= nibble & 0x0f;
1699 }
1700 *result = retval;
1701 return buff;
1702}
1703
1704static char *
fba45db2 1705unpack_nibble (char *buf, int *val)
c906108c 1706{
b7589f7d 1707 *val = fromhex (*buf++);
c906108c
SS
1708 return buf;
1709}
1710
1711static char *
fba45db2 1712pack_nibble (char *buf, int nibble)
c906108c
SS
1713{
1714 *buf++ = hexchars[(nibble & 0x0f)];
1715 return buf;
1716}
1717
1718static char *
fba45db2 1719pack_hex_byte (char *pkt, int byte)
c906108c
SS
1720{
1721 *pkt++ = hexchars[(byte >> 4) & 0xf];
1722 *pkt++ = hexchars[(byte & 0xf)];
1723 return pkt;
1724}
1725
1726static char *
fba45db2 1727unpack_byte (char *buf, int *value)
c906108c
SS
1728{
1729 *value = stub_unpack_int (buf, 2);
1730 return buf + 2;
1731}
1732
1733static char *
fba45db2 1734pack_int (char *buf, int value)
c906108c
SS
1735{
1736 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1737 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1738 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1739 buf = pack_hex_byte (buf, (value & 0xff));
1740 return buf;
1741}
1742
1743static char *
fba45db2 1744unpack_int (char *buf, int *value)
c906108c
SS
1745{
1746 *value = stub_unpack_int (buf, 8);
1747 return buf + 8;
1748}
1749
23860348 1750#if 0 /* Currently unused, uncomment when needed. */
a14ed312 1751static char *pack_string (char *pkt, char *string);
c906108c
SS
1752
1753static char *
fba45db2 1754pack_string (char *pkt, char *string)
c906108c
SS
1755{
1756 char ch;
1757 int len;
1758
1759 len = strlen (string);
1760 if (len > 200)
23860348 1761 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
1762 pkt = pack_hex_byte (pkt, len);
1763 while (len-- > 0)
1764 {
1765 ch = *string++;
1766 if ((ch == '\0') || (ch == '#'))
23860348 1767 ch = '*'; /* Protect encapsulation. */
c906108c
SS
1768 *pkt++ = ch;
1769 }
1770 return pkt;
1771}
1772#endif /* 0 (unused) */
1773
1774static char *
fba45db2 1775unpack_string (char *src, char *dest, int length)
c906108c
SS
1776{
1777 while (length--)
1778 *dest++ = *src++;
1779 *dest = '\0';
1780 return src;
1781}
1782
1783static char *
fba45db2 1784pack_threadid (char *pkt, threadref *id)
c906108c
SS
1785{
1786 char *limit;
1787 unsigned char *altid;
1788
1789 altid = (unsigned char *) id;
1790 limit = pkt + BUF_THREAD_ID_SIZE;
1791 while (pkt < limit)
1792 pkt = pack_hex_byte (pkt, *altid++);
1793 return pkt;
1794}
1795
1796
1797static char *
fba45db2 1798unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
1799{
1800 char *altref;
1801 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1802 int x, y;
1803
1804 altref = (char *) id;
1805
1806 while (inbuf < limit)
1807 {
1808 x = stubhex (*inbuf++);
1809 y = stubhex (*inbuf++);
1810 *altref++ = (x << 4) | y;
1811 }
1812 return inbuf;
1813}
1814
1815/* Externally, threadrefs are 64 bits but internally, they are still
1816 ints. This is due to a mismatch of specifications. We would like
1817 to use 64bit thread references internally. This is an adapter
1818 function. */
1819
1820void
fba45db2 1821int_to_threadref (threadref *id, int value)
c906108c
SS
1822{
1823 unsigned char *scan;
1824
1825 scan = (unsigned char *) id;
1826 {
1827 int i = 4;
1828 while (i--)
1829 *scan++ = 0;
1830 }
1831 *scan++ = (value >> 24) & 0xff;
1832 *scan++ = (value >> 16) & 0xff;
1833 *scan++ = (value >> 8) & 0xff;
1834 *scan++ = (value & 0xff);
1835}
1836
1837static int
fba45db2 1838threadref_to_int (threadref *ref)
c906108c
SS
1839{
1840 int i, value = 0;
1841 unsigned char *scan;
1842
cfd77fa1 1843 scan = *ref;
c906108c
SS
1844 scan += 4;
1845 i = 4;
1846 while (i-- > 0)
1847 value = (value << 8) | ((*scan++) & 0xff);
1848 return value;
1849}
1850
1851static void
fba45db2 1852copy_threadref (threadref *dest, threadref *src)
c906108c
SS
1853{
1854 int i;
1855 unsigned char *csrc, *cdest;
1856
1857 csrc = (unsigned char *) src;
1858 cdest = (unsigned char *) dest;
1859 i = 8;
1860 while (i--)
1861 *cdest++ = *csrc++;
1862}
1863
1864static int
fba45db2 1865threadmatch (threadref *dest, threadref *src)
c906108c 1866{
23860348 1867 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
1868#if 0
1869 unsigned char *srcp, *destp;
1870 int i, result;
1871 srcp = (char *) src;
1872 destp = (char *) dest;
1873
1874 result = 1;
1875 while (i-- > 0)
1876 result &= (*srcp++ == *destp++) ? 1 : 0;
1877 return result;
1878#endif
1879 return 1;
1880}
1881
1882/*
c5aa993b
JM
1883 threadid:1, # always request threadid
1884 context_exists:2,
1885 display:4,
1886 unique_name:8,
1887 more_display:16
1888 */
c906108c
SS
1889
1890/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1891
1892static char *
fba45db2 1893pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 1894{
23860348
MS
1895 *pkt++ = 'q'; /* Info Query */
1896 *pkt++ = 'P'; /* process or thread info */
1897 pkt = pack_int (pkt, mode); /* mode */
c906108c 1898 pkt = pack_threadid (pkt, id); /* threadid */
23860348 1899 *pkt = '\0'; /* terminate */
c906108c
SS
1900 return pkt;
1901}
1902
23860348 1903/* These values tag the fields in a thread info response packet. */
c906108c 1904/* Tagging the fields allows us to request specific fields and to
23860348 1905 add more fields as time goes by. */
c906108c 1906
23860348 1907#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 1908#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 1909 fetch registers and its stack? */
c5aa993b 1910#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 1911#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 1912#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 1913 the process. */
c906108c
SS
1914
1915static int
fba45db2
KB
1916remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1917 struct gdb_ext_thread_info *info)
c906108c 1918{
d01949b6 1919 struct remote_state *rs = get_remote_state ();
c906108c 1920 int mask, length;
cfd77fa1 1921 int tag;
c906108c 1922 threadref ref;
6d820c5c 1923 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
1924 int retval = 1;
1925
23860348 1926 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
1927 info->active = 0;
1928 info->display[0] = '\0';
1929 info->shortname[0] = '\0';
1930 info->more_display[0] = '\0';
1931
23860348
MS
1932 /* Assume the characters indicating the packet type have been
1933 stripped. */
c906108c
SS
1934 pkt = unpack_int (pkt, &mask); /* arg mask */
1935 pkt = unpack_threadid (pkt, &ref);
1936
1937 if (mask == 0)
8a3fe4f8 1938 warning (_("Incomplete response to threadinfo request."));
c906108c 1939 if (!threadmatch (&ref, expectedref))
23860348 1940 { /* This is an answer to a different request. */
8a3fe4f8 1941 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
1942 return 0;
1943 }
1944 copy_threadref (&info->threadid, &ref);
1945
23860348 1946 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 1947
23860348
MS
1948 /* Packets are terminated with nulls. */
1949 while ((pkt < limit) && mask && *pkt)
c906108c
SS
1950 {
1951 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
1952 pkt = unpack_byte (pkt, &length); /* length */
1953 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 1954 {
8a3fe4f8 1955 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
1956 retval = 0;
1957 break;
1958 }
1959 if (tag == TAG_THREADID)
1960 {
1961 if (length != 16)
1962 {
8a3fe4f8 1963 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
1964 retval = 0;
1965 break;
1966 }
1967 pkt = unpack_threadid (pkt, &ref);
1968 mask = mask & ~TAG_THREADID;
1969 continue;
1970 }
1971 if (tag == TAG_EXISTS)
1972 {
1973 info->active = stub_unpack_int (pkt, length);
1974 pkt += length;
1975 mask = mask & ~(TAG_EXISTS);
1976 if (length > 8)
1977 {
8a3fe4f8 1978 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
1979 retval = 0;
1980 break;
1981 }
1982 continue;
1983 }
1984 if (tag == TAG_THREADNAME)
1985 {
1986 pkt = unpack_string (pkt, &info->shortname[0], length);
1987 mask = mask & ~TAG_THREADNAME;
1988 continue;
1989 }
1990 if (tag == TAG_DISPLAY)
1991 {
1992 pkt = unpack_string (pkt, &info->display[0], length);
1993 mask = mask & ~TAG_DISPLAY;
1994 continue;
1995 }
1996 if (tag == TAG_MOREDISPLAY)
1997 {
1998 pkt = unpack_string (pkt, &info->more_display[0], length);
1999 mask = mask & ~TAG_MOREDISPLAY;
2000 continue;
2001 }
8a3fe4f8 2002 warning (_("ERROR RMT: unknown thread info tag."));
23860348 2003 break; /* Not a tag we know about. */
c906108c
SS
2004 }
2005 return retval;
2006}
2007
2008static int
fba45db2
KB
2009remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
2010 struct gdb_ext_thread_info *info)
c906108c 2011{
d01949b6 2012 struct remote_state *rs = get_remote_state ();
c906108c 2013 int result;
c906108c 2014
2e9f7625
DJ
2015 pack_threadinfo_request (rs->buf, fieldset, threadid);
2016 putpkt (rs->buf);
6d820c5c 2017 getpkt (&rs->buf, &rs->buf_size, 0);
3084dd77
PA
2018
2019 if (rs->buf[0] == '\0')
2020 return 0;
2021
2e9f7625 2022 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 2023 threadid, info);
c906108c
SS
2024 return result;
2025}
2026
c906108c
SS
2027/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
2028
2029static char *
fba45db2
KB
2030pack_threadlist_request (char *pkt, int startflag, int threadcount,
2031 threadref *nextthread)
c906108c
SS
2032{
2033 *pkt++ = 'q'; /* info query packet */
2034 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 2035 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
2036 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
2037 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
2038 *pkt = '\0';
2039 return pkt;
2040}
2041
2042/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
2043
2044static int
fba45db2
KB
2045parse_threadlist_response (char *pkt, int result_limit,
2046 threadref *original_echo, threadref *resultlist,
2047 int *doneflag)
c906108c 2048{
d01949b6 2049 struct remote_state *rs = get_remote_state ();
c906108c
SS
2050 char *limit;
2051 int count, resultcount, done;
2052
2053 resultcount = 0;
2054 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 2055 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 2056 /* done parse past here */
c906108c
SS
2057 pkt = unpack_byte (pkt, &count); /* count field */
2058 pkt = unpack_nibble (pkt, &done);
2059 /* The first threadid is the argument threadid. */
2060 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
2061 while ((count-- > 0) && (pkt < limit))
2062 {
2063 pkt = unpack_threadid (pkt, resultlist++);
2064 if (resultcount++ >= result_limit)
2065 break;
2066 }
2067 if (doneflag)
2068 *doneflag = done;
2069 return resultcount;
2070}
2071
2072static int
fba45db2
KB
2073remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
2074 int *done, int *result_count, threadref *threadlist)
c906108c 2075{
d01949b6 2076 struct remote_state *rs = get_remote_state ();
c906108c 2077 static threadref echo_nextthread;
c906108c
SS
2078 int result = 1;
2079
23860348 2080 /* Trancate result limit to be smaller than the packet size. */
ea9c271d
DJ
2081 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= get_remote_packet_size ())
2082 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 2083
6d820c5c
DJ
2084 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
2085 putpkt (rs->buf);
2086 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 2087
d8f2712d
VP
2088 if (*rs->buf == '\0')
2089 *result_count = 0;
2090 else
2091 *result_count =
2092 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
2093 threadlist, done);
c906108c
SS
2094
2095 if (!threadmatch (&echo_nextthread, nextthread))
2096 {
23860348
MS
2097 /* FIXME: This is a good reason to drop the packet. */
2098 /* Possably, there is a duplicate response. */
c906108c
SS
2099 /* Possabilities :
2100 retransmit immediatly - race conditions
2101 retransmit after timeout - yes
2102 exit
2103 wait for packet, then exit
2104 */
8a3fe4f8 2105 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 2106 return 0; /* I choose simply exiting. */
c906108c
SS
2107 }
2108 if (*result_count <= 0)
2109 {
2110 if (*done != 1)
2111 {
8a3fe4f8 2112 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
2113 result = 0;
2114 }
2115 return result; /* break; */
2116 }
2117 if (*result_count > result_limit)
2118 {
2119 *result_count = 0;
8a3fe4f8 2120 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
2121 return 0;
2122 }
2123 return result;
2124}
2125
23860348
MS
2126/* This is the interface between remote and threads, remotes upper
2127 interface. */
c906108c
SS
2128
2129/* remote_find_new_threads retrieves the thread list and for each
2130 thread in the list, looks up the thread in GDB's internal list,
79d7f229 2131 adding the thread if it does not already exist. This involves
c906108c
SS
2132 getting partial thread lists from the remote target so, polling the
2133 quit_flag is required. */
2134
2135
23860348 2136/* About this many threadisds fit in a packet. */
c906108c
SS
2137
2138#define MAXTHREADLISTRESULTS 32
2139
2140static int
fba45db2
KB
2141remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
2142 int looplimit)
c906108c
SS
2143{
2144 int done, i, result_count;
2145 int startflag = 1;
2146 int result = 1;
2147 int loopcount = 0;
2148 static threadref nextthread;
2149 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
2150
2151 done = 0;
2152 while (!done)
2153 {
2154 if (loopcount++ > looplimit)
2155 {
2156 result = 0;
8a3fe4f8 2157 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
2158 break;
2159 }
2160 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
2161 &done, &result_count, resultthreadlist))
2162 {
2163 result = 0;
2164 break;
2165 }
23860348 2166 /* Clear for later iterations. */
c906108c
SS
2167 startflag = 0;
2168 /* Setup to resume next batch of thread references, set nextthread. */
2169 if (result_count >= 1)
2170 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
2171 i = 0;
2172 while (result_count--)
2173 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
2174 break;
2175 }
2176 return result;
2177}
2178
2179static int
fba45db2 2180remote_newthread_step (threadref *ref, void *context)
c906108c 2181{
79d7f229
PA
2182 int pid = ptid_get_pid (inferior_ptid);
2183 ptid_t ptid = ptid_build (pid, 0, threadref_to_int (ref));
39f77062
KB
2184
2185 if (!in_thread_list (ptid))
2186 add_thread (ptid);
c906108c
SS
2187 return 1; /* continue iterator */
2188}
2189
2190#define CRAZY_MAX_THREADS 1000
2191
39f77062
KB
2192static ptid_t
2193remote_current_thread (ptid_t oldpid)
c906108c 2194{
d01949b6 2195 struct remote_state *rs = get_remote_state ();
c906108c
SS
2196
2197 putpkt ("qC");
6d820c5c 2198 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2199 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
82f73884 2200 return read_ptid (&rs->buf[2], NULL);
c906108c
SS
2201 else
2202 return oldpid;
2203}
2204
802188a7
RM
2205/* Find new threads for info threads command.
2206 * Original version, using John Metzler's thread protocol.
9d1f7ab2 2207 */
cce74817
JM
2208
2209static void
fba45db2 2210remote_find_new_threads (void)
c906108c 2211{
c5aa993b
JM
2212 remote_threadlist_iterator (remote_newthread_step, 0,
2213 CRAZY_MAX_THREADS);
c906108c
SS
2214}
2215
9d1f7ab2
MS
2216/*
2217 * Find all threads for info threads command.
2218 * Uses new thread protocol contributed by Cisco.
2219 * Falls back and attempts to use the older method (above)
2220 * if the target doesn't respond to the new method.
2221 */
2222
0f71a2f6 2223static void
28439f5e 2224remote_threads_info (struct target_ops *ops)
0f71a2f6 2225{
d01949b6 2226 struct remote_state *rs = get_remote_state ();
085dd6e6 2227 char *bufp;
79d7f229 2228 ptid_t new_thread;
0f71a2f6
JM
2229
2230 if (remote_desc == 0) /* paranoia */
8a3fe4f8 2231 error (_("Command can only be used when connected to the remote target."));
0f71a2f6 2232
9d1f7ab2
MS
2233 if (use_threadinfo_query)
2234 {
2235 putpkt ("qfThreadInfo");
6d820c5c 2236 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2237 bufp = rs->buf;
9d1f7ab2 2238 if (bufp[0] != '\0') /* q packet recognized */
802188a7 2239 {
9d1f7ab2
MS
2240 while (*bufp++ == 'm') /* reply contains one or more TID */
2241 {
2242 do
2243 {
82f73884 2244 new_thread = read_ptid (bufp, &bufp);
1941c569 2245 if (!ptid_equal (new_thread, null_ptid))
82f73884 2246 {
74531fed 2247 /* In non-stop mode, we assume new found threads
1941c569 2248 are running until proven otherwise with a
74531fed
PA
2249 stop reply. In all-stop, we can only get
2250 here if all threads are stopped. */
1941c569
PA
2251 int running = non_stop ? 1 : 0;
2252
2253 remote_notice_new_inferior (new_thread, running);
82f73884 2254 }
9d1f7ab2
MS
2255 }
2256 while (*bufp++ == ','); /* comma-separated list */
2257 putpkt ("qsThreadInfo");
6d820c5c 2258 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2259 bufp = rs->buf;
9d1f7ab2
MS
2260 }
2261 return; /* done */
2262 }
2263 }
2264
74531fed
PA
2265 /* Only qfThreadInfo is supported in non-stop mode. */
2266 if (non_stop)
2267 return;
2268
23860348 2269 /* Else fall back to old method based on jmetzler protocol. */
9d1f7ab2
MS
2270 use_threadinfo_query = 0;
2271 remote_find_new_threads ();
2272 return;
2273}
2274
802188a7 2275/*
9d1f7ab2
MS
2276 * Collect a descriptive string about the given thread.
2277 * The target may say anything it wants to about the thread
2278 * (typically info about its blocked / runnable state, name, etc.).
2279 * This string will appear in the info threads display.
802188a7 2280 *
9d1f7ab2
MS
2281 * Optional: targets are not required to implement this function.
2282 */
2283
2284static char *
2285remote_threads_extra_info (struct thread_info *tp)
2286{
d01949b6 2287 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
2288 int result;
2289 int set;
2290 threadref id;
2291 struct gdb_ext_thread_info threadinfo;
23860348 2292 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
2293 int n = 0; /* position in display_buf */
2294
2295 if (remote_desc == 0) /* paranoia */
8e65ff28 2296 internal_error (__FILE__, __LINE__,
e2e0b3e5 2297 _("remote_threads_extra_info"));
9d1f7ab2 2298
60e569b9
PA
2299 if (ptid_equal (tp->ptid, magic_null_ptid)
2300 || (ptid_get_pid (tp->ptid) != 0 && ptid_get_tid (tp->ptid) == 0))
2301 /* This is the main thread which was added by GDB. The remote
2302 server doesn't know about it. */
2303 return NULL;
2304
9d1f7ab2
MS
2305 if (use_threadextra_query)
2306 {
82f73884
PA
2307 char *b = rs->buf;
2308 char *endb = rs->buf + get_remote_packet_size ();
2309
2310 xsnprintf (b, endb - b, "qThreadExtraInfo,");
2311 b += strlen (b);
2312 write_ptid (b, endb, tp->ptid);
2313
2e9f7625 2314 putpkt (rs->buf);
6d820c5c 2315 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2316 if (rs->buf[0] != 0)
9d1f7ab2 2317 {
2e9f7625
DJ
2318 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2319 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 2320 display_buf [result] = '\0';
9d1f7ab2
MS
2321 return display_buf;
2322 }
0f71a2f6 2323 }
9d1f7ab2
MS
2324
2325 /* If the above query fails, fall back to the old method. */
2326 use_threadextra_query = 0;
2327 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2328 | TAG_MOREDISPLAY | TAG_DISPLAY;
79d7f229 2329 int_to_threadref (&id, ptid_get_tid (tp->ptid));
9d1f7ab2
MS
2330 if (remote_get_threadinfo (&id, set, &threadinfo))
2331 if (threadinfo.active)
0f71a2f6 2332 {
9d1f7ab2 2333 if (*threadinfo.shortname)
2bc416ba 2334 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 2335 " Name: %s,", threadinfo.shortname);
9d1f7ab2 2336 if (*threadinfo.display)
2bc416ba 2337 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2338 " State: %s,", threadinfo.display);
9d1f7ab2 2339 if (*threadinfo.more_display)
2bc416ba 2340 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2341 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
2342
2343 if (n > 0)
c5aa993b 2344 {
23860348 2345 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
2346 if (',' == display_buf[n-1])
2347 display_buf[n-1] = ' ';
2348 return display_buf;
c5aa993b 2349 }
0f71a2f6 2350 }
9d1f7ab2 2351 return NULL;
0f71a2f6 2352}
c906108c 2353\f
c5aa993b 2354
24b06219 2355/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
2356
2357static void
fba45db2 2358extended_remote_restart (void)
c906108c 2359{
d01949b6 2360 struct remote_state *rs = get_remote_state ();
c906108c
SS
2361
2362 /* Send the restart command; for reasons I don't understand the
2363 remote side really expects a number after the "R". */
ea9c271d 2364 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 2365 putpkt (rs->buf);
c906108c 2366
ad9a8f3f 2367 remote_fileio_reset ();
c906108c
SS
2368}
2369\f
2370/* Clean up connection to a remote debugger. */
2371
c906108c 2372static void
fba45db2 2373remote_close (int quitting)
c906108c 2374{
d3fd5342
PA
2375 if (remote_desc == NULL)
2376 return; /* already closed */
2377
2378 /* Make sure we leave stdin registered in the event loop, and we
2379 don't leave the async SIGINT signal handler installed. */
2380 remote_terminal_ours ();
ce5ce7ed 2381
d3fd5342
PA
2382 serial_close (remote_desc);
2383 remote_desc = NULL;
ce5ce7ed
PA
2384
2385 /* We don't have a connection to the remote stub anymore. Get rid
2386 of all the inferiors and their threads we were controlling. */
2387 discard_all_inferiors ();
2388
74531fed
PA
2389 /* We're no longer interested in any of these events. */
2390 discard_pending_stop_replies (-1);
2391
2392 if (remote_async_inferior_event_token)
2393 delete_async_event_handler (&remote_async_inferior_event_token);
2394 if (remote_async_get_pending_events_token)
2395 delete_async_event_handler (&remote_async_get_pending_events_token);
c906108c
SS
2396}
2397
23860348 2398/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
2399
2400static void
fba45db2 2401get_offsets (void)
c906108c 2402{
d01949b6 2403 struct remote_state *rs = get_remote_state ();
2e9f7625 2404 char *buf;
085dd6e6 2405 char *ptr;
31d99776
DJ
2406 int lose, num_segments = 0, do_sections, do_segments;
2407 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 2408 struct section_offsets *offs;
31d99776
DJ
2409 struct symfile_segment_data *data;
2410
2411 if (symfile_objfile == NULL)
2412 return;
c906108c
SS
2413
2414 putpkt ("qOffsets");
6d820c5c 2415 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2416 buf = rs->buf;
c906108c
SS
2417
2418 if (buf[0] == '\000')
2419 return; /* Return silently. Stub doesn't support
23860348 2420 this command. */
c906108c
SS
2421 if (buf[0] == 'E')
2422 {
8a3fe4f8 2423 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
2424 return;
2425 }
2426
2427 /* Pick up each field in turn. This used to be done with scanf, but
2428 scanf will make trouble if CORE_ADDR size doesn't match
2429 conversion directives correctly. The following code will work
2430 with any size of CORE_ADDR. */
2431 text_addr = data_addr = bss_addr = 0;
2432 ptr = buf;
2433 lose = 0;
2434
2435 if (strncmp (ptr, "Text=", 5) == 0)
2436 {
2437 ptr += 5;
2438 /* Don't use strtol, could lose on big values. */
2439 while (*ptr && *ptr != ';')
2440 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 2441
31d99776
DJ
2442 if (strncmp (ptr, ";Data=", 6) == 0)
2443 {
2444 ptr += 6;
2445 while (*ptr && *ptr != ';')
2446 data_addr = (data_addr << 4) + fromhex (*ptr++);
2447 }
2448 else
2449 lose = 1;
2450
2451 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2452 {
2453 ptr += 5;
2454 while (*ptr && *ptr != ';')
2455 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 2456
31d99776
DJ
2457 if (bss_addr != data_addr)
2458 warning (_("Target reported unsupported offsets: %s"), buf);
2459 }
2460 else
2461 lose = 1;
2462 }
2463 else if (strncmp (ptr, "TextSeg=", 8) == 0)
c906108c 2464 {
31d99776
DJ
2465 ptr += 8;
2466 /* Don't use strtol, could lose on big values. */
c906108c 2467 while (*ptr && *ptr != ';')
31d99776
DJ
2468 text_addr = (text_addr << 4) + fromhex (*ptr++);
2469 num_segments = 1;
2470
2471 if (strncmp (ptr, ";DataSeg=", 9) == 0)
2472 {
2473 ptr += 9;
2474 while (*ptr && *ptr != ';')
2475 data_addr = (data_addr << 4) + fromhex (*ptr++);
2476 num_segments++;
2477 }
c906108c
SS
2478 }
2479 else
2480 lose = 1;
2481
2482 if (lose)
8a3fe4f8 2483 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
2484 else if (*ptr != '\0')
2485 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 2486
802188a7 2487 offs = ((struct section_offsets *)
a39a16c4 2488 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 2489 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 2490 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 2491
31d99776
DJ
2492 data = get_symfile_segment_data (symfile_objfile->obfd);
2493 do_segments = (data != NULL);
2494 do_sections = num_segments == 0;
c906108c 2495
28c32713 2496 if (num_segments > 0)
31d99776 2497 {
31d99776
DJ
2498 segments[0] = text_addr;
2499 segments[1] = data_addr;
2500 }
28c32713
JB
2501 /* If we have two segments, we can still try to relocate everything
2502 by assuming that the .text and .data offsets apply to the whole
2503 text and data segments. Convert the offsets given in the packet
2504 to base addresses for symfile_map_offsets_to_segments. */
2505 else if (data && data->num_segments == 2)
2506 {
2507 segments[0] = data->segment_bases[0] + text_addr;
2508 segments[1] = data->segment_bases[1] + data_addr;
2509 num_segments = 2;
2510 }
8d385431
DJ
2511 /* If the object file has only one segment, assume that it is text
2512 rather than data; main programs with no writable data are rare,
2513 but programs with no code are useless. Of course the code might
2514 have ended up in the data segment... to detect that we would need
2515 the permissions here. */
2516 else if (data && data->num_segments == 1)
2517 {
2518 segments[0] = data->segment_bases[0] + text_addr;
2519 num_segments = 1;
2520 }
28c32713
JB
2521 /* There's no way to relocate by segment. */
2522 else
2523 do_segments = 0;
31d99776
DJ
2524
2525 if (do_segments)
2526 {
2527 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
2528 offs, num_segments, segments);
2529
2530 if (ret == 0 && !do_sections)
2531 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2532
2533 if (ret > 0)
2534 do_sections = 0;
2535 }
c906108c 2536
9ef895d6
DJ
2537 if (data)
2538 free_symfile_segment_data (data);
31d99776
DJ
2539
2540 if (do_sections)
2541 {
2542 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2543
2544 /* This is a temporary kludge to force data and bss to use the same offsets
2545 because that's what nlmconv does now. The real solution requires changes
2546 to the stub and remote.c that I don't have time to do right now. */
2547
2548 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2549 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2550 }
c906108c
SS
2551
2552 objfile_relocate (symfile_objfile, offs);
2553}
2554
74531fed
PA
2555/* Callback for iterate_over_threads. Set the STOP_REQUESTED flags in
2556 threads we know are stopped already. This is used during the
2557 initial remote connection in non-stop mode --- threads that are
2558 reported as already being stopped are left stopped. */
2559
2560static int
2561set_stop_requested_callback (struct thread_info *thread, void *data)
2562{
2563 /* If we have a stop reply for this thread, it must be stopped. */
2564 if (peek_stop_reply (thread->ptid))
2565 set_stop_requested (thread->ptid, 1);
2566
2567 return 0;
2568}
2569
8621d6a9 2570/* Stub for catch_exception. */
0f71a2f6 2571
2d717e4f
DJ
2572struct start_remote_args
2573{
2574 int from_tty;
2575
2576 /* The current target. */
2577 struct target_ops *target;
2578
2579 /* Non-zero if this is an extended-remote target. */
2580 int extended_p;
2581};
2582
9cbc821d 2583static void
2d717e4f 2584remote_start_remote (struct ui_out *uiout, void *opaque)
c906108c 2585{
2d717e4f 2586 struct start_remote_args *args = opaque;
c8d104ad
PA
2587 struct remote_state *rs = get_remote_state ();
2588 struct packet_config *noack_config;
2d717e4f 2589 char *wait_status = NULL;
8621d6a9 2590
23860348 2591 immediate_quit++; /* Allow user to interrupt it. */
c906108c 2592
c8d104ad
PA
2593 /* Ack any packet which the remote side has already sent. */
2594 serial_write (remote_desc, "+", 1);
2595
2596 /* The first packet we send to the target is the optional "supported
2597 packets" request. If the target can answer this, it will tell us
2598 which later probes to skip. */
2599 remote_query_supported ();
2600
2601 /* Next, we possibly activate noack mode.
2602
2603 If the QStartNoAckMode packet configuration is set to AUTO,
2604 enable noack mode if the stub reported a wish for it with
2605 qSupported.
2606
2607 If set to TRUE, then enable noack mode even if the stub didn't
2608 report it in qSupported. If the stub doesn't reply OK, the
2609 session ends with an error.
2610
2611 If FALSE, then don't activate noack mode, regardless of what the
2612 stub claimed should be the default with qSupported. */
2613
2614 noack_config = &remote_protocol_packets[PACKET_QStartNoAckMode];
2615
2616 if (noack_config->detect == AUTO_BOOLEAN_TRUE
2617 || (noack_config->detect == AUTO_BOOLEAN_AUTO
2618 && noack_config->support == PACKET_ENABLE))
2619 {
2620 putpkt ("QStartNoAckMode");
2621 getpkt (&rs->buf, &rs->buf_size, 0);
2622 if (packet_ok (rs->buf, noack_config) == PACKET_OK)
2623 rs->noack_mode = 1;
2624 }
2625
5fe04517
PA
2626 if (args->extended_p)
2627 {
2628 /* Tell the remote that we are using the extended protocol. */
2629 putpkt ("!");
2630 getpkt (&rs->buf, &rs->buf_size, 0);
2631 }
2632
d962ef82
DJ
2633 /* Next, if the target can specify a description, read it. We do
2634 this before anything involving memory or registers. */
2635 target_find_description ();
2636
50c71eaf
PA
2637 /* On OSs where the list of libraries is global to all
2638 processes, we fetch them early. */
2639 if (gdbarch_has_global_solist (target_gdbarch))
2640 solib_add (NULL, args->from_tty, args->target, auto_solib_add);
2641
74531fed
PA
2642 if (non_stop)
2643 {
2644 if (!rs->non_stop_aware)
2645 error (_("Non-stop mode requested, but remote does not support non-stop"));
2646
2647 putpkt ("QNonStop:1");
2648 getpkt (&rs->buf, &rs->buf_size, 0);
2649
2650 if (strcmp (rs->buf, "OK") != 0)
2651 error ("Remote refused setting non-stop mode with: %s", rs->buf);
2652
2653 /* Find about threads and processes the stub is already
2654 controlling. We default to adding them in the running state.
2655 The '?' query below will then tell us about which threads are
2656 stopped. */
28439f5e 2657 remote_threads_info (args->target);
74531fed
PA
2658 }
2659 else if (rs->non_stop_aware)
2660 {
2661 /* Don't assume that the stub can operate in all-stop mode.
2662 Request it explicitely. */
2663 putpkt ("QNonStop:0");
2664 getpkt (&rs->buf, &rs->buf_size, 0);
2665
2666 if (strcmp (rs->buf, "OK") != 0)
2667 error ("Remote refused setting all-stop mode with: %s", rs->buf);
2668 }
2669
2d717e4f
DJ
2670 /* Check whether the target is running now. */
2671 putpkt ("?");
2672 getpkt (&rs->buf, &rs->buf_size, 0);
2673
74531fed 2674 if (!non_stop)
2d717e4f 2675 {
74531fed 2676 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2d717e4f 2677 {
c35b1492 2678 if (!args->extended_p)
74531fed 2679 error (_("The target is not running (try extended-remote?)"));
c35b1492
PA
2680
2681 /* We're connected, but not running. Drop out before we
2682 call start_remote. */
2683 return;
2d717e4f
DJ
2684 }
2685 else
74531fed 2686 {
74531fed
PA
2687 /* Save the reply for later. */
2688 wait_status = alloca (strlen (rs->buf) + 1);
2689 strcpy (wait_status, rs->buf);
2690 }
2691
2692 /* Let the stub know that we want it to return the thread. */
2693 set_continue_thread (minus_one_ptid);
2694
2695 /* Without this, some commands which require an active target
2696 (such as kill) won't work. This variable serves (at least)
2697 double duty as both the pid of the target process (if it has
2698 such), and as a flag indicating that a target is active.
2699 These functions should be split out into seperate variables,
2700 especially since GDB will someday have a notion of debugging
2701 several processes. */
2702 inferior_ptid = magic_null_ptid;
2703
2704 /* Now, if we have thread information, update inferior_ptid. */
2705 inferior_ptid = remote_current_thread (inferior_ptid);
2706
0b16c5cf 2707 remote_add_inferior (ptid_get_pid (inferior_ptid), -1);
74531fed
PA
2708
2709 /* Always add the main thread. */
2710 add_thread_silent (inferior_ptid);
2711
2712 get_offsets (); /* Get text, data & bss offsets. */
2713
d962ef82
DJ
2714 /* If we could not find a description using qXfer, and we know
2715 how to do it some other way, try again. This is not
2716 supported for non-stop; it could be, but it is tricky if
2717 there are no stopped threads when we connect. */
2718 if (remote_read_description_p (args->target)
2719 && gdbarch_target_desc (target_gdbarch) == NULL)
2720 {
2721 target_clear_description ();
2722 target_find_description ();
2723 }
2724
74531fed
PA
2725 /* Use the previously fetched status. */
2726 gdb_assert (wait_status != NULL);
2727 strcpy (rs->buf, wait_status);
2728 rs->cached_wait_status = 1;
2729
2730 immediate_quit--;
2731 start_remote (args->from_tty); /* Initialize gdb process mechanisms. */
2d717e4f
DJ
2732 }
2733 else
2734 {
68c97600
PA
2735 /* Clear WFI global state. Do this before finding about new
2736 threads and inferiors, and setting the current inferior.
2737 Otherwise we would clear the proceed status of the current
2738 inferior when we want its stop_soon state to be preserved
2739 (see notice_new_inferior). */
2740 init_wait_for_inferior ();
2741
74531fed
PA
2742 /* In non-stop, we will either get an "OK", meaning that there
2743 are no stopped threads at this time; or, a regular stop
2744 reply. In the latter case, there may be more than one thread
2745 stopped --- we pull them all out using the vStopped
2746 mechanism. */
2747 if (strcmp (rs->buf, "OK") != 0)
2748 {
2749 struct stop_reply *stop_reply;
2750 struct cleanup *old_chain;
2d717e4f 2751
74531fed
PA
2752 stop_reply = stop_reply_xmalloc ();
2753 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
2d717e4f 2754
74531fed
PA
2755 remote_parse_stop_reply (rs->buf, stop_reply);
2756 discard_cleanups (old_chain);
c0a2216e 2757
74531fed
PA
2758 /* get_pending_stop_replies acks this one, and gets the rest
2759 out. */
2760 pending_stop_reply = stop_reply;
2761 remote_get_pending_stop_replies ();
c906108c 2762
74531fed
PA
2763 /* Make sure that threads that were stopped remain
2764 stopped. */
2765 iterate_over_threads (set_stop_requested_callback, NULL);
2766 }
2d717e4f 2767
74531fed
PA
2768 if (target_can_async_p ())
2769 target_async (inferior_event_handler, 0);
c906108c 2770
74531fed
PA
2771 if (thread_count () == 0)
2772 {
c35b1492 2773 if (!args->extended_p)
74531fed 2774 error (_("The target is not running (try extended-remote?)"));
82f73884 2775
c35b1492
PA
2776 /* We're connected, but not running. Drop out before we
2777 call start_remote. */
2778 return;
2779 }
74531fed
PA
2780
2781 /* Let the stub know that we want it to return the thread. */
c0a2216e 2782
74531fed
PA
2783 /* Force the stub to choose a thread. */
2784 set_general_thread (null_ptid);
c906108c 2785
74531fed
PA
2786 /* Query it. */
2787 inferior_ptid = remote_current_thread (minus_one_ptid);
2788 if (ptid_equal (inferior_ptid, minus_one_ptid))
2789 error (_("remote didn't report the current thread in non-stop mode"));
c906108c 2790
74531fed
PA
2791 get_offsets (); /* Get text, data & bss offsets. */
2792
2793 /* In non-stop mode, any cached wait status will be stored in
2794 the stop reply queue. */
2795 gdb_assert (wait_status == NULL);
2796 }
c8d104ad 2797
c8d104ad
PA
2798 /* If we connected to a live target, do some additional setup. */
2799 if (target_has_execution)
2800 {
2801 if (exec_bfd) /* No use without an exec file. */
2802 remote_check_symbols (symfile_objfile);
2803 }
50c71eaf 2804
2567c7d9
PA
2805 /* If breakpoints are global, insert them now. */
2806 if (gdbarch_has_global_breakpoints (target_gdbarch)
50c71eaf
PA
2807 && breakpoints_always_inserted_mode ())
2808 insert_breakpoints ();
c906108c
SS
2809}
2810
2811/* Open a connection to a remote debugger.
2812 NAME is the filename used for communication. */
2813
2814static void
fba45db2 2815remote_open (char *name, int from_tty)
c906108c 2816{
75c99385 2817 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
2818}
2819
c906108c
SS
2820/* Open a connection to a remote debugger using the extended
2821 remote gdb protocol. NAME is the filename used for communication. */
2822
2823static void
fba45db2 2824extended_remote_open (char *name, int from_tty)
c906108c 2825{
75c99385 2826 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
2827}
2828
c906108c
SS
2829/* Generic code for opening a connection to a remote target. */
2830
d471ea57
AC
2831static void
2832init_all_packet_configs (void)
2833{
2834 int i;
444abaca
DJ
2835 for (i = 0; i < PACKET_MAX; i++)
2836 update_packet_config (&remote_protocol_packets[i]);
d471ea57
AC
2837}
2838
23860348 2839/* Symbol look-up. */
dc8acb97
MS
2840
2841static void
2842remote_check_symbols (struct objfile *objfile)
2843{
d01949b6 2844 struct remote_state *rs = get_remote_state ();
dc8acb97
MS
2845 char *msg, *reply, *tmp;
2846 struct minimal_symbol *sym;
2847 int end;
2848
444abaca 2849 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
dc8acb97
MS
2850 return;
2851
3c9c4b83
PA
2852 /* Make sure the remote is pointing at the right process. */
2853 set_general_process ();
2854
6d820c5c
DJ
2855 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2856 because we need both at the same time. */
ea9c271d 2857 msg = alloca (get_remote_packet_size ());
6d820c5c 2858
23860348 2859 /* Invite target to request symbol lookups. */
dc8acb97
MS
2860
2861 putpkt ("qSymbol::");
6d820c5c
DJ
2862 getpkt (&rs->buf, &rs->buf_size, 0);
2863 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2e9f7625 2864 reply = rs->buf;
dc8acb97
MS
2865
2866 while (strncmp (reply, "qSymbol:", 8) == 0)
2867 {
2868 tmp = &reply[8];
cfd77fa1 2869 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
2870 msg[end] = '\0';
2871 sym = lookup_minimal_symbol (msg, NULL, NULL);
2872 if (sym == NULL)
ea9c271d 2873 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 2874 else
2bbe3cc1 2875 {
5af949e3 2876 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
2bbe3cc1
DJ
2877 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
2878
2879 /* If this is a function address, return the start of code
2880 instead of any data function descriptor. */
1cf3db46 2881 sym_addr = gdbarch_convert_from_func_ptr_addr (target_gdbarch,
2bbe3cc1
DJ
2882 sym_addr,
2883 &current_target);
2884
2885 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
5af949e3 2886 phex_nz (sym_addr, addr_size), &reply[8]);
2bbe3cc1
DJ
2887 }
2888
dc8acb97 2889 putpkt (msg);
6d820c5c 2890 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2891 reply = rs->buf;
dc8acb97
MS
2892 }
2893}
2894
9db8d71f
DJ
2895static struct serial *
2896remote_serial_open (char *name)
2897{
2898 static int udp_warning = 0;
2899
2900 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2901 of in ser-tcp.c, because it is the remote protocol assuming that the
2902 serial connection is reliable and not the serial connection promising
2903 to be. */
2904 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2905 {
8a3fe4f8
AC
2906 warning (_("\
2907The remote protocol may be unreliable over UDP.\n\
2908Some events may be lost, rendering further debugging impossible."));
9db8d71f
DJ
2909 udp_warning = 1;
2910 }
2911
2912 return serial_open (name);
2913}
2914
be2a5f71
DJ
2915/* This type describes each known response to the qSupported
2916 packet. */
2917struct protocol_feature
2918{
2919 /* The name of this protocol feature. */
2920 const char *name;
2921
2922 /* The default for this protocol feature. */
2923 enum packet_support default_support;
2924
2925 /* The function to call when this feature is reported, or after
2926 qSupported processing if the feature is not supported.
2927 The first argument points to this structure. The second
2928 argument indicates whether the packet requested support be
2929 enabled, disabled, or probed (or the default, if this function
2930 is being called at the end of processing and this feature was
2931 not reported). The third argument may be NULL; if not NULL, it
2932 is a NUL-terminated string taken from the packet following
2933 this feature's name and an equals sign. */
2934 void (*func) (const struct protocol_feature *, enum packet_support,
2935 const char *);
2936
2937 /* The corresponding packet for this feature. Only used if
2938 FUNC is remote_supported_packet. */
2939 int packet;
2940};
2941
be2a5f71
DJ
2942static void
2943remote_supported_packet (const struct protocol_feature *feature,
2944 enum packet_support support,
2945 const char *argument)
2946{
2947 if (argument)
2948 {
2949 warning (_("Remote qSupported response supplied an unexpected value for"
2950 " \"%s\"."), feature->name);
2951 return;
2952 }
2953
2954 if (remote_protocol_packets[feature->packet].support
2955 == PACKET_SUPPORT_UNKNOWN)
2956 remote_protocol_packets[feature->packet].support = support;
2957}
be2a5f71
DJ
2958
2959static void
2960remote_packet_size (const struct protocol_feature *feature,
2961 enum packet_support support, const char *value)
2962{
2963 struct remote_state *rs = get_remote_state ();
2964
2965 int packet_size;
2966 char *value_end;
2967
2968 if (support != PACKET_ENABLE)
2969 return;
2970
2971 if (value == NULL || *value == '\0')
2972 {
2973 warning (_("Remote target reported \"%s\" without a size."),
2974 feature->name);
2975 return;
2976 }
2977
2978 errno = 0;
2979 packet_size = strtol (value, &value_end, 16);
2980 if (errno != 0 || *value_end != '\0' || packet_size < 0)
2981 {
2982 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
2983 feature->name, value);
2984 return;
2985 }
2986
2987 if (packet_size > MAX_REMOTE_PACKET_SIZE)
2988 {
2989 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
2990 packet_size, MAX_REMOTE_PACKET_SIZE);
2991 packet_size = MAX_REMOTE_PACKET_SIZE;
2992 }
2993
2994 /* Record the new maximum packet size. */
2995 rs->explicit_packet_size = packet_size;
2996}
2997
82f73884
PA
2998static void
2999remote_multi_process_feature (const struct protocol_feature *feature,
3000 enum packet_support support, const char *value)
3001{
3002 struct remote_state *rs = get_remote_state ();
3003 rs->multi_process_aware = (support == PACKET_ENABLE);
3004}
3005
74531fed
PA
3006static void
3007remote_non_stop_feature (const struct protocol_feature *feature,
3008 enum packet_support support, const char *value)
3009{
3010 struct remote_state *rs = get_remote_state ();
3011 rs->non_stop_aware = (support == PACKET_ENABLE);
3012}
3013
782b2b07
SS
3014static void
3015remote_cond_tracepoint_feature (const struct protocol_feature *feature,
3016 enum packet_support support,
3017 const char *value)
3018{
3019 struct remote_state *rs = get_remote_state ();
3020 rs->cond_tracepoints = (support == PACKET_ENABLE);
3021}
3022
be2a5f71 3023static struct protocol_feature remote_protocol_features[] = {
0876f84a 3024 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 3025 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 3026 PACKET_qXfer_auxv },
23181151
DJ
3027 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
3028 PACKET_qXfer_features },
cfa9d6d9
DJ
3029 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
3030 PACKET_qXfer_libraries },
fd79ecee 3031 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 3032 PACKET_qXfer_memory_map },
4de6483e
UW
3033 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
3034 PACKET_qXfer_spu_read },
3035 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
3036 PACKET_qXfer_spu_write },
07e059b5
VP
3037 { "qXfer:osdata:read", PACKET_DISABLE, remote_supported_packet,
3038 PACKET_qXfer_osdata },
89be2091
DJ
3039 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
3040 PACKET_QPassSignals },
a6f3e723
SL
3041 { "QStartNoAckMode", PACKET_DISABLE, remote_supported_packet,
3042 PACKET_QStartNoAckMode },
82f73884 3043 { "multiprocess", PACKET_DISABLE, remote_multi_process_feature, -1 },
74531fed 3044 { "QNonStop", PACKET_DISABLE, remote_non_stop_feature, -1 },
4aa995e1
PA
3045 { "qXfer:siginfo:read", PACKET_DISABLE, remote_supported_packet,
3046 PACKET_qXfer_siginfo_read },
3047 { "qXfer:siginfo:write", PACKET_DISABLE, remote_supported_packet,
3048 PACKET_qXfer_siginfo_write },
782b2b07
SS
3049 { "ConditionalTracepoints", PACKET_DISABLE, remote_cond_tracepoint_feature,
3050 PACKET_ConditionalTracepoints },
be2a5f71
DJ
3051};
3052
3053static void
3054remote_query_supported (void)
3055{
3056 struct remote_state *rs = get_remote_state ();
3057 char *next;
3058 int i;
3059 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
3060
3061 /* The packet support flags are handled differently for this packet
3062 than for most others. We treat an error, a disabled packet, and
3063 an empty response identically: any features which must be reported
3064 to be used will be automatically disabled. An empty buffer
3065 accomplishes this, since that is also the representation for a list
3066 containing no features. */
3067
3068 rs->buf[0] = 0;
3069 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
3070 {
82f73884
PA
3071 if (rs->extended)
3072 putpkt ("qSupported:multiprocess+");
3073 else
3074 putpkt ("qSupported");
3075
be2a5f71
DJ
3076 getpkt (&rs->buf, &rs->buf_size, 0);
3077
3078 /* If an error occured, warn, but do not return - just reset the
3079 buffer to empty and go on to disable features. */
3080 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
3081 == PACKET_ERROR)
3082 {
3083 warning (_("Remote failure reply: %s"), rs->buf);
3084 rs->buf[0] = 0;
3085 }
3086 }
3087
3088 memset (seen, 0, sizeof (seen));
3089
3090 next = rs->buf;
3091 while (*next)
3092 {
3093 enum packet_support is_supported;
3094 char *p, *end, *name_end, *value;
3095
3096 /* First separate out this item from the rest of the packet. If
3097 there's another item after this, we overwrite the separator
3098 (terminated strings are much easier to work with). */
3099 p = next;
3100 end = strchr (p, ';');
3101 if (end == NULL)
3102 {
3103 end = p + strlen (p);
3104 next = end;
3105 }
3106 else
3107 {
89be2091
DJ
3108 *end = '\0';
3109 next = end + 1;
3110
be2a5f71
DJ
3111 if (end == p)
3112 {
3113 warning (_("empty item in \"qSupported\" response"));
3114 continue;
3115 }
be2a5f71
DJ
3116 }
3117
3118 name_end = strchr (p, '=');
3119 if (name_end)
3120 {
3121 /* This is a name=value entry. */
3122 is_supported = PACKET_ENABLE;
3123 value = name_end + 1;
3124 *name_end = '\0';
3125 }
3126 else
3127 {
3128 value = NULL;
3129 switch (end[-1])
3130 {
3131 case '+':
3132 is_supported = PACKET_ENABLE;
3133 break;
3134
3135 case '-':
3136 is_supported = PACKET_DISABLE;
3137 break;
3138
3139 case '?':
3140 is_supported = PACKET_SUPPORT_UNKNOWN;
3141 break;
3142
3143 default:
3144 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
3145 continue;
3146 }
3147 end[-1] = '\0';
3148 }
3149
3150 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3151 if (strcmp (remote_protocol_features[i].name, p) == 0)
3152 {
3153 const struct protocol_feature *feature;
3154
3155 seen[i] = 1;
3156 feature = &remote_protocol_features[i];
3157 feature->func (feature, is_supported, value);
3158 break;
3159 }
3160 }
3161
3162 /* If we increased the packet size, make sure to increase the global
3163 buffer size also. We delay this until after parsing the entire
3164 qSupported packet, because this is the same buffer we were
3165 parsing. */
3166 if (rs->buf_size < rs->explicit_packet_size)
3167 {
3168 rs->buf_size = rs->explicit_packet_size;
3169 rs->buf = xrealloc (rs->buf, rs->buf_size);
3170 }
3171
3172 /* Handle the defaults for unmentioned features. */
3173 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
3174 if (!seen[i])
3175 {
3176 const struct protocol_feature *feature;
3177
3178 feature = &remote_protocol_features[i];
3179 feature->func (feature, feature->default_support, NULL);
3180 }
3181}
3182
3183
c906108c 3184static void
75c99385 3185remote_open_1 (char *name, int from_tty, struct target_ops *target, int extended_p)
c906108c 3186{
d01949b6 3187 struct remote_state *rs = get_remote_state ();
a6f3e723 3188
c906108c 3189 if (name == 0)
8a3fe4f8 3190 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 3191 "serial device is attached to the remote system\n"
8a3fe4f8 3192 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 3193
23860348 3194 /* See FIXME above. */
c6ebd6cf 3195 if (!target_async_permitted)
92d1e331 3196 wait_forever_enabled_p = 1;
6426a772 3197
2d717e4f
DJ
3198 /* If we're connected to a running target, target_preopen will kill it.
3199 But if we're connected to a target system with no running process,
3200 then we will still be connected when it returns. Ask this question
3201 first, before target_preopen has a chance to kill anything. */
c35b1492 3202 if (remote_desc != NULL && !have_inferiors ())
2d717e4f
DJ
3203 {
3204 if (!from_tty
3205 || query (_("Already connected to a remote target. Disconnect? ")))
3206 pop_target ();
3207 else
3208 error (_("Still connected."));
3209 }
3210
c906108c
SS
3211 target_preopen (from_tty);
3212
3213 unpush_target (target);
3214
2d717e4f
DJ
3215 /* This time without a query. If we were connected to an
3216 extended-remote target and target_preopen killed the running
3217 process, we may still be connected. If we are starting "target
3218 remote" now, the extended-remote target will not have been
3219 removed by unpush_target. */
c35b1492 3220 if (remote_desc != NULL && !have_inferiors ())
2d717e4f
DJ
3221 pop_target ();
3222
89be2091
DJ
3223 /* Make sure we send the passed signals list the next time we resume. */
3224 xfree (last_pass_packet);
3225 last_pass_packet = NULL;
3226
ad9a8f3f 3227 remote_fileio_reset ();
1dd41f16
NS
3228 reopen_exec_file ();
3229 reread_symbols ();
3230
9db8d71f 3231 remote_desc = remote_serial_open (name);
c906108c
SS
3232 if (!remote_desc)
3233 perror_with_name (name);
3234
3235 if (baud_rate != -1)
3236 {
2cd58942 3237 if (serial_setbaudrate (remote_desc, baud_rate))
c906108c 3238 {
9b74d5d3
KB
3239 /* The requested speed could not be set. Error out to
3240 top level after closing remote_desc. Take care to
3241 set remote_desc to NULL to avoid closing remote_desc
3242 more than once. */
2cd58942 3243 serial_close (remote_desc);
9b74d5d3 3244 remote_desc = NULL;
c906108c
SS
3245 perror_with_name (name);
3246 }
3247 }
3248
2cd58942 3249 serial_raw (remote_desc);
c906108c
SS
3250
3251 /* If there is something sitting in the buffer we might take it as a
3252 response to a command, which would be bad. */
2cd58942 3253 serial_flush_input (remote_desc);
c906108c
SS
3254
3255 if (from_tty)
3256 {
3257 puts_filtered ("Remote debugging using ");
3258 puts_filtered (name);
3259 puts_filtered ("\n");
3260 }
23860348 3261 push_target (target); /* Switch to using remote target now. */
c906108c 3262
74531fed
PA
3263 /* Register extra event sources in the event loop. */
3264 remote_async_inferior_event_token
3265 = create_async_event_handler (remote_async_inferior_event_handler,
3266 NULL);
3267 remote_async_get_pending_events_token
3268 = create_async_event_handler (remote_async_get_pending_events_handler,
3269 NULL);
3270
be2a5f71
DJ
3271 /* Reset the target state; these things will be queried either by
3272 remote_query_supported or as they are needed. */
d471ea57 3273 init_all_packet_configs ();
74531fed 3274 rs->cached_wait_status = 0;
be2a5f71 3275 rs->explicit_packet_size = 0;
a6f3e723 3276 rs->noack_mode = 0;
82f73884
PA
3277 rs->multi_process_aware = 0;
3278 rs->extended = extended_p;
74531fed 3279 rs->non_stop_aware = 0;
e24a49d8 3280 rs->waiting_for_stop_reply = 0;
802188a7 3281
79d7f229
PA
3282 general_thread = not_sent_ptid;
3283 continue_thread = not_sent_ptid;
c906108c 3284
9d1f7ab2
MS
3285 /* Probe for ability to use "ThreadInfo" query, as required. */
3286 use_threadinfo_query = 1;
3287 use_threadextra_query = 1;
3288
c6ebd6cf 3289 if (target_async_permitted)
92d1e331 3290 {
23860348 3291 /* With this target we start out by owning the terminal. */
92d1e331
DJ
3292 remote_async_terminal_ours_p = 1;
3293
3294 /* FIXME: cagney/1999-09-23: During the initial connection it is
3295 assumed that the target is already ready and able to respond to
3296 requests. Unfortunately remote_start_remote() eventually calls
3297 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
3298 around this. Eventually a mechanism that allows
3299 wait_for_inferior() to expect/get timeouts will be
23860348 3300 implemented. */
92d1e331
DJ
3301 wait_forever_enabled_p = 0;
3302 }
3303
23860348 3304 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 3305 no_shared_libraries (NULL, 0);
f78f6cf1 3306
74531fed
PA
3307 /* Start afresh. */
3308 init_thread_list ();
3309
36918e70 3310 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
3311 target (we'd otherwise be in an inconsistent state) and then
3312 propogate the error on up the exception chain. This ensures that
3313 the caller doesn't stumble along blindly assuming that the
3314 function succeeded. The CLI doesn't have this problem but other
3315 UI's, such as MI do.
36918e70
AC
3316
3317 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
3318 this function should return an error indication letting the
ce2826aa 3319 caller restore the previous state. Unfortunately the command
36918e70
AC
3320 ``target remote'' is directly wired to this function making that
3321 impossible. On a positive note, the CLI side of this problem has
3322 been fixed - the function set_cmd_context() makes it possible for
3323 all the ``target ....'' commands to share a common callback
3324 function. See cli-dump.c. */
109c3e39 3325 {
2d717e4f
DJ
3326 struct gdb_exception ex;
3327 struct start_remote_args args;
3328
3329 args.from_tty = from_tty;
3330 args.target = target;
3331 args.extended_p = extended_p;
3332
3333 ex = catch_exception (uiout, remote_start_remote, &args, RETURN_MASK_ALL);
109c3e39
AC
3334 if (ex.reason < 0)
3335 {
c8d104ad
PA
3336 /* Pop the partially set up target - unless something else did
3337 already before throwing the exception. */
3338 if (remote_desc != NULL)
3339 pop_target ();
c6ebd6cf 3340 if (target_async_permitted)
109c3e39
AC
3341 wait_forever_enabled_p = 1;
3342 throw_exception (ex);
3343 }
3344 }
c906108c 3345
c6ebd6cf 3346 if (target_async_permitted)
92d1e331 3347 wait_forever_enabled_p = 1;
43ff13b4
JM
3348}
3349
c906108c
SS
3350/* This takes a program previously attached to and detaches it. After
3351 this is done, GDB can be used to debug some other program. We
3352 better not have left any breakpoints in the target program or it'll
3353 die when it hits one. */
3354
3355static void
2d717e4f 3356remote_detach_1 (char *args, int from_tty, int extended)
c906108c 3357{
82f73884 3358 int pid = ptid_get_pid (inferior_ptid);
d01949b6 3359 struct remote_state *rs = get_remote_state ();
c906108c
SS
3360
3361 if (args)
8a3fe4f8 3362 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 3363
2d717e4f
DJ
3364 if (!target_has_execution)
3365 error (_("No process to detach from."));
3366
c906108c 3367 /* Tell the remote target to detach. */
82f73884
PA
3368 if (remote_multi_process_p (rs))
3369 sprintf (rs->buf, "D;%x", pid);
3370 else
3371 strcpy (rs->buf, "D");
3372
4ddda9b5
PA
3373 putpkt (rs->buf);
3374 getpkt (&rs->buf, &rs->buf_size, 0);
3375
82f73884
PA
3376 if (rs->buf[0] == 'O' && rs->buf[1] == 'K')
3377 ;
3378 else if (rs->buf[0] == '\0')
3379 error (_("Remote doesn't know how to detach"));
3380 else
4ddda9b5 3381 error (_("Can't detach process."));
c906108c 3382
c906108c 3383 if (from_tty)
2d717e4f 3384 {
82f73884
PA
3385 if (remote_multi_process_p (rs))
3386 printf_filtered (_("Detached from remote %s.\n"),
3387 target_pid_to_str (pid_to_ptid (pid)));
2d717e4f 3388 else
82f73884
PA
3389 {
3390 if (extended)
3391 puts_filtered (_("Detached from remote process.\n"));
3392 else
3393 puts_filtered (_("Ending remote debugging.\n"));
3394 }
2d717e4f 3395 }
82f73884 3396
74531fed 3397 discard_pending_stop_replies (pid);
82f73884 3398 target_mourn_inferior ();
2d717e4f
DJ
3399}
3400
3401static void
136d6dae 3402remote_detach (struct target_ops *ops, char *args, int from_tty)
2d717e4f
DJ
3403{
3404 remote_detach_1 (args, from_tty, 0);
3405}
3406
3407static void
136d6dae 3408extended_remote_detach (struct target_ops *ops, char *args, int from_tty)
2d717e4f
DJ
3409{
3410 remote_detach_1 (args, from_tty, 1);
c906108c
SS
3411}
3412
6ad8ae5c
DJ
3413/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
3414
43ff13b4 3415static void
597320e7 3416remote_disconnect (struct target_ops *target, char *args, int from_tty)
43ff13b4 3417{
43ff13b4 3418 if (args)
2d717e4f 3419 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 3420
2d717e4f
DJ
3421 /* Make sure we unpush even the extended remote targets; mourn
3422 won't do it. So call remote_mourn_1 directly instead of
3423 target_mourn_inferior. */
3424 remote_mourn_1 (target);
3425
43ff13b4
JM
3426 if (from_tty)
3427 puts_filtered ("Ending remote debugging.\n");
3428}
3429
2d717e4f
DJ
3430/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
3431 be chatty about it. */
3432
3433static void
3434extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
3435{
3436 struct remote_state *rs = get_remote_state ();
be86555c 3437 int pid;
2d717e4f 3438 char *dummy;
96ef3384 3439 char *wait_status = NULL;
2d717e4f
DJ
3440
3441 if (!args)
3442 error_no_arg (_("process-id to attach"));
3443
3444 dummy = args;
3445 pid = strtol (args, &dummy, 0);
3446 /* Some targets don't set errno on errors, grrr! */
3447 if (pid == 0 && args == dummy)
3448 error (_("Illegal process-id: %s."), args);
3449
3450 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3451 error (_("This target does not support attaching to a process"));
3452
3453 sprintf (rs->buf, "vAttach;%x", pid);
3454 putpkt (rs->buf);
3455 getpkt (&rs->buf, &rs->buf_size, 0);
3456
3457 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
3458 {
3459 if (from_tty)
3460 printf_unfiltered (_("Attached to %s\n"),
3461 target_pid_to_str (pid_to_ptid (pid)));
3462
74531fed
PA
3463 if (!non_stop)
3464 {
3465 /* Save the reply for later. */
3466 wait_status = alloca (strlen (rs->buf) + 1);
3467 strcpy (wait_status, rs->buf);
3468 }
3469 else if (strcmp (rs->buf, "OK") != 0)
3470 error (_("Attaching to %s failed with: %s"),
3471 target_pid_to_str (pid_to_ptid (pid)),
3472 rs->buf);
2d717e4f
DJ
3473 }
3474 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
3475 error (_("This target does not support attaching to a process"));
3476 else
3477 error (_("Attaching to %s failed"),
3478 target_pid_to_str (pid_to_ptid (pid)));
3479
bad34192
PA
3480 remote_add_inferior (pid, 1);
3481
2d717e4f 3482 inferior_ptid = pid_to_ptid (pid);
79d7f229 3483
bad34192
PA
3484 if (non_stop)
3485 {
3486 struct thread_info *thread;
79d7f229 3487
bad34192
PA
3488 /* Get list of threads. */
3489 remote_threads_info (target);
82f73884 3490
bad34192
PA
3491 thread = first_thread_of_process (pid);
3492 if (thread)
3493 inferior_ptid = thread->ptid;
3494 else
3495 inferior_ptid = pid_to_ptid (pid);
3496
3497 /* Invalidate our notion of the remote current thread. */
3498 record_currthread (minus_one_ptid);
3499 }
74531fed 3500 else
bad34192
PA
3501 {
3502 /* Now, if we have thread information, update inferior_ptid. */
3503 inferior_ptid = remote_current_thread (inferior_ptid);
3504
3505 /* Add the main thread to the thread list. */
3506 add_thread_silent (inferior_ptid);
3507 }
c0a2216e 3508
96ef3384
UW
3509 /* Next, if the target can specify a description, read it. We do
3510 this before anything involving memory or registers. */
3511 target_find_description ();
3512
74531fed
PA
3513 if (!non_stop)
3514 {
3515 /* Use the previously fetched status. */
3516 gdb_assert (wait_status != NULL);
3517
3518 if (target_can_async_p ())
3519 {
3520 struct stop_reply *stop_reply;
3521 struct cleanup *old_chain;
3522
3523 stop_reply = stop_reply_xmalloc ();
3524 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
3525 remote_parse_stop_reply (wait_status, stop_reply);
3526 discard_cleanups (old_chain);
3527 push_stop_reply (stop_reply);
3528
3529 target_async (inferior_event_handler, 0);
3530 }
3531 else
3532 {
3533 gdb_assert (wait_status != NULL);
3534 strcpy (rs->buf, wait_status);
3535 rs->cached_wait_status = 1;
3536 }
3537 }
3538 else
3539 gdb_assert (wait_status == NULL);
2d717e4f
DJ
3540}
3541
3542static void
136d6dae 3543extended_remote_attach (struct target_ops *ops, char *args, int from_tty)
2d717e4f 3544{
136d6dae 3545 extended_remote_attach_1 (ops, args, from_tty);
2d717e4f
DJ
3546}
3547
c906108c
SS
3548/* Convert hex digit A to a number. */
3549
30559e10 3550static int
fba45db2 3551fromhex (int a)
c906108c
SS
3552{
3553 if (a >= '0' && a <= '9')
3554 return a - '0';
3555 else if (a >= 'a' && a <= 'f')
3556 return a - 'a' + 10;
3557 else if (a >= 'A' && a <= 'F')
3558 return a - 'A' + 10;
c5aa993b 3559 else
8a3fe4f8 3560 error (_("Reply contains invalid hex digit %d"), a);
c906108c
SS
3561}
3562
30559e10 3563static int
cfd77fa1 3564hex2bin (const char *hex, gdb_byte *bin, int count)
30559e10
MS
3565{
3566 int i;
3567
30559e10
MS
3568 for (i = 0; i < count; i++)
3569 {
3570 if (hex[0] == 0 || hex[1] == 0)
3571 {
3572 /* Hex string is short, or of uneven length.
23860348 3573 Return the count that has been converted so far. */
30559e10
MS
3574 return i;
3575 }
3576 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
3577 hex += 2;
3578 }
3579 return i;
3580}
3581
c906108c
SS
3582/* Convert number NIB to a hex digit. */
3583
3584static int
fba45db2 3585tohex (int nib)
c906108c
SS
3586{
3587 if (nib < 10)
c5aa993b 3588 return '0' + nib;
c906108c 3589 else
c5aa993b 3590 return 'a' + nib - 10;
c906108c 3591}
30559e10
MS
3592
3593static int
cfd77fa1 3594bin2hex (const gdb_byte *bin, char *hex, int count)
30559e10
MS
3595{
3596 int i;
23860348 3597 /* May use a length, or a nul-terminated string as input. */
30559e10 3598 if (count == 0)
cfd77fa1 3599 count = strlen ((char *) bin);
30559e10
MS
3600
3601 for (i = 0; i < count; i++)
3602 {
3603 *hex++ = tohex ((*bin >> 4) & 0xf);
3604 *hex++ = tohex (*bin++ & 0xf);
3605 }
3606 *hex = 0;
3607 return i;
3608}
c906108c 3609\f
506fb367
DJ
3610/* Check for the availability of vCont. This function should also check
3611 the response. */
c906108c
SS
3612
3613static void
6d820c5c 3614remote_vcont_probe (struct remote_state *rs)
c906108c 3615{
2e9f7625 3616 char *buf;
6d820c5c 3617
2e9f7625
DJ
3618 strcpy (rs->buf, "vCont?");
3619 putpkt (rs->buf);
6d820c5c 3620 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3621 buf = rs->buf;
c906108c 3622
506fb367
DJ
3623 /* Make sure that the features we assume are supported. */
3624 if (strncmp (buf, "vCont", 5) == 0)
3625 {
3626 char *p = &buf[5];
3627 int support_s, support_S, support_c, support_C;
3628
3629 support_s = 0;
3630 support_S = 0;
3631 support_c = 0;
3632 support_C = 0;
74531fed 3633 rs->support_vCont_t = 0;
506fb367
DJ
3634 while (p && *p == ';')
3635 {
3636 p++;
3637 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
3638 support_s = 1;
3639 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
3640 support_S = 1;
3641 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
3642 support_c = 1;
3643 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
3644 support_C = 1;
74531fed
PA
3645 else if (*p == 't' && (*(p + 1) == ';' || *(p + 1) == 0))
3646 rs->support_vCont_t = 1;
506fb367
DJ
3647
3648 p = strchr (p, ';');
3649 }
c906108c 3650
506fb367
DJ
3651 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3652 BUF will make packet_ok disable the packet. */
3653 if (!support_s || !support_S || !support_c || !support_C)
3654 buf[0] = 0;
3655 }
c906108c 3656
444abaca 3657 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 3658}
c906108c 3659
0d8f58ca
PA
3660/* Helper function for building "vCont" resumptions. Write a
3661 resumption to P. ENDP points to one-passed-the-end of the buffer
3662 we're allowed to write to. Returns BUF+CHARACTERS_WRITTEN. The
3663 thread to be resumed is PTID; STEP and SIGGNAL indicate whether the
3664 resumed thread should be single-stepped and/or signalled. If PTID
3665 equals minus_one_ptid, then all threads are resumed; if PTID
3666 represents a process, then all threads of the process are resumed;
3667 the thread to be stepped and/or signalled is given in the global
3668 INFERIOR_PTID. */
3669
3670static char *
3671append_resumption (char *p, char *endp,
3672 ptid_t ptid, int step, enum target_signal siggnal)
3673{
3674 struct remote_state *rs = get_remote_state ();
3675
3676 if (step && siggnal != TARGET_SIGNAL_0)
3677 p += xsnprintf (p, endp - p, ";S%02x", siggnal);
3678 else if (step)
3679 p += xsnprintf (p, endp - p, ";s");
3680 else if (siggnal != TARGET_SIGNAL_0)
3681 p += xsnprintf (p, endp - p, ";C%02x", siggnal);
3682 else
3683 p += xsnprintf (p, endp - p, ";c");
3684
3685 if (remote_multi_process_p (rs) && ptid_is_pid (ptid))
3686 {
3687 ptid_t nptid;
3688
3689 /* All (-1) threads of process. */
3690 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3691
3692 p += xsnprintf (p, endp - p, ":");
3693 p = write_ptid (p, endp, nptid);
3694 }
3695 else if (!ptid_equal (ptid, minus_one_ptid))
3696 {
3697 p += xsnprintf (p, endp - p, ":");
3698 p = write_ptid (p, endp, ptid);
3699 }
3700
3701 return p;
3702}
3703
506fb367
DJ
3704/* Resume the remote inferior by using a "vCont" packet. The thread
3705 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
3706 resumed thread should be single-stepped and/or signalled. If PTID
3707 equals minus_one_ptid, then all threads are resumed; the thread to
3708 be stepped and/or signalled is given in the global INFERIOR_PTID.
3709 This function returns non-zero iff it resumes the inferior.
44eaed12 3710
506fb367
DJ
3711 This function issues a strict subset of all possible vCont commands at the
3712 moment. */
44eaed12 3713
506fb367
DJ
3714static int
3715remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
3716{
3717 struct remote_state *rs = get_remote_state ();
82f73884
PA
3718 char *p;
3719 char *endp;
44eaed12 3720
444abaca 3721 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
6d820c5c 3722 remote_vcont_probe (rs);
44eaed12 3723
444abaca 3724 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
6d820c5c 3725 return 0;
44eaed12 3726
82f73884
PA
3727 p = rs->buf;
3728 endp = rs->buf + get_remote_packet_size ();
3729
506fb367
DJ
3730 /* If we could generate a wider range of packets, we'd have to worry
3731 about overflowing BUF. Should there be a generic
3732 "multi-part-packet" packet? */
3733
0d8f58ca
PA
3734 p += xsnprintf (p, endp - p, "vCont");
3735
79d7f229 3736 if (ptid_equal (ptid, magic_null_ptid))
c906108c 3737 {
79d7f229
PA
3738 /* MAGIC_NULL_PTID means that we don't have any active threads,
3739 so we don't have any TID numbers the inferior will
3740 understand. Make sure to only send forms that do not specify
3741 a TID. */
0d8f58ca 3742 p = append_resumption (p, endp, minus_one_ptid, step, siggnal);
506fb367 3743 }
0d8f58ca 3744 else if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
506fb367 3745 {
0d8f58ca
PA
3746 /* Resume all threads (of all processes, or of a single
3747 process), with preference for INFERIOR_PTID. This assumes
3748 inferior_ptid belongs to the set of all threads we are about
3749 to resume. */
3750 if (step || siggnal != TARGET_SIGNAL_0)
82f73884 3751 {
0d8f58ca
PA
3752 /* Step inferior_ptid, with or without signal. */
3753 p = append_resumption (p, endp, inferior_ptid, step, siggnal);
82f73884 3754 }
0d8f58ca
PA
3755
3756 /* And continue others without a signal. */
3757 p = append_resumption (p, endp, ptid, /*step=*/ 0, TARGET_SIGNAL_0);
c906108c
SS
3758 }
3759 else
506fb367
DJ
3760 {
3761 /* Scheduler locking; resume only PTID. */
0d8f58ca 3762 p = append_resumption (p, endp, ptid, step, siggnal);
506fb367 3763 }
c906108c 3764
82f73884
PA
3765 gdb_assert (strlen (rs->buf) < get_remote_packet_size ());
3766 putpkt (rs->buf);
506fb367 3767
74531fed
PA
3768 if (non_stop)
3769 {
3770 /* In non-stop, the stub replies to vCont with "OK". The stop
3771 reply will be reported asynchronously by means of a `%Stop'
3772 notification. */
3773 getpkt (&rs->buf, &rs->buf_size, 0);
3774 if (strcmp (rs->buf, "OK") != 0)
3775 error (_("Unexpected vCont reply in non-stop mode: %s"), rs->buf);
3776 }
3777
506fb367 3778 return 1;
c906108c 3779}
43ff13b4 3780
506fb367
DJ
3781/* Tell the remote machine to resume. */
3782
3783static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
3784
3785static int last_sent_step;
3786
43ff13b4 3787static void
28439f5e
PA
3788remote_resume (struct target_ops *ops,
3789 ptid_t ptid, int step, enum target_signal siggnal)
43ff13b4 3790{
d01949b6 3791 struct remote_state *rs = get_remote_state ();
2e9f7625 3792 char *buf;
43ff13b4 3793
43ff13b4
JM
3794 last_sent_signal = siggnal;
3795 last_sent_step = step;
3796
89be2091
DJ
3797 /* Update the inferior on signals to silently pass, if they've changed. */
3798 remote_pass_signals ();
3799
506fb367
DJ
3800 /* The vCont packet doesn't need to specify threads via Hc. */
3801 if (remote_vcont_resume (ptid, step, siggnal))
75c99385 3802 goto done;
506fb367 3803
79d7f229
PA
3804 /* All other supported resume packets do use Hc, so set the continue
3805 thread. */
3806 if (ptid_equal (ptid, minus_one_ptid))
3807 set_continue_thread (any_thread_ptid);
506fb367 3808 else
79d7f229 3809 set_continue_thread (ptid);
506fb367 3810
2e9f7625 3811 buf = rs->buf;
b2175913
MS
3812 if (execution_direction == EXEC_REVERSE)
3813 {
3814 /* We don't pass signals to the target in reverse exec mode. */
3815 if (info_verbose && siggnal != TARGET_SIGNAL_0)
3816 warning (" - Can't pass signal %d to target in reverse: ignored.\n",
3817 siggnal);
3818 strcpy (buf, step ? "bs" : "bc");
3819 }
3820 else if (siggnal != TARGET_SIGNAL_0)
43ff13b4
JM
3821 {
3822 buf[0] = step ? 'S' : 'C';
c5aa993b 3823 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
506fb367 3824 buf[2] = tohex (((int) siggnal) & 0xf);
43ff13b4
JM
3825 buf[3] = '\0';
3826 }
3827 else
c5aa993b 3828 strcpy (buf, step ? "s" : "c");
506fb367 3829
44eaed12 3830 putpkt (buf);
43ff13b4 3831
75c99385 3832 done:
2acceee2
JM
3833 /* We are about to start executing the inferior, let's register it
3834 with the event loop. NOTE: this is the one place where all the
3835 execution commands end up. We could alternatively do this in each
23860348 3836 of the execution commands in infcmd.c. */
2acceee2
JM
3837 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3838 into infcmd.c in order to allow inferior function calls to work
23860348 3839 NOT asynchronously. */
362646f5 3840 if (target_can_async_p ())
2acceee2 3841 target_async (inferior_event_handler, 0);
e24a49d8
PA
3842
3843 /* We've just told the target to resume. The remote server will
3844 wait for the inferior to stop, and then send a stop reply. In
3845 the mean time, we can't start another command/query ourselves
74531fed
PA
3846 because the stub wouldn't be ready to process it. This applies
3847 only to the base all-stop protocol, however. In non-stop (which
3848 only supports vCont), the stub replies with an "OK", and is
3849 immediate able to process further serial input. */
3850 if (!non_stop)
3851 rs->waiting_for_stop_reply = 1;
43ff13b4 3852}
c906108c 3853\f
43ff13b4
JM
3854
3855/* Set up the signal handler for SIGINT, while the target is
23860348 3856 executing, ovewriting the 'regular' SIGINT signal handler. */
43ff13b4 3857static void
fba45db2 3858initialize_sigint_signal_handler (void)
43ff13b4 3859{
43ff13b4
JM
3860 signal (SIGINT, handle_remote_sigint);
3861}
3862
23860348 3863/* Signal handler for SIGINT, while the target is executing. */
43ff13b4 3864static void
fba45db2 3865handle_remote_sigint (int sig)
43ff13b4
JM
3866{
3867 signal (sig, handle_remote_sigint_twice);
43ff13b4
JM
3868 mark_async_signal_handler_wrapper (sigint_remote_token);
3869}
3870
3871/* Signal handler for SIGINT, installed after SIGINT has already been
3872 sent once. It will take effect the second time that the user sends
23860348 3873 a ^C. */
43ff13b4 3874static void
fba45db2 3875handle_remote_sigint_twice (int sig)
43ff13b4 3876{
b803fb0f 3877 signal (sig, handle_remote_sigint);
43ff13b4
JM
3878 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
3879}
3880
6426a772 3881/* Perform the real interruption of the target execution, in response
23860348 3882 to a ^C. */
c5aa993b 3883static void
fba45db2 3884async_remote_interrupt (gdb_client_data arg)
43ff13b4
JM
3885{
3886 if (remote_debug)
3887 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
3888
94cc34af 3889 target_stop (inferior_ptid);
43ff13b4
JM
3890}
3891
3892/* Perform interrupt, if the first attempt did not succeed. Just give
23860348 3893 up on the target alltogether. */
2df3850c 3894void
fba45db2 3895async_remote_interrupt_twice (gdb_client_data arg)
43ff13b4 3896{
2df3850c
JM
3897 if (remote_debug)
3898 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
b803fb0f
DJ
3899
3900 interrupt_query ();
43ff13b4
JM
3901}
3902
3903/* Reinstall the usual SIGINT handlers, after the target has
23860348 3904 stopped. */
6426a772
JM
3905static void
3906cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
3907{
3908 signal (SIGINT, handle_sigint);
43ff13b4
JM
3909}
3910
c906108c
SS
3911/* Send ^C to target to halt it. Target will respond, and send us a
3912 packet. */
507f3c78 3913static void (*ofunc) (int);
c906108c 3914
7a292a7a
SS
3915/* The command line interface's stop routine. This function is installed
3916 as a signal handler for SIGINT. The first time a user requests a
3917 stop, we call remote_stop to send a break or ^C. If there is no
3918 response from the target (it didn't stop when the user requested it),
23860348 3919 we ask the user if he'd like to detach from the target. */
c906108c 3920static void
fba45db2 3921remote_interrupt (int signo)
c906108c 3922{
23860348 3923 /* If this doesn't work, try more severe steps. */
7a292a7a
SS
3924 signal (signo, remote_interrupt_twice);
3925
b803fb0f 3926 gdb_call_async_signal_handler (sigint_remote_token, 1);
7a292a7a
SS
3927}
3928
3929/* The user typed ^C twice. */
3930
3931static void
fba45db2 3932remote_interrupt_twice (int signo)
7a292a7a
SS
3933{
3934 signal (signo, ofunc);
b803fb0f 3935 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
c906108c
SS
3936 signal (signo, remote_interrupt);
3937}
7a292a7a 3938
74531fed
PA
3939/* Non-stop version of target_stop. Uses `vCont;t' to stop a remote
3940 thread, all threads of a remote process, or all threads of all
3941 processes. */
3942
3943static void
3944remote_stop_ns (ptid_t ptid)
3945{
3946 struct remote_state *rs = get_remote_state ();
3947 char *p = rs->buf;
3948 char *endp = rs->buf + get_remote_packet_size ();
74531fed
PA
3949
3950 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
3951 remote_vcont_probe (rs);
3952
3953 if (!rs->support_vCont_t)
3954 error (_("Remote server does not support stopping threads"));
3955
f91d3df5
PA
3956 if (ptid_equal (ptid, minus_one_ptid)
3957 || (!remote_multi_process_p (rs) && ptid_is_pid (ptid)))
74531fed
PA
3958 p += xsnprintf (p, endp - p, "vCont;t");
3959 else
3960 {
3961 ptid_t nptid;
3962
74531fed
PA
3963 p += xsnprintf (p, endp - p, "vCont;t:");
3964
3965 if (ptid_is_pid (ptid))
3966 /* All (-1) threads of process. */
3967 nptid = ptid_build (ptid_get_pid (ptid), 0, -1);
3968 else
3969 {
3970 /* Small optimization: if we already have a stop reply for
3971 this thread, no use in telling the stub we want this
3972 stopped. */
3973 if (peek_stop_reply (ptid))
3974 return;
3975
3976 nptid = ptid;
3977 }
3978
3979 p = write_ptid (p, endp, nptid);
3980 }
3981
3982 /* In non-stop, we get an immediate OK reply. The stop reply will
3983 come in asynchronously by notification. */
3984 putpkt (rs->buf);
3985 getpkt (&rs->buf, &rs->buf_size, 0);
3986 if (strcmp (rs->buf, "OK") != 0)
3987 error (_("Stopping %s failed: %s"), target_pid_to_str (ptid), rs->buf);
3988}
3989
3990/* All-stop version of target_stop. Sends a break or a ^C to stop the
3991 remote target. It is undefined which thread of which process
3992 reports the stop. */
3993
3994static void
3995remote_stop_as (ptid_t ptid)
3996{
3997 struct remote_state *rs = get_remote_state ();
3998
3999 /* If the inferior is stopped already, but the core didn't know
4000 about it yet, just ignore the request. The cached wait status
4001 will be collected in remote_wait. */
4002 if (rs->cached_wait_status)
4003 return;
4004
4005 /* Send a break or a ^C, depending on user preference. */
4006
4007 if (remote_break)
4008 serial_send_break (remote_desc);
4009 else
4010 serial_write (remote_desc, "\003", 1);
4011}
4012
7a292a7a
SS
4013/* This is the generic stop called via the target vector. When a target
4014 interrupt is requested, either by the command line or the GUI, we
23860348 4015 will eventually end up here. */
74531fed 4016
c906108c 4017static void
94cc34af 4018remote_stop (ptid_t ptid)
c906108c 4019{
7a292a7a 4020 if (remote_debug)
0f71a2f6 4021 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 4022
74531fed
PA
4023 if (non_stop)
4024 remote_stop_ns (ptid);
c906108c 4025 else
74531fed 4026 remote_stop_as (ptid);
c906108c
SS
4027}
4028
4029/* Ask the user what to do when an interrupt is received. */
4030
4031static void
fba45db2 4032interrupt_query (void)
c906108c
SS
4033{
4034 target_terminal_ours ();
4035
74531fed 4036 if (target_can_async_p ())
c906108c 4037 {
74531fed 4038 signal (SIGINT, handle_sigint);
315a522e 4039 deprecated_throw_reason (RETURN_QUIT);
c906108c 4040 }
74531fed
PA
4041 else
4042 {
9e2f0ad4
HZ
4043 if (query (_("Interrupted while waiting for the program.\n\
4044Give up (and stop debugging it)? ")))
74531fed
PA
4045 {
4046 pop_target ();
4047 deprecated_throw_reason (RETURN_QUIT);
4048 }
4049 }
c906108c
SS
4050
4051 target_terminal_inferior ();
4052}
4053
6426a772
JM
4054/* Enable/disable target terminal ownership. Most targets can use
4055 terminal groups to control terminal ownership. Remote targets are
4056 different in that explicit transfer of ownership to/from GDB/target
23860348 4057 is required. */
6426a772
JM
4058
4059static void
75c99385 4060remote_terminal_inferior (void)
6426a772 4061{
c6ebd6cf 4062 if (!target_async_permitted)
75c99385
PA
4063 /* Nothing to do. */
4064 return;
4065
d9d2d8b6
PA
4066 /* FIXME: cagney/1999-09-27: Make calls to target_terminal_*()
4067 idempotent. The event-loop GDB talking to an asynchronous target
4068 with a synchronous command calls this function from both
4069 event-top.c and infrun.c/infcmd.c. Once GDB stops trying to
4070 transfer the terminal to the target when it shouldn't this guard
4071 can go away. */
6426a772
JM
4072 if (!remote_async_terminal_ours_p)
4073 return;
4074 delete_file_handler (input_fd);
4075 remote_async_terminal_ours_p = 0;
4076 initialize_sigint_signal_handler ();
4077 /* NOTE: At this point we could also register our selves as the
4078 recipient of all input. Any characters typed could then be
23860348 4079 passed on down to the target. */
6426a772
JM
4080}
4081
4082static void
75c99385 4083remote_terminal_ours (void)
6426a772 4084{
c6ebd6cf 4085 if (!target_async_permitted)
75c99385
PA
4086 /* Nothing to do. */
4087 return;
4088
4089 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
4090 if (remote_async_terminal_ours_p)
4091 return;
4092 cleanup_sigint_signal_handler (NULL);
4093 add_file_handler (input_fd, stdin_event_handler, 0);
4094 remote_async_terminal_ours_p = 1;
4095}
4096
c906108c 4097void
917317f4 4098remote_console_output (char *msg)
c906108c
SS
4099{
4100 char *p;
4101
c5aa993b 4102 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
4103 {
4104 char tb[2];
4105 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
4106 tb[0] = c;
4107 tb[1] = 0;
43ff13b4 4108 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 4109 }
74531fed
PA
4110 gdb_flush (gdb_stdtarg);
4111 }
4112
4113typedef struct cached_reg
4114{
4115 int num;
4116 gdb_byte data[MAX_REGISTER_SIZE];
4117} cached_reg_t;
4118
4119DEF_VEC_O(cached_reg_t);
4120
4121struct stop_reply
4122{
4123 struct stop_reply *next;
4124
4125 ptid_t ptid;
4126
4127 struct target_waitstatus ws;
4128
4129 VEC(cached_reg_t) *regcache;
4130
4131 int stopped_by_watchpoint_p;
4132 CORE_ADDR watch_data_address;
4133
4134 int solibs_changed;
4135 int replay_event;
4136};
4137
4138/* The list of already fetched and acknowledged stop events. */
4139static struct stop_reply *stop_reply_queue;
4140
4141static struct stop_reply *
4142stop_reply_xmalloc (void)
4143{
4144 struct stop_reply *r = XMALLOC (struct stop_reply);
4145 r->next = NULL;
4146 return r;
4147}
4148
4149static void
4150stop_reply_xfree (struct stop_reply *r)
4151{
4152 if (r != NULL)
4153 {
4154 VEC_free (cached_reg_t, r->regcache);
4155 xfree (r);
4156 }
c906108c
SS
4157}
4158
74531fed
PA
4159/* Discard all pending stop replies of inferior PID. If PID is -1,
4160 discard everything. */
c906108c 4161
74531fed
PA
4162static void
4163discard_pending_stop_replies (int pid)
c906108c 4164{
74531fed 4165 struct stop_reply *prev = NULL, *reply, *next;
c906108c 4166
74531fed
PA
4167 /* Discard the in-flight notification. */
4168 if (pending_stop_reply != NULL
4169 && (pid == -1
4170 || ptid_get_pid (pending_stop_reply->ptid) == pid))
4171 {
4172 stop_reply_xfree (pending_stop_reply);
4173 pending_stop_reply = NULL;
4174 }
c906108c 4175
74531fed
PA
4176 /* Discard the stop replies we have already pulled with
4177 vStopped. */
4178 for (reply = stop_reply_queue; reply; reply = next)
43ff13b4 4179 {
74531fed
PA
4180 next = reply->next;
4181 if (pid == -1
4182 || ptid_get_pid (reply->ptid) == pid)
9fa2223d 4183 {
74531fed
PA
4184 if (reply == stop_reply_queue)
4185 stop_reply_queue = reply->next;
4186 else
4187 prev->next = reply->next;
4188
4189 stop_reply_xfree (reply);
9fa2223d 4190 }
74531fed
PA
4191 else
4192 prev = reply;
c8e38a49 4193 }
74531fed 4194}
43ff13b4 4195
74531fed 4196/* Cleanup wrapper. */
2e9f7625 4197
74531fed
PA
4198static void
4199do_stop_reply_xfree (void *arg)
4200{
4201 struct stop_reply *r = arg;
4202 stop_reply_xfree (r);
4203}
75c99385 4204
74531fed
PA
4205/* Look for a queued stop reply belonging to PTID. If one is found,
4206 remove it from the queue, and return it. Returns NULL if none is
4207 found. If there are still queued events left to process, tell the
4208 event loop to get back to target_wait soon. */
e24a49d8 4209
74531fed
PA
4210static struct stop_reply *
4211queued_stop_reply (ptid_t ptid)
4212{
4213 struct stop_reply *it, *prev;
4214 struct stop_reply head;
4215
4216 head.next = stop_reply_queue;
4217 prev = &head;
4218
4219 it = head.next;
4220
4221 if (!ptid_equal (ptid, minus_one_ptid))
4222 for (; it; prev = it, it = it->next)
4223 if (ptid_equal (ptid, it->ptid))
4224 break;
4225
4226 if (it)
c8e38a49 4227 {
74531fed
PA
4228 prev->next = it->next;
4229 it->next = NULL;
4230 }
e24a49d8 4231
74531fed
PA
4232 stop_reply_queue = head.next;
4233
4234 if (stop_reply_queue)
4235 /* There's still at least an event left. */
4236 mark_async_event_handler (remote_async_inferior_event_token);
4237
4238 return it;
4239}
4240
4241/* Push a fully parsed stop reply in the stop reply queue. Since we
4242 know that we now have at least one queued event left to pass to the
4243 core side, tell the event loop to get back to target_wait soon. */
4244
4245static void
4246push_stop_reply (struct stop_reply *new_event)
4247{
4248 struct stop_reply *event;
4249
4250 if (stop_reply_queue)
4251 {
4252 for (event = stop_reply_queue;
4253 event && event->next;
4254 event = event->next)
4255 ;
4256
4257 event->next = new_event;
4258 }
4259 else
4260 stop_reply_queue = new_event;
4261
4262 mark_async_event_handler (remote_async_inferior_event_token);
4263}
4264
4265/* Returns true if we have a stop reply for PTID. */
4266
4267static int
4268peek_stop_reply (ptid_t ptid)
4269{
4270 struct stop_reply *it;
4271
4272 for (it = stop_reply_queue; it; it = it->next)
4273 if (ptid_equal (ptid, it->ptid))
4274 {
4275 if (it->ws.kind == TARGET_WAITKIND_STOPPED)
4276 return 1;
4277 }
4278
4279 return 0;
4280}
4281
4282/* Parse the stop reply in BUF. Either the function succeeds, and the
4283 result is stored in EVENT, or throws an error. */
4284
4285static void
4286remote_parse_stop_reply (char *buf, struct stop_reply *event)
4287{
4288 struct remote_arch_state *rsa = get_remote_arch_state ();
4289 ULONGEST addr;
4290 char *p;
4291
4292 event->ptid = null_ptid;
4293 event->ws.kind = TARGET_WAITKIND_IGNORE;
4294 event->ws.value.integer = 0;
4295 event->solibs_changed = 0;
4296 event->replay_event = 0;
4297 event->stopped_by_watchpoint_p = 0;
4298 event->regcache = NULL;
4299
4300 switch (buf[0])
4301 {
4302 case 'T': /* Status with PC, SP, FP, ... */
cea39f65
MS
4303 /* Expedited reply, containing Signal, {regno, reg} repeat. */
4304 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
4305 ss = signal number
4306 n... = register number
4307 r... = register contents
4308 */
4309
4310 p = &buf[3]; /* after Txx */
4311 while (*p)
4312 {
4313 char *p1;
4314 char *p_temp;
4315 int fieldsize;
4316 LONGEST pnum = 0;
43ff13b4 4317
cea39f65
MS
4318 /* If the packet contains a register number, save it in
4319 pnum and set p1 to point to the character following it.
4320 Otherwise p1 points to p. */
3c3bea1c 4321
cea39f65
MS
4322 /* If this packet is an awatch packet, don't parse the 'a'
4323 as a register number. */
c8e38a49 4324
cea39f65
MS
4325 if (strncmp (p, "awatch", strlen("awatch")) != 0)
4326 {
4327 /* Read the ``P'' register number. */
4328 pnum = strtol (p, &p_temp, 16);
4329 p1 = p_temp;
4330 }
4331 else
4332 p1 = p;
802188a7 4333
cea39f65
MS
4334 if (p1 == p) /* No register number present here. */
4335 {
4336 p1 = strchr (p, ':');
4337 if (p1 == NULL)
4338 error (_("Malformed packet(a) (missing colon): %s\n\
c8e38a49 4339Packet: '%s'\n"),
cea39f65
MS
4340 p, buf);
4341 if (strncmp (p, "thread", p1 - p) == 0)
4342 event->ptid = read_ptid (++p1, &p);
4343 else if ((strncmp (p, "watch", p1 - p) == 0)
4344 || (strncmp (p, "rwatch", p1 - p) == 0)
4345 || (strncmp (p, "awatch", p1 - p) == 0))
4346 {
4347 event->stopped_by_watchpoint_p = 1;
4348 p = unpack_varlen_hex (++p1, &addr);
4349 event->watch_data_address = (CORE_ADDR) addr;
4350 }
4351 else if (strncmp (p, "library", p1 - p) == 0)
4352 {
4353 p1++;
4354 p_temp = p1;
4355 while (*p_temp && *p_temp != ';')
4356 p_temp++;
c8e38a49 4357
cea39f65
MS
4358 event->solibs_changed = 1;
4359 p = p_temp;
4360 }
4361 else if (strncmp (p, "replaylog", p1 - p) == 0)
4362 {
4363 /* NO_HISTORY event.
4364 p1 will indicate "begin" or "end", but
4365 it makes no difference for now, so ignore it. */
4366 event->replay_event = 1;
4367 p_temp = strchr (p1 + 1, ';');
4368 if (p_temp)
c8e38a49 4369 p = p_temp;
cea39f65
MS
4370 }
4371 else
4372 {
4373 /* Silently skip unknown optional info. */
4374 p_temp = strchr (p1 + 1, ';');
4375 if (p_temp)
4376 p = p_temp;
4377 }
4378 }
4379 else
4380 {
4381 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
4382 cached_reg_t cached_reg;
74531fed 4383
cea39f65 4384 p = p1;
75c99385 4385
cea39f65
MS
4386 if (*p != ':')
4387 error (_("Malformed packet(b) (missing colon): %s\n\
8a3fe4f8 4388Packet: '%s'\n"),
cea39f65
MS
4389 p, buf);
4390 ++p;
43ff13b4 4391
cea39f65
MS
4392 if (reg == NULL)
4393 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 4394Packet: '%s'\n"),
cea39f65 4395 phex_nz (pnum, 0), p, buf);
c8e38a49 4396
cea39f65 4397 cached_reg.num = reg->regnum;
4100683b 4398
cea39f65
MS
4399 fieldsize = hex2bin (p, cached_reg.data,
4400 register_size (target_gdbarch,
4401 reg->regnum));
4402 p += 2 * fieldsize;
4403 if (fieldsize < register_size (target_gdbarch,
4404 reg->regnum))
4405 warning (_("Remote reply is too short: %s"), buf);
74531fed 4406
cea39f65
MS
4407 VEC_safe_push (cached_reg_t, event->regcache, &cached_reg);
4408 }
c8e38a49 4409
cea39f65
MS
4410 if (*p != ';')
4411 error (_("Remote register badly formatted: %s\nhere: %s"),
4412 buf, p);
4413 ++p;
4414 }
c8e38a49
PA
4415 /* fall through */
4416 case 'S': /* Old style status, just signal only. */
74531fed
PA
4417 if (event->solibs_changed)
4418 event->ws.kind = TARGET_WAITKIND_LOADED;
4419 else if (event->replay_event)
4420 event->ws.kind = TARGET_WAITKIND_NO_HISTORY;
c8e38a49
PA
4421 else
4422 {
74531fed
PA
4423 event->ws.kind = TARGET_WAITKIND_STOPPED;
4424 event->ws.value.sig = (enum target_signal)
c8e38a49
PA
4425 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
4426 }
4427 break;
4428 case 'W': /* Target exited. */
4429 case 'X':
4430 {
4431 char *p;
4432 int pid;
4433 ULONGEST value;
82f73884 4434
c8e38a49
PA
4435 /* GDB used to accept only 2 hex chars here. Stubs should
4436 only send more if they detect GDB supports multi-process
4437 support. */
4438 p = unpack_varlen_hex (&buf[1], &value);
82f73884 4439
c8e38a49
PA
4440 if (buf[0] == 'W')
4441 {
4442 /* The remote process exited. */
74531fed
PA
4443 event->ws.kind = TARGET_WAITKIND_EXITED;
4444 event->ws.value.integer = value;
c8e38a49
PA
4445 }
4446 else
4447 {
4448 /* The remote process exited with a signal. */
74531fed
PA
4449 event->ws.kind = TARGET_WAITKIND_SIGNALLED;
4450 event->ws.value.sig = (enum target_signal) value;
c8e38a49 4451 }
82f73884 4452
c8e38a49
PA
4453 /* If no process is specified, assume inferior_ptid. */
4454 pid = ptid_get_pid (inferior_ptid);
4455 if (*p == '\0')
4456 ;
4457 else if (*p == ';')
4458 {
4459 p++;
4460
4461 if (p == '\0')
82f73884 4462 ;
c8e38a49
PA
4463 else if (strncmp (p,
4464 "process:", sizeof ("process:") - 1) == 0)
82f73884 4465 {
c8e38a49
PA
4466 ULONGEST upid;
4467 p += sizeof ("process:") - 1;
4468 unpack_varlen_hex (p, &upid);
4469 pid = upid;
82f73884
PA
4470 }
4471 else
4472 error (_("unknown stop reply packet: %s"), buf);
43ff13b4 4473 }
c8e38a49
PA
4474 else
4475 error (_("unknown stop reply packet: %s"), buf);
74531fed
PA
4476 event->ptid = pid_to_ptid (pid);
4477 }
4478 break;
4479 }
4480
4481 if (non_stop && ptid_equal (event->ptid, null_ptid))
4482 error (_("No process or thread specified in stop reply: %s"), buf);
4483}
4484
4485/* When the stub wants to tell GDB about a new stop reply, it sends a
4486 stop notification (%Stop). Those can come it at any time, hence,
4487 we have to make sure that any pending putpkt/getpkt sequence we're
4488 making is finished, before querying the stub for more events with
4489 vStopped. E.g., if we started a vStopped sequence immediatelly
4490 upon receiving the %Stop notification, something like this could
4491 happen:
4492
4493 1.1) --> Hg 1
4494 1.2) <-- OK
4495 1.3) --> g
4496 1.4) <-- %Stop
4497 1.5) --> vStopped
4498 1.6) <-- (registers reply to step #1.3)
4499
4500 Obviously, the reply in step #1.6 would be unexpected to a vStopped
4501 query.
4502
4503 To solve this, whenever we parse a %Stop notification sucessfully,
4504 we mark the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN, and carry on
4505 doing whatever we were doing:
4506
4507 2.1) --> Hg 1
4508 2.2) <-- OK
4509 2.3) --> g
4510 2.4) <-- %Stop
4511 <GDB marks the REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN>
4512 2.5) <-- (registers reply to step #2.3)
4513
4514 Eventualy after step #2.5, we return to the event loop, which
4515 notices there's an event on the
4516 REMOTE_ASYNC_GET_PENDING_EVENTS_TOKEN event and calls the
4517 associated callback --- the function below. At this point, we're
4518 always safe to start a vStopped sequence. :
4519
4520 2.6) --> vStopped
4521 2.7) <-- T05 thread:2
4522 2.8) --> vStopped
4523 2.9) --> OK
4524*/
4525
4526static void
4527remote_get_pending_stop_replies (void)
4528{
4529 struct remote_state *rs = get_remote_state ();
74531fed
PA
4530
4531 if (pending_stop_reply)
4532 {
4533 /* acknowledge */
4534 putpkt ("vStopped");
4535
4536 /* Now we can rely on it. */
4537 push_stop_reply (pending_stop_reply);
4538 pending_stop_reply = NULL;
4539
4540 while (1)
4541 {
4542 getpkt (&rs->buf, &rs->buf_size, 0);
4543 if (strcmp (rs->buf, "OK") == 0)
4544 break;
4545 else
4546 {
4547 struct cleanup *old_chain;
4548 struct stop_reply *stop_reply = stop_reply_xmalloc ();
4549
4550 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4551 remote_parse_stop_reply (rs->buf, stop_reply);
4552
4553 /* acknowledge */
4554 putpkt ("vStopped");
4555
4556 if (stop_reply->ws.kind != TARGET_WAITKIND_IGNORE)
4557 {
4558 /* Now we can rely on it. */
4559 discard_cleanups (old_chain);
4560 push_stop_reply (stop_reply);
4561 }
4562 else
4563 /* We got an unknown stop reply. */
4564 do_cleanups (old_chain);
4565 }
4566 }
4567 }
4568}
4569
4570
4571/* Called when it is decided that STOP_REPLY holds the info of the
4572 event that is to be returned to the core. This function always
4573 destroys STOP_REPLY. */
4574
4575static ptid_t
4576process_stop_reply (struct stop_reply *stop_reply,
4577 struct target_waitstatus *status)
4578{
4579 ptid_t ptid;
4580
4581 *status = stop_reply->ws;
4582 ptid = stop_reply->ptid;
4583
4584 /* If no thread/process was reported by the stub, assume the current
4585 inferior. */
4586 if (ptid_equal (ptid, null_ptid))
4587 ptid = inferior_ptid;
4588
5f3563ea
PA
4589 if (status->kind != TARGET_WAITKIND_EXITED
4590 && status->kind != TARGET_WAITKIND_SIGNALLED)
74531fed 4591 {
5f3563ea
PA
4592 /* Expedited registers. */
4593 if (stop_reply->regcache)
4594 {
217f1f79
UW
4595 struct regcache *regcache
4596 = get_thread_arch_regcache (ptid, target_gdbarch);
5f3563ea
PA
4597 cached_reg_t *reg;
4598 int ix;
4599
4600 for (ix = 0;
4601 VEC_iterate(cached_reg_t, stop_reply->regcache, ix, reg);
4602 ix++)
217f1f79 4603 regcache_raw_supply (regcache, reg->num, reg->data);
5f3563ea
PA
4604 VEC_free (cached_reg_t, stop_reply->regcache);
4605 }
74531fed 4606
5f3563ea
PA
4607 remote_stopped_by_watchpoint_p = stop_reply->stopped_by_watchpoint_p;
4608 remote_watch_data_address = stop_reply->watch_data_address;
1941c569
PA
4609
4610 remote_notice_new_inferior (ptid, 0);
74531fed
PA
4611 }
4612
74531fed
PA
4613 stop_reply_xfree (stop_reply);
4614 return ptid;
4615}
4616
4617/* The non-stop mode version of target_wait. */
4618
4619static ptid_t
47608cb1 4620remote_wait_ns (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
4621{
4622 struct remote_state *rs = get_remote_state ();
74531fed
PA
4623 struct stop_reply *stop_reply;
4624 int ret;
4625
4626 /* If in non-stop mode, get out of getpkt even if a
4627 notification is received. */
4628
4629 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4630 0 /* forever */);
4631 while (1)
4632 {
4633 if (ret != -1)
4634 switch (rs->buf[0])
4635 {
4636 case 'E': /* Error of some sort. */
4637 /* We're out of sync with the target now. Did it continue
4638 or not? We can't tell which thread it was in non-stop,
4639 so just ignore this. */
4640 warning (_("Remote failure reply: %s"), rs->buf);
4641 break;
4642 case 'O': /* Console output. */
4643 remote_console_output (rs->buf + 1);
4644 break;
4645 default:
4646 warning (_("Invalid remote reply: %s"), rs->buf);
4647 break;
4648 }
4649
4650 /* Acknowledge a pending stop reply that may have arrived in the
4651 mean time. */
4652 if (pending_stop_reply != NULL)
4653 remote_get_pending_stop_replies ();
4654
4655 /* If indeed we noticed a stop reply, we're done. */
4656 stop_reply = queued_stop_reply (ptid);
4657 if (stop_reply != NULL)
4658 return process_stop_reply (stop_reply, status);
4659
47608cb1 4660 /* Still no event. If we're just polling for an event, then
74531fed 4661 return to the event loop. */
47608cb1 4662 if (options & TARGET_WNOHANG)
74531fed
PA
4663 {
4664 status->kind = TARGET_WAITKIND_IGNORE;
4665 return minus_one_ptid;
4666 }
4667
47608cb1 4668 /* Otherwise do a blocking wait. */
74531fed
PA
4669 ret = getpkt_or_notif_sane (&rs->buf, &rs->buf_size,
4670 1 /* forever */);
4671 }
4672}
4673
4674/* Wait until the remote machine stops, then return, storing status in
4675 STATUS just as `wait' would. */
4676
4677static ptid_t
47608cb1 4678remote_wait_as (ptid_t ptid, struct target_waitstatus *status, int options)
74531fed
PA
4679{
4680 struct remote_state *rs = get_remote_state ();
74531fed 4681 ptid_t event_ptid = null_ptid;
cea39f65 4682 char *buf;
74531fed
PA
4683 struct stop_reply *stop_reply;
4684
47608cb1
PA
4685 again:
4686
74531fed
PA
4687 status->kind = TARGET_WAITKIND_IGNORE;
4688 status->value.integer = 0;
4689
4690 stop_reply = queued_stop_reply (ptid);
4691 if (stop_reply != NULL)
4692 return process_stop_reply (stop_reply, status);
4693
4694 if (rs->cached_wait_status)
4695 /* Use the cached wait status, but only once. */
4696 rs->cached_wait_status = 0;
4697 else
4698 {
4699 int ret;
4700
4701 if (!target_is_async_p ())
4702 {
4703 ofunc = signal (SIGINT, remote_interrupt);
4704 /* If the user hit C-c before this packet, or between packets,
4705 pretend that it was hit right here. */
4706 if (quit_flag)
4707 {
4708 quit_flag = 0;
4709 remote_interrupt (SIGINT);
4710 }
4711 }
4712
4713 /* FIXME: cagney/1999-09-27: If we're in async mode we should
4714 _never_ wait for ever -> test on target_is_async_p().
4715 However, before we do that we need to ensure that the caller
4716 knows how to take the target into/out of async mode. */
4717 ret = getpkt_sane (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
4718 if (!target_is_async_p ())
4719 signal (SIGINT, ofunc);
4720 }
4721
4722 buf = rs->buf;
4723
4724 remote_stopped_by_watchpoint_p = 0;
4725
4726 /* We got something. */
4727 rs->waiting_for_stop_reply = 0;
4728
4729 switch (buf[0])
4730 {
4731 case 'E': /* Error of some sort. */
4732 /* We're out of sync with the target now. Did it continue or
4733 not? Not is more likely, so report a stop. */
4734 warning (_("Remote failure reply: %s"), buf);
4735 status->kind = TARGET_WAITKIND_STOPPED;
4736 status->value.sig = TARGET_SIGNAL_0;
4737 break;
4738 case 'F': /* File-I/O request. */
4739 remote_fileio_request (buf);
4740 break;
4741 case 'T': case 'S': case 'X': case 'W':
4742 {
4743 struct stop_reply *stop_reply;
4744 struct cleanup *old_chain;
4745
4746 stop_reply = stop_reply_xmalloc ();
4747 old_chain = make_cleanup (do_stop_reply_xfree, stop_reply);
4748 remote_parse_stop_reply (buf, stop_reply);
4749 discard_cleanups (old_chain);
4750 event_ptid = process_stop_reply (stop_reply, status);
c8e38a49
PA
4751 break;
4752 }
4753 case 'O': /* Console output. */
4754 remote_console_output (buf + 1);
e24a49d8 4755
c8e38a49
PA
4756 /* The target didn't really stop; keep waiting. */
4757 rs->waiting_for_stop_reply = 1;
e24a49d8 4758
c8e38a49
PA
4759 break;
4760 case '\0':
4761 if (last_sent_signal != TARGET_SIGNAL_0)
4762 {
4763 /* Zero length reply means that we tried 'S' or 'C' and the
4764 remote system doesn't support it. */
4765 target_terminal_ours_for_output ();
4766 printf_filtered
4767 ("Can't send signals to this remote system. %s not sent.\n",
4768 target_signal_to_name (last_sent_signal));
4769 last_sent_signal = TARGET_SIGNAL_0;
4770 target_terminal_inferior ();
4771
4772 strcpy ((char *) buf, last_sent_step ? "s" : "c");
4773 putpkt ((char *) buf);
4774
4775 /* We just told the target to resume, so a stop reply is in
4776 order. */
e24a49d8 4777 rs->waiting_for_stop_reply = 1;
c8e38a49 4778 break;
43ff13b4 4779 }
c8e38a49
PA
4780 /* else fallthrough */
4781 default:
4782 warning (_("Invalid remote reply: %s"), buf);
4783 /* Keep waiting. */
4784 rs->waiting_for_stop_reply = 1;
4785 break;
43ff13b4 4786 }
c8e38a49 4787
c8e38a49 4788 if (status->kind == TARGET_WAITKIND_IGNORE)
47608cb1
PA
4789 {
4790 /* Nothing interesting happened. If we're doing a non-blocking
4791 poll, we're done. Otherwise, go back to waiting. */
4792 if (options & TARGET_WNOHANG)
4793 return minus_one_ptid;
4794 else
4795 goto again;
4796 }
74531fed
PA
4797 else if (status->kind != TARGET_WAITKIND_EXITED
4798 && status->kind != TARGET_WAITKIND_SIGNALLED)
82f73884
PA
4799 {
4800 if (!ptid_equal (event_ptid, null_ptid))
4801 record_currthread (event_ptid);
4802 else
4803 event_ptid = inferior_ptid;
43ff13b4 4804 }
74531fed
PA
4805 else
4806 /* A process exit. Invalidate our notion of current thread. */
4807 record_currthread (minus_one_ptid);
79d7f229 4808
82f73884 4809 return event_ptid;
43ff13b4
JM
4810}
4811
74531fed
PA
4812/* Wait until the remote machine stops, then return, storing status in
4813 STATUS just as `wait' would. */
4814
c8e38a49 4815static ptid_t
117de6a9 4816remote_wait (struct target_ops *ops,
47608cb1 4817 ptid_t ptid, struct target_waitstatus *status, int options)
c8e38a49
PA
4818{
4819 ptid_t event_ptid;
4820
74531fed 4821 if (non_stop)
47608cb1 4822 event_ptid = remote_wait_ns (ptid, status, options);
74531fed 4823 else
47608cb1 4824 event_ptid = remote_wait_as (ptid, status, options);
c8e38a49 4825
74531fed 4826 if (target_can_async_p ())
c8e38a49 4827 {
74531fed
PA
4828 /* If there are are events left in the queue tell the event loop
4829 to return here. */
4830 if (stop_reply_queue)
4831 mark_async_event_handler (remote_async_inferior_event_token);
c8e38a49 4832 }
c8e38a49
PA
4833
4834 return event_ptid;
4835}
4836
74ca34ce 4837/* Fetch a single register using a 'p' packet. */
c906108c 4838
b96ec7ac 4839static int
56be3814 4840fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac
AC
4841{
4842 struct remote_state *rs = get_remote_state ();
2e9f7625 4843 char *buf, *p;
b96ec7ac
AC
4844 char regp[MAX_REGISTER_SIZE];
4845 int i;
4846
74ca34ce
DJ
4847 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
4848 return 0;
4849
4850 if (reg->pnum == -1)
4851 return 0;
4852
2e9f7625 4853 p = rs->buf;
fcad0fa4 4854 *p++ = 'p';
74ca34ce 4855 p += hexnumstr (p, reg->pnum);
fcad0fa4 4856 *p++ = '\0';
1f4437a4
MS
4857 putpkt (rs->buf);
4858 getpkt (&rs->buf, &rs->buf_size, 0);
3f9a994c 4859
2e9f7625
DJ
4860 buf = rs->buf;
4861
74ca34ce
DJ
4862 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
4863 {
4864 case PACKET_OK:
4865 break;
4866 case PACKET_UNKNOWN:
4867 return 0;
4868 case PACKET_ERROR:
27a9c0bf
MS
4869 error (_("Could not fetch register \"%s\"; remote failure reply '%s'"),
4870 gdbarch_register_name (get_regcache_arch (regcache),
4871 reg->regnum),
4872 buf);
74ca34ce 4873 }
3f9a994c
JB
4874
4875 /* If this register is unfetchable, tell the regcache. */
4876 if (buf[0] == 'x')
8480adf2 4877 {
56be3814 4878 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 4879 return 1;
b96ec7ac 4880 }
b96ec7ac 4881
3f9a994c
JB
4882 /* Otherwise, parse and supply the value. */
4883 p = buf;
4884 i = 0;
4885 while (p[0] != 0)
4886 {
4887 if (p[1] == 0)
74ca34ce 4888 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
4889
4890 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
4891 p += 2;
4892 }
56be3814 4893 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 4894 return 1;
b96ec7ac
AC
4895}
4896
74ca34ce
DJ
4897/* Fetch the registers included in the target's 'g' packet. */
4898
29709017
DJ
4899static int
4900send_g_packet (void)
c906108c 4901{
d01949b6 4902 struct remote_state *rs = get_remote_state ();
cea39f65 4903 int buf_len;
c906108c 4904
74ca34ce
DJ
4905 sprintf (rs->buf, "g");
4906 remote_send (&rs->buf, &rs->buf_size);
c906108c 4907
29709017
DJ
4908 /* We can get out of synch in various cases. If the first character
4909 in the buffer is not a hex character, assume that has happened
4910 and try to fetch another packet to read. */
4911 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
4912 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
4913 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
4914 && rs->buf[0] != 'x') /* New: unavailable register value. */
4915 {
4916 if (remote_debug)
4917 fprintf_unfiltered (gdb_stdlog,
4918 "Bad register packet; fetching a new packet\n");
4919 getpkt (&rs->buf, &rs->buf_size, 0);
4920 }
4921
74ca34ce
DJ
4922 buf_len = strlen (rs->buf);
4923
4924 /* Sanity check the received packet. */
4925 if (buf_len % 2 != 0)
4926 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
4927
4928 return buf_len / 2;
4929}
4930
4931static void
56be3814 4932process_g_packet (struct regcache *regcache)
29709017 4933{
4a22f64d 4934 struct gdbarch *gdbarch = get_regcache_arch (regcache);
29709017
DJ
4935 struct remote_state *rs = get_remote_state ();
4936 struct remote_arch_state *rsa = get_remote_arch_state ();
4937 int i, buf_len;
4938 char *p;
4939 char *regs;
4940
4941 buf_len = strlen (rs->buf);
4942
4943 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce
DJ
4944 if (buf_len > 2 * rsa->sizeof_g_packet)
4945 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
4946
4947 /* Save the size of the packet sent to us by the target. It is used
4948 as a heuristic when determining the max size of packets that the
4949 target can safely receive. */
4950 if (rsa->actual_register_packet_size == 0)
4951 rsa->actual_register_packet_size = buf_len;
4952
4953 /* If this is smaller than we guessed the 'g' packet would be,
4954 update our records. A 'g' reply that doesn't include a register's
4955 value implies either that the register is not available, or that
4956 the 'p' packet must be used. */
4957 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 4958 {
74ca34ce
DJ
4959 rsa->sizeof_g_packet = buf_len / 2;
4960
4a22f64d 4961 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 4962 {
74ca34ce
DJ
4963 if (rsa->regs[i].pnum == -1)
4964 continue;
4965
4966 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
4967 rsa->regs[i].in_g_packet = 0;
b96ec7ac 4968 else
74ca34ce 4969 rsa->regs[i].in_g_packet = 1;
b96ec7ac 4970 }
74ca34ce 4971 }
b323314b 4972
74ca34ce 4973 regs = alloca (rsa->sizeof_g_packet);
c906108c
SS
4974
4975 /* Unimplemented registers read as all bits zero. */
ea9c271d 4976 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 4977
c906108c
SS
4978 /* Reply describes registers byte by byte, each byte encoded as two
4979 hex characters. Suck them all up, then supply them to the
4980 register cacheing/storage mechanism. */
4981
74ca34ce 4982 p = rs->buf;
ea9c271d 4983 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 4984 {
74ca34ce
DJ
4985 if (p[0] == 0 || p[1] == 0)
4986 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
4987 internal_error (__FILE__, __LINE__,
4988 "unexpected end of 'g' packet reply");
4989
c906108c 4990 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 4991 regs[i] = 0; /* 'x' */
c906108c
SS
4992 else
4993 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
4994 p += 2;
4995 }
4996
ad10f812 4997 {
b323314b 4998 int i;
4a22f64d 4999 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 5000 {
ea9c271d 5001 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
5002 if (r->in_g_packet)
5003 {
74ca34ce
DJ
5004 if (r->offset * 2 >= strlen (rs->buf))
5005 /* This shouldn't happen - we adjusted in_g_packet above. */
5006 internal_error (__FILE__, __LINE__,
5007 "unexpected end of 'g' packet reply");
5008 else if (rs->buf[r->offset * 2] == 'x')
8ccc1287 5009 {
74ca34ce 5010 gdb_assert (r->offset * 2 < strlen (rs->buf));
8ccc1287
AC
5011 /* The register isn't available, mark it as such (at
5012 the same time setting the value to zero). */
56be3814 5013 regcache_raw_supply (regcache, r->regnum, NULL);
8ccc1287
AC
5014 }
5015 else
56be3814 5016 regcache_raw_supply (regcache, r->regnum,
8ccc1287 5017 regs + r->offset);
b323314b 5018 }
ad10f812
AC
5019 }
5020 }
c906108c
SS
5021}
5022
29709017 5023static void
56be3814 5024fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
5025{
5026 send_g_packet ();
56be3814 5027 process_g_packet (regcache);
29709017
DJ
5028}
5029
74ca34ce 5030static void
28439f5e
PA
5031remote_fetch_registers (struct target_ops *ops,
5032 struct regcache *regcache, int regnum)
74ca34ce 5033{
74ca34ce
DJ
5034 struct remote_arch_state *rsa = get_remote_arch_state ();
5035 int i;
5036
79d7f229 5037 set_general_thread (inferior_ptid);
74ca34ce
DJ
5038
5039 if (regnum >= 0)
5040 {
5041 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5042 gdb_assert (reg != NULL);
5043
5044 /* If this register might be in the 'g' packet, try that first -
5045 we are likely to read more than one register. If this is the
5046 first 'g' packet, we might be overly optimistic about its
5047 contents, so fall back to 'p'. */
5048 if (reg->in_g_packet)
5049 {
56be3814 5050 fetch_registers_using_g (regcache);
74ca34ce
DJ
5051 if (reg->in_g_packet)
5052 return;
5053 }
5054
56be3814 5055 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
5056 return;
5057
5058 /* This register is not available. */
56be3814 5059 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
5060
5061 return;
5062 }
5063
56be3814 5064 fetch_registers_using_g (regcache);
74ca34ce 5065
4a22f64d 5066 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 5067 if (!rsa->regs[i].in_g_packet)
56be3814 5068 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
5069 {
5070 /* This register is not available. */
56be3814 5071 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
5072 }
5073}
5074
c906108c
SS
5075/* Prepare to store registers. Since we may send them all (using a
5076 'G' request), we have to read out the ones we don't want to change
5077 first. */
5078
c5aa993b 5079static void
316f2060 5080remote_prepare_to_store (struct regcache *regcache)
c906108c 5081{
ea9c271d 5082 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 5083 int i;
cfd77fa1 5084 gdb_byte buf[MAX_REGISTER_SIZE];
cf0e1e0d 5085
c906108c 5086 /* Make sure the entire registers array is valid. */
444abaca 5087 switch (remote_protocol_packets[PACKET_P].support)
5a2468f5
JM
5088 {
5089 case PACKET_DISABLE:
5090 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 5091 /* Make sure all the necessary registers are cached. */
4a22f64d 5092 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ea9c271d 5093 if (rsa->regs[i].in_g_packet)
316f2060 5094 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5a2468f5
JM
5095 break;
5096 case PACKET_ENABLE:
5097 break;
5098 }
5099}
5100
ad10f812 5101/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 5102 packet was not recognized. */
5a2468f5
JM
5103
5104static int
1f4437a4
MS
5105store_register_using_P (const struct regcache *regcache,
5106 struct packet_reg *reg)
5a2468f5 5107{
4a22f64d 5108 struct gdbarch *gdbarch = get_regcache_arch (regcache);
d01949b6 5109 struct remote_state *rs = get_remote_state ();
5a2468f5 5110 /* Try storing a single register. */
6d820c5c 5111 char *buf = rs->buf;
cfd77fa1 5112 gdb_byte regp[MAX_REGISTER_SIZE];
5a2468f5 5113 char *p;
5a2468f5 5114
74ca34ce
DJ
5115 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
5116 return 0;
5117
5118 if (reg->pnum == -1)
5119 return 0;
5120
ea9c271d 5121 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 5122 p = buf + strlen (buf);
56be3814 5123 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 5124 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
1f4437a4
MS
5125 putpkt (rs->buf);
5126 getpkt (&rs->buf, &rs->buf_size, 0);
5a2468f5 5127
74ca34ce
DJ
5128 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
5129 {
5130 case PACKET_OK:
5131 return 1;
5132 case PACKET_ERROR:
27a9c0bf
MS
5133 error (_("Could not write register \"%s\"; remote failure reply '%s'"),
5134 gdbarch_register_name (gdbarch, reg->regnum), rs->buf);
74ca34ce
DJ
5135 case PACKET_UNKNOWN:
5136 return 0;
5137 default:
5138 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
5139 }
c906108c
SS
5140}
5141
23860348
MS
5142/* Store register REGNUM, or all registers if REGNUM == -1, from the
5143 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
5144
5145static void
56be3814 5146store_registers_using_G (const struct regcache *regcache)
c906108c 5147{
d01949b6 5148 struct remote_state *rs = get_remote_state ();
ea9c271d 5149 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 5150 gdb_byte *regs;
c906108c
SS
5151 char *p;
5152
193cb69f
AC
5153 /* Extract all the registers in the regcache copying them into a
5154 local buffer. */
5155 {
b323314b 5156 int i;
ea9c271d
DJ
5157 regs = alloca (rsa->sizeof_g_packet);
5158 memset (regs, 0, rsa->sizeof_g_packet);
4a22f64d 5159 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
193cb69f 5160 {
ea9c271d 5161 struct packet_reg *r = &rsa->regs[i];
b323314b 5162 if (r->in_g_packet)
56be3814 5163 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
5164 }
5165 }
c906108c
SS
5166
5167 /* Command describes registers byte by byte,
5168 each byte encoded as two hex characters. */
6d820c5c 5169 p = rs->buf;
193cb69f 5170 *p++ = 'G';
74ca34ce
DJ
5171 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
5172 updated. */
5173 bin2hex (regs, p, rsa->sizeof_g_packet);
1f4437a4
MS
5174 putpkt (rs->buf);
5175 getpkt (&rs->buf, &rs->buf_size, 0);
5176 if (packet_check_result (rs->buf) == PACKET_ERROR)
27a9c0bf
MS
5177 error (_("Could not write registers; remote failure reply '%s'"),
5178 rs->buf);
c906108c 5179}
74ca34ce
DJ
5180
5181/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
5182 of the register cache buffer. FIXME: ignores errors. */
5183
5184static void
28439f5e
PA
5185remote_store_registers (struct target_ops *ops,
5186 struct regcache *regcache, int regnum)
74ca34ce 5187{
74ca34ce
DJ
5188 struct remote_arch_state *rsa = get_remote_arch_state ();
5189 int i;
5190
79d7f229 5191 set_general_thread (inferior_ptid);
74ca34ce
DJ
5192
5193 if (regnum >= 0)
5194 {
5195 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5196 gdb_assert (reg != NULL);
5197
5198 /* Always prefer to store registers using the 'P' packet if
5199 possible; we often change only a small number of registers.
5200 Sometimes we change a larger number; we'd need help from a
5201 higher layer to know to use 'G'. */
56be3814 5202 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
5203 return;
5204
5205 /* For now, don't complain if we have no way to write the
5206 register. GDB loses track of unavailable registers too
5207 easily. Some day, this may be an error. We don't have
5208 any way to read the register, either... */
5209 if (!reg->in_g_packet)
5210 return;
5211
56be3814 5212 store_registers_using_G (regcache);
74ca34ce
DJ
5213 return;
5214 }
5215
56be3814 5216 store_registers_using_G (regcache);
74ca34ce 5217
4a22f64d 5218 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 5219 if (!rsa->regs[i].in_g_packet)
56be3814 5220 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
5221 /* See above for why we do not issue an error here. */
5222 continue;
5223}
c906108c
SS
5224\f
5225
5226/* Return the number of hex digits in num. */
5227
5228static int
fba45db2 5229hexnumlen (ULONGEST num)
c906108c
SS
5230{
5231 int i;
5232
5233 for (i = 0; num != 0; i++)
5234 num >>= 4;
5235
5236 return max (i, 1);
5237}
5238
2df3850c 5239/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
5240
5241static int
fba45db2 5242hexnumstr (char *buf, ULONGEST num)
c906108c 5243{
c906108c 5244 int len = hexnumlen (num);
2df3850c
JM
5245 return hexnumnstr (buf, num, len);
5246}
5247
c906108c 5248
2df3850c 5249/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 5250
2df3850c 5251static int
fba45db2 5252hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
5253{
5254 int i;
5255
5256 buf[width] = '\0';
5257
5258 for (i = width - 1; i >= 0; i--)
c906108c 5259 {
c5aa993b 5260 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
5261 num >>= 4;
5262 }
5263
2df3850c 5264 return width;
c906108c
SS
5265}
5266
23860348 5267/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
5268
5269static CORE_ADDR
fba45db2 5270remote_address_masked (CORE_ADDR addr)
c906108c 5271{
911c95a5
UW
5272 int address_size = remote_address_size;
5273 /* If "remoteaddresssize" was not set, default to target address size. */
5274 if (!address_size)
1cf3db46 5275 address_size = gdbarch_addr_bit (target_gdbarch);
911c95a5
UW
5276
5277 if (address_size > 0
5278 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
5279 {
5280 /* Only create a mask when that mask can safely be constructed
23860348 5281 in a ULONGEST variable. */
c906108c 5282 ULONGEST mask = 1;
911c95a5 5283 mask = (mask << address_size) - 1;
c906108c
SS
5284 addr &= mask;
5285 }
5286 return addr;
5287}
5288
a31ea83d
DJ
5289/* Convert BUFFER, binary data at least LEN bytes long, into escaped
5290 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
5291 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
5292 (which may be more than *OUT_LEN due to escape characters). The
5293 total number of bytes in the output buffer will be at most
5294 OUT_MAXLEN. */
5295
5296static int
5297remote_escape_output (const gdb_byte *buffer, int len,
5298 gdb_byte *out_buf, int *out_len,
5299 int out_maxlen)
5300{
5301 int input_index, output_index;
5302
5303 output_index = 0;
5304 for (input_index = 0; input_index < len; input_index++)
5305 {
5306 gdb_byte b = buffer[input_index];
5307
5308 if (b == '$' || b == '#' || b == '}')
5309 {
5310 /* These must be escaped. */
5311 if (output_index + 2 > out_maxlen)
5312 break;
5313 out_buf[output_index++] = '}';
5314 out_buf[output_index++] = b ^ 0x20;
5315 }
5316 else
5317 {
5318 if (output_index + 1 > out_maxlen)
5319 break;
5320 out_buf[output_index++] = b;
5321 }
5322 }
5323
5324 *out_len = input_index;
5325 return output_index;
5326}
5327
0876f84a
DJ
5328/* Convert BUFFER, escaped data LEN bytes long, into binary data
5329 in OUT_BUF. Return the number of bytes written to OUT_BUF.
5330 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
5331
5332 This function reverses remote_escape_output. It allows more
5333 escaped characters than that function does, in particular because
5334 '*' must be escaped to avoid the run-length encoding processing
5335 in reading packets. */
5336
5337static int
5338remote_unescape_input (const gdb_byte *buffer, int len,
5339 gdb_byte *out_buf, int out_maxlen)
5340{
5341 int input_index, output_index;
5342 int escaped;
5343
5344 output_index = 0;
5345 escaped = 0;
5346 for (input_index = 0; input_index < len; input_index++)
5347 {
5348 gdb_byte b = buffer[input_index];
5349
5350 if (output_index + 1 > out_maxlen)
5351 {
5352 warning (_("Received too much data from remote target;"
5353 " ignoring overflow."));
5354 return output_index;
5355 }
5356
5357 if (escaped)
5358 {
5359 out_buf[output_index++] = b ^ 0x20;
5360 escaped = 0;
5361 }
5362 else if (b == '}')
5363 escaped = 1;
5364 else
5365 out_buf[output_index++] = b;
5366 }
5367
5368 if (escaped)
5369 error (_("Unmatched escape character in target response."));
5370
5371 return output_index;
5372}
5373
c906108c
SS
5374/* Determine whether the remote target supports binary downloading.
5375 This is accomplished by sending a no-op memory write of zero length
5376 to the target at the specified address. It does not suffice to send
23860348
MS
5377 the whole packet, since many stubs strip the eighth bit and
5378 subsequently compute a wrong checksum, which causes real havoc with
5379 remote_write_bytes.
7a292a7a 5380
96baa820
JM
5381 NOTE: This can still lose if the serial line is not eight-bit
5382 clean. In cases like this, the user should clear "remote
23860348 5383 X-packet". */
96baa820 5384
c906108c 5385static void
fba45db2 5386check_binary_download (CORE_ADDR addr)
c906108c 5387{
d01949b6 5388 struct remote_state *rs = get_remote_state ();
24b06219 5389
444abaca 5390 switch (remote_protocol_packets[PACKET_X].support)
c906108c 5391 {
96baa820
JM
5392 case PACKET_DISABLE:
5393 break;
5394 case PACKET_ENABLE:
5395 break;
5396 case PACKET_SUPPORT_UNKNOWN:
5397 {
96baa820 5398 char *p;
802188a7 5399
2e9f7625 5400 p = rs->buf;
96baa820
JM
5401 *p++ = 'X';
5402 p += hexnumstr (p, (ULONGEST) addr);
5403 *p++ = ',';
5404 p += hexnumstr (p, (ULONGEST) 0);
5405 *p++ = ':';
5406 *p = '\0';
802188a7 5407
2e9f7625 5408 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 5409 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 5410
2e9f7625 5411 if (rs->buf[0] == '\0')
96baa820
JM
5412 {
5413 if (remote_debug)
5414 fprintf_unfiltered (gdb_stdlog,
5415 "binary downloading NOT suppported by target\n");
444abaca 5416 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
5417 }
5418 else
5419 {
5420 if (remote_debug)
5421 fprintf_unfiltered (gdb_stdlog,
5422 "binary downloading suppported by target\n");
444abaca 5423 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
5424 }
5425 break;
5426 }
c906108c
SS
5427 }
5428}
5429
5430/* Write memory data directly to the remote machine.
5431 This does not inform the data cache; the data cache uses this.
a76d924d 5432 HEADER is the starting part of the packet.
c906108c
SS
5433 MEMADDR is the address in the remote memory space.
5434 MYADDR is the address of the buffer in our space.
5435 LEN is the number of bytes.
a76d924d
DJ
5436 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
5437 should send data as binary ('X'), or hex-encoded ('M').
5438
5439 The function creates packet of the form
5440 <HEADER><ADDRESS>,<LENGTH>:<DATA>
5441
5442 where encoding of <DATA> is termined by PACKET_FORMAT.
5443
5444 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
5445 are omitted.
5446
5447 Returns the number of bytes transferred, or 0 (setting errno) for
23860348 5448 error. Only transfer a single packet. */
c906108c 5449
a76d924d
DJ
5450static int
5451remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
5452 const gdb_byte *myaddr, int len,
5453 char packet_format, int use_length)
c906108c 5454{
6d820c5c 5455 struct remote_state *rs = get_remote_state ();
cfd77fa1 5456 char *p;
a76d924d
DJ
5457 char *plen = NULL;
5458 int plenlen = 0;
917317f4
JM
5459 int todo;
5460 int nr_bytes;
a257b5bb 5461 int payload_size;
6765f3e5 5462 int payload_length;
a76d924d
DJ
5463 int header_length;
5464
5465 if (packet_format != 'X' && packet_format != 'M')
5466 internal_error (__FILE__, __LINE__,
5467 "remote_write_bytes_aux: bad packet format");
c906108c 5468
b2182ed2
DJ
5469 if (len <= 0)
5470 return 0;
5471
3de11b2e 5472 payload_size = get_memory_write_packet_size ();
2bc416ba 5473
6d820c5c
DJ
5474 /* The packet buffer will be large enough for the payload;
5475 get_memory_packet_size ensures this. */
a76d924d 5476 rs->buf[0] = '\0';
c906108c 5477
a257b5bb 5478 /* Compute the size of the actual payload by subtracting out the
3de11b2e
NS
5479 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
5480 */
a76d924d
DJ
5481 payload_size -= strlen ("$,:#NN");
5482 if (!use_length)
5483 /* The comma won't be used. */
5484 payload_size += 1;
5485 header_length = strlen (header);
5486 payload_size -= header_length;
3de11b2e 5487 payload_size -= hexnumlen (memaddr);
c906108c 5488
a76d924d 5489 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 5490
a76d924d
DJ
5491 strcat (rs->buf, header);
5492 p = rs->buf + strlen (header);
5493
5494 /* Compute a best guess of the number of bytes actually transfered. */
5495 if (packet_format == 'X')
c906108c 5496 {
23860348 5497 /* Best guess at number of bytes that will fit. */
a257b5bb 5498 todo = min (len, payload_size);
a76d924d
DJ
5499 if (use_length)
5500 payload_size -= hexnumlen (todo);
3de11b2e 5501 todo = min (todo, payload_size);
a76d924d
DJ
5502 }
5503 else
5504 {
23860348 5505 /* Num bytes that will fit. */
a257b5bb 5506 todo = min (len, payload_size / 2);
a76d924d
DJ
5507 if (use_length)
5508 payload_size -= hexnumlen (todo);
3de11b2e 5509 todo = min (todo, payload_size / 2);
917317f4 5510 }
a76d924d 5511
3de11b2e
NS
5512 if (todo <= 0)
5513 internal_error (__FILE__, __LINE__,
5514 _("minumum packet size too small to write data"));
802188a7 5515
6765f3e5
DJ
5516 /* If we already need another packet, then try to align the end
5517 of this packet to a useful boundary. */
5518 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
5519 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
5520
a257b5bb 5521 /* Append "<memaddr>". */
917317f4
JM
5522 memaddr = remote_address_masked (memaddr);
5523 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 5524
a76d924d
DJ
5525 if (use_length)
5526 {
5527 /* Append ",". */
5528 *p++ = ',';
802188a7 5529
a76d924d
DJ
5530 /* Append <len>. Retain the location/size of <len>. It may need to
5531 be adjusted once the packet body has been created. */
5532 plen = p;
5533 plenlen = hexnumstr (p, (ULONGEST) todo);
5534 p += plenlen;
5535 }
a257b5bb
AC
5536
5537 /* Append ":". */
917317f4
JM
5538 *p++ = ':';
5539 *p = '\0';
802188a7 5540
a257b5bb 5541 /* Append the packet body. */
a76d924d 5542 if (packet_format == 'X')
917317f4 5543 {
917317f4
JM
5544 /* Binary mode. Send target system values byte by byte, in
5545 increasing byte addresses. Only escape certain critical
5546 characters. */
6765f3e5
DJ
5547 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
5548 payload_size);
5549
5550 /* If not all TODO bytes fit, then we'll need another packet. Make
9b7194bc
DJ
5551 a second try to keep the end of the packet aligned. Don't do
5552 this if the packet is tiny. */
5553 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6765f3e5
DJ
5554 {
5555 int new_nr_bytes;
5556
5557 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
5558 - memaddr);
5559 if (new_nr_bytes != nr_bytes)
5560 payload_length = remote_escape_output (myaddr, new_nr_bytes,
5561 p, &nr_bytes,
5562 payload_size);
5563 }
5564
5565 p += payload_length;
a76d924d 5566 if (use_length && nr_bytes < todo)
c906108c 5567 {
802188a7 5568 /* Escape chars have filled up the buffer prematurely,
917317f4
JM
5569 and we have actually sent fewer bytes than planned.
5570 Fix-up the length field of the packet. Use the same
5571 number of characters as before. */
917317f4
JM
5572 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
5573 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 5574 }
a76d924d
DJ
5575 }
5576 else
5577 {
917317f4
JM
5578 /* Normal mode: Send target system values byte by byte, in
5579 increasing byte addresses. Each byte is encoded as a two hex
5580 value. */
2644f393 5581 nr_bytes = bin2hex (myaddr, p, todo);
aa6c0017 5582 p += 2 * nr_bytes;
c906108c 5583 }
802188a7 5584
2e9f7625 5585 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 5586 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 5587
2e9f7625 5588 if (rs->buf[0] == 'E')
917317f4
JM
5589 {
5590 /* There is no correspondance between what the remote protocol
5591 uses for errors and errno codes. We would like a cleaner way
5592 of representing errors (big enough to include errno codes,
5593 bfd_error codes, and others). But for now just return EIO. */
5594 errno = EIO;
5595 return 0;
5596 }
802188a7 5597
23860348
MS
5598 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
5599 fewer bytes than we'd planned. */
917317f4 5600 return nr_bytes;
c906108c
SS
5601}
5602
a76d924d
DJ
5603/* Write memory data directly to the remote machine.
5604 This does not inform the data cache; the data cache uses this.
5605 MEMADDR is the address in the remote memory space.
5606 MYADDR is the address of the buffer in our space.
5607 LEN is the number of bytes.
5608
5609 Returns number of bytes transferred, or 0 (setting errno) for
5610 error. Only transfer a single packet. */
5611
5612int
5613remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
5614{
5615 char *packet_format = 0;
5616
5617 /* Check whether the target supports binary download. */
5618 check_binary_download (memaddr);
5619
5620 switch (remote_protocol_packets[PACKET_X].support)
5621 {
5622 case PACKET_ENABLE:
5623 packet_format = "X";
5624 break;
5625 case PACKET_DISABLE:
5626 packet_format = "M";
5627 break;
5628 case PACKET_SUPPORT_UNKNOWN:
5629 internal_error (__FILE__, __LINE__,
5630 _("remote_write_bytes: bad internal state"));
5631 default:
5632 internal_error (__FILE__, __LINE__, _("bad switch"));
5633 }
5634
5635 return remote_write_bytes_aux (packet_format,
5636 memaddr, myaddr, len, packet_format[0], 1);
5637}
5638
c906108c
SS
5639/* Read memory data directly from the remote machine.
5640 This does not use the data cache; the data cache uses this.
5641 MEMADDR is the address in the remote memory space.
5642 MYADDR is the address of the buffer in our space.
5643 LEN is the number of bytes.
5644
5645 Returns number of bytes transferred, or 0 for error. */
5646
917317f4
JM
5647/* NOTE: cagney/1999-10-18: This function (and its siblings in other
5648 remote targets) shouldn't attempt to read the entire buffer.
5649 Instead it should read a single packet worth of data and then
5650 return the byte size of that packet to the caller. The caller (its
5651 caller and its callers caller ;-) already contains code for
23860348 5652 handling partial reads. */
917317f4 5653
449092f6 5654int
cfd77fa1 5655remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 5656{
6d820c5c 5657 struct remote_state *rs = get_remote_state ();
23860348 5658 int max_buf_size; /* Max size of packet output buffer. */
c906108c
SS
5659 int origlen;
5660
b2182ed2
DJ
5661 if (len <= 0)
5662 return 0;
5663
11cf8741 5664 max_buf_size = get_memory_read_packet_size ();
6d820c5c
DJ
5665 /* The packet buffer will be large enough for the payload;
5666 get_memory_packet_size ensures this. */
c906108c
SS
5667
5668 origlen = len;
5669 while (len > 0)
5670 {
c906108c
SS
5671 char *p;
5672 int todo;
5673 int i;
5674
c5aa993b 5675 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
c906108c
SS
5676
5677 /* construct "m"<memaddr>","<len>" */
2e9f7625 5678 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
c906108c 5679 memaddr = remote_address_masked (memaddr);
2e9f7625 5680 p = rs->buf;
c906108c
SS
5681 *p++ = 'm';
5682 p += hexnumstr (p, (ULONGEST) memaddr);
5683 *p++ = ',';
5684 p += hexnumstr (p, (ULONGEST) todo);
5685 *p = '\0';
5686
2e9f7625 5687 putpkt (rs->buf);
6d820c5c 5688 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 5689
2e9f7625
DJ
5690 if (rs->buf[0] == 'E'
5691 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
5692 && rs->buf[3] == '\0')
c906108c 5693 {
23860348
MS
5694 /* There is no correspondance between what the remote
5695 protocol uses for errors and errno codes. We would like
5696 a cleaner way of representing errors (big enough to
5697 include errno codes, bfd_error codes, and others). But
5698 for now just return EIO. */
c906108c
SS
5699 errno = EIO;
5700 return 0;
5701 }
5702
c5aa993b
JM
5703 /* Reply describes memory byte by byte,
5704 each byte encoded as two hex characters. */
c906108c 5705
2e9f7625 5706 p = rs->buf;
30559e10 5707 if ((i = hex2bin (p, myaddr, todo)) < todo)
c906108c 5708 {
30559e10 5709 /* Reply is short. This means that we were able to read
23860348 5710 only part of what we wanted to. */
30559e10 5711 return i + (origlen - len);
c906108c
SS
5712 }
5713 myaddr += todo;
5714 memaddr += todo;
5715 len -= todo;
5716 }
5717 return origlen;
5718}
74531fed
PA
5719\f
5720
5721/* Remote notification handler. */
5722
5723static void
5724handle_notification (char *buf, size_t length)
5725{
5726 if (strncmp (buf, "Stop:", 5) == 0)
5727 {
5728 if (pending_stop_reply)
5729 /* We've already parsed the in-flight stop-reply, but the stub
5730 for some reason thought we didn't, possibly due to timeout
5731 on its side. Just ignore it. */
5732 ;
5733 else
5734 {
5735 struct cleanup *old_chain;
5736 struct stop_reply *reply = stop_reply_xmalloc ();
5737 old_chain = make_cleanup (do_stop_reply_xfree, reply);
5738
5739 remote_parse_stop_reply (buf + 5, reply);
5740
5741 discard_cleanups (old_chain);
5742
5743 /* Be careful to only set it after parsing, since an error
5744 may be thrown then. */
5745 pending_stop_reply = reply;
5746
5747 /* Notify the event loop there's a stop reply to acknowledge
5748 and that there may be more events to fetch. */
5749 mark_async_event_handler (remote_async_get_pending_events_token);
5750 }
5751 }
5752 else
5753 /* We ignore notifications we don't recognize, for compatibility
5754 with newer stubs. */
5755 ;
5756}
5757
c906108c
SS
5758\f
5759/* Read or write LEN bytes from inferior memory at MEMADDR,
23860348
MS
5760 transferring to or from debugger address BUFFER. Write to inferior
5761 if SHOULD_WRITE is nonzero. Returns length of data written or
5762 read; 0 for error. TARGET is unused. */
392a587b 5763
c906108c 5764static int
961cb7b5 5765remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
0a65a603 5766 int should_write, struct mem_attrib *attrib,
29e57380 5767 struct target_ops *target)
c906108c 5768{
4930751a
C
5769 int res;
5770
82f73884
PA
5771 set_general_thread (inferior_ptid);
5772
4930751a 5773 if (should_write)
b2182ed2 5774 res = remote_write_bytes (mem_addr, buffer, mem_len);
4930751a 5775 else
b2182ed2 5776 res = remote_read_bytes (mem_addr, buffer, mem_len);
4930751a
C
5777
5778 return res;
c906108c
SS
5779}
5780
a76d924d
DJ
5781/* Sends a packet with content determined by the printf format string
5782 FORMAT and the remaining arguments, then gets the reply. Returns
5783 whether the packet was a success, a failure, or unknown. */
5784
2c0b251b 5785static enum packet_result
a76d924d
DJ
5786remote_send_printf (const char *format, ...)
5787{
5788 struct remote_state *rs = get_remote_state ();
5789 int max_size = get_remote_packet_size ();
5790
5791 va_list ap;
5792 va_start (ap, format);
5793
5794 rs->buf[0] = '\0';
5795 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
5796 internal_error (__FILE__, __LINE__, "Too long remote packet.");
5797
5798 if (putpkt (rs->buf) < 0)
5799 error (_("Communication problem with target."));
5800
5801 rs->buf[0] = '\0';
5802 getpkt (&rs->buf, &rs->buf_size, 0);
5803
5804 return packet_check_result (rs->buf);
5805}
5806
5807static void
5808restore_remote_timeout (void *p)
5809{
5810 int value = *(int *)p;
5811 remote_timeout = value;
5812}
5813
5814/* Flash writing can take quite some time. We'll set
5815 effectively infinite timeout for flash operations.
5816 In future, we'll need to decide on a better approach. */
5817static const int remote_flash_timeout = 1000;
5818
5819static void
5820remote_flash_erase (struct target_ops *ops,
5821 ULONGEST address, LONGEST length)
5822{
5af949e3 5823 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
a76d924d
DJ
5824 int saved_remote_timeout = remote_timeout;
5825 enum packet_result ret;
5826
5827 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5828 &saved_remote_timeout);
5829 remote_timeout = remote_flash_timeout;
5830
5831 ret = remote_send_printf ("vFlashErase:%s,%s",
5af949e3 5832 phex (address, addr_size),
a76d924d
DJ
5833 phex (length, 4));
5834 switch (ret)
5835 {
5836 case PACKET_UNKNOWN:
5837 error (_("Remote target does not support flash erase"));
5838 case PACKET_ERROR:
5839 error (_("Error erasing flash with vFlashErase packet"));
5840 default:
5841 break;
5842 }
5843
5844 do_cleanups (back_to);
5845}
5846
5847static LONGEST
5848remote_flash_write (struct target_ops *ops,
5849 ULONGEST address, LONGEST length,
5850 const gdb_byte *data)
5851{
5852 int saved_remote_timeout = remote_timeout;
5853 int ret;
5854 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5855 &saved_remote_timeout);
5856
5857 remote_timeout = remote_flash_timeout;
5858 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
5859 do_cleanups (back_to);
5860
5861 return ret;
5862}
5863
5864static void
5865remote_flash_done (struct target_ops *ops)
5866{
5867 int saved_remote_timeout = remote_timeout;
5868 int ret;
5869 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
5870 &saved_remote_timeout);
5871
5872 remote_timeout = remote_flash_timeout;
5873 ret = remote_send_printf ("vFlashDone");
5874 do_cleanups (back_to);
5875
5876 switch (ret)
5877 {
5878 case PACKET_UNKNOWN:
5879 error (_("Remote target does not support vFlashDone"));
5880 case PACKET_ERROR:
5881 error (_("Error finishing flash operation"));
5882 default:
5883 break;
5884 }
5885}
5886
c906108c 5887static void
fba45db2 5888remote_files_info (struct target_ops *ignore)
c906108c
SS
5889{
5890 puts_filtered ("Debugging a target over a serial line.\n");
5891}
5892\f
5893/* Stuff for dealing with the packets which are part of this protocol.
5894 See comment at top of file for details. */
5895
0876f84a 5896/* Read a single character from the remote end. */
c906108c
SS
5897
5898static int
fba45db2 5899readchar (int timeout)
c906108c
SS
5900{
5901 int ch;
5902
2cd58942 5903 ch = serial_readchar (remote_desc, timeout);
c906108c 5904
2acceee2 5905 if (ch >= 0)
0876f84a 5906 return ch;
2acceee2
JM
5907
5908 switch ((enum serial_rc) ch)
c906108c
SS
5909 {
5910 case SERIAL_EOF:
ce5ce7ed 5911 pop_target ();
8a3fe4f8 5912 error (_("Remote connection closed"));
2acceee2 5913 /* no return */
c906108c 5914 case SERIAL_ERROR:
e2e0b3e5 5915 perror_with_name (_("Remote communication error"));
2acceee2 5916 /* no return */
c906108c 5917 case SERIAL_TIMEOUT:
2acceee2 5918 break;
c906108c 5919 }
2acceee2 5920 return ch;
c906108c
SS
5921}
5922
6d820c5c
DJ
5923/* Send the command in *BUF to the remote machine, and read the reply
5924 into *BUF. Report an error if we get an error reply. Resize
5925 *BUF using xrealloc if necessary to hold the result, and update
5926 *SIZEOF_BUF. */
c906108c
SS
5927
5928static void
6d820c5c
DJ
5929remote_send (char **buf,
5930 long *sizeof_buf)
c906108c 5931{
6d820c5c 5932 putpkt (*buf);
c2d11a7d 5933 getpkt (buf, sizeof_buf, 0);
c906108c 5934
6d820c5c
DJ
5935 if ((*buf)[0] == 'E')
5936 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
5937}
5938
6e5abd65
PA
5939/* Return a pointer to an xmalloc'ed string representing an escaped
5940 version of BUF, of len N. E.g. \n is converted to \\n, \t to \\t,
5941 etc. The caller is responsible for releasing the returned
5942 memory. */
5943
5944static char *
5945escape_buffer (const char *buf, int n)
5946{
5947 struct cleanup *old_chain;
5948 struct ui_file *stb;
5949 char *str;
6e5abd65
PA
5950
5951 stb = mem_fileopen ();
5952 old_chain = make_cleanup_ui_file_delete (stb);
5953
5954 fputstrn_unfiltered (buf, n, 0, stb);
759ef836 5955 str = ui_file_xstrdup (stb, NULL);
6e5abd65
PA
5956 do_cleanups (old_chain);
5957 return str;
5958}
5959
c906108c
SS
5960/* Display a null-terminated packet on stdout, for debugging, using C
5961 string notation. */
5962
5963static void
fba45db2 5964print_packet (char *buf)
c906108c
SS
5965{
5966 puts_filtered ("\"");
43e526b9 5967 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
5968 puts_filtered ("\"");
5969}
5970
5971int
fba45db2 5972putpkt (char *buf)
c906108c
SS
5973{
5974 return putpkt_binary (buf, strlen (buf));
5975}
5976
5977/* Send a packet to the remote machine, with error checking. The data
23860348 5978 of the packet is in BUF. The string in BUF can be at most
ea9c271d 5979 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
5980 and for a possible /0 if we are debugging (remote_debug) and want
5981 to print the sent packet as a string. */
c906108c
SS
5982
5983static int
fba45db2 5984putpkt_binary (char *buf, int cnt)
c906108c 5985{
2d717e4f 5986 struct remote_state *rs = get_remote_state ();
c906108c
SS
5987 int i;
5988 unsigned char csum = 0;
11cf8741 5989 char *buf2 = alloca (cnt + 6);
085dd6e6 5990
c906108c
SS
5991 int ch;
5992 int tcount = 0;
5993 char *p;
5994
e24a49d8
PA
5995 /* Catch cases like trying to read memory or listing threads while
5996 we're waiting for a stop reply. The remote server wouldn't be
5997 ready to handle this request, so we'd hang and timeout. We don't
5998 have to worry about this in synchronous mode, because in that
5999 case it's not possible to issue a command while the target is
74531fed
PA
6000 running. This is not a problem in non-stop mode, because in that
6001 case, the stub is always ready to process serial input. */
6002 if (!non_stop && target_can_async_p () && rs->waiting_for_stop_reply)
e24a49d8
PA
6003 error (_("Cannot execute this command while the target is running."));
6004
2d717e4f
DJ
6005 /* We're sending out a new packet. Make sure we don't look at a
6006 stale cached response. */
6007 rs->cached_wait_status = 0;
6008
c906108c
SS
6009 /* Copy the packet into buffer BUF2, encapsulating it
6010 and giving it a checksum. */
6011
c906108c
SS
6012 p = buf2;
6013 *p++ = '$';
6014
6015 for (i = 0; i < cnt; i++)
6016 {
6017 csum += buf[i];
6018 *p++ = buf[i];
6019 }
6020 *p++ = '#';
6021 *p++ = tohex ((csum >> 4) & 0xf);
6022 *p++ = tohex (csum & 0xf);
6023
6024 /* Send it over and over until we get a positive ack. */
6025
6026 while (1)
6027 {
6028 int started_error_output = 0;
6029
6030 if (remote_debug)
6031 {
6e5abd65
PA
6032 struct cleanup *old_chain;
6033 char *str;
6034
c906108c 6035 *p = '\0';
6e5abd65
PA
6036 str = escape_buffer (buf2, p - buf2);
6037 old_chain = make_cleanup (xfree, str);
6038 fprintf_unfiltered (gdb_stdlog, "Sending packet: %s...", str);
0f71a2f6 6039 gdb_flush (gdb_stdlog);
6e5abd65 6040 do_cleanups (old_chain);
c906108c 6041 }
2cd58942 6042 if (serial_write (remote_desc, buf2, p - buf2))
e2e0b3e5 6043 perror_with_name (_("putpkt: write failed"));
c906108c 6044
a6f3e723
SL
6045 /* If this is a no acks version of the remote protocol, send the
6046 packet and move on. */
6047 if (rs->noack_mode)
6048 break;
6049
74531fed
PA
6050 /* Read until either a timeout occurs (-2) or '+' is read.
6051 Handle any notification that arrives in the mean time. */
c906108c
SS
6052 while (1)
6053 {
6054 ch = readchar (remote_timeout);
6055
c5aa993b 6056 if (remote_debug)
c906108c
SS
6057 {
6058 switch (ch)
6059 {
6060 case '+':
1216fa2c 6061 case '-':
c906108c
SS
6062 case SERIAL_TIMEOUT:
6063 case '$':
74531fed 6064 case '%':
c906108c
SS
6065 if (started_error_output)
6066 {
6067 putchar_unfiltered ('\n');
6068 started_error_output = 0;
6069 }
6070 }
6071 }
6072
6073 switch (ch)
6074 {
6075 case '+':
6076 if (remote_debug)
0f71a2f6 6077 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 6078 return 1;
1216fa2c
AC
6079 case '-':
6080 if (remote_debug)
6081 fprintf_unfiltered (gdb_stdlog, "Nak\n");
c906108c 6082 case SERIAL_TIMEOUT:
c5aa993b 6083 tcount++;
c906108c
SS
6084 if (tcount > 3)
6085 return 0;
23860348 6086 break; /* Retransmit buffer. */
c906108c
SS
6087 case '$':
6088 {
40e3f985 6089 if (remote_debug)
2bc416ba 6090 fprintf_unfiltered (gdb_stdlog,
23860348 6091 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
6092 /* It's probably an old response sent because an ACK
6093 was lost. Gobble up the packet and ack it so it
6094 doesn't get retransmitted when we resend this
6095 packet. */
6d820c5c 6096 skip_frame ();
d6f7abdf 6097 serial_write (remote_desc, "+", 1);
23860348 6098 continue; /* Now, go look for +. */
c906108c 6099 }
74531fed
PA
6100
6101 case '%':
6102 {
6103 int val;
6104
6105 /* If we got a notification, handle it, and go back to looking
6106 for an ack. */
6107 /* We've found the start of a notification. Now
6108 collect the data. */
6109 val = read_frame (&rs->buf, &rs->buf_size);
6110 if (val >= 0)
6111 {
6112 if (remote_debug)
6113 {
6e5abd65
PA
6114 struct cleanup *old_chain;
6115 char *str;
6116
6117 str = escape_buffer (rs->buf, val);
6118 old_chain = make_cleanup (xfree, str);
6119 fprintf_unfiltered (gdb_stdlog,
6120 " Notification received: %s\n",
6121 str);
6122 do_cleanups (old_chain);
74531fed
PA
6123 }
6124 handle_notification (rs->buf, val);
6125 /* We're in sync now, rewait for the ack. */
6126 tcount = 0;
6127 }
6128 else
6129 {
6130 if (remote_debug)
6131 {
6132 if (!started_error_output)
6133 {
6134 started_error_output = 1;
6135 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
6136 }
6137 fputc_unfiltered (ch & 0177, gdb_stdlog);
6138 fprintf_unfiltered (gdb_stdlog, "%s", rs->buf);
6139 }
6140 }
6141 continue;
6142 }
6143 /* fall-through */
c906108c
SS
6144 default:
6145 if (remote_debug)
6146 {
6147 if (!started_error_output)
6148 {
6149 started_error_output = 1;
0f71a2f6 6150 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 6151 }
0f71a2f6 6152 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
6153 }
6154 continue;
6155 }
23860348 6156 break; /* Here to retransmit. */
c906108c
SS
6157 }
6158
6159#if 0
6160 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
6161 able to get out next time we call QUIT, without anything as
6162 violent as interrupt_query. If we want to provide a way out of
6163 here without getting to the next QUIT, it should be based on
6164 hitting ^C twice as in remote_wait. */
c906108c
SS
6165 if (quit_flag)
6166 {
6167 quit_flag = 0;
6168 interrupt_query ();
6169 }
6170#endif
6171 }
a6f3e723 6172 return 0;
c906108c
SS
6173}
6174
6d820c5c
DJ
6175/* Come here after finding the start of a frame when we expected an
6176 ack. Do our best to discard the rest of this packet. */
6177
6178static void
6179skip_frame (void)
6180{
6181 int c;
6182
6183 while (1)
6184 {
6185 c = readchar (remote_timeout);
6186 switch (c)
6187 {
6188 case SERIAL_TIMEOUT:
6189 /* Nothing we can do. */
6190 return;
6191 case '#':
6192 /* Discard the two bytes of checksum and stop. */
6193 c = readchar (remote_timeout);
6194 if (c >= 0)
6195 c = readchar (remote_timeout);
6196
6197 return;
6198 case '*': /* Run length encoding. */
6199 /* Discard the repeat count. */
6200 c = readchar (remote_timeout);
6201 if (c < 0)
6202 return;
6203 break;
6204 default:
6205 /* A regular character. */
6206 break;
6207 }
6208 }
6209}
6210
c906108c 6211/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
6212 into *BUF, verifying the checksum, length, and handling run-length
6213 compression. NUL terminate the buffer. If there is not enough room,
6214 expand *BUF using xrealloc.
c906108c 6215
c2d11a7d
JM
6216 Returns -1 on error, number of characters in buffer (ignoring the
6217 trailing NULL) on success. (could be extended to return one of the
23860348 6218 SERIAL status indications). */
c2d11a7d
JM
6219
6220static long
6d820c5c
DJ
6221read_frame (char **buf_p,
6222 long *sizeof_buf)
c906108c
SS
6223{
6224 unsigned char csum;
c2d11a7d 6225 long bc;
c906108c 6226 int c;
6d820c5c 6227 char *buf = *buf_p;
a6f3e723 6228 struct remote_state *rs = get_remote_state ();
c906108c
SS
6229
6230 csum = 0;
c2d11a7d 6231 bc = 0;
c906108c
SS
6232
6233 while (1)
6234 {
6235 c = readchar (remote_timeout);
c906108c
SS
6236 switch (c)
6237 {
6238 case SERIAL_TIMEOUT:
6239 if (remote_debug)
0f71a2f6 6240 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 6241 return -1;
c906108c
SS
6242 case '$':
6243 if (remote_debug)
0f71a2f6
JM
6244 fputs_filtered ("Saw new packet start in middle of old one\n",
6245 gdb_stdlog);
23860348 6246 return -1; /* Start a new packet, count retries. */
c906108c
SS
6247 case '#':
6248 {
6249 unsigned char pktcsum;
e1b09194
AC
6250 int check_0 = 0;
6251 int check_1 = 0;
c906108c 6252
c2d11a7d 6253 buf[bc] = '\0';
c906108c 6254
e1b09194
AC
6255 check_0 = readchar (remote_timeout);
6256 if (check_0 >= 0)
6257 check_1 = readchar (remote_timeout);
802188a7 6258
e1b09194
AC
6259 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
6260 {
6261 if (remote_debug)
2bc416ba 6262 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 6263 gdb_stdlog);
e1b09194
AC
6264 return -1;
6265 }
6266 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
6267 {
6268 if (remote_debug)
2bc416ba 6269 fputs_filtered ("Communication error in checksum\n",
23860348 6270 gdb_stdlog);
40e3f985
FN
6271 return -1;
6272 }
c906108c 6273
a6f3e723
SL
6274 /* Don't recompute the checksum; with no ack packets we
6275 don't have any way to indicate a packet retransmission
6276 is necessary. */
6277 if (rs->noack_mode)
6278 return bc;
6279
e1b09194 6280 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 6281 if (csum == pktcsum)
c2d11a7d 6282 return bc;
c906108c 6283
c5aa993b 6284 if (remote_debug)
c906108c 6285 {
6e5abd65
PA
6286 struct cleanup *old_chain;
6287 char *str;
6288
6289 str = escape_buffer (buf, bc);
6290 old_chain = make_cleanup (xfree, str);
6291 fprintf_unfiltered (gdb_stdlog,
6292 "\
6293Bad checksum, sentsum=0x%x, csum=0x%x, buf=%s\n",
6294 pktcsum, csum, str);
6295 do_cleanups (old_chain);
c906108c 6296 }
c2d11a7d 6297 /* Number of characters in buffer ignoring trailing
23860348 6298 NULL. */
c2d11a7d 6299 return -1;
c906108c 6300 }
23860348 6301 case '*': /* Run length encoding. */
c2c6d25f
JM
6302 {
6303 int repeat;
6304 csum += c;
c906108c 6305
b4501125
AC
6306 c = readchar (remote_timeout);
6307 csum += c;
23860348 6308 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 6309
23860348 6310 /* The character before ``*'' is repeated. */
c2d11a7d 6311
6d820c5c 6312 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 6313 {
6d820c5c
DJ
6314 if (bc + repeat - 1 >= *sizeof_buf - 1)
6315 {
6316 /* Make some more room in the buffer. */
6317 *sizeof_buf += repeat;
6318 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6319 buf = *buf_p;
6320 }
6321
c2d11a7d
JM
6322 memset (&buf[bc], buf[bc - 1], repeat);
6323 bc += repeat;
c2c6d25f
JM
6324 continue;
6325 }
6326
c2d11a7d 6327 buf[bc] = '\0';
6d820c5c 6328 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 6329 return -1;
c2c6d25f 6330 }
c906108c 6331 default:
6d820c5c 6332 if (bc >= *sizeof_buf - 1)
c906108c 6333 {
6d820c5c
DJ
6334 /* Make some more room in the buffer. */
6335 *sizeof_buf *= 2;
6336 *buf_p = xrealloc (*buf_p, *sizeof_buf);
6337 buf = *buf_p;
c906108c
SS
6338 }
6339
6d820c5c
DJ
6340 buf[bc++] = c;
6341 csum += c;
6342 continue;
c906108c
SS
6343 }
6344 }
6345}
6346
6347/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
6348 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6349 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6350 rather than timing out; this is used (in synchronous mode) to wait
6351 for a target that is is executing user code to stop. */
d9fcf2fb
JM
6352/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
6353 don't have to change all the calls to getpkt to deal with the
6354 return value, because at the moment I don't know what the right
23860348 6355 thing to do it for those. */
c906108c 6356void
6d820c5c
DJ
6357getpkt (char **buf,
6358 long *sizeof_buf,
c2d11a7d 6359 int forever)
d9fcf2fb
JM
6360{
6361 int timed_out;
6362
6363 timed_out = getpkt_sane (buf, sizeof_buf, forever);
6364}
6365
6366
6367/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
6368 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
6369 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
6370 rather than timing out; this is used (in synchronous mode) to wait
6371 for a target that is is executing user code to stop. If FOREVER ==
6372 0, this function is allowed to time out gracefully and return an
74531fed
PA
6373 indication of this to the caller. Otherwise return the number of
6374 bytes read. If EXPECTING_NOTIF, consider receiving a notification
6375 enough reason to return to the caller. */
6376
3172dc30 6377static int
74531fed
PA
6378getpkt_or_notif_sane_1 (char **buf, long *sizeof_buf, int forever,
6379 int expecting_notif)
c906108c 6380{
2d717e4f 6381 struct remote_state *rs = get_remote_state ();
c906108c
SS
6382 int c;
6383 int tries;
6384 int timeout;
df4b58fe 6385 int val = -1;
c906108c 6386
2d717e4f
DJ
6387 /* We're reading a new response. Make sure we don't look at a
6388 previously cached response. */
6389 rs->cached_wait_status = 0;
6390
6d820c5c 6391 strcpy (*buf, "timeout");
c906108c
SS
6392
6393 if (forever)
74531fed
PA
6394 timeout = watchdog > 0 ? watchdog : -1;
6395 else if (expecting_notif)
6396 timeout = 0; /* There should already be a char in the buffer. If
6397 not, bail out. */
c906108c
SS
6398 else
6399 timeout = remote_timeout;
6400
6401#define MAX_TRIES 3
6402
74531fed
PA
6403 /* Process any number of notifications, and then return when
6404 we get a packet. */
6405 for (;;)
c906108c 6406 {
74531fed
PA
6407 /* If we get a timeout or bad checksm, retry up to MAX_TRIES
6408 times. */
6409 for (tries = 1; tries <= MAX_TRIES; tries++)
c906108c 6410 {
74531fed
PA
6411 /* This can loop forever if the remote side sends us
6412 characters continuously, but if it pauses, we'll get
6413 SERIAL_TIMEOUT from readchar because of timeout. Then
6414 we'll count that as a retry.
6415
6416 Note that even when forever is set, we will only wait
6417 forever prior to the start of a packet. After that, we
6418 expect characters to arrive at a brisk pace. They should
6419 show up within remote_timeout intervals. */
6420 do
6421 c = readchar (timeout);
6422 while (c != SERIAL_TIMEOUT && c != '$' && c != '%');
c906108c
SS
6423
6424 if (c == SERIAL_TIMEOUT)
6425 {
74531fed
PA
6426 if (expecting_notif)
6427 return -1; /* Don't complain, it's normal to not get
6428 anything in this case. */
6429
23860348 6430 if (forever) /* Watchdog went off? Kill the target. */
c906108c 6431 {
2acceee2 6432 QUIT;
ce5ce7ed 6433 pop_target ();
489eaeba 6434 error (_("Watchdog timeout has expired. Target detached."));
c906108c 6435 }
c906108c 6436 if (remote_debug)
0f71a2f6 6437 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c 6438 }
74531fed
PA
6439 else
6440 {
6441 /* We've found the start of a packet or notification.
6442 Now collect the data. */
6443 val = read_frame (buf, sizeof_buf);
6444 if (val >= 0)
6445 break;
6446 }
6447
6448 serial_write (remote_desc, "-", 1);
c906108c 6449 }
c906108c 6450
74531fed
PA
6451 if (tries > MAX_TRIES)
6452 {
6453 /* We have tried hard enough, and just can't receive the
6454 packet/notification. Give up. */
6455 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
c906108c 6456
74531fed
PA
6457 /* Skip the ack char if we're in no-ack mode. */
6458 if (!rs->noack_mode)
6459 serial_write (remote_desc, "+", 1);
6460 return -1;
6461 }
c906108c 6462
74531fed
PA
6463 /* If we got an ordinary packet, return that to our caller. */
6464 if (c == '$')
c906108c
SS
6465 {
6466 if (remote_debug)
43e526b9 6467 {
6e5abd65
PA
6468 struct cleanup *old_chain;
6469 char *str;
6470
6471 str = escape_buffer (*buf, val);
6472 old_chain = make_cleanup (xfree, str);
6473 fprintf_unfiltered (gdb_stdlog, "Packet received: %s\n", str);
6474 do_cleanups (old_chain);
43e526b9 6475 }
a6f3e723
SL
6476
6477 /* Skip the ack char if we're in no-ack mode. */
6478 if (!rs->noack_mode)
6479 serial_write (remote_desc, "+", 1);
0876f84a 6480 return val;
c906108c
SS
6481 }
6482
74531fed
PA
6483 /* If we got a notification, handle it, and go back to looking
6484 for a packet. */
6485 else
6486 {
6487 gdb_assert (c == '%');
6488
6489 if (remote_debug)
6490 {
6e5abd65
PA
6491 struct cleanup *old_chain;
6492 char *str;
6493
6494 str = escape_buffer (*buf, val);
6495 old_chain = make_cleanup (xfree, str);
6496 fprintf_unfiltered (gdb_stdlog,
6497 " Notification received: %s\n",
6498 str);
6499 do_cleanups (old_chain);
74531fed 6500 }
c906108c 6501
74531fed 6502 handle_notification (*buf, val);
c906108c 6503
74531fed 6504 /* Notifications require no acknowledgement. */
a6f3e723 6505
74531fed
PA
6506 if (expecting_notif)
6507 return -1;
6508 }
6509 }
6510}
6511
6512static int
6513getpkt_sane (char **buf, long *sizeof_buf, int forever)
6514{
6515 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 0);
6516}
6517
6518static int
6519getpkt_or_notif_sane (char **buf, long *sizeof_buf, int forever)
6520{
6521 return getpkt_or_notif_sane_1 (buf, sizeof_buf, forever, 1);
c906108c 6522}
74531fed 6523
c906108c
SS
6524\f
6525static void
7d85a9c0 6526remote_kill (struct target_ops *ops)
43ff13b4 6527{
23860348
MS
6528 /* Use catch_errors so the user can quit from gdb even when we
6529 aren't on speaking terms with the remote system. */
c5aa993b 6530 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
43ff13b4
JM
6531
6532 /* Don't wait for it to die. I'm not really sure it matters whether
6533 we do or not. For the existing stubs, kill is a noop. */
6534 target_mourn_inferior ();
6535}
6536
82f73884
PA
6537static int
6538remote_vkill (int pid, struct remote_state *rs)
6539{
6540 if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6541 return -1;
6542
6543 /* Tell the remote target to detach. */
6544 sprintf (rs->buf, "vKill;%x", pid);
6545 putpkt (rs->buf);
6546 getpkt (&rs->buf, &rs->buf_size, 0);
6547
6548 if (packet_ok (rs->buf,
6549 &remote_protocol_packets[PACKET_vKill]) == PACKET_OK)
6550 return 0;
6551 else if (remote_protocol_packets[PACKET_vKill].support == PACKET_DISABLE)
6552 return -1;
6553 else
6554 return 1;
6555}
6556
6557static void
7d85a9c0 6558extended_remote_kill (struct target_ops *ops)
82f73884
PA
6559{
6560 int res;
6561 int pid = ptid_get_pid (inferior_ptid);
6562 struct remote_state *rs = get_remote_state ();
6563
6564 res = remote_vkill (pid, rs);
6565 if (res == -1 && !remote_multi_process_p (rs))
6566 {
6567 /* Don't try 'k' on a multi-process aware stub -- it has no way
6568 to specify the pid. */
6569
6570 putpkt ("k");
6571#if 0
6572 getpkt (&rs->buf, &rs->buf_size, 0);
6573 if (rs->buf[0] != 'O' || rs->buf[0] != 'K')
6574 res = 1;
6575#else
6576 /* Don't wait for it to die. I'm not really sure it matters whether
6577 we do or not. For the existing stubs, kill is a noop. */
6578 res = 0;
6579#endif
6580 }
6581
6582 if (res != 0)
6583 error (_("Can't kill process"));
6584
82f73884
PA
6585 target_mourn_inferior ();
6586}
6587
c906108c 6588static void
136d6dae 6589remote_mourn (struct target_ops *ops)
c906108c 6590{
136d6dae 6591 remote_mourn_1 (ops);
c906108c
SS
6592}
6593
c906108c
SS
6594/* Worker function for remote_mourn. */
6595static void
fba45db2 6596remote_mourn_1 (struct target_ops *target)
c906108c
SS
6597{
6598 unpush_target (target);
ce5ce7ed 6599
8a2492ee
PA
6600 /* remote_close takes care of doing most of the clean up. */
6601 generic_mourn_inferior ();
c906108c
SS
6602}
6603
2d717e4f
DJ
6604static void
6605extended_remote_mourn_1 (struct target_ops *target)
6606{
6607 struct remote_state *rs = get_remote_state ();
c906108c 6608
e24a49d8
PA
6609 /* In case we got here due to an error, but we're going to stay
6610 connected. */
6611 rs->waiting_for_stop_reply = 0;
6612
74531fed
PA
6613 /* We're no longer interested in these events. */
6614 discard_pending_stop_replies (ptid_get_pid (inferior_ptid));
6615
dc1981d7
PA
6616 /* If the current general thread belonged to the process we just
6617 detached from or has exited, the remote side current general
6618 thread becomes undefined. Considering a case like this:
6619
6620 - We just got here due to a detach.
6621 - The process that we're detaching from happens to immediately
6622 report a global breakpoint being hit in non-stop mode, in the
6623 same thread we had selected before.
6624 - GDB attaches to this process again.
6625 - This event happens to be the next event we handle.
6626
6627 GDB would consider that the current general thread didn't need to
6628 be set on the stub side (with Hg), since for all it knew,
6629 GENERAL_THREAD hadn't changed.
6630
6631 Notice that although in all-stop mode, the remote server always
6632 sets the current thread to the thread reporting the stop event,
6633 that doesn't happen in non-stop mode; in non-stop, the stub *must
6634 not* change the current thread when reporting a breakpoint hit,
6635 due to the decoupling of event reporting and event handling.
6636
6637 To keep things simple, we always invalidate our notion of the
6638 current thread. */
6639 record_currthread (minus_one_ptid);
6640
2d717e4f
DJ
6641 /* Unlike "target remote", we do not want to unpush the target; then
6642 the next time the user says "run", we won't be connected. */
6643
48aa3c27
PA
6644 /* Call common code to mark the inferior as not running. */
6645 generic_mourn_inferior ();
6646
d729566a 6647 if (!have_inferiors ())
2d717e4f 6648 {
82f73884
PA
6649 if (!remote_multi_process_p (rs))
6650 {
6651 /* Check whether the target is running now - some remote stubs
6652 automatically restart after kill. */
6653 putpkt ("?");
6654 getpkt (&rs->buf, &rs->buf_size, 0);
6655
6656 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
6657 {
6658 /* Assume that the target has been restarted. Set inferior_ptid
6659 so that bits of core GDB realizes there's something here, e.g.,
6660 so that the user can say "kill" again. */
6661 inferior_ptid = magic_null_ptid;
6662 }
82f73884 6663 }
2d717e4f
DJ
6664 }
6665}
c906108c
SS
6666
6667static void
136d6dae 6668extended_remote_mourn (struct target_ops *ops)
c906108c 6669{
136d6dae 6670 extended_remote_mourn_1 (ops);
2d717e4f 6671}
c906108c 6672
2d717e4f
DJ
6673static int
6674extended_remote_run (char *args)
6675{
6676 struct remote_state *rs = get_remote_state ();
2d717e4f 6677 int len;
c906108c 6678
2d717e4f
DJ
6679 /* If the user has disabled vRun support, or we have detected that
6680 support is not available, do not try it. */
6681 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6682 return -1;
424163ea 6683
2d717e4f
DJ
6684 strcpy (rs->buf, "vRun;");
6685 len = strlen (rs->buf);
c906108c 6686
2d717e4f
DJ
6687 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
6688 error (_("Remote file name too long for run packet"));
6689 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
6690
d1a41061 6691 gdb_assert (args != NULL);
2d717e4f
DJ
6692 if (*args)
6693 {
6694 struct cleanup *back_to;
6695 int i;
6696 char **argv;
6697
d1a41061 6698 argv = gdb_buildargv (args);
2d717e4f
DJ
6699 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
6700 for (i = 0; argv[i] != NULL; i++)
6701 {
6702 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
6703 error (_("Argument list too long for run packet"));
6704 rs->buf[len++] = ';';
6705 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
6706 }
6707 do_cleanups (back_to);
6708 }
6709
6710 rs->buf[len++] = '\0';
6711
6712 putpkt (rs->buf);
6713 getpkt (&rs->buf, &rs->buf_size, 0);
6714
6715 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
6716 {
6717 /* We have a wait response; we don't need it, though. All is well. */
6718 return 0;
6719 }
6720 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
6721 /* It wasn't disabled before, but it is now. */
6722 return -1;
6723 else
6724 {
6725 if (remote_exec_file[0] == '\0')
6726 error (_("Running the default executable on the remote target failed; "
6727 "try \"set remote exec-file\"?"));
6728 else
6729 error (_("Running \"%s\" on the remote target failed"),
6730 remote_exec_file);
6731 }
c906108c
SS
6732}
6733
2d717e4f
DJ
6734/* In the extended protocol we want to be able to do things like
6735 "run" and have them basically work as expected. So we need
6736 a special create_inferior function. We support changing the
6737 executable file and the command line arguments, but not the
6738 environment. */
6739
43ff13b4 6740static void
2d717e4f 6741extended_remote_create_inferior_1 (char *exec_file, char *args,
75c99385 6742 char **env, int from_tty)
43ff13b4 6743{
43ff13b4 6744 /* If running asynchronously, register the target file descriptor
23860348 6745 with the event loop. */
75c99385 6746 if (target_can_async_p ())
2acceee2 6747 target_async (inferior_event_handler, 0);
43ff13b4
JM
6748
6749 /* Now restart the remote server. */
2d717e4f
DJ
6750 if (extended_remote_run (args) == -1)
6751 {
6752 /* vRun was not supported. Fail if we need it to do what the
6753 user requested. */
6754 if (remote_exec_file[0])
6755 error (_("Remote target does not support \"set remote exec-file\""));
6756 if (args[0])
6757 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 6758
2d717e4f
DJ
6759 /* Fall back to "R". */
6760 extended_remote_restart ();
6761 }
424163ea 6762
45280a52
DJ
6763 /* Clean up from the last time we ran, before we mark the target
6764 running again. This will mark breakpoints uninserted, and
6765 get_offsets may insert breakpoints. */
6766 init_thread_list ();
6767 init_wait_for_inferior ();
6768
2d717e4f 6769 /* Now mark the inferior as running before we do anything else. */
79d7f229 6770 inferior_ptid = magic_null_ptid;
c0a2216e 6771
74531fed
PA
6772 /* Now, if we have thread information, update inferior_ptid. */
6773 inferior_ptid = remote_current_thread (inferior_ptid);
6774
0b16c5cf 6775 remote_add_inferior (ptid_get_pid (inferior_ptid), 0);
c0a2216e
PA
6776 add_thread_silent (inferior_ptid);
6777
2d717e4f
DJ
6778 /* Get updated offsets, if the stub uses qOffsets. */
6779 get_offsets ();
2d717e4f
DJ
6780}
6781
6782static void
136d6dae
VP
6783extended_remote_create_inferior (struct target_ops *ops,
6784 char *exec_file, char *args,
2d717e4f
DJ
6785 char **env, int from_tty)
6786{
75c99385 6787 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
43ff13b4 6788}
c906108c 6789\f
c5aa993b 6790
8181d85f
DJ
6791/* Insert a breakpoint. On targets that have software breakpoint
6792 support, we ask the remote target to do the work; on targets
6793 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
6794
6795static int
a6d9a66e
UW
6796remote_insert_breakpoint (struct gdbarch *gdbarch,
6797 struct bp_target_info *bp_tgt)
c906108c 6798{
d471ea57
AC
6799 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
6800 If it succeeds, then set the support to PACKET_ENABLE. If it
6801 fails, and the user has explicitly requested the Z support then
23860348 6802 report an error, otherwise, mark it disabled and go on. */
802188a7 6803
444abaca 6804 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 6805 {
7c0f6dcc 6806 CORE_ADDR addr = bp_tgt->placed_address;
4fff2411
JZ
6807 struct remote_state *rs;
6808 char *p;
7c0f6dcc 6809 int bpsize;
4fff2411 6810
a6d9a66e 6811 gdbarch_breakpoint_from_pc (gdbarch, &addr, &bpsize);
4fff2411
JZ
6812
6813 rs = get_remote_state ();
6814 p = rs->buf;
802188a7 6815
96baa820
JM
6816 *(p++) = 'Z';
6817 *(p++) = '0';
6818 *(p++) = ',';
7c0f6dcc 6819 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 6820 p += hexnumstr (p, addr);
7c0f6dcc 6821 sprintf (p, ",%d", bpsize);
802188a7 6822
6d820c5c
DJ
6823 putpkt (rs->buf);
6824 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6825
6d820c5c 6826 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 6827 {
d471ea57
AC
6828 case PACKET_ERROR:
6829 return -1;
6830 case PACKET_OK:
7c0f6dcc
JL
6831 bp_tgt->placed_address = addr;
6832 bp_tgt->placed_size = bpsize;
d471ea57
AC
6833 return 0;
6834 case PACKET_UNKNOWN:
6835 break;
96baa820
JM
6836 }
6837 }
c906108c 6838
a6d9a66e 6839 return memory_insert_breakpoint (gdbarch, bp_tgt);
c906108c
SS
6840}
6841
6842static int
a6d9a66e
UW
6843remote_remove_breakpoint (struct gdbarch *gdbarch,
6844 struct bp_target_info *bp_tgt)
c906108c 6845{
8181d85f 6846 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 6847 struct remote_state *rs = get_remote_state ();
96baa820 6848
444abaca 6849 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 6850 {
6d820c5c 6851 char *p = rs->buf;
802188a7 6852
96baa820
JM
6853 *(p++) = 'z';
6854 *(p++) = '0';
6855 *(p++) = ',';
6856
8181d85f
DJ
6857 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
6858 p += hexnumstr (p, addr);
6859 sprintf (p, ",%d", bp_tgt->placed_size);
802188a7 6860
6d820c5c
DJ
6861 putpkt (rs->buf);
6862 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6863
6d820c5c 6864 return (rs->buf[0] == 'E');
96baa820
JM
6865 }
6866
a6d9a66e 6867 return memory_remove_breakpoint (gdbarch, bp_tgt);
c906108c
SS
6868}
6869
d471ea57
AC
6870static int
6871watchpoint_to_Z_packet (int type)
6872{
6873 switch (type)
6874 {
6875 case hw_write:
bb858e6a 6876 return Z_PACKET_WRITE_WP;
d471ea57
AC
6877 break;
6878 case hw_read:
bb858e6a 6879 return Z_PACKET_READ_WP;
d471ea57
AC
6880 break;
6881 case hw_access:
bb858e6a 6882 return Z_PACKET_ACCESS_WP;
d471ea57
AC
6883 break;
6884 default:
8e65ff28 6885 internal_error (__FILE__, __LINE__,
e2e0b3e5 6886 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
6887 }
6888}
6889
3c3bea1c 6890static int
fba45db2 6891remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 6892{
d01949b6 6893 struct remote_state *rs = get_remote_state ();
e514a9d6 6894 char *p;
d471ea57 6895 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 6896
444abaca 6897 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 6898 return -1;
802188a7 6899
6d820c5c
DJ
6900 sprintf (rs->buf, "Z%x,", packet);
6901 p = strchr (rs->buf, '\0');
96baa820
JM
6902 addr = remote_address_masked (addr);
6903 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 6904 sprintf (p, ",%x", len);
802188a7 6905
6d820c5c
DJ
6906 putpkt (rs->buf);
6907 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6908
6d820c5c 6909 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
6910 {
6911 case PACKET_ERROR:
6912 case PACKET_UNKNOWN:
6913 return -1;
6914 case PACKET_OK:
6915 return 0;
6916 }
8e65ff28 6917 internal_error (__FILE__, __LINE__,
e2e0b3e5 6918 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
6919}
6920
d471ea57 6921
3c3bea1c 6922static int
fba45db2 6923remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 6924{
d01949b6 6925 struct remote_state *rs = get_remote_state ();
e514a9d6 6926 char *p;
d471ea57
AC
6927 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
6928
444abaca 6929 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 6930 return -1;
802188a7 6931
6d820c5c
DJ
6932 sprintf (rs->buf, "z%x,", packet);
6933 p = strchr (rs->buf, '\0');
96baa820
JM
6934 addr = remote_address_masked (addr);
6935 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 6936 sprintf (p, ",%x", len);
6d820c5c
DJ
6937 putpkt (rs->buf);
6938 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 6939
6d820c5c 6940 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
6941 {
6942 case PACKET_ERROR:
6943 case PACKET_UNKNOWN:
6944 return -1;
6945 case PACKET_OK:
6946 return 0;
6947 }
8e65ff28 6948 internal_error (__FILE__, __LINE__,
e2e0b3e5 6949 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
6950}
6951
3c3bea1c 6952
501eef12
AC
6953int remote_hw_watchpoint_limit = -1;
6954int remote_hw_breakpoint_limit = -1;
d471ea57 6955
b9362cc7 6956static int
3c3bea1c 6957remote_check_watch_resources (int type, int cnt, int ot)
96baa820 6958{
3c3bea1c
GS
6959 if (type == bp_hardware_breakpoint)
6960 {
6961 if (remote_hw_breakpoint_limit == 0)
6962 return 0;
501eef12
AC
6963 else if (remote_hw_breakpoint_limit < 0)
6964 return 1;
3c3bea1c
GS
6965 else if (cnt <= remote_hw_breakpoint_limit)
6966 return 1;
6967 }
6968 else
6969 {
6970 if (remote_hw_watchpoint_limit == 0)
6971 return 0;
501eef12
AC
6972 else if (remote_hw_watchpoint_limit < 0)
6973 return 1;
3c3bea1c
GS
6974 else if (ot)
6975 return -1;
6976 else if (cnt <= remote_hw_watchpoint_limit)
6977 return 1;
6978 }
6979 return -1;
6980}
6981
b9362cc7 6982static int
3c3bea1c
GS
6983remote_stopped_by_watchpoint (void)
6984{
82f73884 6985 return remote_stopped_by_watchpoint_p;
3c3bea1c
GS
6986}
6987
4aa7a7f5
JJ
6988static int
6989remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 6990{
4aa7a7f5 6991 int rc = 0;
d983da9c 6992 if (remote_stopped_by_watchpoint ())
4aa7a7f5
JJ
6993 {
6994 *addr_p = remote_watch_data_address;
6995 rc = 1;
6996 }
6997
6998 return rc;
3c3bea1c
GS
6999}
7000
7001
7002static int
a6d9a66e
UW
7003remote_insert_hw_breakpoint (struct gdbarch *gdbarch,
7004 struct bp_target_info *bp_tgt)
3c3bea1c 7005{
8181d85f 7006 CORE_ADDR addr;
4fff2411
JZ
7007 struct remote_state *rs;
7008 char *p;
802188a7 7009
c8189ed1 7010 /* The length field should be set to the size of a breakpoint
8181d85f 7011 instruction, even though we aren't inserting one ourselves. */
c8189ed1 7012
3b3b875c 7013 gdbarch_breakpoint_from_pc
a6d9a66e 7014 (gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
3c3bea1c 7015
444abaca 7016 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 7017 return -1;
2bc416ba 7018
4fff2411
JZ
7019 rs = get_remote_state ();
7020 p = rs->buf;
7021
96baa820
JM
7022 *(p++) = 'Z';
7023 *(p++) = '1';
7024 *(p++) = ',';
802188a7 7025
8181d85f 7026 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 7027 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 7028 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 7029
6d820c5c
DJ
7030 putpkt (rs->buf);
7031 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 7032
6d820c5c 7033 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
7034 {
7035 case PACKET_ERROR:
7036 case PACKET_UNKNOWN:
7037 return -1;
7038 case PACKET_OK:
7039 return 0;
7040 }
8e65ff28 7041 internal_error (__FILE__, __LINE__,
e2e0b3e5 7042 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
7043}
7044
d471ea57 7045
802188a7 7046static int
a6d9a66e
UW
7047remote_remove_hw_breakpoint (struct gdbarch *gdbarch,
7048 struct bp_target_info *bp_tgt)
96baa820 7049{
8181d85f 7050 CORE_ADDR addr;
d01949b6 7051 struct remote_state *rs = get_remote_state ();
6d820c5c 7052 char *p = rs->buf;
c8189ed1 7053
444abaca 7054 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 7055 return -1;
802188a7 7056
96baa820
JM
7057 *(p++) = 'z';
7058 *(p++) = '1';
7059 *(p++) = ',';
802188a7 7060
8181d85f 7061 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 7062 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 7063 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 7064
6d820c5c
DJ
7065 putpkt (rs->buf);
7066 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 7067
6d820c5c 7068 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
7069 {
7070 case PACKET_ERROR:
7071 case PACKET_UNKNOWN:
7072 return -1;
7073 case PACKET_OK:
7074 return 0;
7075 }
8e65ff28 7076 internal_error (__FILE__, __LINE__,
e2e0b3e5 7077 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 7078}
96baa820 7079
23860348 7080/* Table used by the crc32 function to calcuate the checksum. */
c906108c 7081
c5aa993b
JM
7082static unsigned long crc32_table[256] =
7083{0, 0};
c906108c
SS
7084
7085static unsigned long
fba45db2 7086crc32 (unsigned char *buf, int len, unsigned int crc)
c906108c 7087{
c5aa993b 7088 if (!crc32_table[1])
c906108c 7089 {
23860348 7090 /* Initialize the CRC table and the decoding table. */
c906108c
SS
7091 int i, j;
7092 unsigned int c;
7093
7094 for (i = 0; i < 256; i++)
c5aa993b
JM
7095 {
7096 for (c = i << 24, j = 8; j > 0; --j)
7097 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
7098 crc32_table[i] = c;
7099 }
c906108c
SS
7100 }
7101
7102 while (len--)
7103 {
7104 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
7105 buf++;
7106 }
7107 return crc;
7108}
7109
7110/* compare-sections command
7111
7112 With no arguments, compares each loadable section in the exec bfd
7113 with the same memory range on the target, and reports mismatches.
7114 Useful for verifying the image on the target against the exec file.
7115 Depends on the target understanding the new "qCRC:" request. */
7116
e514a9d6
JM
7117/* FIXME: cagney/1999-10-26: This command should be broken down into a
7118 target method (target verify memory) and generic version of the
7119 actual command. This will allow other high-level code (especially
23860348 7120 generic_load()) to make use of this target functionality. */
e514a9d6 7121
c906108c 7122static void
fba45db2 7123compare_sections_command (char *args, int from_tty)
c906108c 7124{
d01949b6 7125 struct remote_state *rs = get_remote_state ();
c906108c
SS
7126 asection *s;
7127 unsigned long host_crc, target_crc;
c906108c 7128 struct cleanup *old_chain;
085dd6e6
JM
7129 char *tmp;
7130 char *sectdata;
ce359b09 7131 const char *sectname;
c906108c
SS
7132 bfd_size_type size;
7133 bfd_vma lma;
7134 int matched = 0;
7135 int mismatched = 0;
7136
7137 if (!exec_bfd)
8a3fe4f8 7138 error (_("command cannot be used without an exec file"));
c906108c
SS
7139 if (!current_target.to_shortname ||
7140 strcmp (current_target.to_shortname, "remote") != 0)
8a3fe4f8 7141 error (_("command can only be used with remote target"));
c906108c 7142
c5aa993b 7143 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
7144 {
7145 if (!(s->flags & SEC_LOAD))
c5aa993b 7146 continue; /* skip non-loadable section */
c906108c 7147
2c500098 7148 size = bfd_get_section_size (s);
c906108c 7149 if (size == 0)
c5aa993b 7150 continue; /* skip zero-length section */
c906108c 7151
ce359b09 7152 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 7153 if (args && strcmp (args, sectname) != 0)
c5aa993b 7154 continue; /* not the section selected by user */
c906108c 7155
c5aa993b 7156 matched = 1; /* do this section */
c906108c 7157 lma = s->lma;
23860348 7158 /* FIXME: assumes lma can fit into long. */
ea9c271d 7159 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
ecbc58df 7160 (long) lma, (long) size);
6d820c5c 7161 putpkt (rs->buf);
c906108c 7162
23860348
MS
7163 /* Be clever; compute the host_crc before waiting for target
7164 reply. */
c906108c 7165 sectdata = xmalloc (size);
b8c9b27d 7166 old_chain = make_cleanup (xfree, sectdata);
c906108c
SS
7167 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
7168 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
7169
6d820c5c
DJ
7170 getpkt (&rs->buf, &rs->buf_size, 0);
7171 if (rs->buf[0] == 'E')
5af949e3
UW
7172 error (_("target memory fault, section %s, range %s -- %s"), sectname,
7173 paddress (target_gdbarch, lma),
7174 paddress (target_gdbarch, lma + size));
6d820c5c 7175 if (rs->buf[0] != 'C')
8a3fe4f8 7176 error (_("remote target does not support this operation"));
c906108c 7177
6d820c5c 7178 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
c906108c
SS
7179 target_crc = target_crc * 16 + fromhex (*tmp);
7180
5af949e3
UW
7181 printf_filtered ("Section %s, range %s -- %s: ", sectname,
7182 paddress (target_gdbarch, lma),
7183 paddress (target_gdbarch, lma + size));
c906108c
SS
7184 if (host_crc == target_crc)
7185 printf_filtered ("matched.\n");
7186 else
c5aa993b
JM
7187 {
7188 printf_filtered ("MIS-MATCHED!\n");
7189 mismatched++;
7190 }
c906108c
SS
7191
7192 do_cleanups (old_chain);
7193 }
7194 if (mismatched > 0)
8a3fe4f8
AC
7195 warning (_("One or more sections of the remote executable does not match\n\
7196the loaded file\n"));
c906108c 7197 if (args && !matched)
a3f17187 7198 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
7199}
7200
0e7f50da
UW
7201/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
7202 into remote target. The number of bytes written to the remote
7203 target is returned, or -1 for error. */
7204
7205static LONGEST
7206remote_write_qxfer (struct target_ops *ops, const char *object_name,
7207 const char *annex, const gdb_byte *writebuf,
7208 ULONGEST offset, LONGEST len,
7209 struct packet_config *packet)
7210{
7211 int i, buf_len;
7212 ULONGEST n;
0e7f50da
UW
7213 struct remote_state *rs = get_remote_state ();
7214 int max_size = get_memory_write_packet_size ();
7215
7216 if (packet->support == PACKET_DISABLE)
7217 return -1;
7218
7219 /* Insert header. */
7220 i = snprintf (rs->buf, max_size,
7221 "qXfer:%s:write:%s:%s:",
7222 object_name, annex ? annex : "",
7223 phex_nz (offset, sizeof offset));
7224 max_size -= (i + 1);
7225
7226 /* Escape as much data as fits into rs->buf. */
7227 buf_len = remote_escape_output
7228 (writebuf, len, (rs->buf + i), &max_size, max_size);
7229
7230 if (putpkt_binary (rs->buf, i + buf_len) < 0
7231 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7232 || packet_ok (rs->buf, packet) != PACKET_OK)
7233 return -1;
7234
7235 unpack_varlen_hex (rs->buf, &n);
7236 return n;
7237}
7238
0876f84a
DJ
7239/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
7240 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
7241 number of bytes read is returned, or 0 for EOF, or -1 for error.
7242 The number of bytes read may be less than LEN without indicating an
7243 EOF. PACKET is checked and updated to indicate whether the remote
7244 target supports this object. */
7245
7246static LONGEST
7247remote_read_qxfer (struct target_ops *ops, const char *object_name,
7248 const char *annex,
7249 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
7250 struct packet_config *packet)
7251{
7252 static char *finished_object;
7253 static char *finished_annex;
7254 static ULONGEST finished_offset;
7255
7256 struct remote_state *rs = get_remote_state ();
0876f84a
DJ
7257 LONGEST i, n, packet_len;
7258
7259 if (packet->support == PACKET_DISABLE)
7260 return -1;
7261
7262 /* Check whether we've cached an end-of-object packet that matches
7263 this request. */
7264 if (finished_object)
7265 {
7266 if (strcmp (object_name, finished_object) == 0
7267 && strcmp (annex ? annex : "", finished_annex) == 0
7268 && offset == finished_offset)
7269 return 0;
7270
7271 /* Otherwise, we're now reading something different. Discard
7272 the cache. */
7273 xfree (finished_object);
7274 xfree (finished_annex);
7275 finished_object = NULL;
7276 finished_annex = NULL;
7277 }
7278
7279 /* Request only enough to fit in a single packet. The actual data
7280 may not, since we don't know how much of it will need to be escaped;
7281 the target is free to respond with slightly less data. We subtract
7282 five to account for the response type and the protocol frame. */
7283 n = min (get_remote_packet_size () - 5, len);
7284 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
7285 object_name, annex ? annex : "",
7286 phex_nz (offset, sizeof offset),
7287 phex_nz (n, sizeof n));
7288 i = putpkt (rs->buf);
7289 if (i < 0)
7290 return -1;
7291
7292 rs->buf[0] = '\0';
7293 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
7294 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
7295 return -1;
7296
7297 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
7298 error (_("Unknown remote qXfer reply: %s"), rs->buf);
7299
7300 /* 'm' means there is (or at least might be) more data after this
7301 batch. That does not make sense unless there's at least one byte
7302 of data in this reply. */
7303 if (rs->buf[0] == 'm' && packet_len == 1)
7304 error (_("Remote qXfer reply contained no data."));
7305
7306 /* Got some data. */
7307 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
7308
7309 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
7310 or possibly empty. If we have the final block of a non-empty
7311 object, record this fact to bypass a subsequent partial read. */
7312 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a
DJ
7313 {
7314 finished_object = xstrdup (object_name);
7315 finished_annex = xstrdup (annex ? annex : "");
7316 finished_offset = offset + i;
7317 }
7318
7319 return i;
7320}
7321
1e3ff5ad 7322static LONGEST
4b8a223f 7323remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5
MK
7324 const char *annex, gdb_byte *readbuf,
7325 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
c906108c 7326{
82f73884 7327 struct remote_state *rs;
c906108c 7328 int i;
6d820c5c 7329 char *p2;
1e3ff5ad 7330 char query_type;
c906108c 7331
82f73884
PA
7332 set_general_thread (inferior_ptid);
7333
7334 rs = get_remote_state ();
7335
b2182ed2 7336 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
7337 if (object == TARGET_OBJECT_MEMORY)
7338 {
7339 int xfered;
7340 errno = 0;
7341
2d717e4f
DJ
7342 /* If the remote target is connected but not running, we should
7343 pass this request down to a lower stratum (e.g. the executable
7344 file). */
7345 if (!target_has_execution)
7346 return 0;
7347
21e3b9b9 7348 if (writebuf != NULL)
b2182ed2 7349 xfered = remote_write_bytes (offset, writebuf, len);
21e3b9b9 7350 else
b2182ed2 7351 xfered = remote_read_bytes (offset, readbuf, len);
21e3b9b9
DJ
7352
7353 if (xfered > 0)
7354 return xfered;
7355 else if (xfered == 0 && errno == 0)
7356 return 0;
7357 else
7358 return -1;
7359 }
7360
0e7f50da
UW
7361 /* Handle SPU memory using qxfer packets. */
7362 if (object == TARGET_OBJECT_SPU)
7363 {
7364 if (readbuf)
7365 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
7366 &remote_protocol_packets
7367 [PACKET_qXfer_spu_read]);
7368 else
7369 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
7370 &remote_protocol_packets
7371 [PACKET_qXfer_spu_write]);
7372 }
7373
4aa995e1
PA
7374 /* Handle extra signal info using qxfer packets. */
7375 if (object == TARGET_OBJECT_SIGNAL_INFO)
7376 {
7377 if (readbuf)
7378 return remote_read_qxfer (ops, "siginfo", annex, readbuf, offset, len,
7379 &remote_protocol_packets
7380 [PACKET_qXfer_siginfo_read]);
7381 else
7382 return remote_write_qxfer (ops, "siginfo", annex, writebuf, offset, len,
7383 &remote_protocol_packets
7384 [PACKET_qXfer_siginfo_write]);
7385 }
7386
a76d924d
DJ
7387 /* Only handle flash writes. */
7388 if (writebuf != NULL)
7389 {
7390 LONGEST xfered;
7391
7392 switch (object)
7393 {
7394 case TARGET_OBJECT_FLASH:
7395 xfered = remote_flash_write (ops, offset, len, writebuf);
7396
7397 if (xfered > 0)
7398 return xfered;
7399 else if (xfered == 0 && errno == 0)
7400 return 0;
7401 else
7402 return -1;
7403
7404 default:
7405 return -1;
7406 }
7407 }
4b8a223f 7408
1e3ff5ad
AC
7409 /* Map pre-existing objects onto letters. DO NOT do this for new
7410 objects!!! Instead specify new query packets. */
7411 switch (object)
c906108c 7412 {
1e3ff5ad
AC
7413 case TARGET_OBJECT_AVR:
7414 query_type = 'R';
7415 break;
802188a7
RM
7416
7417 case TARGET_OBJECT_AUXV:
0876f84a
DJ
7418 gdb_assert (annex == NULL);
7419 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
7420 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 7421
23181151
DJ
7422 case TARGET_OBJECT_AVAILABLE_FEATURES:
7423 return remote_read_qxfer
7424 (ops, "features", annex, readbuf, offset, len,
7425 &remote_protocol_packets[PACKET_qXfer_features]);
7426
cfa9d6d9
DJ
7427 case TARGET_OBJECT_LIBRARIES:
7428 return remote_read_qxfer
7429 (ops, "libraries", annex, readbuf, offset, len,
7430 &remote_protocol_packets[PACKET_qXfer_libraries]);
7431
fd79ecee
DJ
7432 case TARGET_OBJECT_MEMORY_MAP:
7433 gdb_assert (annex == NULL);
7434 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
7435 &remote_protocol_packets[PACKET_qXfer_memory_map]);
7436
07e059b5
VP
7437 case TARGET_OBJECT_OSDATA:
7438 /* Should only get here if we're connected. */
7439 gdb_assert (remote_desc);
7440 return remote_read_qxfer
7441 (ops, "osdata", annex, readbuf, offset, len,
7442 &remote_protocol_packets[PACKET_qXfer_osdata]);
7443
1e3ff5ad 7444 default:
c906108c
SS
7445 return -1;
7446 }
7447
4b8a223f 7448 /* Note: a zero OFFSET and LEN can be used to query the minimum
1e3ff5ad 7449 buffer size. */
4b8a223f 7450 if (offset == 0 && len == 0)
ea9c271d
DJ
7451 return (get_remote_packet_size ());
7452 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 7453 large enough let the caller deal with it. */
ea9c271d 7454 if (len < get_remote_packet_size ())
1e3ff5ad 7455 return -1;
ea9c271d 7456 len = get_remote_packet_size ();
1e3ff5ad 7457
23860348 7458 /* Except for querying the minimum buffer size, target must be open. */
c5aa993b 7459 if (!remote_desc)
8a3fe4f8 7460 error (_("remote query is only available after target open"));
c906108c 7461
1e3ff5ad 7462 gdb_assert (annex != NULL);
4b8a223f 7463 gdb_assert (readbuf != NULL);
c906108c 7464
6d820c5c 7465 p2 = rs->buf;
c906108c
SS
7466 *p2++ = 'q';
7467 *p2++ = query_type;
7468
23860348
MS
7469 /* We used one buffer char for the remote protocol q command and
7470 another for the query type. As the remote protocol encapsulation
7471 uses 4 chars plus one extra in case we are debugging
7472 (remote_debug), we have PBUFZIZ - 7 left to pack the query
7473 string. */
c906108c 7474 i = 0;
ea9c271d 7475 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 7476 {
1e3ff5ad
AC
7477 /* Bad caller may have sent forbidden characters. */
7478 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
7479 *p2++ = annex[i];
c906108c
SS
7480 i++;
7481 }
1e3ff5ad
AC
7482 *p2 = '\0';
7483 gdb_assert (annex[i] == '\0');
c906108c 7484
6d820c5c 7485 i = putpkt (rs->buf);
c5aa993b
JM
7486 if (i < 0)
7487 return i;
c906108c 7488
6d820c5c
DJ
7489 getpkt (&rs->buf, &rs->buf_size, 0);
7490 strcpy ((char *) readbuf, rs->buf);
c906108c 7491
cfd77fa1 7492 return strlen ((char *) readbuf);
c906108c
SS
7493}
7494
08388c79
DE
7495static int
7496remote_search_memory (struct target_ops* ops,
7497 CORE_ADDR start_addr, ULONGEST search_space_len,
7498 const gdb_byte *pattern, ULONGEST pattern_len,
7499 CORE_ADDR *found_addrp)
7500{
5af949e3 7501 int addr_size = gdbarch_addr_bit (target_gdbarch) / 8;
08388c79
DE
7502 struct remote_state *rs = get_remote_state ();
7503 int max_size = get_memory_write_packet_size ();
7504 struct packet_config *packet =
7505 &remote_protocol_packets[PACKET_qSearch_memory];
7506 /* number of packet bytes used to encode the pattern,
7507 this could be more than PATTERN_LEN due to escape characters */
7508 int escaped_pattern_len;
7509 /* amount of pattern that was encodable in the packet */
7510 int used_pattern_len;
7511 int i;
7512 int found;
7513 ULONGEST found_addr;
7514
7515 /* Don't go to the target if we don't have to.
7516 This is done before checking packet->support to avoid the possibility that
7517 a success for this edge case means the facility works in general. */
7518 if (pattern_len > search_space_len)
7519 return 0;
7520 if (pattern_len == 0)
7521 {
7522 *found_addrp = start_addr;
7523 return 1;
7524 }
7525
7526 /* If we already know the packet isn't supported, fall back to the simple
7527 way of searching memory. */
7528
7529 if (packet->support == PACKET_DISABLE)
7530 {
7531 /* Target doesn't provided special support, fall back and use the
7532 standard support (copy memory and do the search here). */
7533 return simple_search_memory (ops, start_addr, search_space_len,
7534 pattern, pattern_len, found_addrp);
7535 }
7536
7537 /* Insert header. */
7538 i = snprintf (rs->buf, max_size,
7539 "qSearch:memory:%s;%s;",
5af949e3 7540 phex_nz (start_addr, addr_size),
08388c79
DE
7541 phex_nz (search_space_len, sizeof (search_space_len)));
7542 max_size -= (i + 1);
7543
7544 /* Escape as much data as fits into rs->buf. */
7545 escaped_pattern_len =
7546 remote_escape_output (pattern, pattern_len, (rs->buf + i),
7547 &used_pattern_len, max_size);
7548
7549 /* Bail if the pattern is too large. */
7550 if (used_pattern_len != pattern_len)
10e0fa18 7551 error ("Pattern is too large to transmit to remote target.");
08388c79
DE
7552
7553 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
7554 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
7555 || packet_ok (rs->buf, packet) != PACKET_OK)
7556 {
7557 /* The request may not have worked because the command is not
7558 supported. If so, fall back to the simple way. */
7559 if (packet->support == PACKET_DISABLE)
7560 {
7561 return simple_search_memory (ops, start_addr, search_space_len,
7562 pattern, pattern_len, found_addrp);
7563 }
7564 return -1;
7565 }
7566
7567 if (rs->buf[0] == '0')
7568 found = 0;
7569 else if (rs->buf[0] == '1')
7570 {
7571 found = 1;
7572 if (rs->buf[1] != ',')
10e0fa18 7573 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
7574 unpack_varlen_hex (rs->buf + 2, &found_addr);
7575 *found_addrp = found_addr;
7576 }
7577 else
10e0fa18 7578 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
7579
7580 return found;
7581}
7582
96baa820
JM
7583static void
7584remote_rcmd (char *command,
d9fcf2fb 7585 struct ui_file *outbuf)
96baa820 7586{
d01949b6 7587 struct remote_state *rs = get_remote_state ();
2e9f7625 7588 char *p = rs->buf;
96baa820
JM
7589
7590 if (!remote_desc)
8a3fe4f8 7591 error (_("remote rcmd is only available after target open"));
96baa820 7592
23860348 7593 /* Send a NULL command across as an empty command. */
7be570e7
JM
7594 if (command == NULL)
7595 command = "";
7596
23860348 7597 /* The query prefix. */
2e9f7625
DJ
7598 strcpy (rs->buf, "qRcmd,");
7599 p = strchr (rs->buf, '\0');
96baa820 7600
2e9f7625 7601 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
8a3fe4f8 7602 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 7603
23860348 7604 /* Encode the actual command. */
cfd77fa1 7605 bin2hex ((gdb_byte *) command, p, 0);
96baa820 7606
6d820c5c 7607 if (putpkt (rs->buf) < 0)
8a3fe4f8 7608 error (_("Communication problem with target."));
96baa820
JM
7609
7610 /* get/display the response */
7611 while (1)
7612 {
2e9f7625
DJ
7613 char *buf;
7614
23860348 7615 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
2e9f7625 7616 rs->buf[0] = '\0';
6d820c5c 7617 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 7618 buf = rs->buf;
96baa820 7619 if (buf[0] == '\0')
8a3fe4f8 7620 error (_("Target does not support this command."));
96baa820
JM
7621 if (buf[0] == 'O' && buf[1] != 'K')
7622 {
23860348 7623 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
7624 continue;
7625 }
7626 if (strcmp (buf, "OK") == 0)
7627 break;
7be570e7
JM
7628 if (strlen (buf) == 3 && buf[0] == 'E'
7629 && isdigit (buf[1]) && isdigit (buf[2]))
7630 {
8a3fe4f8 7631 error (_("Protocol error with Rcmd"));
7be570e7 7632 }
96baa820
JM
7633 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
7634 {
7635 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
7636 fputc_unfiltered (c, outbuf);
7637 }
7638 break;
7639 }
7640}
7641
fd79ecee
DJ
7642static VEC(mem_region_s) *
7643remote_memory_map (struct target_ops *ops)
7644{
7645 VEC(mem_region_s) *result = NULL;
7646 char *text = target_read_stralloc (&current_target,
7647 TARGET_OBJECT_MEMORY_MAP, NULL);
7648
7649 if (text)
7650 {
7651 struct cleanup *back_to = make_cleanup (xfree, text);
7652 result = parse_memory_map (text);
7653 do_cleanups (back_to);
7654 }
7655
7656 return result;
7657}
7658
c906108c 7659static void
fba45db2 7660packet_command (char *args, int from_tty)
c906108c 7661{
d01949b6 7662 struct remote_state *rs = get_remote_state ();
c906108c 7663
c5aa993b 7664 if (!remote_desc)
8a3fe4f8 7665 error (_("command can only be used with remote target"));
c906108c 7666
c5aa993b 7667 if (!args)
8a3fe4f8 7668 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
7669
7670 puts_filtered ("sending: ");
7671 print_packet (args);
7672 puts_filtered ("\n");
7673 putpkt (args);
7674
6d820c5c 7675 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 7676 puts_filtered ("received: ");
6d820c5c 7677 print_packet (rs->buf);
c906108c
SS
7678 puts_filtered ("\n");
7679}
7680
7681#if 0
23860348 7682/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 7683
a14ed312 7684static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 7685
a14ed312 7686static void threadset_test_cmd (char *cmd, int tty);
c906108c 7687
a14ed312 7688static void threadalive_test (char *cmd, int tty);
c906108c 7689
a14ed312 7690static void threadlist_test_cmd (char *cmd, int tty);
c906108c 7691
23860348 7692int get_and_display_threadinfo (threadref *ref);
c906108c 7693
a14ed312 7694static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 7695
23860348 7696static int thread_display_step (threadref *ref, void *context);
c906108c 7697
a14ed312 7698static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 7699
a14ed312 7700static void init_remote_threadtests (void);
c906108c 7701
23860348 7702#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
7703
7704static void
fba45db2 7705threadset_test_cmd (char *cmd, int tty)
c906108c
SS
7706{
7707 int sample_thread = SAMPLE_THREAD;
7708
a3f17187 7709 printf_filtered (_("Remote threadset test\n"));
79d7f229 7710 set_general_thread (sample_thread);
c906108c
SS
7711}
7712
7713
7714static void
fba45db2 7715threadalive_test (char *cmd, int tty)
c906108c
SS
7716{
7717 int sample_thread = SAMPLE_THREAD;
79d7f229
PA
7718 int pid = ptid_get_pid (inferior_ptid);
7719 ptid_t ptid = ptid_build (pid, 0, sample_thread);
c906108c 7720
79d7f229 7721 if (remote_thread_alive (ptid))
c906108c
SS
7722 printf_filtered ("PASS: Thread alive test\n");
7723 else
7724 printf_filtered ("FAIL: Thread alive test\n");
7725}
7726
23860348 7727void output_threadid (char *title, threadref *ref);
c906108c
SS
7728
7729void
fba45db2 7730output_threadid (char *title, threadref *ref)
c906108c
SS
7731{
7732 char hexid[20];
7733
23860348 7734 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
7735 hexid[16] = 0;
7736 printf_filtered ("%s %s\n", title, (&hexid[0]));
7737}
7738
7739static void
fba45db2 7740threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
7741{
7742 int startflag = 1;
7743 threadref nextthread;
7744 int done, result_count;
7745 threadref threadlist[3];
7746
7747 printf_filtered ("Remote Threadlist test\n");
7748 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
7749 &result_count, &threadlist[0]))
7750 printf_filtered ("FAIL: threadlist test\n");
7751 else
7752 {
7753 threadref *scan = threadlist;
7754 threadref *limit = scan + result_count;
7755
7756 while (scan < limit)
7757 output_threadid (" thread ", scan++);
7758 }
7759}
7760
7761void
fba45db2 7762display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
7763{
7764 output_threadid ("Threadid: ", &info->threadid);
7765 printf_filtered ("Name: %s\n ", info->shortname);
7766 printf_filtered ("State: %s\n", info->display);
7767 printf_filtered ("other: %s\n\n", info->more_display);
7768}
7769
7770int
fba45db2 7771get_and_display_threadinfo (threadref *ref)
c906108c
SS
7772{
7773 int result;
7774 int set;
7775 struct gdb_ext_thread_info threadinfo;
7776
7777 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
7778 | TAG_MOREDISPLAY | TAG_DISPLAY;
7779 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
7780 display_thread_info (&threadinfo);
7781 return result;
7782}
7783
7784static void
fba45db2 7785threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
7786{
7787 int athread = SAMPLE_THREAD;
7788 threadref thread;
7789 int set;
7790
7791 int_to_threadref (&thread, athread);
7792 printf_filtered ("Remote Threadinfo test\n");
7793 if (!get_and_display_threadinfo (&thread))
7794 printf_filtered ("FAIL cannot get thread info\n");
7795}
7796
7797static int
fba45db2 7798thread_display_step (threadref *ref, void *context)
c906108c
SS
7799{
7800 /* output_threadid(" threadstep ",ref); *//* simple test */
7801 return get_and_display_threadinfo (ref);
7802}
7803
7804static void
fba45db2 7805threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
7806{
7807 printf_filtered ("Remote Threadlist update test\n");
7808 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
7809}
7810
7811static void
7812init_remote_threadtests (void)
7813{
1bedd215
AC
7814 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
7815Fetch and print the remote list of thread identifiers, one pkt only"));
c906108c 7816 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 7817 _("Fetch and display info about one thread"));
c906108c 7818 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 7819 _("Test setting to a different thread"));
c906108c 7820 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 7821 _("Iterate through updating all remote thread info"));
c906108c 7822 add_com ("talive", class_obscure, threadalive_test,
1bedd215 7823 _(" Remote thread alive test "));
c906108c
SS
7824}
7825
7826#endif /* 0 */
7827
f3fb8c85
MS
7828/* Convert a thread ID to a string. Returns the string in a static
7829 buffer. */
7830
7831static char *
117de6a9 7832remote_pid_to_str (struct target_ops *ops, ptid_t ptid)
f3fb8c85 7833{
79d7f229 7834 static char buf[64];
82f73884 7835 struct remote_state *rs = get_remote_state ();
f3fb8c85 7836
ecd0ada5
PA
7837 if (ptid_is_pid (ptid))
7838 {
7839 /* Printing an inferior target id. */
7840
7841 /* When multi-process extensions are off, there's no way in the
7842 remote protocol to know the remote process id, if there's any
7843 at all. There's one exception --- when we're connected with
7844 target extended-remote, and we manually attached to a process
7845 with "attach PID". We don't record anywhere a flag that
7846 allows us to distinguish that case from the case of
7847 connecting with extended-remote and the stub already being
7848 attached to a process, and reporting yes to qAttached, hence
7849 no smart special casing here. */
7850 if (!remote_multi_process_p (rs))
7851 {
7852 xsnprintf (buf, sizeof buf, "Remote target");
7853 return buf;
7854 }
7855
7856 return normal_pid_to_str (ptid);
82f73884 7857 }
ecd0ada5 7858 else
79d7f229 7859 {
ecd0ada5
PA
7860 if (ptid_equal (magic_null_ptid, ptid))
7861 xsnprintf (buf, sizeof buf, "Thread <main>");
7862 else if (remote_multi_process_p (rs))
7863 xsnprintf (buf, sizeof buf, "Thread %d.%ld",
7864 ptid_get_pid (ptid), ptid_get_tid (ptid));
7865 else
7866 xsnprintf (buf, sizeof buf, "Thread %ld",
7867 ptid_get_tid (ptid));
79d7f229
PA
7868 return buf;
7869 }
f3fb8c85
MS
7870}
7871
38691318
KB
7872/* Get the address of the thread local variable in OBJFILE which is
7873 stored at OFFSET within the thread local storage for thread PTID. */
7874
7875static CORE_ADDR
117de6a9
PA
7876remote_get_thread_local_address (struct target_ops *ops,
7877 ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
38691318 7878{
444abaca 7879 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
38691318
KB
7880 {
7881 struct remote_state *rs = get_remote_state ();
6d820c5c 7882 char *p = rs->buf;
82f73884 7883 char *endp = rs->buf + get_remote_packet_size ();
571dd617 7884 enum packet_result result;
38691318
KB
7885
7886 strcpy (p, "qGetTLSAddr:");
7887 p += strlen (p);
82f73884 7888 p = write_ptid (p, endp, ptid);
38691318
KB
7889 *p++ = ',';
7890 p += hexnumstr (p, offset);
7891 *p++ = ',';
7892 p += hexnumstr (p, lm);
7893 *p++ = '\0';
7894
6d820c5c
DJ
7895 putpkt (rs->buf);
7896 getpkt (&rs->buf, &rs->buf_size, 0);
7897 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 7898 if (result == PACKET_OK)
38691318
KB
7899 {
7900 ULONGEST result;
7901
6d820c5c 7902 unpack_varlen_hex (rs->buf, &result);
38691318
KB
7903 return result;
7904 }
571dd617 7905 else if (result == PACKET_UNKNOWN)
109c3e39
AC
7906 throw_error (TLS_GENERIC_ERROR,
7907 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 7908 else
109c3e39
AC
7909 throw_error (TLS_GENERIC_ERROR,
7910 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
7911 }
7912 else
109c3e39
AC
7913 throw_error (TLS_GENERIC_ERROR,
7914 _("TLS not supported or disabled on this target"));
38691318
KB
7915 /* Not reached. */
7916 return 0;
7917}
7918
29709017
DJ
7919/* Support for inferring a target description based on the current
7920 architecture and the size of a 'g' packet. While the 'g' packet
7921 can have any size (since optional registers can be left off the
7922 end), some sizes are easily recognizable given knowledge of the
7923 approximate architecture. */
7924
7925struct remote_g_packet_guess
7926{
7927 int bytes;
7928 const struct target_desc *tdesc;
7929};
7930typedef struct remote_g_packet_guess remote_g_packet_guess_s;
7931DEF_VEC_O(remote_g_packet_guess_s);
7932
7933struct remote_g_packet_data
7934{
7935 VEC(remote_g_packet_guess_s) *guesses;
7936};
7937
7938static struct gdbarch_data *remote_g_packet_data_handle;
7939
7940static void *
7941remote_g_packet_data_init (struct obstack *obstack)
7942{
7943 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
7944}
7945
7946void
7947register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
7948 const struct target_desc *tdesc)
7949{
7950 struct remote_g_packet_data *data
7951 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
7952 struct remote_g_packet_guess new_guess, *guess;
7953 int ix;
7954
7955 gdb_assert (tdesc != NULL);
7956
7957 for (ix = 0;
7958 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
7959 ix++)
7960 if (guess->bytes == bytes)
7961 internal_error (__FILE__, __LINE__,
7962 "Duplicate g packet description added for size %d",
7963 bytes);
7964
7965 new_guess.bytes = bytes;
7966 new_guess.tdesc = tdesc;
7967 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
7968}
7969
d962ef82
DJ
7970/* Return 1 if remote_read_description would do anything on this target
7971 and architecture, 0 otherwise. */
7972
7973static int
7974remote_read_description_p (struct target_ops *target)
7975{
7976 struct remote_g_packet_data *data
7977 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
7978
7979 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
7980 return 1;
7981
7982 return 0;
7983}
7984
29709017
DJ
7985static const struct target_desc *
7986remote_read_description (struct target_ops *target)
7987{
7988 struct remote_g_packet_data *data
1cf3db46 7989 = gdbarch_data (target_gdbarch, remote_g_packet_data_handle);
29709017 7990
d962ef82
DJ
7991 /* Do not try this during initial connection, when we do not know
7992 whether there is a running but stopped thread. */
7993 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
7994 return NULL;
7995
29709017
DJ
7996 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
7997 {
7998 struct remote_g_packet_guess *guess;
7999 int ix;
8000 int bytes = send_g_packet ();
8001
8002 for (ix = 0;
8003 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
8004 ix++)
8005 if (guess->bytes == bytes)
8006 return guess->tdesc;
8007
8008 /* We discard the g packet. A minor optimization would be to
8009 hold on to it, and fill the register cache once we have selected
8010 an architecture, but it's too tricky to do safely. */
8011 }
8012
8013 return NULL;
8014}
8015
a6b151f1
DJ
8016/* Remote file transfer support. This is host-initiated I/O, not
8017 target-initiated; for target-initiated, see remote-fileio.c. */
8018
8019/* If *LEFT is at least the length of STRING, copy STRING to
8020 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8021 decrease *LEFT. Otherwise raise an error. */
8022
8023static void
8024remote_buffer_add_string (char **buffer, int *left, char *string)
8025{
8026 int len = strlen (string);
8027
8028 if (len > *left)
8029 error (_("Packet too long for target."));
8030
8031 memcpy (*buffer, string, len);
8032 *buffer += len;
8033 *left -= len;
8034
8035 /* NUL-terminate the buffer as a convenience, if there is
8036 room. */
8037 if (*left)
8038 **buffer = '\0';
8039}
8040
8041/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
8042 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8043 decrease *LEFT. Otherwise raise an error. */
8044
8045static void
8046remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
8047 int len)
8048{
8049 if (2 * len > *left)
8050 error (_("Packet too long for target."));
8051
8052 bin2hex (bytes, *buffer, len);
8053 *buffer += 2 * len;
8054 *left -= 2 * len;
8055
8056 /* NUL-terminate the buffer as a convenience, if there is
8057 room. */
8058 if (*left)
8059 **buffer = '\0';
8060}
8061
8062/* If *LEFT is large enough, convert VALUE to hex and add it to
8063 *BUFFER, update *BUFFER to point to the new end of the buffer, and
8064 decrease *LEFT. Otherwise raise an error. */
8065
8066static void
8067remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
8068{
8069 int len = hexnumlen (value);
8070
8071 if (len > *left)
8072 error (_("Packet too long for target."));
8073
8074 hexnumstr (*buffer, value);
8075 *buffer += len;
8076 *left -= len;
8077
8078 /* NUL-terminate the buffer as a convenience, if there is
8079 room. */
8080 if (*left)
8081 **buffer = '\0';
8082}
8083
8084/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
8085 value, *REMOTE_ERRNO to the remote error number or zero if none
8086 was included, and *ATTACHMENT to point to the start of the annex
8087 if any. The length of the packet isn't needed here; there may
8088 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
8089
8090 Return 0 if the packet could be parsed, -1 if it could not. If
8091 -1 is returned, the other variables may not be initialized. */
8092
8093static int
8094remote_hostio_parse_result (char *buffer, int *retcode,
8095 int *remote_errno, char **attachment)
8096{
8097 char *p, *p2;
8098
8099 *remote_errno = 0;
8100 *attachment = NULL;
8101
8102 if (buffer[0] != 'F')
8103 return -1;
8104
8105 errno = 0;
8106 *retcode = strtol (&buffer[1], &p, 16);
8107 if (errno != 0 || p == &buffer[1])
8108 return -1;
8109
8110 /* Check for ",errno". */
8111 if (*p == ',')
8112 {
8113 errno = 0;
8114 *remote_errno = strtol (p + 1, &p2, 16);
8115 if (errno != 0 || p + 1 == p2)
8116 return -1;
8117 p = p2;
8118 }
8119
8120 /* Check for ";attachment". If there is no attachment, the
8121 packet should end here. */
8122 if (*p == ';')
8123 {
8124 *attachment = p + 1;
8125 return 0;
8126 }
8127 else if (*p == '\0')
8128 return 0;
8129 else
8130 return -1;
8131}
8132
8133/* Send a prepared I/O packet to the target and read its response.
8134 The prepared packet is in the global RS->BUF before this function
8135 is called, and the answer is there when we return.
8136
8137 COMMAND_BYTES is the length of the request to send, which may include
8138 binary data. WHICH_PACKET is the packet configuration to check
8139 before attempting a packet. If an error occurs, *REMOTE_ERRNO
8140 is set to the error number and -1 is returned. Otherwise the value
8141 returned by the function is returned.
8142
8143 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
8144 attachment is expected; an error will be reported if there's a
8145 mismatch. If one is found, *ATTACHMENT will be set to point into
8146 the packet buffer and *ATTACHMENT_LEN will be set to the
8147 attachment's length. */
8148
8149static int
8150remote_hostio_send_command (int command_bytes, int which_packet,
8151 int *remote_errno, char **attachment,
8152 int *attachment_len)
8153{
8154 struct remote_state *rs = get_remote_state ();
8155 int ret, bytes_read;
8156 char *attachment_tmp;
8157
f1838a98
UW
8158 if (!remote_desc
8159 || remote_protocol_packets[which_packet].support == PACKET_DISABLE)
a6b151f1
DJ
8160 {
8161 *remote_errno = FILEIO_ENOSYS;
8162 return -1;
8163 }
8164
8165 putpkt_binary (rs->buf, command_bytes);
8166 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
8167
8168 /* If it timed out, something is wrong. Don't try to parse the
8169 buffer. */
8170 if (bytes_read < 0)
8171 {
8172 *remote_errno = FILEIO_EINVAL;
8173 return -1;
8174 }
8175
8176 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
8177 {
8178 case PACKET_ERROR:
8179 *remote_errno = FILEIO_EINVAL;
8180 return -1;
8181 case PACKET_UNKNOWN:
8182 *remote_errno = FILEIO_ENOSYS;
8183 return -1;
8184 case PACKET_OK:
8185 break;
8186 }
8187
8188 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
8189 &attachment_tmp))
8190 {
8191 *remote_errno = FILEIO_EINVAL;
8192 return -1;
8193 }
8194
8195 /* Make sure we saw an attachment if and only if we expected one. */
8196 if ((attachment_tmp == NULL && attachment != NULL)
8197 || (attachment_tmp != NULL && attachment == NULL))
8198 {
8199 *remote_errno = FILEIO_EINVAL;
8200 return -1;
8201 }
8202
8203 /* If an attachment was found, it must point into the packet buffer;
8204 work out how many bytes there were. */
8205 if (attachment_tmp != NULL)
8206 {
8207 *attachment = attachment_tmp;
8208 *attachment_len = bytes_read - (*attachment - rs->buf);
8209 }
8210
8211 return ret;
8212}
8213
8214/* Open FILENAME on the remote target, using FLAGS and MODE. Return a
8215 remote file descriptor, or -1 if an error occurs (and set
8216 *REMOTE_ERRNO). */
8217
8218static int
8219remote_hostio_open (const char *filename, int flags, int mode,
8220 int *remote_errno)
8221{
8222 struct remote_state *rs = get_remote_state ();
8223 char *p = rs->buf;
8224 int left = get_remote_packet_size () - 1;
8225
8226 remote_buffer_add_string (&p, &left, "vFile:open:");
8227
8228 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8229 strlen (filename));
8230 remote_buffer_add_string (&p, &left, ",");
8231
8232 remote_buffer_add_int (&p, &left, flags);
8233 remote_buffer_add_string (&p, &left, ",");
8234
8235 remote_buffer_add_int (&p, &left, mode);
8236
8237 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
8238 remote_errno, NULL, NULL);
8239}
8240
8241/* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
8242 Return the number of bytes written, or -1 if an error occurs (and
8243 set *REMOTE_ERRNO). */
8244
8245static int
8246remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
8247 ULONGEST offset, int *remote_errno)
8248{
8249 struct remote_state *rs = get_remote_state ();
8250 char *p = rs->buf;
8251 int left = get_remote_packet_size ();
8252 int out_len;
8253
8254 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
8255
8256 remote_buffer_add_int (&p, &left, fd);
8257 remote_buffer_add_string (&p, &left, ",");
8258
8259 remote_buffer_add_int (&p, &left, offset);
8260 remote_buffer_add_string (&p, &left, ",");
8261
8262 p += remote_escape_output (write_buf, len, p, &out_len,
8263 get_remote_packet_size () - (p - rs->buf));
8264
8265 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
8266 remote_errno, NULL, NULL);
8267}
8268
8269/* Read up to LEN bytes FD on the remote target into READ_BUF
8270 Return the number of bytes read, or -1 if an error occurs (and
8271 set *REMOTE_ERRNO). */
8272
8273static int
8274remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
8275 ULONGEST offset, int *remote_errno)
8276{
8277 struct remote_state *rs = get_remote_state ();
8278 char *p = rs->buf;
8279 char *attachment;
8280 int left = get_remote_packet_size ();
8281 int ret, attachment_len;
8282 int read_len;
8283
8284 remote_buffer_add_string (&p, &left, "vFile:pread:");
8285
8286 remote_buffer_add_int (&p, &left, fd);
8287 remote_buffer_add_string (&p, &left, ",");
8288
8289 remote_buffer_add_int (&p, &left, len);
8290 remote_buffer_add_string (&p, &left, ",");
8291
8292 remote_buffer_add_int (&p, &left, offset);
8293
8294 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
8295 remote_errno, &attachment,
8296 &attachment_len);
8297
8298 if (ret < 0)
8299 return ret;
8300
8301 read_len = remote_unescape_input (attachment, attachment_len,
8302 read_buf, len);
8303 if (read_len != ret)
8304 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
8305
8306 return ret;
8307}
8308
8309/* Close FD on the remote target. Return 0, or -1 if an error occurs
8310 (and set *REMOTE_ERRNO). */
8311
8312static int
8313remote_hostio_close (int fd, int *remote_errno)
8314{
8315 struct remote_state *rs = get_remote_state ();
8316 char *p = rs->buf;
8317 int left = get_remote_packet_size () - 1;
8318
8319 remote_buffer_add_string (&p, &left, "vFile:close:");
8320
8321 remote_buffer_add_int (&p, &left, fd);
8322
8323 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
8324 remote_errno, NULL, NULL);
8325}
8326
8327/* Unlink FILENAME on the remote target. Return 0, or -1 if an error
8328 occurs (and set *REMOTE_ERRNO). */
8329
8330static int
8331remote_hostio_unlink (const char *filename, int *remote_errno)
8332{
8333 struct remote_state *rs = get_remote_state ();
8334 char *p = rs->buf;
8335 int left = get_remote_packet_size () - 1;
8336
8337 remote_buffer_add_string (&p, &left, "vFile:unlink:");
8338
8339 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
8340 strlen (filename));
8341
8342 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
8343 remote_errno, NULL, NULL);
8344}
8345
8346static int
8347remote_fileio_errno_to_host (int errnum)
8348{
8349 switch (errnum)
8350 {
8351 case FILEIO_EPERM:
8352 return EPERM;
8353 case FILEIO_ENOENT:
8354 return ENOENT;
8355 case FILEIO_EINTR:
8356 return EINTR;
8357 case FILEIO_EIO:
8358 return EIO;
8359 case FILEIO_EBADF:
8360 return EBADF;
8361 case FILEIO_EACCES:
8362 return EACCES;
8363 case FILEIO_EFAULT:
8364 return EFAULT;
8365 case FILEIO_EBUSY:
8366 return EBUSY;
8367 case FILEIO_EEXIST:
8368 return EEXIST;
8369 case FILEIO_ENODEV:
8370 return ENODEV;
8371 case FILEIO_ENOTDIR:
8372 return ENOTDIR;
8373 case FILEIO_EISDIR:
8374 return EISDIR;
8375 case FILEIO_EINVAL:
8376 return EINVAL;
8377 case FILEIO_ENFILE:
8378 return ENFILE;
8379 case FILEIO_EMFILE:
8380 return EMFILE;
8381 case FILEIO_EFBIG:
8382 return EFBIG;
8383 case FILEIO_ENOSPC:
8384 return ENOSPC;
8385 case FILEIO_ESPIPE:
8386 return ESPIPE;
8387 case FILEIO_EROFS:
8388 return EROFS;
8389 case FILEIO_ENOSYS:
8390 return ENOSYS;
8391 case FILEIO_ENAMETOOLONG:
8392 return ENAMETOOLONG;
8393 }
8394 return -1;
8395}
8396
8397static char *
8398remote_hostio_error (int errnum)
8399{
8400 int host_error = remote_fileio_errno_to_host (errnum);
8401
8402 if (host_error == -1)
8403 error (_("Unknown remote I/O error %d"), errnum);
8404 else
8405 error (_("Remote I/O error: %s"), safe_strerror (host_error));
8406}
8407
a6b151f1
DJ
8408static void
8409remote_hostio_close_cleanup (void *opaque)
8410{
8411 int fd = *(int *) opaque;
8412 int remote_errno;
8413
8414 remote_hostio_close (fd, &remote_errno);
8415}
8416
f1838a98
UW
8417
8418static void *
8419remote_bfd_iovec_open (struct bfd *abfd, void *open_closure)
8420{
8421 const char *filename = bfd_get_filename (abfd);
8422 int fd, remote_errno;
8423 int *stream;
8424
8425 gdb_assert (remote_filename_p (filename));
8426
8427 fd = remote_hostio_open (filename + 7, FILEIO_O_RDONLY, 0, &remote_errno);
8428 if (fd == -1)
8429 {
8430 errno = remote_fileio_errno_to_host (remote_errno);
8431 bfd_set_error (bfd_error_system_call);
8432 return NULL;
8433 }
8434
8435 stream = xmalloc (sizeof (int));
8436 *stream = fd;
8437 return stream;
8438}
8439
8440static int
8441remote_bfd_iovec_close (struct bfd *abfd, void *stream)
8442{
8443 int fd = *(int *)stream;
8444 int remote_errno;
8445
8446 xfree (stream);
8447
8448 /* Ignore errors on close; these may happen if the remote
8449 connection was already torn down. */
8450 remote_hostio_close (fd, &remote_errno);
8451
8452 return 1;
8453}
8454
8455static file_ptr
8456remote_bfd_iovec_pread (struct bfd *abfd, void *stream, void *buf,
8457 file_ptr nbytes, file_ptr offset)
8458{
8459 int fd = *(int *)stream;
8460 int remote_errno;
8461 file_ptr pos, bytes;
8462
8463 pos = 0;
8464 while (nbytes > pos)
8465 {
8466 bytes = remote_hostio_pread (fd, (char *)buf + pos, nbytes - pos,
8467 offset + pos, &remote_errno);
8468 if (bytes == 0)
8469 /* Success, but no bytes, means end-of-file. */
8470 break;
8471 if (bytes == -1)
8472 {
8473 errno = remote_fileio_errno_to_host (remote_errno);
8474 bfd_set_error (bfd_error_system_call);
8475 return -1;
8476 }
8477
8478 pos += bytes;
8479 }
8480
8481 return pos;
8482}
8483
8484static int
8485remote_bfd_iovec_stat (struct bfd *abfd, void *stream, struct stat *sb)
8486{
8487 /* FIXME: We should probably implement remote_hostio_stat. */
8488 sb->st_size = INT_MAX;
8489 return 0;
8490}
8491
8492int
8493remote_filename_p (const char *filename)
8494{
8495 return strncmp (filename, "remote:", 7) == 0;
8496}
8497
8498bfd *
8499remote_bfd_open (const char *remote_file, const char *target)
8500{
8501 return bfd_openr_iovec (remote_file, target,
8502 remote_bfd_iovec_open, NULL,
8503 remote_bfd_iovec_pread,
8504 remote_bfd_iovec_close,
8505 remote_bfd_iovec_stat);
8506}
8507
a6b151f1
DJ
8508void
8509remote_file_put (const char *local_file, const char *remote_file, int from_tty)
8510{
8511 struct cleanup *back_to, *close_cleanup;
8512 int retcode, fd, remote_errno, bytes, io_size;
8513 FILE *file;
8514 gdb_byte *buffer;
8515 int bytes_in_buffer;
8516 int saw_eof;
8517 ULONGEST offset;
8518
8519 if (!remote_desc)
8520 error (_("command can only be used with remote target"));
8521
8522 file = fopen (local_file, "rb");
8523 if (file == NULL)
8524 perror_with_name (local_file);
7c8a8b04 8525 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
8526
8527 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
8528 | FILEIO_O_TRUNC),
8529 0700, &remote_errno);
8530 if (fd == -1)
8531 remote_hostio_error (remote_errno);
8532
8533 /* Send up to this many bytes at once. They won't all fit in the
8534 remote packet limit, so we'll transfer slightly fewer. */
8535 io_size = get_remote_packet_size ();
8536 buffer = xmalloc (io_size);
8537 make_cleanup (xfree, buffer);
8538
8539 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8540
8541 bytes_in_buffer = 0;
8542 saw_eof = 0;
8543 offset = 0;
8544 while (bytes_in_buffer || !saw_eof)
8545 {
8546 if (!saw_eof)
8547 {
8548 bytes = fread (buffer + bytes_in_buffer, 1, io_size - bytes_in_buffer,
8549 file);
8550 if (bytes == 0)
8551 {
8552 if (ferror (file))
8553 error (_("Error reading %s."), local_file);
8554 else
8555 {
8556 /* EOF. Unless there is something still in the
8557 buffer from the last iteration, we are done. */
8558 saw_eof = 1;
8559 if (bytes_in_buffer == 0)
8560 break;
8561 }
8562 }
8563 }
8564 else
8565 bytes = 0;
8566
8567 bytes += bytes_in_buffer;
8568 bytes_in_buffer = 0;
8569
8570 retcode = remote_hostio_pwrite (fd, buffer, bytes, offset, &remote_errno);
8571
8572 if (retcode < 0)
8573 remote_hostio_error (remote_errno);
8574 else if (retcode == 0)
8575 error (_("Remote write of %d bytes returned 0!"), bytes);
8576 else if (retcode < bytes)
8577 {
8578 /* Short write. Save the rest of the read data for the next
8579 write. */
8580 bytes_in_buffer = bytes - retcode;
8581 memmove (buffer, buffer + retcode, bytes_in_buffer);
8582 }
8583
8584 offset += retcode;
8585 }
8586
8587 discard_cleanups (close_cleanup);
8588 if (remote_hostio_close (fd, &remote_errno))
8589 remote_hostio_error (remote_errno);
8590
8591 if (from_tty)
8592 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
8593 do_cleanups (back_to);
8594}
8595
8596void
8597remote_file_get (const char *remote_file, const char *local_file, int from_tty)
8598{
8599 struct cleanup *back_to, *close_cleanup;
cea39f65 8600 int fd, remote_errno, bytes, io_size;
a6b151f1
DJ
8601 FILE *file;
8602 gdb_byte *buffer;
8603 ULONGEST offset;
8604
8605 if (!remote_desc)
8606 error (_("command can only be used with remote target"));
8607
8608 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
8609 if (fd == -1)
8610 remote_hostio_error (remote_errno);
8611
8612 file = fopen (local_file, "wb");
8613 if (file == NULL)
8614 perror_with_name (local_file);
7c8a8b04 8615 back_to = make_cleanup_fclose (file);
a6b151f1
DJ
8616
8617 /* Send up to this many bytes at once. They won't all fit in the
8618 remote packet limit, so we'll transfer slightly fewer. */
8619 io_size = get_remote_packet_size ();
8620 buffer = xmalloc (io_size);
8621 make_cleanup (xfree, buffer);
8622
8623 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
8624
8625 offset = 0;
8626 while (1)
8627 {
8628 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
8629 if (bytes == 0)
8630 /* Success, but no bytes, means end-of-file. */
8631 break;
8632 if (bytes == -1)
8633 remote_hostio_error (remote_errno);
8634
8635 offset += bytes;
8636
8637 bytes = fwrite (buffer, 1, bytes, file);
8638 if (bytes == 0)
8639 perror_with_name (local_file);
8640 }
8641
8642 discard_cleanups (close_cleanup);
8643 if (remote_hostio_close (fd, &remote_errno))
8644 remote_hostio_error (remote_errno);
8645
8646 if (from_tty)
8647 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
8648 do_cleanups (back_to);
8649}
8650
8651void
8652remote_file_delete (const char *remote_file, int from_tty)
8653{
8654 int retcode, remote_errno;
8655
8656 if (!remote_desc)
8657 error (_("command can only be used with remote target"));
8658
8659 retcode = remote_hostio_unlink (remote_file, &remote_errno);
8660 if (retcode == -1)
8661 remote_hostio_error (remote_errno);
8662
8663 if (from_tty)
8664 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
8665}
8666
8667static void
8668remote_put_command (char *args, int from_tty)
8669{
8670 struct cleanup *back_to;
8671 char **argv;
8672
d1a41061
PP
8673 if (args == NULL)
8674 error_no_arg (_("file to put"));
8675
8676 argv = gdb_buildargv (args);
a6b151f1
DJ
8677 back_to = make_cleanup_freeargv (argv);
8678 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8679 error (_("Invalid parameters to remote put"));
8680
8681 remote_file_put (argv[0], argv[1], from_tty);
8682
8683 do_cleanups (back_to);
8684}
8685
8686static void
8687remote_get_command (char *args, int from_tty)
8688{
8689 struct cleanup *back_to;
8690 char **argv;
8691
d1a41061
PP
8692 if (args == NULL)
8693 error_no_arg (_("file to get"));
8694
8695 argv = gdb_buildargv (args);
a6b151f1
DJ
8696 back_to = make_cleanup_freeargv (argv);
8697 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
8698 error (_("Invalid parameters to remote get"));
8699
8700 remote_file_get (argv[0], argv[1], from_tty);
8701
8702 do_cleanups (back_to);
8703}
8704
8705static void
8706remote_delete_command (char *args, int from_tty)
8707{
8708 struct cleanup *back_to;
8709 char **argv;
8710
d1a41061
PP
8711 if (args == NULL)
8712 error_no_arg (_("file to delete"));
8713
8714 argv = gdb_buildargv (args);
a6b151f1
DJ
8715 back_to = make_cleanup_freeargv (argv);
8716 if (argv[0] == NULL || argv[1] != NULL)
8717 error (_("Invalid parameters to remote delete"));
8718
8719 remote_file_delete (argv[0], from_tty);
8720
8721 do_cleanups (back_to);
8722}
8723
8724static void
8725remote_command (char *args, int from_tty)
8726{
8727 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
8728}
8729
b2175913
MS
8730static int remote_target_can_reverse = 1;
8731
8732static int
8733remote_can_execute_reverse (void)
8734{
8735 return remote_target_can_reverse;
8736}
8737
74531fed
PA
8738static int
8739remote_supports_non_stop (void)
8740{
8741 return 1;
8742}
8743
8a305172
PA
8744static int
8745remote_supports_multi_process (void)
8746{
8747 struct remote_state *rs = get_remote_state ();
8748 return remote_multi_process_p (rs);
8749}
8750
782b2b07
SS
8751int
8752remote_supports_cond_tracepoints (void)
8753{
8754 struct remote_state *rs = get_remote_state ();
8755 return rs->cond_tracepoints;
8756}
8757
c906108c 8758static void
fba45db2 8759init_remote_ops (void)
c906108c 8760{
c5aa993b 8761 remote_ops.to_shortname = "remote";
c906108c 8762 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 8763 remote_ops.to_doc =
c906108c 8764 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
8765Specify the serial device it is connected to\n\
8766(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
8767 remote_ops.to_open = remote_open;
8768 remote_ops.to_close = remote_close;
c906108c 8769 remote_ops.to_detach = remote_detach;
6ad8ae5c 8770 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 8771 remote_ops.to_resume = remote_resume;
c906108c
SS
8772 remote_ops.to_wait = remote_wait;
8773 remote_ops.to_fetch_registers = remote_fetch_registers;
8774 remote_ops.to_store_registers = remote_store_registers;
8775 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c8e73a31 8776 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
c5aa993b 8777 remote_ops.to_files_info = remote_files_info;
c906108c
SS
8778 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
8779 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
3c3bea1c
GS
8780 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
8781 remote_ops.to_stopped_data_address = remote_stopped_data_address;
8782 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
8783 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
8784 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
8785 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
8786 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b
JM
8787 remote_ops.to_kill = remote_kill;
8788 remote_ops.to_load = generic_load;
c906108c
SS
8789 remote_ops.to_mourn_inferior = remote_mourn;
8790 remote_ops.to_thread_alive = remote_thread_alive;
0f71a2f6 8791 remote_ops.to_find_new_threads = remote_threads_info;
0caabb7e 8792 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 8793 remote_ops.to_extra_thread_info = remote_threads_extra_info;
c906108c 8794 remote_ops.to_stop = remote_stop;
4b8a223f 8795 remote_ops.to_xfer_partial = remote_xfer_partial;
96baa820 8796 remote_ops.to_rcmd = remote_rcmd;
49d03eab 8797 remote_ops.to_log_command = serial_log_command;
38691318 8798 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 8799 remote_ops.to_stratum = process_stratum;
c35b1492
PA
8800 remote_ops.to_has_all_memory = default_child_has_all_memory;
8801 remote_ops.to_has_memory = default_child_has_memory;
8802 remote_ops.to_has_stack = default_child_has_stack;
8803 remote_ops.to_has_registers = default_child_has_registers;
8804 remote_ops.to_has_execution = default_child_has_execution;
c5aa993b 8805 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
b2175913 8806 remote_ops.to_can_execute_reverse = remote_can_execute_reverse;
c5aa993b 8807 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 8808 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
8809 remote_ops.to_flash_erase = remote_flash_erase;
8810 remote_ops.to_flash_done = remote_flash_done;
29709017 8811 remote_ops.to_read_description = remote_read_description;
08388c79 8812 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
8813 remote_ops.to_can_async_p = remote_can_async_p;
8814 remote_ops.to_is_async_p = remote_is_async_p;
8815 remote_ops.to_async = remote_async;
8816 remote_ops.to_async_mask = remote_async_mask;
8817 remote_ops.to_terminal_inferior = remote_terminal_inferior;
8818 remote_ops.to_terminal_ours = remote_terminal_ours;
74531fed 8819 remote_ops.to_supports_non_stop = remote_supports_non_stop;
8a305172 8820 remote_ops.to_supports_multi_process = remote_supports_multi_process;
c906108c
SS
8821}
8822
8823/* Set up the extended remote vector by making a copy of the standard
8824 remote vector and adding to it. */
8825
8826static void
fba45db2 8827init_extended_remote_ops (void)
c906108c
SS
8828{
8829 extended_remote_ops = remote_ops;
8830
0f71a2f6 8831 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 8832 extended_remote_ops.to_longname =
c906108c 8833 "Extended remote serial target in gdb-specific protocol";
c5aa993b 8834 extended_remote_ops.to_doc =
c906108c 8835 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
8836Specify the serial device it is connected to (e.g. /dev/ttya).";
8837 extended_remote_ops.to_open = extended_remote_open;
c906108c
SS
8838 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
8839 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
2d717e4f
DJ
8840 extended_remote_ops.to_detach = extended_remote_detach;
8841 extended_remote_ops.to_attach = extended_remote_attach;
82f73884 8842 extended_remote_ops.to_kill = extended_remote_kill;
0f71a2f6
JM
8843}
8844
6426a772
JM
8845static int
8846remote_can_async_p (void)
8847{
c6ebd6cf 8848 if (!target_async_permitted)
75c99385
PA
8849 /* We only enable async when the user specifically asks for it. */
8850 return 0;
8851
23860348 8852 /* We're async whenever the serial device is. */
b84876c2 8853 return remote_async_mask_value && serial_can_async_p (remote_desc);
6426a772
JM
8854}
8855
8856static int
8857remote_is_async_p (void)
8858{
c6ebd6cf 8859 if (!target_async_permitted)
75c99385
PA
8860 /* We only enable async when the user specifically asks for it. */
8861 return 0;
8862
23860348 8863 /* We're async whenever the serial device is. */
b84876c2 8864 return remote_async_mask_value && serial_is_async_p (remote_desc);
6426a772
JM
8865}
8866
2acceee2
JM
8867/* Pass the SERIAL event on and up to the client. One day this code
8868 will be able to delay notifying the client of an event until the
23860348 8869 point where an entire packet has been received. */
2acceee2 8870
2bc416ba 8871static void (*async_client_callback) (enum inferior_event_type event_type,
23860348 8872 void *context);
2acceee2
JM
8873static void *async_client_context;
8874static serial_event_ftype remote_async_serial_handler;
8875
6426a772 8876static void
819cc324 8877remote_async_serial_handler (struct serial *scb, void *context)
6426a772 8878{
2acceee2
JM
8879 /* Don't propogate error information up to the client. Instead let
8880 the client find out about the error by querying the target. */
8881 async_client_callback (INF_REG_EVENT, async_client_context);
8882}
8883
74531fed
PA
8884static void
8885remote_async_inferior_event_handler (gdb_client_data data)
8886{
8887 inferior_event_handler (INF_REG_EVENT, NULL);
8888}
8889
8890static void
8891remote_async_get_pending_events_handler (gdb_client_data data)
8892{
8893 remote_get_pending_stop_replies ();
8894}
8895
2acceee2 8896static void
2bc416ba 8897remote_async (void (*callback) (enum inferior_event_type event_type,
23860348 8898 void *context), void *context)
2acceee2 8899{
b84876c2 8900 if (remote_async_mask_value == 0)
8e65ff28 8901 internal_error (__FILE__, __LINE__,
e2e0b3e5 8902 _("Calling remote_async when async is masked"));
ed9a39eb 8903
2acceee2
JM
8904 if (callback != NULL)
8905 {
2cd58942 8906 serial_async (remote_desc, remote_async_serial_handler, NULL);
2acceee2
JM
8907 async_client_callback = callback;
8908 async_client_context = context;
8909 }
8910 else
2cd58942 8911 serial_async (remote_desc, NULL, NULL);
6426a772
JM
8912}
8913
b84876c2
PA
8914static int
8915remote_async_mask (int new_mask)
8916{
8917 int curr_mask = remote_async_mask_value;
8918 remote_async_mask_value = new_mask;
8919 return curr_mask;
8920}
8921
5a2468f5 8922static void
c2d11a7d 8923set_remote_cmd (char *args, int from_tty)
5a2468f5 8924{
427c3a89 8925 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
5a2468f5
JM
8926}
8927
d471ea57
AC
8928static void
8929show_remote_cmd (char *args, int from_tty)
8930{
37a105a1 8931 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 8932 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1
DJ
8933 struct cleanup *showlist_chain;
8934 struct cmd_list_element *list = remote_show_cmdlist;
8935
8936 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
8937 for (; list != NULL; list = list->next)
8938 if (strcmp (list->name, "Z-packet") == 0)
8939 continue;
427c3a89
DJ
8940 else if (list->type == not_set_cmd)
8941 /* Alias commands are exactly like the original, except they
8942 don't have the normal type. */
8943 continue;
8944 else
37a105a1
DJ
8945 {
8946 struct cleanup *option_chain
8947 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
8948 ui_out_field_string (uiout, "name", list->name);
8949 ui_out_text (uiout, ": ");
427c3a89
DJ
8950 if (list->type == show_cmd)
8951 do_setshow_command ((char *) NULL, from_tty, list);
8952 else
8953 cmd_func (list, NULL, from_tty);
37a105a1
DJ
8954 /* Close the tuple. */
8955 do_cleanups (option_chain);
8956 }
427c3a89
DJ
8957
8958 /* Close the tuple. */
8959 do_cleanups (showlist_chain);
d471ea57 8960}
5a2468f5 8961
0f71a2f6 8962
23860348 8963/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
8964static void
8965remote_new_objfile (struct objfile *objfile)
8966{
23860348 8967 if (remote_desc != 0) /* Have a remote connection. */
06d3b283 8968 remote_check_symbols (objfile);
dc8acb97
MS
8969}
8970
c906108c 8971void
fba45db2 8972_initialize_remote (void)
c906108c 8973{
ea9c271d
DJ
8974 struct remote_state *rs;
8975
0f71a2f6 8976 /* architecture specific data */
2bc416ba 8977 remote_gdbarch_data_handle =
23860348 8978 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
8979 remote_g_packet_data_handle =
8980 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 8981
ea9c271d
DJ
8982 /* Initialize the per-target state. At the moment there is only one
8983 of these, not one per target. Only one target is active at a
8984 time. The default buffer size is unimportant; it will be expanded
8985 whenever a larger buffer is needed. */
0b83947e 8986 rs = get_remote_state_raw ();
ea9c271d
DJ
8987 rs->buf_size = 400;
8988 rs->buf = xmalloc (rs->buf_size);
8989
c906108c
SS
8990 init_remote_ops ();
8991 add_target (&remote_ops);
8992
8993 init_extended_remote_ops ();
8994 add_target (&extended_remote_ops);
cce74817 8995
dc8acb97 8996 /* Hook into new objfile notification. */
06d3b283 8997 observer_attach_new_objfile (remote_new_objfile);
dc8acb97 8998
b803fb0f
DJ
8999 /* Set up signal handlers. */
9000 sigint_remote_token =
9001 create_async_signal_handler (async_remote_interrupt, NULL);
9002 sigint_remote_twice_token =
9003 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
9004
c906108c
SS
9005#if 0
9006 init_remote_threadtests ();
9007#endif
9008
23860348 9009 /* set/show remote ... */
d471ea57 9010
1bedd215 9011 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
9012Remote protocol specific variables\n\
9013Configure various remote-protocol specific variables such as\n\
1bedd215 9014the packets being used"),
cff3e48b 9015 &remote_set_cmdlist, "set remote ",
23860348 9016 0 /* allow-unknown */, &setlist);
1bedd215 9017 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
9018Remote protocol specific variables\n\
9019Configure various remote-protocol specific variables such as\n\
1bedd215 9020the packets being used"),
cff3e48b 9021 &remote_show_cmdlist, "show remote ",
23860348 9022 0 /* allow-unknown */, &showlist);
5a2468f5 9023
1a966eab
AC
9024 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
9025Compare section data on target to the exec file.\n\
9026Argument is a single section name (default: all loaded sections)."),
c906108c
SS
9027 &cmdlist);
9028
1a966eab
AC
9029 add_cmd ("packet", class_maintenance, packet_command, _("\
9030Send an arbitrary packet to a remote target.\n\
c906108c
SS
9031 maintenance packet TEXT\n\
9032If GDB is talking to an inferior via the GDB serial protocol, then\n\
9033this command sends the string TEXT to the inferior, and displays the\n\
9034response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 9035terminating `#' character and checksum."),
c906108c
SS
9036 &maintenancelist);
9037
7915a72c
AC
9038 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
9039Set whether to send break if interrupted."), _("\
9040Show whether to send break if interrupted."), _("\
9041If set, a break, instead of a cntrl-c, is sent to the remote target."),
2c5b56ce 9042 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
e707bbc2 9043 &setlist, &showlist);
c906108c 9044
23860348 9045 /* Install commands for configuring memory read/write packets. */
11cf8741 9046
1a966eab
AC
9047 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
9048Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 9049 &setlist);
1a966eab
AC
9050 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
9051Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
9052 &showlist);
9053 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
9054 set_memory_write_packet_size, _("\
9055Set the maximum number of bytes per memory-write packet.\n\
9056Specify the number of bytes in a packet or 0 (zero) for the\n\
9057default packet size. The actual limit is further reduced\n\
9058dependent on the target. Specify ``fixed'' to disable the\n\
9059further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
9060 &remote_set_cmdlist);
9061 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
9062 set_memory_read_packet_size, _("\
9063Set the maximum number of bytes per memory-read packet.\n\
9064Specify the number of bytes in a packet or 0 (zero) for the\n\
9065default packet size. The actual limit is further reduced\n\
9066dependent on the target. Specify ``fixed'' to disable the\n\
9067further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
9068 &remote_set_cmdlist);
9069 add_cmd ("memory-write-packet-size", no_class,
9070 show_memory_write_packet_size,
1a966eab 9071 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
9072 &remote_show_cmdlist);
9073 add_cmd ("memory-read-packet-size", no_class,
9074 show_memory_read_packet_size,
1a966eab 9075 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 9076 &remote_show_cmdlist);
c906108c 9077
b3f42336 9078 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
9079 &remote_hw_watchpoint_limit, _("\
9080Set the maximum number of target hardware watchpoints."), _("\
9081Show the maximum number of target hardware watchpoints."), _("\
9082Specify a negative limit for unlimited."),
2c5b56ce 9083 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
b3f42336
AC
9084 &remote_set_cmdlist, &remote_show_cmdlist);
9085 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
9086 &remote_hw_breakpoint_limit, _("\
9087Set the maximum number of target hardware breakpoints."), _("\
9088Show the maximum number of target hardware breakpoints."), _("\
9089Specify a negative limit for unlimited."),
2c5b56ce 9090 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
b3f42336 9091 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 9092
4d28ad1e
AC
9093 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
9094 &remote_address_size, _("\
9095Set the maximum size of the address (in bits) in a memory packet."), _("\
9096Show the maximum size of the address (in bits) in a memory packet."), NULL,
9097 NULL,
9098 NULL, /* FIXME: i18n: */
9099 &setlist, &showlist);
c906108c 9100
444abaca 9101 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 9102 "X", "binary-download", 1);
0f71a2f6 9103
444abaca 9104 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 9105 "vCont", "verbose-resume", 0);
506fb367 9106
89be2091
DJ
9107 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
9108 "QPassSignals", "pass-signals", 0);
9109
444abaca 9110 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 9111 "qSymbol", "symbol-lookup", 0);
dc8acb97 9112
444abaca 9113 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 9114 "P", "set-register", 1);
d471ea57 9115
444abaca 9116 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 9117 "p", "fetch-register", 1);
b96ec7ac 9118
444abaca 9119 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 9120 "Z0", "software-breakpoint", 0);
d471ea57 9121
444abaca 9122 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 9123 "Z1", "hardware-breakpoint", 0);
d471ea57 9124
444abaca 9125 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 9126 "Z2", "write-watchpoint", 0);
d471ea57 9127
444abaca 9128 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 9129 "Z3", "read-watchpoint", 0);
d471ea57 9130
444abaca 9131 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 9132 "Z4", "access-watchpoint", 0);
d471ea57 9133
0876f84a
DJ
9134 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
9135 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 9136
23181151
DJ
9137 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
9138 "qXfer:features:read", "target-features", 0);
9139
cfa9d6d9
DJ
9140 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
9141 "qXfer:libraries:read", "library-info", 0);
9142
fd79ecee
DJ
9143 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
9144 "qXfer:memory-map:read", "memory-map", 0);
9145
0e7f50da
UW
9146 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
9147 "qXfer:spu:read", "read-spu-object", 0);
9148
9149 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
9150 "qXfer:spu:write", "write-spu-object", 0);
9151
07e059b5
VP
9152 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_osdata],
9153 "qXfer:osdata:read", "osdata", 0);
9154
4aa995e1
PA
9155 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_read],
9156 "qXfer:siginfo:read", "read-siginfo-object", 0);
9157
9158 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_siginfo_write],
9159 "qXfer:siginfo:write", "write-siginfo-object", 0);
9160
444abaca 9161 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 9162 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
9163 0);
9164
be2a5f71
DJ
9165 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
9166 "qSupported", "supported-packets", 0);
9167
08388c79
DE
9168 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
9169 "qSearch:memory", "search-memory", 0);
9170
a6b151f1
DJ
9171 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
9172 "vFile:open", "hostio-open", 0);
9173
9174 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
9175 "vFile:pread", "hostio-pread", 0);
9176
9177 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
9178 "vFile:pwrite", "hostio-pwrite", 0);
9179
9180 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
9181 "vFile:close", "hostio-close", 0);
9182
9183 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
9184 "vFile:unlink", "hostio-unlink", 0);
9185
2d717e4f
DJ
9186 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
9187 "vAttach", "attach", 0);
9188
9189 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
9190 "vRun", "run", 0);
9191
a6f3e723
SL
9192 add_packet_config_cmd (&remote_protocol_packets[PACKET_QStartNoAckMode],
9193 "QStartNoAckMode", "noack", 0);
9194
82f73884
PA
9195 add_packet_config_cmd (&remote_protocol_packets[PACKET_vKill],
9196 "vKill", "kill", 0);
9197
0b16c5cf
PA
9198 add_packet_config_cmd (&remote_protocol_packets[PACKET_qAttached],
9199 "qAttached", "query-attached", 0);
9200
782b2b07
SS
9201 add_packet_config_cmd (&remote_protocol_packets[PACKET_ConditionalTracepoints],
9202 "ConditionalTracepoints", "conditional-tracepoints", 0);
9203
37a105a1
DJ
9204 /* Keep the old ``set remote Z-packet ...'' working. Each individual
9205 Z sub-packet has its own set and show commands, but users may
9206 have sets to this variable in their .gdbinit files (or in their
9207 documentation). */
e9e68a56 9208 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
9209 &remote_Z_packet_detect, _("\
9210Set use of remote protocol `Z' packets"), _("\
9211Show use of remote protocol `Z' packets "), _("\
3b64bf98 9212When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 9213packets."),
e9e68a56 9214 set_remote_protocol_Z_packet_cmd,
2c5b56ce 9215 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
e9e68a56 9216 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 9217
a6b151f1
DJ
9218 add_prefix_cmd ("remote", class_files, remote_command, _("\
9219Manipulate files on the remote system\n\
9220Transfer files to and from the remote target system."),
9221 &remote_cmdlist, "remote ",
9222 0 /* allow-unknown */, &cmdlist);
9223
9224 add_cmd ("put", class_files, remote_put_command,
9225 _("Copy a local file to the remote system."),
9226 &remote_cmdlist);
9227
9228 add_cmd ("get", class_files, remote_get_command,
9229 _("Copy a remote file to the local system."),
9230 &remote_cmdlist);
9231
9232 add_cmd ("delete", class_files, remote_delete_command,
9233 _("Delete a remote file."),
9234 &remote_cmdlist);
9235
2d717e4f
DJ
9236 remote_exec_file = xstrdup ("");
9237 add_setshow_string_noescape_cmd ("exec-file", class_files,
9238 &remote_exec_file, _("\
9239Set the remote pathname for \"run\""), _("\
9240Show the remote pathname for \"run\""), NULL, NULL, NULL,
9241 &remote_set_cmdlist, &remote_show_cmdlist);
9242
449092f6
CV
9243 /* Eventually initialize fileio. See fileio.c */
9244 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229
PA
9245
9246 /* Take advantage of the fact that the LWP field is not used, to tag
9247 special ptids with it set to != 0. */
82f73884
PA
9248 magic_null_ptid = ptid_build (42000, 1, -1);
9249 not_sent_ptid = ptid_build (42000, 1, -2);
9250 any_thread_ptid = ptid_build (42000, 1, 0);
c906108c 9251}
This page took 1.986628 seconds and 4 git commands to generate.