]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/remote.c
gas/
[thirdparty/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 2
197e01b6 3 Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
24b06219 4 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
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
11 the Free Software Foundation; either version 2 of the License, or
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
20 along with this program; if not, write to the Free Software
197e01b6
EZ
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
c5aa993b 23
23860348 24/* See the GDB User Guide for details of the GDB remote protocol. */
c5aa993b 25
c906108c
SS
26#include "defs.h"
27#include "gdb_string.h"
28#include <ctype.h>
29#include <fcntl.h>
c906108c
SS
30#include "inferior.h"
31#include "bfd.h"
32#include "symfile.h"
60250e8b 33#include "exceptions.h"
c906108c 34#include "target.h"
c5aa993b 35/*#include "terminal.h" */
c906108c
SS
36#include "gdbcmd.h"
37#include "objfiles.h"
38#include "gdb-stabs.h"
39#include "gdbthread.h"
c2c6d25f 40#include "remote.h"
4e052eda 41#include "regcache.h"
fd0407d6 42#include "value.h"
1ff9c3d6 43#include "gdb_assert.h"
6867ae3e 44#include "observer.h"
a77053c2 45#include "solib.h"
37a105a1
DJ
46#include "cli/cli-decode.h"
47#include "cli/cli-setshow.h"
c906108c 48
7a292a7a 49#include <ctype.h>
9846de1b 50#include <sys/time.h>
c906108c 51
43ff13b4 52#include "event-loop.h"
c2c6d25f 53#include "event-top.h"
2acceee2 54#include "inf-loop.h"
43ff13b4 55
c906108c
SS
56#include <signal.h>
57#include "serial.h"
58
6240bebf
MS
59#include "gdbcore.h" /* for exec_bfd */
60
449092f6
CV
61#include "remote-fileio.h"
62
fd79ecee
DJ
63#include "memory-map.h"
64
6765f3e5
DJ
65/* The size to align memory write packets, when practical. The protocol
66 does not guarantee any alignment, and gdb will generate short
67 writes and unaligned writes, but even as a best-effort attempt this
68 can improve bulk transfers. For instance, if a write is misaligned
69 relative to the target's data bus, the stub may need to make an extra
70 round trip fetching data from the target. This doesn't make a
71 huge difference, but it's easy to do, so we try to be helpful.
72
73 The alignment chosen is arbitrary; usually data bus width is
74 important here, not the possibly larger cache line size. */
75enum { REMOTE_ALIGN_WRITES = 16 };
76
23860348 77/* Prototypes for local functions. */
6426a772
JM
78static void cleanup_sigint_signal_handler (void *dummy);
79static void initialize_sigint_signal_handler (void);
6d820c5c 80static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
6426a772 81
a14ed312
KB
82static void handle_remote_sigint (int);
83static void handle_remote_sigint_twice (int);
84static void async_remote_interrupt (gdb_client_data);
85void async_remote_interrupt_twice (gdb_client_data);
43ff13b4 86
a14ed312 87static void build_remote_gdbarch_data (void);
0f71a2f6 88
a14ed312 89static void remote_files_info (struct target_ops *ignore);
c906108c 90
a14ed312 91static void remote_prepare_to_store (void);
c906108c 92
a14ed312 93static void remote_fetch_registers (int regno);
c906108c 94
39f77062
KB
95static void remote_resume (ptid_t ptid, int step,
96 enum target_signal siggnal);
97static void remote_async_resume (ptid_t ptid, int step,
a14ed312 98 enum target_signal siggnal);
a14ed312
KB
99static void remote_open (char *name, int from_tty);
100static void remote_async_open (char *name, int from_tty);
c906108c 101
a14ed312
KB
102static void extended_remote_open (char *name, int from_tty);
103static void extended_remote_async_open (char *name, int from_tty);
c906108c 104
92d1e331
DJ
105static void remote_open_1 (char *, int, struct target_ops *, int extended_p,
106 int async_p);
c906108c 107
a14ed312 108static void remote_close (int quitting);
c906108c 109
a14ed312 110static void remote_store_registers (int regno);
c906108c 111
a14ed312
KB
112static void remote_mourn (void);
113static void remote_async_mourn (void);
c906108c 114
a14ed312 115static void extended_remote_restart (void);
c906108c 116
a14ed312 117static void extended_remote_mourn (void);
c906108c 118
a14ed312 119static void remote_mourn_1 (struct target_ops *);
c906108c 120
6d820c5c 121static void remote_send (char **buf, long *sizeof_buf_p);
c906108c 122
a14ed312 123static int readchar (int timeout);
c906108c 124
39f77062
KB
125static ptid_t remote_wait (ptid_t ptid,
126 struct target_waitstatus *status);
127static ptid_t remote_async_wait (ptid_t ptid,
128 struct target_waitstatus *status);
c906108c 129
a14ed312
KB
130static void remote_kill (void);
131static void remote_async_kill (void);
c906108c 132
a14ed312 133static int tohex (int nib);
c906108c 134
a14ed312 135static void remote_detach (char *args, int from_tty);
c906108c 136
a14ed312 137static void remote_interrupt (int signo);
c906108c 138
a14ed312 139static void remote_interrupt_twice (int signo);
7a292a7a 140
a14ed312 141static void interrupt_query (void);
c906108c 142
a14ed312 143static void set_thread (int, int);
c906108c 144
39f77062 145static int remote_thread_alive (ptid_t);
c906108c 146
a14ed312 147static void get_offsets (void);
c906108c 148
6d820c5c
DJ
149static void skip_frame (void);
150
151static long read_frame (char **buf_p, long *sizeof_buf);
c906108c 152
a14ed312 153static int hexnumlen (ULONGEST num);
c906108c 154
a14ed312 155static void init_remote_ops (void);
c906108c 156
a14ed312 157static void init_extended_remote_ops (void);
c906108c 158
a14ed312 159static void remote_stop (void);
c906108c 160
a14ed312 161static int ishex (int ch, int *val);
c906108c 162
a14ed312 163static int stubhex (int ch);
c906108c 164
a14ed312 165static int hexnumstr (char *, ULONGEST);
c906108c 166
a14ed312 167static int hexnumnstr (char *, ULONGEST, int);
2df3850c 168
a14ed312 169static CORE_ADDR remote_address_masked (CORE_ADDR);
c906108c 170
a14ed312 171static void print_packet (char *);
c906108c 172
a14ed312 173static unsigned long crc32 (unsigned char *, int, unsigned int);
c906108c 174
a14ed312 175static void compare_sections_command (char *, int);
c906108c 176
a14ed312 177static void packet_command (char *, int);
c906108c 178
a14ed312 179static int stub_unpack_int (char *buff, int fieldlength);
c906108c 180
39f77062 181static ptid_t remote_current_thread (ptid_t oldptid);
c906108c 182
a14ed312 183static void remote_find_new_threads (void);
c906108c 184
a14ed312 185static void record_currthread (int currthread);
c906108c 186
30559e10 187static int fromhex (int a);
c906108c 188
cfd77fa1 189static int hex2bin (const char *hex, gdb_byte *bin, int count);
c906108c 190
cfd77fa1 191static int bin2hex (const gdb_byte *bin, char *hex, int count);
234fa6d1 192
a14ed312 193static int putpkt_binary (char *buf, int cnt);
c906108c 194
a14ed312 195static void check_binary_download (CORE_ADDR addr);
c906108c 196
5a2468f5 197struct packet_config;
5a2468f5 198
a14ed312 199static void show_packet_config_cmd (struct packet_config *config);
5a2468f5 200
d471ea57 201static void update_packet_config (struct packet_config *config);
5a2468f5 202
bb572ddd
DJ
203static void set_remote_protocol_packet_cmd (char *args, int from_tty,
204 struct cmd_list_element *c);
205
206static void show_remote_protocol_packet_cmd (struct ui_file *file,
207 int from_tty,
208 struct cmd_list_element *c,
209 const char *value);
210
a14ed312 211void _initialize_remote (void);
c906108c 212
bb572ddd
DJ
213/* For "set remote" and "show remote". */
214
215static struct cmd_list_element *remote_set_cmdlist;
216static struct cmd_list_element *remote_show_cmdlist;
217
ea9c271d
DJ
218/* Description of the remote protocol state for the currently
219 connected target. This is per-target state, and independent of the
220 selected architecture. */
221
222struct remote_state
223{
224 /* A buffer to use for incoming packets, and its current size. The
225 buffer is grown dynamically for larger incoming packets.
226 Outgoing packets may also be constructed in this buffer.
227 BUF_SIZE is always at least REMOTE_PACKET_SIZE;
228 REMOTE_PACKET_SIZE should be used to limit the length of outgoing
229 packets. */
230 char *buf;
231 long buf_size;
be2a5f71
DJ
232
233 /* If we negotiated packet size explicitly (and thus can bypass
234 heuristics for the largest packet size that will not overflow
235 a buffer in the stub), this will be set to that packet size.
236 Otherwise zero, meaning to use the guessed size. */
237 long explicit_packet_size;
ea9c271d
DJ
238};
239
240/* This data could be associated with a target, but we do not always
241 have access to the current target when we need it, so for now it is
242 static. This will be fine for as long as only one target is in use
243 at a time. */
244static struct remote_state remote_state;
245
246static struct remote_state *
0b83947e 247get_remote_state_raw (void)
ea9c271d
DJ
248{
249 return &remote_state;
250}
251
252/* Description of the remote protocol for a given architecture. */
d01949b6 253
ad10f812
AC
254struct packet_reg
255{
256 long offset; /* Offset into G packet. */
257 long regnum; /* GDB's internal register number. */
258 LONGEST pnum; /* Remote protocol register number. */
b323314b 259 int in_g_packet; /* Always part of G packet. */
2bc416ba 260 /* long size in bytes; == register_size (current_gdbarch, regnum);
23860348 261 at present. */
ad10f812
AC
262 /* char *name; == REGISTER_NAME (regnum); at present. */
263};
264
ea9c271d 265struct remote_arch_state
d01949b6 266{
ad10f812
AC
267 /* Description of the remote protocol registers. */
268 long sizeof_g_packet;
b323314b
AC
269
270 /* Description of the remote protocol registers indexed by REGNUM
271 (making an array of NUM_REGS + NUM_PSEUDO_REGS in size). */
272 struct packet_reg *regs;
ad10f812 273
d01949b6
AC
274 /* This is the size (in chars) of the first response to the ``g''
275 packet. It is used as a heuristic when determining the maximum
276 size of memory-read and memory-write packets. A target will
277 typically only reserve a buffer large enough to hold the ``g''
278 packet. The size does not include packet overhead (headers and
23860348 279 trailers). */
d01949b6
AC
280 long actual_register_packet_size;
281
282 /* This is the maximum size (in chars) of a non read/write packet.
23860348 283 It is also used as a cap on the size of read/write packets. */
d01949b6
AC
284 long remote_packet_size;
285};
286
3c3bea1c 287
d01949b6
AC
288/* Handle for retreving the remote protocol data from gdbarch. */
289static struct gdbarch_data *remote_gdbarch_data_handle;
290
ea9c271d
DJ
291static struct remote_arch_state *
292get_remote_arch_state (void)
d01949b6 293{
451fbdda 294 return gdbarch_data (current_gdbarch, remote_gdbarch_data_handle);
d01949b6
AC
295}
296
0b83947e
DJ
297/* Fetch the global remote target state. */
298
299static struct remote_state *
300get_remote_state (void)
301{
302 /* Make sure that the remote architecture state has been
303 initialized, because doing so might reallocate rs->buf. Any
304 function which calls getpkt also needs to be mindful of changes
305 to rs->buf, but this call limits the number of places which run
306 into trouble. */
307 get_remote_arch_state ();
308
309 return get_remote_state_raw ();
310}
311
d01949b6
AC
312static void *
313init_remote_state (struct gdbarch *gdbarch)
314{
315 int regnum;
0b83947e 316 struct remote_state *rs = get_remote_state_raw ();
ea9c271d
DJ
317 struct remote_arch_state *rsa;
318
319 rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
d01949b6 320
ea9c271d 321 rsa->sizeof_g_packet = 0;
ad10f812 322
b323314b 323 /* Assume a 1:1 regnum<->pnum table. */
ea9c271d
DJ
324 rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch, NUM_REGS + NUM_PSEUDO_REGS,
325 struct packet_reg);
b323314b 326 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
ad10f812 327 {
ea9c271d 328 struct packet_reg *r = &rsa->regs[regnum];
b323314b
AC
329 r->pnum = regnum;
330 r->regnum = regnum;
62700349 331 r->offset = DEPRECATED_REGISTER_BYTE (regnum);
b323314b 332 r->in_g_packet = (regnum < NUM_REGS);
ad10f812 333 /* ...name = REGISTER_NAME (regnum); */
7d58c67d 334
23860348 335 /* Compute packet size by accumulating the size of all registers. */
46845f5e 336 if (regnum < NUM_REGS)
ea9c271d 337 rsa->sizeof_g_packet += register_size (current_gdbarch, regnum);
ad10f812
AC
338 }
339
d01949b6
AC
340 /* Default maximum number of characters in a packet body. Many
341 remote stubs have a hardwired buffer size of 400 bytes
342 (c.f. BUFMAX in m68k-stub.c and i386-stub.c). BUFMAX-1 is used
343 as the maximum packet-size to ensure that the packet and an extra
344 NUL character can always fit in the buffer. This stops GDB
345 trashing stubs that try to squeeze an extra NUL into what is
ea9c271d
DJ
346 already a full buffer (As of 1999-12-04 that was most stubs). */
347 rsa->remote_packet_size = 400 - 1;
d01949b6 348
ea9c271d
DJ
349 /* This one is filled in when a ``g'' packet is received. */
350 rsa->actual_register_packet_size = 0;
351
352 /* Should rsa->sizeof_g_packet needs more space than the
ad10f812
AC
353 default, adjust the size accordingly. Remember that each byte is
354 encoded as two characters. 32 is the overhead for the packet
355 header / footer. NOTE: cagney/1999-10-26: I suspect that 8
d01949b6 356 (``$NN:G...#NN'') is a better guess, the below has been padded a
23860348 357 little. */
ea9c271d
DJ
358 if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
359 rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
802188a7 360
ea9c271d
DJ
361 /* Make sure that the packet buffer is plenty big enough for
362 this architecture. */
363 if (rs->buf_size < rsa->remote_packet_size)
364 {
365 rs->buf_size = 2 * rsa->remote_packet_size;
7fca722e 366 rs->buf = xrealloc (rs->buf, rs->buf_size);
ea9c271d 367 }
6d820c5c 368
ea9c271d
DJ
369 return rsa;
370}
371
372/* Return the current allowed size of a remote packet. This is
373 inferred from the current architecture, and should be used to
374 limit the length of outgoing packets. */
375static long
376get_remote_packet_size (void)
377{
be2a5f71 378 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
379 struct remote_arch_state *rsa = get_remote_arch_state ();
380
be2a5f71
DJ
381 if (rs->explicit_packet_size)
382 return rs->explicit_packet_size;
383
ea9c271d 384 return rsa->remote_packet_size;
d01949b6
AC
385}
386
ad10f812 387static struct packet_reg *
ea9c271d 388packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
ad10f812 389{
b323314b
AC
390 if (regnum < 0 && regnum >= NUM_REGS + NUM_PSEUDO_REGS)
391 return NULL;
392 else
ad10f812 393 {
ea9c271d 394 struct packet_reg *r = &rsa->regs[regnum];
b323314b
AC
395 gdb_assert (r->regnum == regnum);
396 return r;
ad10f812 397 }
ad10f812
AC
398}
399
400static struct packet_reg *
ea9c271d 401packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
ad10f812 402{
b323314b
AC
403 int i;
404 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
ad10f812 405 {
ea9c271d 406 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
407 if (r->pnum == pnum)
408 return r;
ad10f812
AC
409 }
410 return NULL;
d01949b6
AC
411}
412
3c3bea1c
GS
413/* FIXME: graces/2002-08-08: These variables should eventually be
414 bound to an instance of the target object (as in gdbarch-tdep()),
415 when such a thing exists. */
416
417/* This is set to the data address of the access causing the target
418 to stop for a watchpoint. */
419static CORE_ADDR remote_watch_data_address;
420
94e08568 421/* This is non-zero if target stopped for a watchpoint. */
3c3bea1c
GS
422static int remote_stopped_by_watchpoint_p;
423
c906108c
SS
424static struct target_ops remote_ops;
425
426static struct target_ops extended_remote_ops;
427
43ff13b4 428/* Temporary target ops. Just like the remote_ops and
23860348 429 extended_remote_ops, but with asynchronous support. */
43ff13b4
JM
430static struct target_ops remote_async_ops;
431
432static struct target_ops extended_async_remote_ops;
433
6426a772
JM
434/* FIXME: cagney/1999-09-23: Even though getpkt was called with
435 ``forever'' still use the normal timeout mechanism. This is
436 currently used by the ASYNC code to guarentee that target reads
437 during the initial connect always time-out. Once getpkt has been
438 modified to return a timeout indication and, in turn
439 remote_wait()/wait_for_inferior() have gained a timeout parameter
23860348 440 this can go away. */
6426a772
JM
441static int wait_forever_enabled_p = 1;
442
443
c906108c
SS
444/* This variable chooses whether to send a ^C or a break when the user
445 requests program interruption. Although ^C is usually what remote
446 systems expect, and that is the default here, sometimes a break is
447 preferable instead. */
448
449static int remote_break;
450
c906108c
SS
451/* Descriptor for I/O to remote machine. Initialize it to NULL so that
452 remote_open knows that we don't have a file open when the program
453 starts. */
819cc324 454static struct serial *remote_desc = NULL;
c906108c 455
c906108c
SS
456/* This variable sets the number of bits in an address that are to be
457 sent in a memory ("M" or "m") packet. Normally, after stripping
458 leading zeros, the entire address would be sent. This variable
459 restricts the address to REMOTE_ADDRESS_SIZE bits. HISTORY: The
460 initial implementation of remote.c restricted the address sent in
461 memory packets to ``host::sizeof long'' bytes - (typically 32
462 bits). Consequently, for 64 bit targets, the upper 32 bits of an
463 address was never sent. Since fixing this bug may cause a break in
464 some remote targets this variable is principly provided to
23860348 465 facilitate backward compatibility. */
c906108c
SS
466
467static int remote_address_size;
468
6426a772
JM
469/* Tempoary to track who currently owns the terminal. See
470 target_async_terminal_* for more details. */
471
472static int remote_async_terminal_ours_p;
473
11cf8741 474\f
11cf8741 475/* User configurable variables for the number of characters in a
ea9c271d
DJ
476 memory read/write packet. MIN (rsa->remote_packet_size,
477 rsa->sizeof_g_packet) is the default. Some targets need smaller
24b06219 478 values (fifo overruns, et.al.) and some users need larger values
ad10f812
AC
479 (speed up transfers). The variables ``preferred_*'' (the user
480 request), ``current_*'' (what was actually set) and ``forced_*''
23860348 481 (Positive - a soft limit, negative - a hard limit). */
11cf8741
JM
482
483struct memory_packet_config
484{
485 char *name;
486 long size;
487 int fixed_p;
488};
489
490/* Compute the current size of a read/write packet. Since this makes
491 use of ``actual_register_packet_size'' the computation is dynamic. */
492
493static long
494get_memory_packet_size (struct memory_packet_config *config)
495{
d01949b6 496 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
497 struct remote_arch_state *rsa = get_remote_arch_state ();
498
11cf8741
JM
499 /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
500 law?) that some hosts don't cope very well with large alloca()
501 calls. Eventually the alloca() code will be replaced by calls to
502 xmalloc() and make_cleanups() allowing this restriction to either
23860348 503 be lifted or removed. */
11cf8741
JM
504#ifndef MAX_REMOTE_PACKET_SIZE
505#define MAX_REMOTE_PACKET_SIZE 16384
506#endif
3de11b2e 507 /* NOTE: 20 ensures we can write at least one byte. */
11cf8741 508#ifndef MIN_REMOTE_PACKET_SIZE
3de11b2e 509#define MIN_REMOTE_PACKET_SIZE 20
11cf8741
JM
510#endif
511 long what_they_get;
512 if (config->fixed_p)
513 {
514 if (config->size <= 0)
515 what_they_get = MAX_REMOTE_PACKET_SIZE;
516 else
517 what_they_get = config->size;
518 }
519 else
520 {
ea9c271d 521 what_they_get = get_remote_packet_size ();
23860348 522 /* Limit the packet to the size specified by the user. */
11cf8741
JM
523 if (config->size > 0
524 && what_they_get > config->size)
525 what_they_get = config->size;
be2a5f71
DJ
526
527 /* Limit it to the size of the targets ``g'' response unless we have
528 permission from the stub to use a larger packet size. */
529 if (rs->explicit_packet_size == 0
530 && rsa->actual_register_packet_size > 0
531 && what_they_get > rsa->actual_register_packet_size)
532 what_they_get = rsa->actual_register_packet_size;
11cf8741
JM
533 }
534 if (what_they_get > MAX_REMOTE_PACKET_SIZE)
535 what_they_get = MAX_REMOTE_PACKET_SIZE;
536 if (what_they_get < MIN_REMOTE_PACKET_SIZE)
537 what_they_get = MIN_REMOTE_PACKET_SIZE;
6d820c5c
DJ
538
539 /* Make sure there is room in the global buffer for this packet
540 (including its trailing NUL byte). */
541 if (rs->buf_size < what_they_get + 1)
542 {
543 rs->buf_size = 2 * what_they_get;
544 rs->buf = xrealloc (rs->buf, 2 * what_they_get);
545 }
546
11cf8741
JM
547 return what_they_get;
548}
549
550/* Update the size of a read/write packet. If they user wants
23860348 551 something really big then do a sanity check. */
11cf8741
JM
552
553static void
554set_memory_packet_size (char *args, struct memory_packet_config *config)
555{
556 int fixed_p = config->fixed_p;
557 long size = config->size;
558 if (args == NULL)
8a3fe4f8 559 error (_("Argument required (integer, `fixed' or `limited')."));
11cf8741
JM
560 else if (strcmp (args, "hard") == 0
561 || strcmp (args, "fixed") == 0)
562 fixed_p = 1;
563 else if (strcmp (args, "soft") == 0
564 || strcmp (args, "limit") == 0)
565 fixed_p = 0;
566 else
567 {
568 char *end;
569 size = strtoul (args, &end, 0);
570 if (args == end)
8a3fe4f8 571 error (_("Invalid %s (bad syntax)."), config->name);
11cf8741
JM
572#if 0
573 /* Instead of explicitly capping the size of a packet to
574 MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
575 instead allowed to set the size to something arbitrarily
23860348 576 large. */
11cf8741 577 if (size > MAX_REMOTE_PACKET_SIZE)
8a3fe4f8 578 error (_("Invalid %s (too large)."), config->name);
11cf8741
JM
579#endif
580 }
23860348 581 /* Extra checks? */
11cf8741
JM
582 if (fixed_p && !config->fixed_p)
583 {
e2e0b3e5
AC
584 if (! query (_("The target may not be able to correctly handle a %s\n"
585 "of %ld bytes. Change the packet size? "),
11cf8741 586 config->name, size))
8a3fe4f8 587 error (_("Packet size not changed."));
11cf8741 588 }
23860348 589 /* Update the config. */
11cf8741
JM
590 config->fixed_p = fixed_p;
591 config->size = size;
592}
593
594static void
595show_memory_packet_size (struct memory_packet_config *config)
596{
a3f17187 597 printf_filtered (_("The %s is %ld. "), config->name, config->size);
11cf8741 598 if (config->fixed_p)
a3f17187 599 printf_filtered (_("Packets are fixed at %ld bytes.\n"),
11cf8741
JM
600 get_memory_packet_size (config));
601 else
a3f17187 602 printf_filtered (_("Packets are limited to %ld bytes.\n"),
11cf8741
JM
603 get_memory_packet_size (config));
604}
605
606static struct memory_packet_config memory_write_packet_config =
607{
608 "memory-write-packet-size",
609};
610
611static void
612set_memory_write_packet_size (char *args, int from_tty)
613{
614 set_memory_packet_size (args, &memory_write_packet_config);
615}
616
617static void
618show_memory_write_packet_size (char *args, int from_tty)
619{
620 show_memory_packet_size (&memory_write_packet_config);
621}
622
623static long
624get_memory_write_packet_size (void)
625{
626 return get_memory_packet_size (&memory_write_packet_config);
627}
628
629static struct memory_packet_config memory_read_packet_config =
630{
631 "memory-read-packet-size",
632};
633
634static void
635set_memory_read_packet_size (char *args, int from_tty)
636{
637 set_memory_packet_size (args, &memory_read_packet_config);
638}
639
640static void
641show_memory_read_packet_size (char *args, int from_tty)
642{
643 show_memory_packet_size (&memory_read_packet_config);
644}
645
646static long
647get_memory_read_packet_size (void)
648{
649 long size = get_memory_packet_size (&memory_read_packet_config);
650 /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
651 extra buffer size argument before the memory read size can be
ea9c271d
DJ
652 increased beyond this. */
653 if (size > get_remote_packet_size ())
654 size = get_remote_packet_size ();
11cf8741
JM
655 return size;
656}
657
11cf8741 658\f
5a2468f5
JM
659/* Generic configuration support for packets the stub optionally
660 supports. Allows the user to specify the use of the packet as well
23860348 661 as allowing GDB to auto-detect support in the remote stub. */
5a2468f5
JM
662
663enum packet_support
664 {
665 PACKET_SUPPORT_UNKNOWN = 0,
666 PACKET_ENABLE,
667 PACKET_DISABLE
668 };
669
5a2468f5
JM
670struct packet_config
671 {
bb572ddd
DJ
672 const char *name;
673 const char *title;
7f19b9a2 674 enum auto_boolean detect;
5a2468f5
JM
675 enum packet_support support;
676 };
677
d471ea57 678/* Analyze a packet's return value and update the packet config
23860348 679 accordingly. */
d471ea57
AC
680
681enum packet_result
682{
683 PACKET_ERROR,
684 PACKET_OK,
685 PACKET_UNKNOWN
686};
687
5a2468f5 688static void
d471ea57 689update_packet_config (struct packet_config *config)
5a2468f5 690{
d471ea57
AC
691 switch (config->detect)
692 {
7f19b9a2 693 case AUTO_BOOLEAN_TRUE:
d471ea57
AC
694 config->support = PACKET_ENABLE;
695 break;
7f19b9a2 696 case AUTO_BOOLEAN_FALSE:
d471ea57
AC
697 config->support = PACKET_DISABLE;
698 break;
7f19b9a2 699 case AUTO_BOOLEAN_AUTO:
d471ea57
AC
700 config->support = PACKET_SUPPORT_UNKNOWN;
701 break;
702 }
5a2468f5
JM
703}
704
705static void
fba45db2 706show_packet_config_cmd (struct packet_config *config)
5a2468f5
JM
707{
708 char *support = "internal-error";
709 switch (config->support)
710 {
711 case PACKET_ENABLE:
712 support = "enabled";
713 break;
714 case PACKET_DISABLE:
715 support = "disabled";
716 break;
717 case PACKET_SUPPORT_UNKNOWN:
718 support = "unknown";
719 break;
720 }
721 switch (config->detect)
722 {
7f19b9a2 723 case AUTO_BOOLEAN_AUTO:
37a105a1
DJ
724 printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
725 config->name, support);
5a2468f5 726 break;
7f19b9a2
AC
727 case AUTO_BOOLEAN_TRUE:
728 case AUTO_BOOLEAN_FALSE:
37a105a1
DJ
729 printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
730 config->name, support);
8e248173 731 break;
5a2468f5
JM
732 }
733}
734
735static void
bb572ddd
DJ
736add_packet_config_cmd (struct packet_config *config, const char *name,
737 const char *title, int legacy)
d471ea57 738{
5a2468f5
JM
739 char *set_doc;
740 char *show_doc;
d471ea57 741 char *cmd_name;
3ed07be4 742
5a2468f5
JM
743 config->name = name;
744 config->title = title;
7f19b9a2 745 config->detect = AUTO_BOOLEAN_AUTO;
8e248173 746 config->support = PACKET_SUPPORT_UNKNOWN;
b435e160
AC
747 set_doc = xstrprintf ("Set use of remote protocol `%s' (%s) packet",
748 name, title);
749 show_doc = xstrprintf ("Show current use of remote protocol `%s' (%s) packet",
750 name, title);
d471ea57 751 /* set/show TITLE-packet {auto,on,off} */
b435e160 752 cmd_name = xstrprintf ("%s-packet", title);
e9e68a56 753 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
2c5b56ce 754 &config->detect, set_doc, show_doc, NULL, /* help_doc */
bb572ddd
DJ
755 set_remote_protocol_packet_cmd,
756 show_remote_protocol_packet_cmd,
757 &remote_set_cmdlist, &remote_show_cmdlist);
23860348 758 /* set/show remote NAME-packet {auto,on,off} -- legacy. */
d471ea57
AC
759 if (legacy)
760 {
761 char *legacy_name;
b435e160 762 legacy_name = xstrprintf ("%s-packet", name);
d471ea57 763 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 764 &remote_set_cmdlist);
d471ea57 765 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
bb572ddd 766 &remote_show_cmdlist);
d471ea57 767 }
5a2468f5
JM
768}
769
d471ea57 770static enum packet_result
a76d924d 771packet_check_result (const char *buf)
5a2468f5 772{
d471ea57 773 if (buf[0] != '\0')
5a2468f5 774 {
d471ea57 775 /* The stub recognized the packet request. Check that the
23860348 776 operation succeeded. */
a76d924d
DJ
777 if (buf[0] == 'E'
778 && isxdigit (buf[1]) && isxdigit (buf[2])
779 && buf[3] == '\0')
780 /* "Enn" - definitly an error. */
781 return PACKET_ERROR;
782
783 /* Always treat "E." as an error. This will be used for
784 more verbose error messages, such as E.memtypes. */
785 if (buf[0] == 'E' && buf[1] == '.')
786 return PACKET_ERROR;
787
788 /* The packet may or may not be OK. Just assume it is. */
789 return PACKET_OK;
790 }
791 else
792 /* The stub does not support the packet. */
793 return PACKET_UNKNOWN;
794}
795
796static enum packet_result
797packet_ok (const char *buf, struct packet_config *config)
798{
799 enum packet_result result;
800
801 result = packet_check_result (buf);
802 switch (result)
803 {
804 case PACKET_OK:
805 case PACKET_ERROR:
806 /* The stub recognized the packet request. */
d471ea57
AC
807 switch (config->support)
808 {
809 case PACKET_SUPPORT_UNKNOWN:
810 if (remote_debug)
811 fprintf_unfiltered (gdb_stdlog,
812 "Packet %s (%s) is supported\n",
813 config->name, config->title);
814 config->support = PACKET_ENABLE;
815 break;
816 case PACKET_DISABLE:
8e65ff28 817 internal_error (__FILE__, __LINE__,
e2e0b3e5 818 _("packet_ok: attempt to use a disabled packet"));
d471ea57
AC
819 break;
820 case PACKET_ENABLE:
821 break;
822 }
a76d924d
DJ
823 break;
824 case PACKET_UNKNOWN:
23860348 825 /* The stub does not support the packet. */
d471ea57
AC
826 switch (config->support)
827 {
828 case PACKET_ENABLE:
7f19b9a2 829 if (config->detect == AUTO_BOOLEAN_AUTO)
d471ea57 830 /* If the stub previously indicated that the packet was
23860348 831 supported then there is a protocol error.. */
8a3fe4f8 832 error (_("Protocol error: %s (%s) conflicting enabled responses."),
d471ea57
AC
833 config->name, config->title);
834 else
23860348 835 /* The user set it wrong. */
8a3fe4f8 836 error (_("Enabled packet %s (%s) not recognized by stub"),
d471ea57
AC
837 config->name, config->title);
838 break;
839 case PACKET_SUPPORT_UNKNOWN:
840 if (remote_debug)
841 fprintf_unfiltered (gdb_stdlog,
842 "Packet %s (%s) is NOT supported\n",
843 config->name, config->title);
844 config->support = PACKET_DISABLE;
845 break;
846 case PACKET_DISABLE:
847 break;
848 }
a76d924d 849 break;
5a2468f5 850 }
a76d924d
DJ
851
852 return result;
5a2468f5
JM
853}
854
444abaca
DJ
855enum {
856 PACKET_vCont = 0,
857 PACKET_X,
858 PACKET_qSymbol,
859 PACKET_P,
860 PACKET_p,
861 PACKET_Z0,
862 PACKET_Z1,
863 PACKET_Z2,
864 PACKET_Z3,
865 PACKET_Z4,
0876f84a 866 PACKET_qXfer_auxv,
fd79ecee 867 PACKET_qXfer_memory_map,
444abaca 868 PACKET_qGetTLSAddr,
be2a5f71 869 PACKET_qSupported,
444abaca
DJ
870 PACKET_MAX
871};
506fb367 872
444abaca 873static struct packet_config remote_protocol_packets[PACKET_MAX];
dc8acb97
MS
874
875static void
444abaca
DJ
876set_remote_protocol_packet_cmd (char *args, int from_tty,
877 struct cmd_list_element *c)
dc8acb97 878{
444abaca 879 struct packet_config *packet;
dc8acb97 880
444abaca
DJ
881 for (packet = remote_protocol_packets;
882 packet < &remote_protocol_packets[PACKET_MAX];
883 packet++)
884 {
885 if (&packet->detect == c->var)
886 {
887 update_packet_config (packet);
888 return;
889 }
890 }
891 internal_error (__FILE__, __LINE__, "Could not find config for %s",
892 c->name);
dc8acb97
MS
893}
894
5a2468f5 895static void
444abaca
DJ
896show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
897 struct cmd_list_element *c,
898 const char *value)
5a2468f5 899{
444abaca 900 struct packet_config *packet;
5a2468f5 901
444abaca
DJ
902 for (packet = remote_protocol_packets;
903 packet < &remote_protocol_packets[PACKET_MAX];
904 packet++)
905 {
906 if (&packet->detect == c->var)
907 {
908 show_packet_config_cmd (packet);
909 return;
910 }
911 }
912 internal_error (__FILE__, __LINE__, "Could not find config for %s",
913 c->name);
5a2468f5
JM
914}
915
d471ea57
AC
916/* Should we try one of the 'Z' requests? */
917
918enum Z_packet_type
919{
920 Z_PACKET_SOFTWARE_BP,
921 Z_PACKET_HARDWARE_BP,
922 Z_PACKET_WRITE_WP,
923 Z_PACKET_READ_WP,
924 Z_PACKET_ACCESS_WP,
925 NR_Z_PACKET_TYPES
926};
96baa820 927
d471ea57 928/* For compatibility with older distributions. Provide a ``set remote
23860348 929 Z-packet ...'' command that updates all the Z packet types. */
d471ea57 930
7f19b9a2 931static enum auto_boolean remote_Z_packet_detect;
96baa820
JM
932
933static void
fba45db2
KB
934set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
935 struct cmd_list_element *c)
96baa820 936{
d471ea57
AC
937 int i;
938 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
939 {
444abaca
DJ
940 remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
941 update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 942 }
96baa820
JM
943}
944
945static void
08546159
AC
946show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
947 struct cmd_list_element *c,
948 const char *value)
96baa820 949{
d471ea57
AC
950 int i;
951 for (i = 0; i < NR_Z_PACKET_TYPES; i++)
952 {
444abaca 953 show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
d471ea57 954 }
96baa820
JM
955}
956
9d1f7ab2
MS
957/* Should we try the 'ThreadInfo' query packet?
958
959 This variable (NOT available to the user: auto-detect only!)
960 determines whether GDB will use the new, simpler "ThreadInfo"
961 query or the older, more complex syntax for thread queries.
802188a7 962 This is an auto-detect variable (set to true at each connect,
9d1f7ab2
MS
963 and set to false when the target fails to recognize it). */
964
965static int use_threadinfo_query;
966static int use_threadextra_query;
967
23860348 968/* Tokens for use by the asynchronous signal handlers for SIGINT. */
ae44c0c4
AC
969static void *sigint_remote_twice_token;
970static void *sigint_remote_token;
43ff13b4 971
c906108c
SS
972/* These are pointers to hook functions that may be set in order to
973 modify resume/wait behavior for a particular architecture. */
974
9a4105ab
AC
975void (*deprecated_target_resume_hook) (void);
976void (*deprecated_target_wait_loop_hook) (void);
c906108c
SS
977\f
978
c5aa993b 979
c906108c
SS
980/* These are the threads which we last sent to the remote system.
981 -1 for all or -2 for not sent yet. */
982static int general_thread;
cce74817 983static int continue_thread;
c906108c
SS
984
985/* Call this function as a result of
986 1) A halt indication (T packet) containing a thread id
987 2) A direct query of currthread
988 3) Successful execution of set thread
989 */
990
991static void
fba45db2 992record_currthread (int currthread)
c906108c 993{
c906108c 994 general_thread = currthread;
cce74817 995
c906108c
SS
996 /* If this is a new thread, add it to GDB's thread list.
997 If we leave it up to WFI to do this, bad things will happen. */
39f77062 998 if (!in_thread_list (pid_to_ptid (currthread)))
0f71a2f6 999 {
39f77062 1000 add_thread (pid_to_ptid (currthread));
8b93c638 1001 ui_out_text (uiout, "[New ");
39f77062 1002 ui_out_text (uiout, target_pid_to_str (pid_to_ptid (currthread)));
8b93c638 1003 ui_out_text (uiout, "]\n");
0f71a2f6 1004 }
c906108c
SS
1005}
1006
1007#define MAGIC_NULL_PID 42000
1008
1009static void
fba45db2 1010set_thread (int th, int gen)
c906108c 1011{
d01949b6 1012 struct remote_state *rs = get_remote_state ();
6d820c5c 1013 char *buf = rs->buf;
cce74817 1014 int state = gen ? general_thread : continue_thread;
c906108c
SS
1015
1016 if (state == th)
1017 return;
1018
1019 buf[0] = 'H';
1020 buf[1] = gen ? 'g' : 'c';
1021 if (th == MAGIC_NULL_PID)
1022 {
1023 buf[2] = '0';
1024 buf[3] = '\0';
1025 }
1026 else if (th < 0)
ea9c271d 1027 xsnprintf (&buf[2], get_remote_packet_size () - 2, "-%x", -th);
c906108c 1028 else
ea9c271d 1029 xsnprintf (&buf[2], get_remote_packet_size () - 2, "%x", th);
c906108c 1030 putpkt (buf);
6d820c5c 1031 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 1032 if (gen)
c5aa993b 1033 general_thread = th;
c906108c 1034 else
cce74817 1035 continue_thread = th;
c906108c
SS
1036}
1037\f
1038/* Return nonzero if the thread TH is still alive on the remote system. */
1039
1040static int
39f77062 1041remote_thread_alive (ptid_t ptid)
c906108c 1042{
6d820c5c 1043 struct remote_state *rs = get_remote_state ();
39f77062 1044 int tid = PIDGET (ptid);
c906108c 1045
cce74817 1046 if (tid < 0)
2e9f7625 1047 xsnprintf (rs->buf, get_remote_packet_size (), "T-%08x", -tid);
c906108c 1048 else
2e9f7625
DJ
1049 xsnprintf (rs->buf, get_remote_packet_size (), "T%08x", tid);
1050 putpkt (rs->buf);
6d820c5c 1051 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1052 return (rs->buf[0] == 'O' && rs->buf[1] == 'K');
c906108c
SS
1053}
1054
1055/* About these extended threadlist and threadinfo packets. They are
1056 variable length packets but, the fields within them are often fixed
1057 length. They are redundent enough to send over UDP as is the
1058 remote protocol in general. There is a matching unit test module
1059 in libstub. */
1060
cce74817
JM
1061#define OPAQUETHREADBYTES 8
1062
1063/* a 64 bit opaque identifier */
1064typedef unsigned char threadref[OPAQUETHREADBYTES];
1065
23860348
MS
1066/* WARNING: This threadref data structure comes from the remote O.S.,
1067 libstub protocol encoding, and remote.c. it is not particularly
1068 changable. */
cce74817
JM
1069
1070/* Right now, the internal structure is int. We want it to be bigger.
1071 Plan to fix this.
c5aa993b 1072 */
cce74817 1073
23860348 1074typedef int gdb_threadref; /* Internal GDB thread reference. */
cce74817 1075
9d1f7ab2 1076/* gdb_ext_thread_info is an internal GDB data structure which is
cfde0993 1077 equivalent to the reply of the remote threadinfo packet. */
cce74817
JM
1078
1079struct gdb_ext_thread_info
c5aa993b 1080 {
23860348 1081 threadref threadid; /* External form of thread reference. */
2bc416ba 1082 int active; /* Has state interesting to GDB?
23860348 1083 regs, stack. */
2bc416ba 1084 char display[256]; /* Brief state display, name,
cedea757 1085 blocked/suspended. */
23860348 1086 char shortname[32]; /* To be used to name threads. */
2bc416ba 1087 char more_display[256]; /* Long info, statistics, queue depth,
23860348 1088 whatever. */
c5aa993b 1089 };
cce74817
JM
1090
1091/* The volume of remote transfers can be limited by submitting
1092 a mask containing bits specifying the desired information.
1093 Use a union of these values as the 'selection' parameter to
1094 get_thread_info. FIXME: Make these TAG names more thread specific.
c5aa993b 1095 */
cce74817
JM
1096
1097#define TAG_THREADID 1
1098#define TAG_EXISTS 2
1099#define TAG_DISPLAY 4
1100#define TAG_THREADNAME 8
c5aa993b 1101#define TAG_MOREDISPLAY 16
cce74817 1102
23860348 1103#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
c906108c 1104
b2dd6311 1105char *unpack_varlen_hex (char *buff, ULONGEST *result);
cce74817 1106
a14ed312 1107static char *unpack_nibble (char *buf, int *val);
cce74817 1108
a14ed312 1109static char *pack_nibble (char *buf, int nibble);
cce74817 1110
23860348 1111static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
cce74817 1112
a14ed312 1113static char *unpack_byte (char *buf, int *value);
cce74817 1114
a14ed312 1115static char *pack_int (char *buf, int value);
cce74817 1116
a14ed312 1117static char *unpack_int (char *buf, int *value);
cce74817 1118
a14ed312 1119static char *unpack_string (char *src, char *dest, int length);
cce74817 1120
23860348 1121static char *pack_threadid (char *pkt, threadref *id);
cce74817 1122
23860348 1123static char *unpack_threadid (char *inbuf, threadref *id);
cce74817 1124
23860348 1125void int_to_threadref (threadref *id, int value);
cce74817 1126
23860348 1127static int threadref_to_int (threadref *ref);
cce74817 1128
23860348 1129static void copy_threadref (threadref *dest, threadref *src);
cce74817 1130
23860348 1131static int threadmatch (threadref *dest, threadref *src);
cce74817 1132
2bc416ba 1133static char *pack_threadinfo_request (char *pkt, int mode,
23860348 1134 threadref *id);
cce74817 1135
a14ed312 1136static int remote_unpack_thread_info_response (char *pkt,
23860348 1137 threadref *expectedref,
a14ed312
KB
1138 struct gdb_ext_thread_info
1139 *info);
cce74817
JM
1140
1141
2bc416ba 1142static int remote_get_threadinfo (threadref *threadid,
23860348 1143 int fieldset, /*TAG mask */
a14ed312 1144 struct gdb_ext_thread_info *info);
cce74817 1145
a14ed312
KB
1146static char *pack_threadlist_request (char *pkt, int startflag,
1147 int threadcount,
23860348 1148 threadref *nextthread);
cce74817 1149
a14ed312
KB
1150static int parse_threadlist_response (char *pkt,
1151 int result_limit,
23860348 1152 threadref *original_echo,
2bc416ba 1153 threadref *resultlist,
23860348 1154 int *doneflag);
cce74817 1155
a14ed312 1156static int remote_get_threadlist (int startflag,
23860348 1157 threadref *nextthread,
a14ed312
KB
1158 int result_limit,
1159 int *done,
2bc416ba 1160 int *result_count,
23860348 1161 threadref *threadlist);
cce74817 1162
23860348 1163typedef int (*rmt_thread_action) (threadref *ref, void *context);
cce74817 1164
a14ed312
KB
1165static int remote_threadlist_iterator (rmt_thread_action stepfunction,
1166 void *context, int looplimit);
cce74817 1167
23860348 1168static int remote_newthread_step (threadref *ref, void *context);
cce74817 1169
23860348 1170/* Encode 64 bits in 16 chars of hex. */
c906108c
SS
1171
1172static const char hexchars[] = "0123456789abcdef";
1173
1174static int
fba45db2 1175ishex (int ch, int *val)
c906108c
SS
1176{
1177 if ((ch >= 'a') && (ch <= 'f'))
1178 {
1179 *val = ch - 'a' + 10;
1180 return 1;
1181 }
1182 if ((ch >= 'A') && (ch <= 'F'))
1183 {
1184 *val = ch - 'A' + 10;
1185 return 1;
1186 }
1187 if ((ch >= '0') && (ch <= '9'))
1188 {
1189 *val = ch - '0';
1190 return 1;
1191 }
1192 return 0;
1193}
1194
1195static int
fba45db2 1196stubhex (int ch)
c906108c
SS
1197{
1198 if (ch >= 'a' && ch <= 'f')
1199 return ch - 'a' + 10;
1200 if (ch >= '0' && ch <= '9')
1201 return ch - '0';
1202 if (ch >= 'A' && ch <= 'F')
1203 return ch - 'A' + 10;
1204 return -1;
1205}
1206
1207static int
fba45db2 1208stub_unpack_int (char *buff, int fieldlength)
c906108c
SS
1209{
1210 int nibble;
1211 int retval = 0;
1212
1213 while (fieldlength)
1214 {
1215 nibble = stubhex (*buff++);
1216 retval |= nibble;
1217 fieldlength--;
1218 if (fieldlength)
1219 retval = retval << 4;
1220 }
1221 return retval;
1222}
1223
1224char *
fba45db2 1225unpack_varlen_hex (char *buff, /* packet to parse */
b2dd6311 1226 ULONGEST *result)
c906108c
SS
1227{
1228 int nibble;
d49c44d5 1229 ULONGEST retval = 0;
c906108c
SS
1230
1231 while (ishex (*buff, &nibble))
1232 {
1233 buff++;
1234 retval = retval << 4;
1235 retval |= nibble & 0x0f;
1236 }
1237 *result = retval;
1238 return buff;
1239}
1240
1241static char *
fba45db2 1242unpack_nibble (char *buf, int *val)
c906108c
SS
1243{
1244 ishex (*buf++, val);
1245 return buf;
1246}
1247
1248static char *
fba45db2 1249pack_nibble (char *buf, int nibble)
c906108c
SS
1250{
1251 *buf++ = hexchars[(nibble & 0x0f)];
1252 return buf;
1253}
1254
1255static char *
fba45db2 1256pack_hex_byte (char *pkt, int byte)
c906108c
SS
1257{
1258 *pkt++ = hexchars[(byte >> 4) & 0xf];
1259 *pkt++ = hexchars[(byte & 0xf)];
1260 return pkt;
1261}
1262
1263static char *
fba45db2 1264unpack_byte (char *buf, int *value)
c906108c
SS
1265{
1266 *value = stub_unpack_int (buf, 2);
1267 return buf + 2;
1268}
1269
1270static char *
fba45db2 1271pack_int (char *buf, int value)
c906108c
SS
1272{
1273 buf = pack_hex_byte (buf, (value >> 24) & 0xff);
1274 buf = pack_hex_byte (buf, (value >> 16) & 0xff);
1275 buf = pack_hex_byte (buf, (value >> 8) & 0x0ff);
1276 buf = pack_hex_byte (buf, (value & 0xff));
1277 return buf;
1278}
1279
1280static char *
fba45db2 1281unpack_int (char *buf, int *value)
c906108c
SS
1282{
1283 *value = stub_unpack_int (buf, 8);
1284 return buf + 8;
1285}
1286
23860348 1287#if 0 /* Currently unused, uncomment when needed. */
a14ed312 1288static char *pack_string (char *pkt, char *string);
c906108c
SS
1289
1290static char *
fba45db2 1291pack_string (char *pkt, char *string)
c906108c
SS
1292{
1293 char ch;
1294 int len;
1295
1296 len = strlen (string);
1297 if (len > 200)
23860348 1298 len = 200; /* Bigger than most GDB packets, junk??? */
c906108c
SS
1299 pkt = pack_hex_byte (pkt, len);
1300 while (len-- > 0)
1301 {
1302 ch = *string++;
1303 if ((ch == '\0') || (ch == '#'))
23860348 1304 ch = '*'; /* Protect encapsulation. */
c906108c
SS
1305 *pkt++ = ch;
1306 }
1307 return pkt;
1308}
1309#endif /* 0 (unused) */
1310
1311static char *
fba45db2 1312unpack_string (char *src, char *dest, int length)
c906108c
SS
1313{
1314 while (length--)
1315 *dest++ = *src++;
1316 *dest = '\0';
1317 return src;
1318}
1319
1320static char *
fba45db2 1321pack_threadid (char *pkt, threadref *id)
c906108c
SS
1322{
1323 char *limit;
1324 unsigned char *altid;
1325
1326 altid = (unsigned char *) id;
1327 limit = pkt + BUF_THREAD_ID_SIZE;
1328 while (pkt < limit)
1329 pkt = pack_hex_byte (pkt, *altid++);
1330 return pkt;
1331}
1332
1333
1334static char *
fba45db2 1335unpack_threadid (char *inbuf, threadref *id)
c906108c
SS
1336{
1337 char *altref;
1338 char *limit = inbuf + BUF_THREAD_ID_SIZE;
1339 int x, y;
1340
1341 altref = (char *) id;
1342
1343 while (inbuf < limit)
1344 {
1345 x = stubhex (*inbuf++);
1346 y = stubhex (*inbuf++);
1347 *altref++ = (x << 4) | y;
1348 }
1349 return inbuf;
1350}
1351
1352/* Externally, threadrefs are 64 bits but internally, they are still
1353 ints. This is due to a mismatch of specifications. We would like
1354 to use 64bit thread references internally. This is an adapter
1355 function. */
1356
1357void
fba45db2 1358int_to_threadref (threadref *id, int value)
c906108c
SS
1359{
1360 unsigned char *scan;
1361
1362 scan = (unsigned char *) id;
1363 {
1364 int i = 4;
1365 while (i--)
1366 *scan++ = 0;
1367 }
1368 *scan++ = (value >> 24) & 0xff;
1369 *scan++ = (value >> 16) & 0xff;
1370 *scan++ = (value >> 8) & 0xff;
1371 *scan++ = (value & 0xff);
1372}
1373
1374static int
fba45db2 1375threadref_to_int (threadref *ref)
c906108c
SS
1376{
1377 int i, value = 0;
1378 unsigned char *scan;
1379
cfd77fa1 1380 scan = *ref;
c906108c
SS
1381 scan += 4;
1382 i = 4;
1383 while (i-- > 0)
1384 value = (value << 8) | ((*scan++) & 0xff);
1385 return value;
1386}
1387
1388static void
fba45db2 1389copy_threadref (threadref *dest, threadref *src)
c906108c
SS
1390{
1391 int i;
1392 unsigned char *csrc, *cdest;
1393
1394 csrc = (unsigned char *) src;
1395 cdest = (unsigned char *) dest;
1396 i = 8;
1397 while (i--)
1398 *cdest++ = *csrc++;
1399}
1400
1401static int
fba45db2 1402threadmatch (threadref *dest, threadref *src)
c906108c 1403{
23860348 1404 /* Things are broken right now, so just assume we got a match. */
c906108c
SS
1405#if 0
1406 unsigned char *srcp, *destp;
1407 int i, result;
1408 srcp = (char *) src;
1409 destp = (char *) dest;
1410
1411 result = 1;
1412 while (i-- > 0)
1413 result &= (*srcp++ == *destp++) ? 1 : 0;
1414 return result;
1415#endif
1416 return 1;
1417}
1418
1419/*
c5aa993b
JM
1420 threadid:1, # always request threadid
1421 context_exists:2,
1422 display:4,
1423 unique_name:8,
1424 more_display:16
1425 */
c906108c
SS
1426
1427/* Encoding: 'Q':8,'P':8,mask:32,threadid:64 */
1428
1429static char *
fba45db2 1430pack_threadinfo_request (char *pkt, int mode, threadref *id)
c906108c 1431{
23860348
MS
1432 *pkt++ = 'q'; /* Info Query */
1433 *pkt++ = 'P'; /* process or thread info */
1434 pkt = pack_int (pkt, mode); /* mode */
c906108c 1435 pkt = pack_threadid (pkt, id); /* threadid */
23860348 1436 *pkt = '\0'; /* terminate */
c906108c
SS
1437 return pkt;
1438}
1439
23860348 1440/* These values tag the fields in a thread info response packet. */
c906108c 1441/* Tagging the fields allows us to request specific fields and to
23860348 1442 add more fields as time goes by. */
c906108c 1443
23860348 1444#define TAG_THREADID 1 /* Echo the thread identifier. */
c5aa993b 1445#define TAG_EXISTS 2 /* Is this process defined enough to
23860348 1446 fetch registers and its stack? */
c5aa993b 1447#define TAG_DISPLAY 4 /* A short thing maybe to put on a window */
23860348 1448#define TAG_THREADNAME 8 /* string, maps 1-to-1 with a thread is. */
802188a7 1449#define TAG_MOREDISPLAY 16 /* Whatever the kernel wants to say about
23860348 1450 the process. */
c906108c
SS
1451
1452static int
fba45db2
KB
1453remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
1454 struct gdb_ext_thread_info *info)
c906108c 1455{
d01949b6 1456 struct remote_state *rs = get_remote_state ();
c906108c 1457 int mask, length;
cfd77fa1 1458 int tag;
c906108c 1459 threadref ref;
6d820c5c 1460 char *limit = pkt + rs->buf_size; /* Plausible parsing limit. */
c906108c
SS
1461 int retval = 1;
1462
23860348 1463 /* info->threadid = 0; FIXME: implement zero_threadref. */
c906108c
SS
1464 info->active = 0;
1465 info->display[0] = '\0';
1466 info->shortname[0] = '\0';
1467 info->more_display[0] = '\0';
1468
23860348
MS
1469 /* Assume the characters indicating the packet type have been
1470 stripped. */
c906108c
SS
1471 pkt = unpack_int (pkt, &mask); /* arg mask */
1472 pkt = unpack_threadid (pkt, &ref);
1473
1474 if (mask == 0)
8a3fe4f8 1475 warning (_("Incomplete response to threadinfo request."));
c906108c 1476 if (!threadmatch (&ref, expectedref))
23860348 1477 { /* This is an answer to a different request. */
8a3fe4f8 1478 warning (_("ERROR RMT Thread info mismatch."));
c906108c
SS
1479 return 0;
1480 }
1481 copy_threadref (&info->threadid, &ref);
1482
23860348 1483 /* Loop on tagged fields , try to bail if somthing goes wrong. */
c906108c 1484
23860348
MS
1485 /* Packets are terminated with nulls. */
1486 while ((pkt < limit) && mask && *pkt)
c906108c
SS
1487 {
1488 pkt = unpack_int (pkt, &tag); /* tag */
23860348
MS
1489 pkt = unpack_byte (pkt, &length); /* length */
1490 if (!(tag & mask)) /* Tags out of synch with mask. */
c906108c 1491 {
8a3fe4f8 1492 warning (_("ERROR RMT: threadinfo tag mismatch."));
c906108c
SS
1493 retval = 0;
1494 break;
1495 }
1496 if (tag == TAG_THREADID)
1497 {
1498 if (length != 16)
1499 {
8a3fe4f8 1500 warning (_("ERROR RMT: length of threadid is not 16."));
c906108c
SS
1501 retval = 0;
1502 break;
1503 }
1504 pkt = unpack_threadid (pkt, &ref);
1505 mask = mask & ~TAG_THREADID;
1506 continue;
1507 }
1508 if (tag == TAG_EXISTS)
1509 {
1510 info->active = stub_unpack_int (pkt, length);
1511 pkt += length;
1512 mask = mask & ~(TAG_EXISTS);
1513 if (length > 8)
1514 {
8a3fe4f8 1515 warning (_("ERROR RMT: 'exists' length too long."));
c906108c
SS
1516 retval = 0;
1517 break;
1518 }
1519 continue;
1520 }
1521 if (tag == TAG_THREADNAME)
1522 {
1523 pkt = unpack_string (pkt, &info->shortname[0], length);
1524 mask = mask & ~TAG_THREADNAME;
1525 continue;
1526 }
1527 if (tag == TAG_DISPLAY)
1528 {
1529 pkt = unpack_string (pkt, &info->display[0], length);
1530 mask = mask & ~TAG_DISPLAY;
1531 continue;
1532 }
1533 if (tag == TAG_MOREDISPLAY)
1534 {
1535 pkt = unpack_string (pkt, &info->more_display[0], length);
1536 mask = mask & ~TAG_MOREDISPLAY;
1537 continue;
1538 }
8a3fe4f8 1539 warning (_("ERROR RMT: unknown thread info tag."));
23860348 1540 break; /* Not a tag we know about. */
c906108c
SS
1541 }
1542 return retval;
1543}
1544
1545static int
fba45db2
KB
1546remote_get_threadinfo (threadref *threadid, int fieldset, /* TAG mask */
1547 struct gdb_ext_thread_info *info)
c906108c 1548{
d01949b6 1549 struct remote_state *rs = get_remote_state ();
c906108c 1550 int result;
c906108c 1551
2e9f7625
DJ
1552 pack_threadinfo_request (rs->buf, fieldset, threadid);
1553 putpkt (rs->buf);
6d820c5c 1554 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1555 result = remote_unpack_thread_info_response (rs->buf + 2,
23860348 1556 threadid, info);
c906108c
SS
1557 return result;
1558}
1559
c906108c
SS
1560/* Format: i'Q':8,i"L":8,initflag:8,batchsize:16,lastthreadid:32 */
1561
1562static char *
fba45db2
KB
1563pack_threadlist_request (char *pkt, int startflag, int threadcount,
1564 threadref *nextthread)
c906108c
SS
1565{
1566 *pkt++ = 'q'; /* info query packet */
1567 *pkt++ = 'L'; /* Process LIST or threadLIST request */
23860348 1568 pkt = pack_nibble (pkt, startflag); /* initflag 1 bytes */
c906108c
SS
1569 pkt = pack_hex_byte (pkt, threadcount); /* threadcount 2 bytes */
1570 pkt = pack_threadid (pkt, nextthread); /* 64 bit thread identifier */
1571 *pkt = '\0';
1572 return pkt;
1573}
1574
1575/* Encoding: 'q':8,'M':8,count:16,done:8,argthreadid:64,(threadid:64)* */
1576
1577static int
fba45db2
KB
1578parse_threadlist_response (char *pkt, int result_limit,
1579 threadref *original_echo, threadref *resultlist,
1580 int *doneflag)
c906108c 1581{
d01949b6 1582 struct remote_state *rs = get_remote_state ();
c906108c
SS
1583 char *limit;
1584 int count, resultcount, done;
1585
1586 resultcount = 0;
1587 /* Assume the 'q' and 'M chars have been stripped. */
6d820c5c 1588 limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
23860348 1589 /* done parse past here */
c906108c
SS
1590 pkt = unpack_byte (pkt, &count); /* count field */
1591 pkt = unpack_nibble (pkt, &done);
1592 /* The first threadid is the argument threadid. */
1593 pkt = unpack_threadid (pkt, original_echo); /* should match query packet */
1594 while ((count-- > 0) && (pkt < limit))
1595 {
1596 pkt = unpack_threadid (pkt, resultlist++);
1597 if (resultcount++ >= result_limit)
1598 break;
1599 }
1600 if (doneflag)
1601 *doneflag = done;
1602 return resultcount;
1603}
1604
1605static int
fba45db2
KB
1606remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
1607 int *done, int *result_count, threadref *threadlist)
c906108c 1608{
d01949b6 1609 struct remote_state *rs = get_remote_state ();
c906108c 1610 static threadref echo_nextthread;
c906108c
SS
1611 int result = 1;
1612
23860348 1613 /* Trancate result limit to be smaller than the packet size. */
ea9c271d
DJ
1614 if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= get_remote_packet_size ())
1615 result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
c906108c 1616
6d820c5c
DJ
1617 pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
1618 putpkt (rs->buf);
1619 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c
SS
1620
1621 *result_count =
6d820c5c 1622 parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
c906108c
SS
1623 threadlist, done);
1624
1625 if (!threadmatch (&echo_nextthread, nextthread))
1626 {
23860348
MS
1627 /* FIXME: This is a good reason to drop the packet. */
1628 /* Possably, there is a duplicate response. */
c906108c
SS
1629 /* Possabilities :
1630 retransmit immediatly - race conditions
1631 retransmit after timeout - yes
1632 exit
1633 wait for packet, then exit
1634 */
8a3fe4f8 1635 warning (_("HMM: threadlist did not echo arg thread, dropping it."));
23860348 1636 return 0; /* I choose simply exiting. */
c906108c
SS
1637 }
1638 if (*result_count <= 0)
1639 {
1640 if (*done != 1)
1641 {
8a3fe4f8 1642 warning (_("RMT ERROR : failed to get remote thread list."));
c906108c
SS
1643 result = 0;
1644 }
1645 return result; /* break; */
1646 }
1647 if (*result_count > result_limit)
1648 {
1649 *result_count = 0;
8a3fe4f8 1650 warning (_("RMT ERROR: threadlist response longer than requested."));
c906108c
SS
1651 return 0;
1652 }
1653 return result;
1654}
1655
23860348
MS
1656/* This is the interface between remote and threads, remotes upper
1657 interface. */
c906108c
SS
1658
1659/* remote_find_new_threads retrieves the thread list and for each
1660 thread in the list, looks up the thread in GDB's internal list,
1661 ading the thread if it does not already exist. This involves
1662 getting partial thread lists from the remote target so, polling the
1663 quit_flag is required. */
1664
1665
23860348 1666/* About this many threadisds fit in a packet. */
c906108c
SS
1667
1668#define MAXTHREADLISTRESULTS 32
1669
1670static int
fba45db2
KB
1671remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
1672 int looplimit)
c906108c
SS
1673{
1674 int done, i, result_count;
1675 int startflag = 1;
1676 int result = 1;
1677 int loopcount = 0;
1678 static threadref nextthread;
1679 static threadref resultthreadlist[MAXTHREADLISTRESULTS];
1680
1681 done = 0;
1682 while (!done)
1683 {
1684 if (loopcount++ > looplimit)
1685 {
1686 result = 0;
8a3fe4f8 1687 warning (_("Remote fetch threadlist -infinite loop-."));
c906108c
SS
1688 break;
1689 }
1690 if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
1691 &done, &result_count, resultthreadlist))
1692 {
1693 result = 0;
1694 break;
1695 }
23860348 1696 /* Clear for later iterations. */
c906108c
SS
1697 startflag = 0;
1698 /* Setup to resume next batch of thread references, set nextthread. */
1699 if (result_count >= 1)
1700 copy_threadref (&nextthread, &resultthreadlist[result_count - 1]);
1701 i = 0;
1702 while (result_count--)
1703 if (!(result = (*stepfunction) (&resultthreadlist[i++], context)))
1704 break;
1705 }
1706 return result;
1707}
1708
1709static int
fba45db2 1710remote_newthread_step (threadref *ref, void *context)
c906108c 1711{
39f77062 1712 ptid_t ptid;
c906108c 1713
39f77062
KB
1714 ptid = pid_to_ptid (threadref_to_int (ref));
1715
1716 if (!in_thread_list (ptid))
1717 add_thread (ptid);
c906108c
SS
1718 return 1; /* continue iterator */
1719}
1720
1721#define CRAZY_MAX_THREADS 1000
1722
39f77062
KB
1723static ptid_t
1724remote_current_thread (ptid_t oldpid)
c906108c 1725{
d01949b6 1726 struct remote_state *rs = get_remote_state ();
c906108c
SS
1727
1728 putpkt ("qC");
6d820c5c 1729 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1730 if (rs->buf[0] == 'Q' && rs->buf[1] == 'C')
c273b20f
JB
1731 /* Use strtoul here, so we'll correctly parse values whose highest
1732 bit is set. The protocol carries them as a simple series of
1733 hex digits; in the absence of a sign, strtol will see such
1734 values as positive numbers out of range for signed 'long', and
1735 return LONG_MAX to indicate an overflow. */
2e9f7625 1736 return pid_to_ptid (strtoul (&rs->buf[2], NULL, 16));
c906108c
SS
1737 else
1738 return oldpid;
1739}
1740
802188a7
RM
1741/* Find new threads for info threads command.
1742 * Original version, using John Metzler's thread protocol.
9d1f7ab2 1743 */
cce74817
JM
1744
1745static void
fba45db2 1746remote_find_new_threads (void)
c906108c 1747{
c5aa993b
JM
1748 remote_threadlist_iterator (remote_newthread_step, 0,
1749 CRAZY_MAX_THREADS);
39f77062
KB
1750 if (PIDGET (inferior_ptid) == MAGIC_NULL_PID) /* ack ack ack */
1751 inferior_ptid = remote_current_thread (inferior_ptid);
c906108c
SS
1752}
1753
9d1f7ab2
MS
1754/*
1755 * Find all threads for info threads command.
1756 * Uses new thread protocol contributed by Cisco.
1757 * Falls back and attempts to use the older method (above)
1758 * if the target doesn't respond to the new method.
1759 */
1760
0f71a2f6
JM
1761static void
1762remote_threads_info (void)
1763{
d01949b6 1764 struct remote_state *rs = get_remote_state ();
085dd6e6 1765 char *bufp;
0f71a2f6
JM
1766 int tid;
1767
1768 if (remote_desc == 0) /* paranoia */
8a3fe4f8 1769 error (_("Command can only be used when connected to the remote target."));
0f71a2f6 1770
9d1f7ab2
MS
1771 if (use_threadinfo_query)
1772 {
1773 putpkt ("qfThreadInfo");
6d820c5c 1774 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1775 bufp = rs->buf;
9d1f7ab2 1776 if (bufp[0] != '\0') /* q packet recognized */
802188a7 1777 {
9d1f7ab2
MS
1778 while (*bufp++ == 'm') /* reply contains one or more TID */
1779 {
1780 do
1781 {
c273b20f
JB
1782 /* Use strtoul here, so we'll correctly parse values
1783 whose highest bit is set. The protocol carries
1784 them as a simple series of hex digits; in the
1785 absence of a sign, strtol will see such values as
1786 positive numbers out of range for signed 'long',
1787 and return LONG_MAX to indicate an overflow. */
1788 tid = strtoul (bufp, &bufp, 16);
39f77062
KB
1789 if (tid != 0 && !in_thread_list (pid_to_ptid (tid)))
1790 add_thread (pid_to_ptid (tid));
9d1f7ab2
MS
1791 }
1792 while (*bufp++ == ','); /* comma-separated list */
1793 putpkt ("qsThreadInfo");
6d820c5c 1794 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1795 bufp = rs->buf;
9d1f7ab2
MS
1796 }
1797 return; /* done */
1798 }
1799 }
1800
23860348 1801 /* Else fall back to old method based on jmetzler protocol. */
9d1f7ab2
MS
1802 use_threadinfo_query = 0;
1803 remote_find_new_threads ();
1804 return;
1805}
1806
802188a7 1807/*
9d1f7ab2
MS
1808 * Collect a descriptive string about the given thread.
1809 * The target may say anything it wants to about the thread
1810 * (typically info about its blocked / runnable state, name, etc.).
1811 * This string will appear in the info threads display.
802188a7 1812 *
9d1f7ab2
MS
1813 * Optional: targets are not required to implement this function.
1814 */
1815
1816static char *
1817remote_threads_extra_info (struct thread_info *tp)
1818{
d01949b6 1819 struct remote_state *rs = get_remote_state ();
9d1f7ab2
MS
1820 int result;
1821 int set;
1822 threadref id;
1823 struct gdb_ext_thread_info threadinfo;
23860348 1824 static char display_buf[100]; /* arbitrary... */
9d1f7ab2
MS
1825 int n = 0; /* position in display_buf */
1826
1827 if (remote_desc == 0) /* paranoia */
8e65ff28 1828 internal_error (__FILE__, __LINE__,
e2e0b3e5 1829 _("remote_threads_extra_info"));
9d1f7ab2
MS
1830
1831 if (use_threadextra_query)
1832 {
2e9f7625 1833 xsnprintf (rs->buf, get_remote_packet_size (), "qThreadExtraInfo,%x",
ecbc58df 1834 PIDGET (tp->ptid));
2e9f7625 1835 putpkt (rs->buf);
6d820c5c 1836 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1837 if (rs->buf[0] != 0)
9d1f7ab2 1838 {
2e9f7625
DJ
1839 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
1840 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 1841 display_buf [result] = '\0';
9d1f7ab2
MS
1842 return display_buf;
1843 }
0f71a2f6 1844 }
9d1f7ab2
MS
1845
1846 /* If the above query fails, fall back to the old method. */
1847 use_threadextra_query = 0;
1848 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
1849 | TAG_MOREDISPLAY | TAG_DISPLAY;
39f77062 1850 int_to_threadref (&id, PIDGET (tp->ptid));
9d1f7ab2
MS
1851 if (remote_get_threadinfo (&id, set, &threadinfo))
1852 if (threadinfo.active)
0f71a2f6 1853 {
9d1f7ab2 1854 if (*threadinfo.shortname)
2bc416ba 1855 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 1856 " Name: %s,", threadinfo.shortname);
9d1f7ab2 1857 if (*threadinfo.display)
2bc416ba 1858 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 1859 " State: %s,", threadinfo.display);
9d1f7ab2 1860 if (*threadinfo.more_display)
2bc416ba 1861 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 1862 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
1863
1864 if (n > 0)
c5aa993b 1865 {
23860348 1866 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
1867 if (',' == display_buf[n-1])
1868 display_buf[n-1] = ' ';
1869 return display_buf;
c5aa993b 1870 }
0f71a2f6 1871 }
9d1f7ab2 1872 return NULL;
0f71a2f6 1873}
c906108c 1874\f
c5aa993b 1875
24b06219 1876/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
1877
1878static void
fba45db2 1879extended_remote_restart (void)
c906108c 1880{
d01949b6 1881 struct remote_state *rs = get_remote_state ();
c906108c
SS
1882
1883 /* Send the restart command; for reasons I don't understand the
1884 remote side really expects a number after the "R". */
ea9c271d 1885 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 1886 putpkt (rs->buf);
c906108c 1887
ad9a8f3f 1888 remote_fileio_reset ();
2bc416ba 1889
c906108c
SS
1890 /* Now query for status so this looks just like we restarted
1891 gdbserver from scratch. */
1892 putpkt ("?");
01d3a6ce 1893 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c
SS
1894}
1895\f
1896/* Clean up connection to a remote debugger. */
1897
c906108c 1898static void
fba45db2 1899remote_close (int quitting)
c906108c
SS
1900{
1901 if (remote_desc)
2cd58942 1902 serial_close (remote_desc);
c906108c
SS
1903 remote_desc = NULL;
1904}
1905
23860348 1906/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
1907
1908static void
fba45db2 1909get_offsets (void)
c906108c 1910{
d01949b6 1911 struct remote_state *rs = get_remote_state ();
2e9f7625 1912 char *buf;
085dd6e6 1913 char *ptr;
c906108c
SS
1914 int lose;
1915 CORE_ADDR text_addr, data_addr, bss_addr;
1916 struct section_offsets *offs;
1917
1918 putpkt ("qOffsets");
6d820c5c 1919 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 1920 buf = rs->buf;
c906108c
SS
1921
1922 if (buf[0] == '\000')
1923 return; /* Return silently. Stub doesn't support
23860348 1924 this command. */
c906108c
SS
1925 if (buf[0] == 'E')
1926 {
8a3fe4f8 1927 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
1928 return;
1929 }
1930
1931 /* Pick up each field in turn. This used to be done with scanf, but
1932 scanf will make trouble if CORE_ADDR size doesn't match
1933 conversion directives correctly. The following code will work
1934 with any size of CORE_ADDR. */
1935 text_addr = data_addr = bss_addr = 0;
1936 ptr = buf;
1937 lose = 0;
1938
1939 if (strncmp (ptr, "Text=", 5) == 0)
1940 {
1941 ptr += 5;
1942 /* Don't use strtol, could lose on big values. */
1943 while (*ptr && *ptr != ';')
1944 text_addr = (text_addr << 4) + fromhex (*ptr++);
1945 }
1946 else
1947 lose = 1;
1948
1949 if (!lose && strncmp (ptr, ";Data=", 6) == 0)
1950 {
1951 ptr += 6;
1952 while (*ptr && *ptr != ';')
1953 data_addr = (data_addr << 4) + fromhex (*ptr++);
1954 }
1955 else
1956 lose = 1;
1957
1958 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
1959 {
1960 ptr += 5;
1961 while (*ptr && *ptr != ';')
1962 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
1963 }
1964 else
1965 lose = 1;
1966
1967 if (lose)
8a3fe4f8 1968 error (_("Malformed response to offset query, %s"), buf);
c906108c
SS
1969
1970 if (symfile_objfile == NULL)
1971 return;
1972
802188a7 1973 offs = ((struct section_offsets *)
a39a16c4 1974 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 1975 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 1976 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 1977
a4c8257b 1978 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
c906108c
SS
1979
1980 /* This is a temporary kludge to force data and bss to use the same offsets
1981 because that's what nlmconv does now. The real solution requires changes
1982 to the stub and remote.c that I don't have time to do right now. */
1983
a4c8257b
EZ
1984 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
1985 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
c906108c
SS
1986
1987 objfile_relocate (symfile_objfile, offs);
1988}
1989
8621d6a9 1990/* Stub for catch_exception. */
0f71a2f6 1991
9cbc821d 1992static void
8621d6a9 1993remote_start_remote (struct ui_out *uiout, void *from_tty_p)
c906108c 1994{
8621d6a9
DJ
1995 int from_tty = * (int *) from_tty_p;
1996
23860348 1997 immediate_quit++; /* Allow user to interrupt it. */
c906108c
SS
1998
1999 /* Ack any packet which the remote side has already sent. */
2cd58942 2000 serial_write (remote_desc, "+", 1);
c906108c
SS
2001
2002 /* Let the stub know that we want it to return the thread. */
2003 set_thread (-1, 0);
2004
39f77062 2005 inferior_ptid = remote_current_thread (inferior_ptid);
c906108c 2006
23860348 2007 get_offsets (); /* Get text, data & bss offsets. */
c906108c 2008
23860348 2009 putpkt ("?"); /* Initiate a query from remote machine. */
8edbea78 2010 immediate_quit--;
c906108c 2011
8621d6a9 2012 start_remote (from_tty); /* Initialize gdb process mechanisms. */
c906108c
SS
2013}
2014
2015/* Open a connection to a remote debugger.
2016 NAME is the filename used for communication. */
2017
2018static void
fba45db2 2019remote_open (char *name, int from_tty)
c906108c 2020{
92d1e331 2021 remote_open_1 (name, from_tty, &remote_ops, 0, 0);
c906108c
SS
2022}
2023
23860348 2024/* Just like remote_open, but with asynchronous support. */
43ff13b4 2025static void
fba45db2 2026remote_async_open (char *name, int from_tty)
43ff13b4 2027{
92d1e331 2028 remote_open_1 (name, from_tty, &remote_async_ops, 0, 1);
43ff13b4
JM
2029}
2030
c906108c
SS
2031/* Open a connection to a remote debugger using the extended
2032 remote gdb protocol. NAME is the filename used for communication. */
2033
2034static void
fba45db2 2035extended_remote_open (char *name, int from_tty)
c906108c 2036{
92d1e331
DJ
2037 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */,
2038 0 /* async_p */);
c906108c
SS
2039}
2040
23860348 2041/* Just like extended_remote_open, but with asynchronous support. */
43ff13b4 2042static void
fba45db2 2043extended_remote_async_open (char *name, int from_tty)
43ff13b4 2044{
92d1e331
DJ
2045 remote_open_1 (name, from_tty, &extended_async_remote_ops,
2046 1 /*extended_p */, 1 /* async_p */);
43ff13b4
JM
2047}
2048
c906108c
SS
2049/* Generic code for opening a connection to a remote target. */
2050
d471ea57
AC
2051static void
2052init_all_packet_configs (void)
2053{
2054 int i;
444abaca
DJ
2055 for (i = 0; i < PACKET_MAX; i++)
2056 update_packet_config (&remote_protocol_packets[i]);
d471ea57
AC
2057}
2058
23860348 2059/* Symbol look-up. */
dc8acb97
MS
2060
2061static void
2062remote_check_symbols (struct objfile *objfile)
2063{
d01949b6 2064 struct remote_state *rs = get_remote_state ();
dc8acb97
MS
2065 char *msg, *reply, *tmp;
2066 struct minimal_symbol *sym;
2067 int end;
2068
444abaca 2069 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
dc8acb97
MS
2070 return;
2071
6d820c5c
DJ
2072 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2073 because we need both at the same time. */
ea9c271d 2074 msg = alloca (get_remote_packet_size ());
6d820c5c 2075
23860348 2076 /* Invite target to request symbol lookups. */
dc8acb97
MS
2077
2078 putpkt ("qSymbol::");
6d820c5c
DJ
2079 getpkt (&rs->buf, &rs->buf_size, 0);
2080 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2e9f7625 2081 reply = rs->buf;
dc8acb97
MS
2082
2083 while (strncmp (reply, "qSymbol:", 8) == 0)
2084 {
2085 tmp = &reply[8];
cfd77fa1 2086 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
2087 msg[end] = '\0';
2088 sym = lookup_minimal_symbol (msg, NULL, NULL);
2089 if (sym == NULL)
ea9c271d 2090 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 2091 else
ea9c271d 2092 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
ecbc58df
WZ
2093 paddr_nz (SYMBOL_VALUE_ADDRESS (sym)),
2094 &reply[8]);
dc8acb97 2095 putpkt (msg);
6d820c5c 2096 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2097 reply = rs->buf;
dc8acb97
MS
2098 }
2099}
2100
9db8d71f
DJ
2101static struct serial *
2102remote_serial_open (char *name)
2103{
2104 static int udp_warning = 0;
2105
2106 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2107 of in ser-tcp.c, because it is the remote protocol assuming that the
2108 serial connection is reliable and not the serial connection promising
2109 to be. */
2110 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2111 {
8a3fe4f8
AC
2112 warning (_("\
2113The remote protocol may be unreliable over UDP.\n\
2114Some events may be lost, rendering further debugging impossible."));
9db8d71f
DJ
2115 udp_warning = 1;
2116 }
2117
2118 return serial_open (name);
2119}
2120
be2a5f71
DJ
2121/* This type describes each known response to the qSupported
2122 packet. */
2123struct protocol_feature
2124{
2125 /* The name of this protocol feature. */
2126 const char *name;
2127
2128 /* The default for this protocol feature. */
2129 enum packet_support default_support;
2130
2131 /* The function to call when this feature is reported, or after
2132 qSupported processing if the feature is not supported.
2133 The first argument points to this structure. The second
2134 argument indicates whether the packet requested support be
2135 enabled, disabled, or probed (or the default, if this function
2136 is being called at the end of processing and this feature was
2137 not reported). The third argument may be NULL; if not NULL, it
2138 is a NUL-terminated string taken from the packet following
2139 this feature's name and an equals sign. */
2140 void (*func) (const struct protocol_feature *, enum packet_support,
2141 const char *);
2142
2143 /* The corresponding packet for this feature. Only used if
2144 FUNC is remote_supported_packet. */
2145 int packet;
2146};
2147
be2a5f71
DJ
2148static void
2149remote_supported_packet (const struct protocol_feature *feature,
2150 enum packet_support support,
2151 const char *argument)
2152{
2153 if (argument)
2154 {
2155 warning (_("Remote qSupported response supplied an unexpected value for"
2156 " \"%s\"."), feature->name);
2157 return;
2158 }
2159
2160 if (remote_protocol_packets[feature->packet].support
2161 == PACKET_SUPPORT_UNKNOWN)
2162 remote_protocol_packets[feature->packet].support = support;
2163}
be2a5f71
DJ
2164
2165static void
2166remote_packet_size (const struct protocol_feature *feature,
2167 enum packet_support support, const char *value)
2168{
2169 struct remote_state *rs = get_remote_state ();
2170
2171 int packet_size;
2172 char *value_end;
2173
2174 if (support != PACKET_ENABLE)
2175 return;
2176
2177 if (value == NULL || *value == '\0')
2178 {
2179 warning (_("Remote target reported \"%s\" without a size."),
2180 feature->name);
2181 return;
2182 }
2183
2184 errno = 0;
2185 packet_size = strtol (value, &value_end, 16);
2186 if (errno != 0 || *value_end != '\0' || packet_size < 0)
2187 {
2188 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
2189 feature->name, value);
2190 return;
2191 }
2192
2193 if (packet_size > MAX_REMOTE_PACKET_SIZE)
2194 {
2195 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
2196 packet_size, MAX_REMOTE_PACKET_SIZE);
2197 packet_size = MAX_REMOTE_PACKET_SIZE;
2198 }
2199
2200 /* Record the new maximum packet size. */
2201 rs->explicit_packet_size = packet_size;
2202}
2203
2204static struct protocol_feature remote_protocol_features[] = {
0876f84a 2205 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 2206 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee
DJ
2207 PACKET_qXfer_auxv },
2208 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
2209 PACKET_qXfer_memory_map }
be2a5f71
DJ
2210};
2211
2212static void
2213remote_query_supported (void)
2214{
2215 struct remote_state *rs = get_remote_state ();
2216 char *next;
2217 int i;
2218 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
2219
2220 /* The packet support flags are handled differently for this packet
2221 than for most others. We treat an error, a disabled packet, and
2222 an empty response identically: any features which must be reported
2223 to be used will be automatically disabled. An empty buffer
2224 accomplishes this, since that is also the representation for a list
2225 containing no features. */
2226
2227 rs->buf[0] = 0;
2228 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
2229 {
2230 putpkt ("qSupported");
2231 getpkt (&rs->buf, &rs->buf_size, 0);
2232
2233 /* If an error occured, warn, but do not return - just reset the
2234 buffer to empty and go on to disable features. */
2235 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
2236 == PACKET_ERROR)
2237 {
2238 warning (_("Remote failure reply: %s"), rs->buf);
2239 rs->buf[0] = 0;
2240 }
2241 }
2242
2243 memset (seen, 0, sizeof (seen));
2244
2245 next = rs->buf;
2246 while (*next)
2247 {
2248 enum packet_support is_supported;
2249 char *p, *end, *name_end, *value;
2250
2251 /* First separate out this item from the rest of the packet. If
2252 there's another item after this, we overwrite the separator
2253 (terminated strings are much easier to work with). */
2254 p = next;
2255 end = strchr (p, ';');
2256 if (end == NULL)
2257 {
2258 end = p + strlen (p);
2259 next = end;
2260 }
2261 else
2262 {
2263 if (end == p)
2264 {
2265 warning (_("empty item in \"qSupported\" response"));
2266 continue;
2267 }
2268
2269 *end = '\0';
2270 next = end + 1;
2271 }
2272
2273 name_end = strchr (p, '=');
2274 if (name_end)
2275 {
2276 /* This is a name=value entry. */
2277 is_supported = PACKET_ENABLE;
2278 value = name_end + 1;
2279 *name_end = '\0';
2280 }
2281 else
2282 {
2283 value = NULL;
2284 switch (end[-1])
2285 {
2286 case '+':
2287 is_supported = PACKET_ENABLE;
2288 break;
2289
2290 case '-':
2291 is_supported = PACKET_DISABLE;
2292 break;
2293
2294 case '?':
2295 is_supported = PACKET_SUPPORT_UNKNOWN;
2296 break;
2297
2298 default:
2299 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
2300 continue;
2301 }
2302 end[-1] = '\0';
2303 }
2304
2305 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
2306 if (strcmp (remote_protocol_features[i].name, p) == 0)
2307 {
2308 const struct protocol_feature *feature;
2309
2310 seen[i] = 1;
2311 feature = &remote_protocol_features[i];
2312 feature->func (feature, is_supported, value);
2313 break;
2314 }
2315 }
2316
2317 /* If we increased the packet size, make sure to increase the global
2318 buffer size also. We delay this until after parsing the entire
2319 qSupported packet, because this is the same buffer we were
2320 parsing. */
2321 if (rs->buf_size < rs->explicit_packet_size)
2322 {
2323 rs->buf_size = rs->explicit_packet_size;
2324 rs->buf = xrealloc (rs->buf, rs->buf_size);
2325 }
2326
2327 /* Handle the defaults for unmentioned features. */
2328 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
2329 if (!seen[i])
2330 {
2331 const struct protocol_feature *feature;
2332
2333 feature = &remote_protocol_features[i];
2334 feature->func (feature, feature->default_support, NULL);
2335 }
2336}
2337
2338
c906108c 2339static void
fba45db2 2340remote_open_1 (char *name, int from_tty, struct target_ops *target,
92d1e331 2341 int extended_p, int async_p)
c906108c 2342{
d01949b6 2343 struct remote_state *rs = get_remote_state ();
c906108c 2344 if (name == 0)
8a3fe4f8 2345 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 2346 "serial device is attached to the remote system\n"
8a3fe4f8 2347 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 2348
23860348 2349 /* See FIXME above. */
92d1e331
DJ
2350 if (!async_p)
2351 wait_forever_enabled_p = 1;
6426a772 2352
c906108c
SS
2353 target_preopen (from_tty);
2354
2355 unpush_target (target);
2356
ad9a8f3f 2357 remote_fileio_reset ();
1dd41f16
NS
2358 reopen_exec_file ();
2359 reread_symbols ();
2360
9db8d71f 2361 remote_desc = remote_serial_open (name);
c906108c
SS
2362 if (!remote_desc)
2363 perror_with_name (name);
2364
2365 if (baud_rate != -1)
2366 {
2cd58942 2367 if (serial_setbaudrate (remote_desc, baud_rate))
c906108c 2368 {
9b74d5d3
KB
2369 /* The requested speed could not be set. Error out to
2370 top level after closing remote_desc. Take care to
2371 set remote_desc to NULL to avoid closing remote_desc
2372 more than once. */
2cd58942 2373 serial_close (remote_desc);
9b74d5d3 2374 remote_desc = NULL;
c906108c
SS
2375 perror_with_name (name);
2376 }
2377 }
2378
2cd58942 2379 serial_raw (remote_desc);
c906108c
SS
2380
2381 /* If there is something sitting in the buffer we might take it as a
2382 response to a command, which would be bad. */
2cd58942 2383 serial_flush_input (remote_desc);
c906108c
SS
2384
2385 if (from_tty)
2386 {
2387 puts_filtered ("Remote debugging using ");
2388 puts_filtered (name);
2389 puts_filtered ("\n");
2390 }
23860348 2391 push_target (target); /* Switch to using remote target now. */
c906108c 2392
be2a5f71
DJ
2393 /* Reset the target state; these things will be queried either by
2394 remote_query_supported or as they are needed. */
d471ea57 2395 init_all_packet_configs ();
be2a5f71 2396 rs->explicit_packet_size = 0;
802188a7 2397
c5aa993b 2398 general_thread = -2;
cce74817 2399 continue_thread = -2;
c906108c 2400
9d1f7ab2
MS
2401 /* Probe for ability to use "ThreadInfo" query, as required. */
2402 use_threadinfo_query = 1;
2403 use_threadextra_query = 1;
2404
be2a5f71
DJ
2405 /* The first packet we send to the target is the optional "supported
2406 packets" request. If the target can answer this, it will tell us
2407 which later probes to skip. */
2408 remote_query_supported ();
2409
c906108c
SS
2410 /* Without this, some commands which require an active target (such
2411 as kill) won't work. This variable serves (at least) double duty
2412 as both the pid of the target process (if it has such), and as a
2413 flag indicating that a target is active. These functions should
2414 be split out into seperate variables, especially since GDB will
2415 someday have a notion of debugging several processes. */
2416
39f77062 2417 inferior_ptid = pid_to_ptid (MAGIC_NULL_PID);
92d1e331
DJ
2418
2419 if (async_p)
2420 {
23860348 2421 /* With this target we start out by owning the terminal. */
92d1e331
DJ
2422 remote_async_terminal_ours_p = 1;
2423
2424 /* FIXME: cagney/1999-09-23: During the initial connection it is
2425 assumed that the target is already ready and able to respond to
2426 requests. Unfortunately remote_start_remote() eventually calls
2427 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2428 around this. Eventually a mechanism that allows
2429 wait_for_inferior() to expect/get timeouts will be
23860348 2430 implemented. */
92d1e331
DJ
2431 wait_forever_enabled_p = 0;
2432 }
2433
23860348 2434 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 2435 no_shared_libraries (NULL, 0);
f78f6cf1 2436
36918e70 2437 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
2438 target (we'd otherwise be in an inconsistent state) and then
2439 propogate the error on up the exception chain. This ensures that
2440 the caller doesn't stumble along blindly assuming that the
2441 function succeeded. The CLI doesn't have this problem but other
2442 UI's, such as MI do.
36918e70
AC
2443
2444 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
2445 this function should return an error indication letting the
ce2826aa 2446 caller restore the previous state. Unfortunately the command
36918e70
AC
2447 ``target remote'' is directly wired to this function making that
2448 impossible. On a positive note, the CLI side of this problem has
2449 been fixed - the function set_cmd_context() makes it possible for
2450 all the ``target ....'' commands to share a common callback
2451 function. See cli-dump.c. */
109c3e39
AC
2452 {
2453 struct gdb_exception ex
8621d6a9
DJ
2454 = catch_exception (uiout, remote_start_remote, &from_tty,
2455 RETURN_MASK_ALL);
109c3e39
AC
2456 if (ex.reason < 0)
2457 {
2458 pop_target ();
2459 if (async_p)
2460 wait_forever_enabled_p = 1;
2461 throw_exception (ex);
2462 }
2463 }
c906108c 2464
92d1e331
DJ
2465 if (async_p)
2466 wait_forever_enabled_p = 1;
6426a772
JM
2467
2468 if (extended_p)
43ff13b4 2469 {
6240bebf 2470 /* Tell the remote that we are using the extended protocol. */
6426a772 2471 putpkt ("!");
6d820c5c 2472 getpkt (&rs->buf, &rs->buf_size, 0);
43ff13b4 2473 }
a77053c2 2474
23860348 2475 if (exec_bfd) /* No use without an exec file. */
9353355f 2476 remote_check_symbols (symfile_objfile);
43ff13b4
JM
2477}
2478
c906108c
SS
2479/* This takes a program previously attached to and detaches it. After
2480 this is done, GDB can be used to debug some other program. We
2481 better not have left any breakpoints in the target program or it'll
2482 die when it hits one. */
2483
2484static void
fba45db2 2485remote_detach (char *args, int from_tty)
c906108c 2486{
d01949b6 2487 struct remote_state *rs = get_remote_state ();
c906108c
SS
2488
2489 if (args)
8a3fe4f8 2490 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c
SS
2491
2492 /* Tell the remote target to detach. */
6d820c5c
DJ
2493 strcpy (rs->buf, "D");
2494 remote_send (&rs->buf, &rs->buf_size);
c906108c 2495
23860348 2496 /* Unregister the file descriptor from the event loop. */
6ad8ae5c
DJ
2497 if (target_is_async_p ())
2498 serial_async (remote_desc, NULL, 0);
2499
cca728d0 2500 target_mourn_inferior ();
c906108c
SS
2501 if (from_tty)
2502 puts_filtered ("Ending remote debugging.\n");
2503}
2504
6ad8ae5c
DJ
2505/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
2506
43ff13b4 2507static void
597320e7 2508remote_disconnect (struct target_ops *target, char *args, int from_tty)
43ff13b4 2509{
43ff13b4 2510 if (args)
8a3fe4f8 2511 error (_("Argument given to \"detach\" when remotely debugging."));
43ff13b4 2512
23860348 2513 /* Unregister the file descriptor from the event loop. */
ed9a39eb 2514 if (target_is_async_p ())
2cd58942 2515 serial_async (remote_desc, NULL, 0);
43ff13b4 2516
cca728d0 2517 target_mourn_inferior ();
43ff13b4
JM
2518 if (from_tty)
2519 puts_filtered ("Ending remote debugging.\n");
2520}
2521
c906108c
SS
2522/* Convert hex digit A to a number. */
2523
30559e10 2524static int
fba45db2 2525fromhex (int a)
c906108c
SS
2526{
2527 if (a >= '0' && a <= '9')
2528 return a - '0';
2529 else if (a >= 'a' && a <= 'f')
2530 return a - 'a' + 10;
2531 else if (a >= 'A' && a <= 'F')
2532 return a - 'A' + 10;
c5aa993b 2533 else
8a3fe4f8 2534 error (_("Reply contains invalid hex digit %d"), a);
c906108c
SS
2535}
2536
30559e10 2537static int
cfd77fa1 2538hex2bin (const char *hex, gdb_byte *bin, int count)
30559e10
MS
2539{
2540 int i;
2541
30559e10
MS
2542 for (i = 0; i < count; i++)
2543 {
2544 if (hex[0] == 0 || hex[1] == 0)
2545 {
2546 /* Hex string is short, or of uneven length.
23860348 2547 Return the count that has been converted so far. */
30559e10
MS
2548 return i;
2549 }
2550 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
2551 hex += 2;
2552 }
2553 return i;
2554}
2555
c906108c
SS
2556/* Convert number NIB to a hex digit. */
2557
2558static int
fba45db2 2559tohex (int nib)
c906108c
SS
2560{
2561 if (nib < 10)
c5aa993b 2562 return '0' + nib;
c906108c 2563 else
c5aa993b 2564 return 'a' + nib - 10;
c906108c 2565}
30559e10
MS
2566
2567static int
cfd77fa1 2568bin2hex (const gdb_byte *bin, char *hex, int count)
30559e10
MS
2569{
2570 int i;
23860348 2571 /* May use a length, or a nul-terminated string as input. */
30559e10 2572 if (count == 0)
cfd77fa1 2573 count = strlen ((char *) bin);
30559e10
MS
2574
2575 for (i = 0; i < count; i++)
2576 {
2577 *hex++ = tohex ((*bin >> 4) & 0xf);
2578 *hex++ = tohex (*bin++ & 0xf);
2579 }
2580 *hex = 0;
2581 return i;
2582}
c906108c 2583\f
506fb367
DJ
2584/* Check for the availability of vCont. This function should also check
2585 the response. */
c906108c
SS
2586
2587static void
6d820c5c 2588remote_vcont_probe (struct remote_state *rs)
c906108c 2589{
2e9f7625 2590 char *buf;
6d820c5c 2591
2e9f7625
DJ
2592 strcpy (rs->buf, "vCont?");
2593 putpkt (rs->buf);
6d820c5c 2594 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2595 buf = rs->buf;
c906108c 2596
506fb367
DJ
2597 /* Make sure that the features we assume are supported. */
2598 if (strncmp (buf, "vCont", 5) == 0)
2599 {
2600 char *p = &buf[5];
2601 int support_s, support_S, support_c, support_C;
2602
2603 support_s = 0;
2604 support_S = 0;
2605 support_c = 0;
2606 support_C = 0;
2607 while (p && *p == ';')
2608 {
2609 p++;
2610 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
2611 support_s = 1;
2612 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
2613 support_S = 1;
2614 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
2615 support_c = 1;
2616 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
2617 support_C = 1;
2618
2619 p = strchr (p, ';');
2620 }
c906108c 2621
506fb367
DJ
2622 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
2623 BUF will make packet_ok disable the packet. */
2624 if (!support_s || !support_S || !support_c || !support_C)
2625 buf[0] = 0;
2626 }
c906108c 2627
444abaca 2628 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 2629}
c906108c 2630
506fb367
DJ
2631/* Resume the remote inferior by using a "vCont" packet. The thread
2632 to be resumed is PTID; STEP and SIGGNAL indicate whether the
2633 resumed thread should be single-stepped and/or signalled. If PTID's
2634 PID is -1, then all threads are resumed; the thread to be stepped and/or
2635 signalled is given in the global INFERIOR_PTID. This function returns
2636 non-zero iff it resumes the inferior.
44eaed12 2637
506fb367
DJ
2638 This function issues a strict subset of all possible vCont commands at the
2639 moment. */
44eaed12 2640
506fb367
DJ
2641static int
2642remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
2643{
2644 struct remote_state *rs = get_remote_state ();
2645 int pid = PIDGET (ptid);
2963ee1d 2646 char *buf = NULL, *outbuf;
506fb367 2647 struct cleanup *old_cleanup;
44eaed12 2648
444abaca 2649 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
6d820c5c 2650 remote_vcont_probe (rs);
44eaed12 2651
444abaca 2652 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
6d820c5c 2653 return 0;
44eaed12 2654
506fb367
DJ
2655 /* If we could generate a wider range of packets, we'd have to worry
2656 about overflowing BUF. Should there be a generic
2657 "multi-part-packet" packet? */
2658
2659 if (PIDGET (inferior_ptid) == MAGIC_NULL_PID)
c906108c 2660 {
506fb367
DJ
2661 /* MAGIC_NULL_PTID means that we don't have any active threads, so we
2662 don't have any PID numbers the inferior will understand. Make sure
2663 to only send forms that do not specify a PID. */
2664 if (step && siggnal != TARGET_SIGNAL_0)
2963ee1d 2665 outbuf = xstrprintf ("vCont;S%02x", siggnal);
506fb367 2666 else if (step)
2963ee1d 2667 outbuf = xstrprintf ("vCont;s");
506fb367 2668 else if (siggnal != TARGET_SIGNAL_0)
2963ee1d 2669 outbuf = xstrprintf ("vCont;C%02x", siggnal);
506fb367 2670 else
2963ee1d 2671 outbuf = xstrprintf ("vCont;c");
506fb367
DJ
2672 }
2673 else if (pid == -1)
2674 {
2675 /* Resume all threads, with preference for INFERIOR_PTID. */
2676 if (step && siggnal != TARGET_SIGNAL_0)
2963ee1d
DJ
2677 outbuf = xstrprintf ("vCont;S%02x:%x;c", siggnal,
2678 PIDGET (inferior_ptid));
506fb367 2679 else if (step)
2963ee1d 2680 outbuf = xstrprintf ("vCont;s:%x;c", PIDGET (inferior_ptid));
506fb367 2681 else if (siggnal != TARGET_SIGNAL_0)
2963ee1d
DJ
2682 outbuf = xstrprintf ("vCont;C%02x:%x;c", siggnal,
2683 PIDGET (inferior_ptid));
506fb367 2684 else
2963ee1d 2685 outbuf = xstrprintf ("vCont;c");
c906108c
SS
2686 }
2687 else
506fb367
DJ
2688 {
2689 /* Scheduler locking; resume only PTID. */
2690 if (step && siggnal != TARGET_SIGNAL_0)
2963ee1d 2691 outbuf = xstrprintf ("vCont;S%02x:%x", siggnal, pid);
506fb367 2692 else if (step)
2963ee1d 2693 outbuf = xstrprintf ("vCont;s:%x", pid);
506fb367 2694 else if (siggnal != TARGET_SIGNAL_0)
2963ee1d 2695 outbuf = xstrprintf ("vCont;C%02x:%x", siggnal, pid);
506fb367 2696 else
2963ee1d 2697 outbuf = xstrprintf ("vCont;c:%x", pid);
506fb367 2698 }
c906108c 2699
ea9c271d 2700 gdb_assert (outbuf && strlen (outbuf) < get_remote_packet_size ());
6d820c5c 2701 old_cleanup = make_cleanup (xfree, outbuf);
2963ee1d
DJ
2702
2703 putpkt (outbuf);
506fb367
DJ
2704
2705 do_cleanups (old_cleanup);
2706
2707 return 1;
c906108c 2708}
43ff13b4 2709
506fb367
DJ
2710/* Tell the remote machine to resume. */
2711
2712static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
2713
2714static int last_sent_step;
2715
43ff13b4 2716static void
506fb367 2717remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
43ff13b4 2718{
d01949b6 2719 struct remote_state *rs = get_remote_state ();
2e9f7625 2720 char *buf;
39f77062 2721 int pid = PIDGET (ptid);
43ff13b4 2722
43ff13b4
JM
2723 last_sent_signal = siggnal;
2724 last_sent_step = step;
2725
2726 /* A hook for when we need to do something at the last moment before
2727 resumption. */
9a4105ab
AC
2728 if (deprecated_target_resume_hook)
2729 (*deprecated_target_resume_hook) ();
43ff13b4 2730
506fb367
DJ
2731 /* The vCont packet doesn't need to specify threads via Hc. */
2732 if (remote_vcont_resume (ptid, step, siggnal))
2733 return;
2734
2735 /* All other supported resume packets do use Hc, so call set_thread. */
2736 if (pid == -1)
23860348 2737 set_thread (0, 0); /* Run any thread. */
506fb367 2738 else
23860348 2739 set_thread (pid, 0); /* Run this thread. */
506fb367 2740
2e9f7625 2741 buf = rs->buf;
43ff13b4
JM
2742 if (siggnal != TARGET_SIGNAL_0)
2743 {
2744 buf[0] = step ? 'S' : 'C';
c5aa993b 2745 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
506fb367 2746 buf[2] = tohex (((int) siggnal) & 0xf);
43ff13b4
JM
2747 buf[3] = '\0';
2748 }
2749 else
c5aa993b 2750 strcpy (buf, step ? "s" : "c");
506fb367 2751
44eaed12 2752 putpkt (buf);
506fb367
DJ
2753}
2754
23860348 2755/* Same as remote_resume, but with async support. */
506fb367
DJ
2756static void
2757remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal)
2758{
2759 remote_resume (ptid, step, siggnal);
43ff13b4 2760
2acceee2
JM
2761 /* We are about to start executing the inferior, let's register it
2762 with the event loop. NOTE: this is the one place where all the
2763 execution commands end up. We could alternatively do this in each
23860348 2764 of the execution commands in infcmd.c. */
2acceee2
JM
2765 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
2766 into infcmd.c in order to allow inferior function calls to work
23860348 2767 NOT asynchronously. */
362646f5 2768 if (target_can_async_p ())
2acceee2 2769 target_async (inferior_event_handler, 0);
23860348 2770 /* Tell the world that the target is now executing. */
2acceee2
JM
2771 /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set
2772 this? Instead, should the client of target just assume (for
2773 async targets) that the target is going to start executing? Is
2774 this information already found in the continuation block? */
ed9a39eb 2775 if (target_is_async_p ())
2acceee2 2776 target_executing = 1;
43ff13b4 2777}
c906108c 2778\f
43ff13b4
JM
2779
2780/* Set up the signal handler for SIGINT, while the target is
23860348 2781 executing, ovewriting the 'regular' SIGINT signal handler. */
43ff13b4 2782static void
fba45db2 2783initialize_sigint_signal_handler (void)
43ff13b4 2784{
c5aa993b 2785 sigint_remote_token =
43ff13b4
JM
2786 create_async_signal_handler (async_remote_interrupt, NULL);
2787 signal (SIGINT, handle_remote_sigint);
2788}
2789
23860348 2790/* Signal handler for SIGINT, while the target is executing. */
43ff13b4 2791static void
fba45db2 2792handle_remote_sigint (int sig)
43ff13b4
JM
2793{
2794 signal (sig, handle_remote_sigint_twice);
c5aa993b 2795 sigint_remote_twice_token =
43ff13b4
JM
2796 create_async_signal_handler (async_remote_interrupt_twice, NULL);
2797 mark_async_signal_handler_wrapper (sigint_remote_token);
2798}
2799
2800/* Signal handler for SIGINT, installed after SIGINT has already been
2801 sent once. It will take effect the second time that the user sends
23860348 2802 a ^C. */
43ff13b4 2803static void
fba45db2 2804handle_remote_sigint_twice (int sig)
43ff13b4
JM
2805{
2806 signal (sig, handle_sigint);
c5aa993b 2807 sigint_remote_twice_token =
2df3850c 2808 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
43ff13b4
JM
2809 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
2810}
2811
6426a772 2812/* Perform the real interruption of the target execution, in response
23860348 2813 to a ^C. */
c5aa993b 2814static void
fba45db2 2815async_remote_interrupt (gdb_client_data arg)
43ff13b4
JM
2816{
2817 if (remote_debug)
2818 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
2819
2820 target_stop ();
2821}
2822
2823/* Perform interrupt, if the first attempt did not succeed. Just give
23860348 2824 up on the target alltogether. */
2df3850c 2825void
fba45db2 2826async_remote_interrupt_twice (gdb_client_data arg)
43ff13b4 2827{
2df3850c
JM
2828 if (remote_debug)
2829 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
6426a772 2830 /* Do something only if the target was not killed by the previous
23860348 2831 cntl-C. */
6426a772
JM
2832 if (target_executing)
2833 {
2834 interrupt_query ();
2835 signal (SIGINT, handle_remote_sigint);
2836 }
43ff13b4
JM
2837}
2838
2839/* Reinstall the usual SIGINT handlers, after the target has
23860348 2840 stopped. */
6426a772
JM
2841static void
2842cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
2843{
2844 signal (SIGINT, handle_sigint);
2845 if (sigint_remote_twice_token)
2bc416ba 2846 delete_async_signal_handler ((struct async_signal_handler **)
23860348 2847 &sigint_remote_twice_token);
43ff13b4 2848 if (sigint_remote_token)
2bc416ba 2849 delete_async_signal_handler ((struct async_signal_handler **)
23860348 2850 &sigint_remote_token);
43ff13b4
JM
2851}
2852
c906108c
SS
2853/* Send ^C to target to halt it. Target will respond, and send us a
2854 packet. */
507f3c78 2855static void (*ofunc) (int);
c906108c 2856
7a292a7a
SS
2857/* The command line interface's stop routine. This function is installed
2858 as a signal handler for SIGINT. The first time a user requests a
2859 stop, we call remote_stop to send a break or ^C. If there is no
2860 response from the target (it didn't stop when the user requested it),
23860348 2861 we ask the user if he'd like to detach from the target. */
c906108c 2862static void
fba45db2 2863remote_interrupt (int signo)
c906108c 2864{
23860348 2865 /* If this doesn't work, try more severe steps. */
7a292a7a
SS
2866 signal (signo, remote_interrupt_twice);
2867
2868 if (remote_debug)
0f71a2f6 2869 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
7a292a7a
SS
2870
2871 target_stop ();
2872}
2873
2874/* The user typed ^C twice. */
2875
2876static void
fba45db2 2877remote_interrupt_twice (int signo)
7a292a7a
SS
2878{
2879 signal (signo, ofunc);
2880 interrupt_query ();
c906108c
SS
2881 signal (signo, remote_interrupt);
2882}
7a292a7a
SS
2883
2884/* This is the generic stop called via the target vector. When a target
2885 interrupt is requested, either by the command line or the GUI, we
23860348 2886 will eventually end up here. */
c906108c 2887static void
fba45db2 2888remote_stop (void)
c906108c 2889{
7a292a7a
SS
2890 /* Send a break or a ^C, depending on user preference. */
2891 if (remote_debug)
0f71a2f6 2892 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 2893
7a292a7a 2894 if (remote_break)
2cd58942 2895 serial_send_break (remote_desc);
c906108c 2896 else
2cd58942 2897 serial_write (remote_desc, "\003", 1);
c906108c
SS
2898}
2899
2900/* Ask the user what to do when an interrupt is received. */
2901
2902static void
fba45db2 2903interrupt_query (void)
c906108c
SS
2904{
2905 target_terminal_ours ();
2906
2907 if (query ("Interrupted while waiting for the program.\n\
2908Give up (and stop debugging it)? "))
2909 {
2910 target_mourn_inferior ();
315a522e 2911 deprecated_throw_reason (RETURN_QUIT);
c906108c
SS
2912 }
2913
2914 target_terminal_inferior ();
2915}
2916
6426a772
JM
2917/* Enable/disable target terminal ownership. Most targets can use
2918 terminal groups to control terminal ownership. Remote targets are
2919 different in that explicit transfer of ownership to/from GDB/target
23860348 2920 is required. */
6426a772
JM
2921
2922static void
2923remote_async_terminal_inferior (void)
2924{
2925 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
2926 sync_execution here. This function should only be called when
2927 GDB is resuming the inferior in the forground. A background
2928 resume (``run&'') should leave GDB in control of the terminal and
23860348 2929 consequently should not call this code. */
6426a772
JM
2930 if (!sync_execution)
2931 return;
2932 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
2933 calls target_terminal_*() idenpotent. The event-loop GDB talking
2934 to an asynchronous target with a synchronous command calls this
2935 function from both event-top.c and infrun.c/infcmd.c. Once GDB
2936 stops trying to transfer the terminal to the target when it
2937 shouldn't this guard can go away. */
2938 if (!remote_async_terminal_ours_p)
2939 return;
2940 delete_file_handler (input_fd);
2941 remote_async_terminal_ours_p = 0;
2942 initialize_sigint_signal_handler ();
2943 /* NOTE: At this point we could also register our selves as the
2944 recipient of all input. Any characters typed could then be
23860348 2945 passed on down to the target. */
6426a772
JM
2946}
2947
2948static void
2949remote_async_terminal_ours (void)
2950{
23860348 2951 /* See FIXME in remote_async_terminal_inferior. */
6426a772
JM
2952 if (!sync_execution)
2953 return;
23860348 2954 /* See FIXME in remote_async_terminal_inferior. */
6426a772
JM
2955 if (remote_async_terminal_ours_p)
2956 return;
2957 cleanup_sigint_signal_handler (NULL);
2958 add_file_handler (input_fd, stdin_event_handler, 0);
2959 remote_async_terminal_ours_p = 1;
2960}
2961
c906108c
SS
2962/* If nonzero, ignore the next kill. */
2963
2964int kill_kludge;
2965
2966void
917317f4 2967remote_console_output (char *msg)
c906108c
SS
2968{
2969 char *p;
2970
c5aa993b 2971 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
2972 {
2973 char tb[2];
2974 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
2975 tb[0] = c;
2976 tb[1] = 0;
43ff13b4 2977 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 2978 }
917317f4 2979 gdb_flush (gdb_stdtarg);
c906108c
SS
2980}
2981
0f71a2f6
JM
2982/* Wait until the remote machine stops, then return,
2983 storing status in STATUS just as `wait' would.
802188a7 2984 Returns "pid", which in the case of a multi-threaded
0f71a2f6 2985 remote OS, is the thread-id. */
c906108c 2986
39f77062
KB
2987static ptid_t
2988remote_wait (ptid_t ptid, struct target_waitstatus *status)
c906108c 2989{
d01949b6 2990 struct remote_state *rs = get_remote_state ();
ea9c271d 2991 struct remote_arch_state *rsa = get_remote_arch_state ();
b2dd6311 2992 ULONGEST thread_num = -1;
3c3bea1c 2993 ULONGEST addr;
c906108c
SS
2994
2995 status->kind = TARGET_WAITKIND_EXITED;
2996 status->value.integer = 0;
2997
2998 while (1)
2999 {
2e9f7625 3000 char *buf, *p;
c906108c 3001
c906108c 3002 ofunc = signal (SIGINT, remote_interrupt);
6d820c5c 3003 getpkt (&rs->buf, &rs->buf_size, 1);
c906108c
SS
3004 signal (SIGINT, ofunc);
3005
2e9f7625
DJ
3006 buf = rs->buf;
3007
c906108c 3008 /* This is a hook for when we need to do something (perhaps the
c5aa993b 3009 collection of trace data) every time the target stops. */
9a4105ab
AC
3010 if (deprecated_target_wait_loop_hook)
3011 (*deprecated_target_wait_loop_hook) ();
c906108c 3012
3c3bea1c
GS
3013 remote_stopped_by_watchpoint_p = 0;
3014
c906108c
SS
3015 switch (buf[0])
3016 {
23860348 3017 case 'E': /* Error of some sort. */
8a3fe4f8 3018 warning (_("Remote failure reply: %s"), buf);
c906108c 3019 continue;
23860348 3020 case 'F': /* File-I/O request. */
449092f6
CV
3021 remote_fileio_request (buf);
3022 continue;
23860348 3023 case 'T': /* Status with PC, SP, FP, ... */
c906108c 3024 {
cfd77fa1 3025 gdb_byte regs[MAX_REGISTER_SIZE];
c906108c 3026
23860348 3027 /* Expedited reply, containing Signal, {regno, reg} repeat. */
c906108c 3028 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
c5aa993b
JM
3029 ss = signal number
3030 n... = register number
3031 r... = register contents
3032 */
c906108c
SS
3033 p = &buf[3]; /* after Txx */
3034
3035 while (*p)
3036 {
cfd77fa1 3037 char *p1;
c906108c 3038 char *p_temp;
97345198 3039 int fieldsize;
3c3bea1c
GS
3040 LONGEST pnum = 0;
3041
23860348
MS
3042 /* If the packet contains a register number save it in
3043 pnum and set p1 to point to the character following
3044 it. Otherwise p1 points to p. */
c906108c 3045
23860348
MS
3046 /* If this packet is an awatch packet, don't parse the
3047 'a' as a register number. */
3c3bea1c
GS
3048
3049 if (strncmp (p, "awatch", strlen("awatch")) != 0)
3050 {
3051 /* Read the ``P'' register number. */
3052 pnum = strtol (p, &p_temp, 16);
cfd77fa1 3053 p1 = p_temp;
3c3bea1c 3054 }
802188a7 3055 else
3c3bea1c 3056 p1 = p;
c906108c 3057
23860348 3058 if (p1 == p) /* No register number present here. */
c906108c 3059 {
cfd77fa1 3060 p1 = strchr (p, ':');
c906108c 3061 if (p1 == NULL)
670aa98f 3062 error (_("Malformed packet(a) (missing colon): %s\n\
8a3fe4f8 3063Packet: '%s'\n"),
670aa98f 3064 p, buf);
3c3bea1c 3065 if (strncmp (p, "thread", p1 - p) == 0)
c906108c
SS
3066 {
3067 p_temp = unpack_varlen_hex (++p1, &thread_num);
3068 record_currthread (thread_num);
cfd77fa1 3069 p = p_temp;
c906108c 3070 }
3c3bea1c
GS
3071 else if ((strncmp (p, "watch", p1 - p) == 0)
3072 || (strncmp (p, "rwatch", p1 - p) == 0)
3073 || (strncmp (p, "awatch", p1 - p) == 0))
3074 {
3075 remote_stopped_by_watchpoint_p = 1;
3076 p = unpack_varlen_hex (++p1, &addr);
3077 remote_watch_data_address = (CORE_ADDR)addr;
3078 }
3079 else
3080 {
3081 /* Silently skip unknown optional info. */
3082 p_temp = strchr (p1 + 1, ';');
3083 if (p_temp)
cfd77fa1 3084 p = p_temp;
3c3bea1c 3085 }
c906108c
SS
3086 }
3087 else
3088 {
ea9c271d 3089 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
c906108c
SS
3090 p = p1;
3091
3092 if (*p++ != ':')
8a3fe4f8
AC
3093 error (_("Malformed packet(b) (missing colon): %s\n\
3094Packet: '%s'\n"),
3fcb8548 3095 p, buf);
c906108c 3096
ad10f812 3097 if (reg == NULL)
8a3fe4f8
AC
3098 error (_("Remote sent bad register number %s: %s\n\
3099Packet: '%s'\n"),
3fcb8548 3100 phex_nz (pnum, 0), p, buf);
c906108c 3101
cfd77fa1 3102 fieldsize = hex2bin (p, regs,
2bc416ba 3103 register_size (current_gdbarch,
23860348 3104 reg->regnum));
97345198 3105 p += 2 * fieldsize;
2bc416ba 3106 if (fieldsize < register_size (current_gdbarch,
23860348 3107 reg->regnum))
8a3fe4f8 3108 warning (_("Remote reply is too short: %s"), buf);
2bc416ba 3109 regcache_raw_supply (current_regcache,
23860348 3110 reg->regnum, regs);
c906108c
SS
3111 }
3112
3113 if (*p++ != ';')
2bc416ba 3114 error (_("Remote register badly formatted: %s\nhere: %s"),
23860348 3115 buf, p);
c906108c
SS
3116 }
3117 }
3118 /* fall through */
23860348 3119 case 'S': /* Old style status, just signal only. */
c906108c
SS
3120 status->kind = TARGET_WAITKIND_STOPPED;
3121 status->value.sig = (enum target_signal)
3122 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3123
0f71a2f6
JM
3124 if (buf[3] == 'p')
3125 {
0f71a2f6
JM
3126 thread_num = strtol ((const char *) &buf[4], NULL, 16);
3127 record_currthread (thread_num);
3128 }
c906108c 3129 goto got_status;
23860348 3130 case 'W': /* Target exited. */
c906108c
SS
3131 {
3132 /* The remote process exited. */
3133 status->kind = TARGET_WAITKIND_EXITED;
3134 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
3135 goto got_status;
3136 }
3137 case 'X':
3138 status->kind = TARGET_WAITKIND_SIGNALLED;
3139 status->value.sig = (enum target_signal)
3140 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3141 kill_kludge = 1;
3142
3143 goto got_status;
23860348 3144 case 'O': /* Console output. */
c906108c
SS
3145 remote_console_output (buf + 1);
3146 continue;
3147 case '\0':
3148 if (last_sent_signal != TARGET_SIGNAL_0)
3149 {
3150 /* Zero length reply means that we tried 'S' or 'C' and
c5aa993b 3151 the remote system doesn't support it. */
c906108c
SS
3152 target_terminal_ours_for_output ();
3153 printf_filtered
3154 ("Can't send signals to this remote system. %s not sent.\n",
3155 target_signal_to_name (last_sent_signal));
3156 last_sent_signal = TARGET_SIGNAL_0;
3157 target_terminal_inferior ();
3158
3159 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3160 putpkt ((char *) buf);
3161 continue;
3162 }
3163 /* else fallthrough */
3164 default:
8a3fe4f8 3165 warning (_("Invalid remote reply: %s"), buf);
c906108c
SS
3166 continue;
3167 }
3168 }
c5aa993b 3169got_status:
c906108c
SS
3170 if (thread_num != -1)
3171 {
39f77062 3172 return pid_to_ptid (thread_num);
c906108c 3173 }
39f77062 3174 return inferior_ptid;
c906108c
SS
3175}
3176
23860348 3177/* Async version of remote_wait. */
39f77062
KB
3178static ptid_t
3179remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
43ff13b4 3180{
d01949b6 3181 struct remote_state *rs = get_remote_state ();
ea9c271d 3182 struct remote_arch_state *rsa = get_remote_arch_state ();
b2dd6311 3183 ULONGEST thread_num = -1;
3c3bea1c 3184 ULONGEST addr;
43ff13b4
JM
3185
3186 status->kind = TARGET_WAITKIND_EXITED;
3187 status->value.integer = 0;
3188
3c3bea1c
GS
3189 remote_stopped_by_watchpoint_p = 0;
3190
43ff13b4
JM
3191 while (1)
3192 {
2e9f7625 3193 char *buf, *p;
c5aa993b 3194
ed9a39eb 3195 if (!target_is_async_p ())
43ff13b4 3196 ofunc = signal (SIGINT, remote_interrupt);
6426a772
JM
3197 /* FIXME: cagney/1999-09-27: If we're in async mode we should
3198 _never_ wait for ever -> test on target_is_async_p().
3199 However, before we do that we need to ensure that the caller
23860348 3200 knows how to take the target into/out of async mode. */
6d820c5c 3201 getpkt (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
ed9a39eb 3202 if (!target_is_async_p ())
43ff13b4
JM
3203 signal (SIGINT, ofunc);
3204
2e9f7625
DJ
3205 buf = rs->buf;
3206
43ff13b4 3207 /* This is a hook for when we need to do something (perhaps the
c5aa993b 3208 collection of trace data) every time the target stops. */
9a4105ab
AC
3209 if (deprecated_target_wait_loop_hook)
3210 (*deprecated_target_wait_loop_hook) ();
43ff13b4
JM
3211
3212 switch (buf[0])
3213 {
23860348 3214 case 'E': /* Error of some sort. */
8a3fe4f8 3215 warning (_("Remote failure reply: %s"), buf);
43ff13b4 3216 continue;
23860348 3217 case 'F': /* File-I/O request. */
449092f6
CV
3218 remote_fileio_request (buf);
3219 continue;
23860348 3220 case 'T': /* Status with PC, SP, FP, ... */
43ff13b4 3221 {
cfd77fa1 3222 gdb_byte regs[MAX_REGISTER_SIZE];
43ff13b4 3223
23860348 3224 /* Expedited reply, containing Signal, {regno, reg} repeat. */
43ff13b4 3225 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
c5aa993b
JM
3226 ss = signal number
3227 n... = register number
3228 r... = register contents
3229 */
43ff13b4
JM
3230 p = &buf[3]; /* after Txx */
3231
3232 while (*p)
3233 {
cfd77fa1 3234 char *p1;
43ff13b4 3235 char *p_temp;
6c3f2dbf 3236 int fieldsize;
3c3bea1c 3237 long pnum = 0;
43ff13b4 3238
23860348
MS
3239 /* If the packet contains a register number, save it
3240 in pnum and set p1 to point to the character
3241 following it. Otherwise p1 points to p. */
3c3bea1c
GS
3242
3243 /* If this packet is an awatch packet, don't parse the 'a'
3244 as a register number. */
802188a7 3245
3c3bea1c
GS
3246 if (!strncmp (p, "awatch", strlen ("awatch")) != 0)
3247 {
3248 /* Read the register number. */
3249 pnum = strtol (p, &p_temp, 16);
cfd77fa1 3250 p1 = p_temp;
3c3bea1c 3251 }
802188a7 3252 else
3c3bea1c 3253 p1 = p;
43ff13b4 3254
23860348 3255 if (p1 == p) /* No register number present here. */
43ff13b4 3256 {
cfd77fa1 3257 p1 = strchr (p, ':');
43ff13b4 3258 if (p1 == NULL)
8a3fe4f8
AC
3259 error (_("Malformed packet(a) (missing colon): %s\n\
3260Packet: '%s'\n"),
3fcb8548 3261 p, buf);
3c3bea1c 3262 if (strncmp (p, "thread", p1 - p) == 0)
43ff13b4
JM
3263 {
3264 p_temp = unpack_varlen_hex (++p1, &thread_num);
3265 record_currthread (thread_num);
cfd77fa1 3266 p = p_temp;
43ff13b4 3267 }
3c3bea1c
GS
3268 else if ((strncmp (p, "watch", p1 - p) == 0)
3269 || (strncmp (p, "rwatch", p1 - p) == 0)
3270 || (strncmp (p, "awatch", p1 - p) == 0))
3271 {
3272 remote_stopped_by_watchpoint_p = 1;
3273 p = unpack_varlen_hex (++p1, &addr);
3274 remote_watch_data_address = (CORE_ADDR)addr;
3275 }
3276 else
3277 {
3278 /* Silently skip unknown optional info. */
cfd77fa1 3279 p_temp = strchr (p1 + 1, ';');
3c3bea1c
GS
3280 if (p_temp)
3281 p = p_temp;
3282 }
43ff13b4 3283 }
802188a7 3284
43ff13b4
JM
3285 else
3286 {
ea9c271d 3287 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
43ff13b4 3288 p = p1;
43ff13b4 3289 if (*p++ != ':')
8a3fe4f8
AC
3290 error (_("Malformed packet(b) (missing colon): %s\n\
3291Packet: '%s'\n"),
3fcb8548 3292 p, buf);
43ff13b4 3293
ad10f812 3294 if (reg == NULL)
8a3fe4f8
AC
3295 error (_("Remote sent bad register number %ld: %s\n\
3296Packet: '%s'\n"),
3fcb8548 3297 pnum, p, buf);
43ff13b4 3298
cfd77fa1 3299 fieldsize = hex2bin (p, regs,
2bc416ba 3300 register_size (current_gdbarch,
23860348 3301 reg->regnum));
6c3f2dbf 3302 p += 2 * fieldsize;
2bc416ba 3303 if (fieldsize < register_size (current_gdbarch,
23860348 3304 reg->regnum))
8a3fe4f8 3305 warning (_("Remote reply is too short: %s"), buf);
23a6d369 3306 regcache_raw_supply (current_regcache, reg->regnum, regs);
43ff13b4
JM
3307 }
3308
3309 if (*p++ != ';')
8a3fe4f8 3310 error (_("Remote register badly formatted: %s\nhere: %s"),
0a2cfde4 3311 buf, p);
43ff13b4
JM
3312 }
3313 }
3314 /* fall through */
23860348 3315 case 'S': /* Old style status, just signal only. */
43ff13b4
JM
3316 status->kind = TARGET_WAITKIND_STOPPED;
3317 status->value.sig = (enum target_signal)
3318 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3319
3320 if (buf[3] == 'p')
3321 {
43ff13b4
JM
3322 thread_num = strtol ((const char *) &buf[4], NULL, 16);
3323 record_currthread (thread_num);
3324 }
43ff13b4 3325 goto got_status;
23860348 3326 case 'W': /* Target exited. */
43ff13b4
JM
3327 {
3328 /* The remote process exited. */
3329 status->kind = TARGET_WAITKIND_EXITED;
3330 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
3331 goto got_status;
3332 }
3333 case 'X':
3334 status->kind = TARGET_WAITKIND_SIGNALLED;
3335 status->value.sig = (enum target_signal)
3336 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3337 kill_kludge = 1;
3338
3339 goto got_status;
23860348 3340 case 'O': /* Console output. */
43ff13b4 3341 remote_console_output (buf + 1);
c4093a6a 3342 /* Return immediately to the event loop. The event loop will
23860348 3343 still be waiting on the inferior afterwards. */
c4093a6a
JM
3344 status->kind = TARGET_WAITKIND_IGNORE;
3345 goto got_status;
43ff13b4
JM
3346 case '\0':
3347 if (last_sent_signal != TARGET_SIGNAL_0)
3348 {
3349 /* Zero length reply means that we tried 'S' or 'C' and
c5aa993b 3350 the remote system doesn't support it. */
43ff13b4
JM
3351 target_terminal_ours_for_output ();
3352 printf_filtered
3353 ("Can't send signals to this remote system. %s not sent.\n",
3354 target_signal_to_name (last_sent_signal));
3355 last_sent_signal = TARGET_SIGNAL_0;
3356 target_terminal_inferior ();
3357
3358 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3359 putpkt ((char *) buf);
3360 continue;
3361 }
3362 /* else fallthrough */
3363 default:
8a3fe4f8 3364 warning (_("Invalid remote reply: %s"), buf);
43ff13b4
JM
3365 continue;
3366 }
3367 }
c5aa993b 3368got_status:
43ff13b4
JM
3369 if (thread_num != -1)
3370 {
39f77062 3371 return pid_to_ptid (thread_num);
43ff13b4 3372 }
39f77062 3373 return inferior_ptid;
43ff13b4
JM
3374}
3375
c906108c
SS
3376/* Number of bytes of registers this stub implements. */
3377
3378static int register_bytes_found;
3379
3380/* Read the remote registers into the block REGS. */
ad10f812 3381/* Currently we just read all the registers, so we don't use regnum. */
c906108c 3382
b96ec7ac
AC
3383static int
3384fetch_register_using_p (int regnum)
3385{
3386 struct remote_state *rs = get_remote_state ();
2e9f7625 3387 char *buf, *p;
b96ec7ac
AC
3388 char regp[MAX_REGISTER_SIZE];
3389 int i;
3390
2e9f7625 3391 p = rs->buf;
fcad0fa4
JB
3392 *p++ = 'p';
3393 p += hexnumstr (p, regnum);
3394 *p++ = '\0';
6d820c5c 3395 remote_send (&rs->buf, &rs->buf_size);
3f9a994c 3396
2e9f7625
DJ
3397 buf = rs->buf;
3398
3f9a994c
JB
3399 /* If the stub didn't recognize the packet, or if we got an error,
3400 tell our caller. */
3401 if (buf[0] == '\0' || buf[0] == 'E')
3402 return 0;
3403
3404 /* If this register is unfetchable, tell the regcache. */
3405 if (buf[0] == 'x')
8480adf2 3406 {
3f9a994c
JB
3407 regcache_raw_supply (current_regcache, regnum, NULL);
3408 set_register_cached (regnum, -1);
8480adf2 3409 return 1;
b96ec7ac 3410 }
b96ec7ac 3411
3f9a994c
JB
3412 /* Otherwise, parse and supply the value. */
3413 p = buf;
3414 i = 0;
3415 while (p[0] != 0)
3416 {
3417 if (p[1] == 0)
3418 {
8a3fe4f8 3419 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
3420 return 0;
3421 }
3422
3423 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
3424 p += 2;
3425 }
3426 regcache_raw_supply (current_regcache, regnum, regp);
3427 return 1;
b96ec7ac
AC
3428}
3429
c906108c 3430static void
ad10f812 3431remote_fetch_registers (int regnum)
c906108c 3432{
d01949b6 3433 struct remote_state *rs = get_remote_state ();
ea9c271d 3434 struct remote_arch_state *rsa = get_remote_arch_state ();
2e9f7625 3435 char *buf;
c906108c
SS
3436 int i;
3437 char *p;
ea9c271d 3438 char *regs = alloca (rsa->sizeof_g_packet);
c906108c 3439
39f77062 3440 set_thread (PIDGET (inferior_ptid), 1);
c906108c 3441
b323314b
AC
3442 if (regnum >= 0)
3443 {
ea9c271d 3444 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
b323314b
AC
3445 gdb_assert (reg != NULL);
3446 if (!reg->in_g_packet)
3447 internal_error (__FILE__, __LINE__,
e2e0b3e5
AC
3448 _("Attempt to fetch a non G-packet register when this "
3449 "remote.c does not support the p-packet."));
b323314b 3450 }
444abaca 3451 switch (remote_protocol_packets[PACKET_p].support)
b96ec7ac
AC
3452 {
3453 case PACKET_DISABLE:
3454 break;
3455 case PACKET_ENABLE:
3456 if (fetch_register_using_p (regnum))
3457 return;
3458 else
8a3fe4f8 3459 error (_("Protocol error: p packet not recognized by stub"));
b96ec7ac
AC
3460 case PACKET_SUPPORT_UNKNOWN:
3461 if (fetch_register_using_p (regnum))
3462 {
3463 /* The stub recognized the 'p' packet. Remember this. */
444abaca 3464 remote_protocol_packets[PACKET_p].support = PACKET_ENABLE;
b96ec7ac
AC
3465 return;
3466 }
3467 else
3468 {
3469 /* The stub does not support the 'P' packet. Use 'G'
3470 instead, and don't try using 'P' in the future (it
3471 will just waste our time). */
444abaca 3472 remote_protocol_packets[PACKET_p].support = PACKET_DISABLE;
b96ec7ac
AC
3473 break;
3474 }
3475 }
b323314b 3476
2e9f7625 3477 sprintf (rs->buf, "g");
6d820c5c 3478 remote_send (&rs->buf, &rs->buf_size);
2e9f7625 3479 buf = rs->buf;
c906108c 3480
11cf8741
JM
3481 /* Save the size of the packet sent to us by the target. Its used
3482 as a heuristic when determining the max size of packets that the
23860348 3483 target can safely receive. */
ea9c271d
DJ
3484 if ((rsa->actual_register_packet_size) == 0)
3485 (rsa->actual_register_packet_size) = strlen (buf);
c906108c
SS
3486
3487 /* Unimplemented registers read as all bits zero. */
ea9c271d 3488 memset (regs, 0, rsa->sizeof_g_packet);
c906108c
SS
3489
3490 /* We can get out of synch in various cases. If the first character
3491 in the buffer is not a hex character, assume that has happened
3492 and try to fetch another packet to read. */
3493 while ((buf[0] < '0' || buf[0] > '9')
3de11b2e 3494 && (buf[0] < 'A' || buf[0] > 'F')
c906108c 3495 && (buf[0] < 'a' || buf[0] > 'f')
23860348 3496 && buf[0] != 'x') /* New: unavailable register value. */
c906108c
SS
3497 {
3498 if (remote_debug)
0f71a2f6
JM
3499 fprintf_unfiltered (gdb_stdlog,
3500 "Bad register packet; fetching a new packet\n");
6d820c5c 3501 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3502 buf = rs->buf;
c906108c
SS
3503 }
3504
3505 /* Reply describes registers byte by byte, each byte encoded as two
3506 hex characters. Suck them all up, then supply them to the
3507 register cacheing/storage mechanism. */
3508
3509 p = buf;
ea9c271d 3510 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c
SS
3511 {
3512 if (p[0] == 0)
3513 break;
3514 if (p[1] == 0)
3515 {
8a3fe4f8 3516 warning (_("Remote reply is of odd length: %s"), buf);
c906108c
SS
3517 /* Don't change register_bytes_found in this case, and don't
3518 print a second warning. */
3519 goto supply_them;
3520 }
3521 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 3522 regs[i] = 0; /* 'x' */
c906108c
SS
3523 else
3524 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
3525 p += 2;
3526 }
3527
3528 if (i != register_bytes_found)
3529 {
3530 register_bytes_found = i;
2649061d
AC
3531 if (REGISTER_BYTES_OK_P ()
3532 && !REGISTER_BYTES_OK (i))
3732ba62 3533 warning (_("Remote reply is wrong length: %s"), buf);
c906108c 3534 }
c5aa993b 3535
b323314b 3536 supply_them:
ad10f812 3537 {
b323314b
AC
3538 int i;
3539 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
ad10f812 3540 {
ea9c271d 3541 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
3542 if (r->in_g_packet)
3543 {
8ccc1287
AC
3544 if (r->offset * 2 >= strlen (buf))
3545 /* A short packet that didn't include the register's
3546 value, this implies that the register is zero (and
3547 not that the register is unavailable). Supply that
3548 zero value. */
3549 regcache_raw_supply (current_regcache, r->regnum, NULL);
3550 else if (buf[r->offset * 2] == 'x')
3551 {
3552 gdb_assert (r->offset * 2 < strlen (buf));
3553 /* The register isn't available, mark it as such (at
3554 the same time setting the value to zero). */
3555 regcache_raw_supply (current_regcache, r->regnum, NULL);
3556 set_register_cached (i, -1);
3557 }
3558 else
3559 regcache_raw_supply (current_regcache, r->regnum,
3560 regs + r->offset);
b323314b 3561 }
ad10f812
AC
3562 }
3563 }
c906108c
SS
3564}
3565
3566/* Prepare to store registers. Since we may send them all (using a
3567 'G' request), we have to read out the ones we don't want to change
3568 first. */
3569
c5aa993b 3570static void
fba45db2 3571remote_prepare_to_store (void)
c906108c 3572{
ea9c271d 3573 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 3574 int i;
cfd77fa1 3575 gdb_byte buf[MAX_REGISTER_SIZE];
cf0e1e0d 3576
c906108c 3577 /* Make sure the entire registers array is valid. */
444abaca 3578 switch (remote_protocol_packets[PACKET_P].support)
5a2468f5
JM
3579 {
3580 case PACKET_DISABLE:
3581 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d
DJ
3582 /* Make sure all the necessary registers are cached. */
3583 for (i = 0; i < NUM_REGS; i++)
ea9c271d
DJ
3584 if (rsa->regs[i].in_g_packet)
3585 regcache_raw_read (current_regcache, rsa->regs[i].regnum, buf);
5a2468f5
JM
3586 break;
3587 case PACKET_ENABLE:
3588 break;
3589 }
3590}
3591
ad10f812 3592/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 3593 packet was not recognized. */
5a2468f5
JM
3594
3595static int
ad10f812 3596store_register_using_P (int regnum)
5a2468f5 3597{
d01949b6 3598 struct remote_state *rs = get_remote_state ();
ea9c271d
DJ
3599 struct remote_arch_state *rsa = get_remote_arch_state ();
3600 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
5a2468f5 3601 /* Try storing a single register. */
6d820c5c 3602 char *buf = rs->buf;
cfd77fa1 3603 gdb_byte regp[MAX_REGISTER_SIZE];
5a2468f5 3604 char *p;
5a2468f5 3605
ea9c271d 3606 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 3607 p = buf + strlen (buf);
822c9732 3608 regcache_raw_collect (current_regcache, reg->regnum, regp);
3acba339 3609 bin2hex (regp, p, register_size (current_gdbarch, reg->regnum));
6d820c5c 3610 remote_send (&rs->buf, &rs->buf_size);
5a2468f5 3611
2e9f7625 3612 return rs->buf[0] != '\0';
c906108c
SS
3613}
3614
5a2468f5 3615
23860348
MS
3616/* Store register REGNUM, or all registers if REGNUM == -1, from the
3617 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
3618
3619static void
ad10f812 3620remote_store_registers (int regnum)
c906108c 3621{
d01949b6 3622 struct remote_state *rs = get_remote_state ();
ea9c271d 3623 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 3624 gdb_byte *regs;
c906108c
SS
3625 char *p;
3626
39f77062 3627 set_thread (PIDGET (inferior_ptid), 1);
c906108c 3628
ad10f812 3629 if (regnum >= 0)
c906108c 3630 {
444abaca 3631 switch (remote_protocol_packets[PACKET_P].support)
c906108c 3632 {
5a2468f5
JM
3633 case PACKET_DISABLE:
3634 break;
3635 case PACKET_ENABLE:
ad10f812 3636 if (store_register_using_P (regnum))
5a2468f5
JM
3637 return;
3638 else
8a3fe4f8 3639 error (_("Protocol error: P packet not recognized by stub"));
5a2468f5 3640 case PACKET_SUPPORT_UNKNOWN:
ad10f812 3641 if (store_register_using_P (regnum))
5a2468f5
JM
3642 {
3643 /* The stub recognized the 'P' packet. Remember this. */
444abaca 3644 remote_protocol_packets[PACKET_P].support = PACKET_ENABLE;
5a2468f5
JM
3645 return;
3646 }
3647 else
3648 {
3649 /* The stub does not support the 'P' packet. Use 'G'
3650 instead, and don't try using 'P' in the future (it
3651 will just waste our time). */
444abaca 3652 remote_protocol_packets[PACKET_P].support = PACKET_DISABLE;
5a2468f5
JM
3653 break;
3654 }
c906108c 3655 }
c906108c
SS
3656 }
3657
193cb69f
AC
3658 /* Extract all the registers in the regcache copying them into a
3659 local buffer. */
3660 {
b323314b 3661 int i;
ea9c271d
DJ
3662 regs = alloca (rsa->sizeof_g_packet);
3663 memset (regs, 0, rsa->sizeof_g_packet);
b323314b 3664 for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
193cb69f 3665 {
ea9c271d 3666 struct packet_reg *r = &rsa->regs[i];
b323314b 3667 if (r->in_g_packet)
822c9732 3668 regcache_raw_collect (current_regcache, r->regnum, regs + r->offset);
193cb69f
AC
3669 }
3670 }
c906108c
SS
3671
3672 /* Command describes registers byte by byte,
3673 each byte encoded as two hex characters. */
6d820c5c 3674 p = rs->buf;
193cb69f 3675 *p++ = 'G';
c906108c 3676 /* remote_prepare_to_store insures that register_bytes_found gets set. */
30559e10 3677 bin2hex (regs, p, register_bytes_found);
6d820c5c 3678 remote_send (&rs->buf, &rs->buf_size);
c906108c 3679}
c906108c
SS
3680\f
3681
3682/* Return the number of hex digits in num. */
3683
3684static int
fba45db2 3685hexnumlen (ULONGEST num)
c906108c
SS
3686{
3687 int i;
3688
3689 for (i = 0; num != 0; i++)
3690 num >>= 4;
3691
3692 return max (i, 1);
3693}
3694
2df3850c 3695/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
3696
3697static int
fba45db2 3698hexnumstr (char *buf, ULONGEST num)
c906108c 3699{
c906108c 3700 int len = hexnumlen (num);
2df3850c
JM
3701 return hexnumnstr (buf, num, len);
3702}
3703
c906108c 3704
2df3850c 3705/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 3706
2df3850c 3707static int
fba45db2 3708hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
3709{
3710 int i;
3711
3712 buf[width] = '\0';
3713
3714 for (i = width - 1; i >= 0; i--)
c906108c 3715 {
c5aa993b 3716 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
3717 num >>= 4;
3718 }
3719
2df3850c 3720 return width;
c906108c
SS
3721}
3722
23860348 3723/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
3724
3725static CORE_ADDR
fba45db2 3726remote_address_masked (CORE_ADDR addr)
c906108c
SS
3727{
3728 if (remote_address_size > 0
3729 && remote_address_size < (sizeof (ULONGEST) * 8))
3730 {
3731 /* Only create a mask when that mask can safely be constructed
23860348 3732 in a ULONGEST variable. */
c906108c
SS
3733 ULONGEST mask = 1;
3734 mask = (mask << remote_address_size) - 1;
3735 addr &= mask;
3736 }
3737 return addr;
3738}
3739
a31ea83d
DJ
3740/* Convert BUFFER, binary data at least LEN bytes long, into escaped
3741 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
3742 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
3743 (which may be more than *OUT_LEN due to escape characters). The
3744 total number of bytes in the output buffer will be at most
3745 OUT_MAXLEN. */
3746
3747static int
3748remote_escape_output (const gdb_byte *buffer, int len,
3749 gdb_byte *out_buf, int *out_len,
3750 int out_maxlen)
3751{
3752 int input_index, output_index;
3753
3754 output_index = 0;
3755 for (input_index = 0; input_index < len; input_index++)
3756 {
3757 gdb_byte b = buffer[input_index];
3758
3759 if (b == '$' || b == '#' || b == '}')
3760 {
3761 /* These must be escaped. */
3762 if (output_index + 2 > out_maxlen)
3763 break;
3764 out_buf[output_index++] = '}';
3765 out_buf[output_index++] = b ^ 0x20;
3766 }
3767 else
3768 {
3769 if (output_index + 1 > out_maxlen)
3770 break;
3771 out_buf[output_index++] = b;
3772 }
3773 }
3774
3775 *out_len = input_index;
3776 return output_index;
3777}
3778
0876f84a
DJ
3779/* Convert BUFFER, escaped data LEN bytes long, into binary data
3780 in OUT_BUF. Return the number of bytes written to OUT_BUF.
3781 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
3782
3783 This function reverses remote_escape_output. It allows more
3784 escaped characters than that function does, in particular because
3785 '*' must be escaped to avoid the run-length encoding processing
3786 in reading packets. */
3787
3788static int
3789remote_unescape_input (const gdb_byte *buffer, int len,
3790 gdb_byte *out_buf, int out_maxlen)
3791{
3792 int input_index, output_index;
3793 int escaped;
3794
3795 output_index = 0;
3796 escaped = 0;
3797 for (input_index = 0; input_index < len; input_index++)
3798 {
3799 gdb_byte b = buffer[input_index];
3800
3801 if (output_index + 1 > out_maxlen)
3802 {
3803 warning (_("Received too much data from remote target;"
3804 " ignoring overflow."));
3805 return output_index;
3806 }
3807
3808 if (escaped)
3809 {
3810 out_buf[output_index++] = b ^ 0x20;
3811 escaped = 0;
3812 }
3813 else if (b == '}')
3814 escaped = 1;
3815 else
3816 out_buf[output_index++] = b;
3817 }
3818
3819 if (escaped)
3820 error (_("Unmatched escape character in target response."));
3821
3822 return output_index;
3823}
3824
c906108c
SS
3825/* Determine whether the remote target supports binary downloading.
3826 This is accomplished by sending a no-op memory write of zero length
3827 to the target at the specified address. It does not suffice to send
23860348
MS
3828 the whole packet, since many stubs strip the eighth bit and
3829 subsequently compute a wrong checksum, which causes real havoc with
3830 remote_write_bytes.
7a292a7a 3831
96baa820
JM
3832 NOTE: This can still lose if the serial line is not eight-bit
3833 clean. In cases like this, the user should clear "remote
23860348 3834 X-packet". */
96baa820 3835
c906108c 3836static void
fba45db2 3837check_binary_download (CORE_ADDR addr)
c906108c 3838{
d01949b6 3839 struct remote_state *rs = get_remote_state ();
24b06219 3840
444abaca 3841 switch (remote_protocol_packets[PACKET_X].support)
c906108c 3842 {
96baa820
JM
3843 case PACKET_DISABLE:
3844 break;
3845 case PACKET_ENABLE:
3846 break;
3847 case PACKET_SUPPORT_UNKNOWN:
3848 {
96baa820 3849 char *p;
802188a7 3850
2e9f7625 3851 p = rs->buf;
96baa820
JM
3852 *p++ = 'X';
3853 p += hexnumstr (p, (ULONGEST) addr);
3854 *p++ = ',';
3855 p += hexnumstr (p, (ULONGEST) 0);
3856 *p++ = ':';
3857 *p = '\0';
802188a7 3858
2e9f7625 3859 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 3860 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 3861
2e9f7625 3862 if (rs->buf[0] == '\0')
96baa820
JM
3863 {
3864 if (remote_debug)
3865 fprintf_unfiltered (gdb_stdlog,
3866 "binary downloading NOT suppported by target\n");
444abaca 3867 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
3868 }
3869 else
3870 {
3871 if (remote_debug)
3872 fprintf_unfiltered (gdb_stdlog,
3873 "binary downloading suppported by target\n");
444abaca 3874 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
3875 }
3876 break;
3877 }
c906108c
SS
3878 }
3879}
3880
3881/* Write memory data directly to the remote machine.
3882 This does not inform the data cache; the data cache uses this.
a76d924d 3883 HEADER is the starting part of the packet.
c906108c
SS
3884 MEMADDR is the address in the remote memory space.
3885 MYADDR is the address of the buffer in our space.
3886 LEN is the number of bytes.
a76d924d
DJ
3887 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
3888 should send data as binary ('X'), or hex-encoded ('M').
3889
3890 The function creates packet of the form
3891 <HEADER><ADDRESS>,<LENGTH>:<DATA>
3892
3893 where encoding of <DATA> is termined by PACKET_FORMAT.
3894
3895 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
3896 are omitted.
3897
3898 Returns the number of bytes transferred, or 0 (setting errno) for
23860348 3899 error. Only transfer a single packet. */
c906108c 3900
a76d924d
DJ
3901static int
3902remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
3903 const gdb_byte *myaddr, int len,
3904 char packet_format, int use_length)
c906108c 3905{
6d820c5c 3906 struct remote_state *rs = get_remote_state ();
cfd77fa1 3907 char *p;
a76d924d
DJ
3908 char *plen = NULL;
3909 int plenlen = 0;
917317f4
JM
3910 int todo;
3911 int nr_bytes;
a257b5bb 3912 int payload_size;
6765f3e5 3913 int payload_length;
a76d924d
DJ
3914 int header_length;
3915
3916 if (packet_format != 'X' && packet_format != 'M')
3917 internal_error (__FILE__, __LINE__,
3918 "remote_write_bytes_aux: bad packet format");
c906108c 3919
b2182ed2
DJ
3920 /* Should this be the selected frame? */
3921 gdbarch_remote_translate_xfer_address (current_gdbarch,
3922 current_regcache,
3923 memaddr, len,
3924 &memaddr, &len);
3925
3926 if (len <= 0)
3927 return 0;
3928
3de11b2e 3929 payload_size = get_memory_write_packet_size ();
2bc416ba 3930
6d820c5c
DJ
3931 /* The packet buffer will be large enough for the payload;
3932 get_memory_packet_size ensures this. */
a76d924d 3933 rs->buf[0] = '\0';
c906108c 3934
a257b5bb 3935 /* Compute the size of the actual payload by subtracting out the
3de11b2e
NS
3936 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
3937 */
a76d924d
DJ
3938 payload_size -= strlen ("$,:#NN");
3939 if (!use_length)
3940 /* The comma won't be used. */
3941 payload_size += 1;
3942 header_length = strlen (header);
3943 payload_size -= header_length;
3de11b2e 3944 payload_size -= hexnumlen (memaddr);
c906108c 3945
a76d924d 3946 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 3947
a76d924d
DJ
3948 strcat (rs->buf, header);
3949 p = rs->buf + strlen (header);
3950
3951 /* Compute a best guess of the number of bytes actually transfered. */
3952 if (packet_format == 'X')
c906108c 3953 {
23860348 3954 /* Best guess at number of bytes that will fit. */
a257b5bb 3955 todo = min (len, payload_size);
a76d924d
DJ
3956 if (use_length)
3957 payload_size -= hexnumlen (todo);
3de11b2e 3958 todo = min (todo, payload_size);
a76d924d
DJ
3959 }
3960 else
3961 {
23860348 3962 /* Num bytes that will fit. */
a257b5bb 3963 todo = min (len, payload_size / 2);
a76d924d
DJ
3964 if (use_length)
3965 payload_size -= hexnumlen (todo);
3de11b2e 3966 todo = min (todo, payload_size / 2);
917317f4 3967 }
a76d924d 3968
3de11b2e
NS
3969 if (todo <= 0)
3970 internal_error (__FILE__, __LINE__,
3971 _("minumum packet size too small to write data"));
802188a7 3972
6765f3e5
DJ
3973 /* If we already need another packet, then try to align the end
3974 of this packet to a useful boundary. */
3975 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
3976 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
3977
a257b5bb 3978 /* Append "<memaddr>". */
917317f4
JM
3979 memaddr = remote_address_masked (memaddr);
3980 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 3981
a76d924d
DJ
3982 if (use_length)
3983 {
3984 /* Append ",". */
3985 *p++ = ',';
802188a7 3986
a76d924d
DJ
3987 /* Append <len>. Retain the location/size of <len>. It may need to
3988 be adjusted once the packet body has been created. */
3989 plen = p;
3990 plenlen = hexnumstr (p, (ULONGEST) todo);
3991 p += plenlen;
3992 }
a257b5bb
AC
3993
3994 /* Append ":". */
917317f4
JM
3995 *p++ = ':';
3996 *p = '\0';
802188a7 3997
a257b5bb 3998 /* Append the packet body. */
a76d924d 3999 if (packet_format == 'X')
917317f4 4000 {
917317f4
JM
4001 /* Binary mode. Send target system values byte by byte, in
4002 increasing byte addresses. Only escape certain critical
4003 characters. */
6765f3e5
DJ
4004 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
4005 payload_size);
4006
4007 /* If not all TODO bytes fit, then we'll need another packet. Make
9b7194bc
DJ
4008 a second try to keep the end of the packet aligned. Don't do
4009 this if the packet is tiny. */
4010 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6765f3e5
DJ
4011 {
4012 int new_nr_bytes;
4013
4014 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
4015 - memaddr);
4016 if (new_nr_bytes != nr_bytes)
4017 payload_length = remote_escape_output (myaddr, new_nr_bytes,
4018 p, &nr_bytes,
4019 payload_size);
4020 }
4021
4022 p += payload_length;
a76d924d 4023 if (use_length && nr_bytes < todo)
c906108c 4024 {
802188a7 4025 /* Escape chars have filled up the buffer prematurely,
917317f4
JM
4026 and we have actually sent fewer bytes than planned.
4027 Fix-up the length field of the packet. Use the same
4028 number of characters as before. */
917317f4
JM
4029 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
4030 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 4031 }
a76d924d
DJ
4032 }
4033 else
4034 {
917317f4
JM
4035 /* Normal mode: Send target system values byte by byte, in
4036 increasing byte addresses. Each byte is encoded as a two hex
4037 value. */
2644f393 4038 nr_bytes = bin2hex (myaddr, p, todo);
aa6c0017 4039 p += 2 * nr_bytes;
c906108c 4040 }
802188a7 4041
2e9f7625 4042 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 4043 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 4044
2e9f7625 4045 if (rs->buf[0] == 'E')
917317f4
JM
4046 {
4047 /* There is no correspondance between what the remote protocol
4048 uses for errors and errno codes. We would like a cleaner way
4049 of representing errors (big enough to include errno codes,
4050 bfd_error codes, and others). But for now just return EIO. */
4051 errno = EIO;
4052 return 0;
4053 }
802188a7 4054
23860348
MS
4055 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
4056 fewer bytes than we'd planned. */
917317f4 4057 return nr_bytes;
c906108c
SS
4058}
4059
a76d924d
DJ
4060/* Write memory data directly to the remote machine.
4061 This does not inform the data cache; the data cache uses this.
4062 MEMADDR is the address in the remote memory space.
4063 MYADDR is the address of the buffer in our space.
4064 LEN is the number of bytes.
4065
4066 Returns number of bytes transferred, or 0 (setting errno) for
4067 error. Only transfer a single packet. */
4068
4069int
4070remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
4071{
4072 char *packet_format = 0;
4073
4074 /* Check whether the target supports binary download. */
4075 check_binary_download (memaddr);
4076
4077 switch (remote_protocol_packets[PACKET_X].support)
4078 {
4079 case PACKET_ENABLE:
4080 packet_format = "X";
4081 break;
4082 case PACKET_DISABLE:
4083 packet_format = "M";
4084 break;
4085 case PACKET_SUPPORT_UNKNOWN:
4086 internal_error (__FILE__, __LINE__,
4087 _("remote_write_bytes: bad internal state"));
4088 default:
4089 internal_error (__FILE__, __LINE__, _("bad switch"));
4090 }
4091
4092 return remote_write_bytes_aux (packet_format,
4093 memaddr, myaddr, len, packet_format[0], 1);
4094}
4095
c906108c
SS
4096/* Read memory data directly from the remote machine.
4097 This does not use the data cache; the data cache uses this.
4098 MEMADDR is the address in the remote memory space.
4099 MYADDR is the address of the buffer in our space.
4100 LEN is the number of bytes.
4101
4102 Returns number of bytes transferred, or 0 for error. */
4103
917317f4
JM
4104/* NOTE: cagney/1999-10-18: This function (and its siblings in other
4105 remote targets) shouldn't attempt to read the entire buffer.
4106 Instead it should read a single packet worth of data and then
4107 return the byte size of that packet to the caller. The caller (its
4108 caller and its callers caller ;-) already contains code for
23860348 4109 handling partial reads. */
917317f4 4110
449092f6 4111int
cfd77fa1 4112remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 4113{
6d820c5c 4114 struct remote_state *rs = get_remote_state ();
23860348 4115 int max_buf_size; /* Max size of packet output buffer. */
c906108c
SS
4116 int origlen;
4117
b2182ed2
DJ
4118 /* Should this be the selected frame? */
4119 gdbarch_remote_translate_xfer_address (current_gdbarch,
4120 current_regcache,
4121 memaddr, len,
4122 &memaddr, &len);
4123
4124 if (len <= 0)
4125 return 0;
4126
11cf8741 4127 max_buf_size = get_memory_read_packet_size ();
6d820c5c
DJ
4128 /* The packet buffer will be large enough for the payload;
4129 get_memory_packet_size ensures this. */
c906108c
SS
4130
4131 origlen = len;
4132 while (len > 0)
4133 {
c906108c
SS
4134 char *p;
4135 int todo;
4136 int i;
4137
c5aa993b 4138 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
c906108c
SS
4139
4140 /* construct "m"<memaddr>","<len>" */
2e9f7625 4141 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
c906108c 4142 memaddr = remote_address_masked (memaddr);
2e9f7625 4143 p = rs->buf;
c906108c
SS
4144 *p++ = 'm';
4145 p += hexnumstr (p, (ULONGEST) memaddr);
4146 *p++ = ',';
4147 p += hexnumstr (p, (ULONGEST) todo);
4148 *p = '\0';
4149
2e9f7625 4150 putpkt (rs->buf);
6d820c5c 4151 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 4152
2e9f7625
DJ
4153 if (rs->buf[0] == 'E'
4154 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
4155 && rs->buf[3] == '\0')
c906108c 4156 {
23860348
MS
4157 /* There is no correspondance between what the remote
4158 protocol uses for errors and errno codes. We would like
4159 a cleaner way of representing errors (big enough to
4160 include errno codes, bfd_error codes, and others). But
4161 for now just return EIO. */
c906108c
SS
4162 errno = EIO;
4163 return 0;
4164 }
4165
c5aa993b
JM
4166 /* Reply describes memory byte by byte,
4167 each byte encoded as two hex characters. */
c906108c 4168
2e9f7625 4169 p = rs->buf;
30559e10 4170 if ((i = hex2bin (p, myaddr, todo)) < todo)
c906108c 4171 {
30559e10 4172 /* Reply is short. This means that we were able to read
23860348 4173 only part of what we wanted to. */
30559e10 4174 return i + (origlen - len);
c906108c
SS
4175 }
4176 myaddr += todo;
4177 memaddr += todo;
4178 len -= todo;
4179 }
4180 return origlen;
4181}
4182\f
4183/* Read or write LEN bytes from inferior memory at MEMADDR,
23860348
MS
4184 transferring to or from debugger address BUFFER. Write to inferior
4185 if SHOULD_WRITE is nonzero. Returns length of data written or
4186 read; 0 for error. TARGET is unused. */
392a587b 4187
c906108c 4188static int
961cb7b5 4189remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
0a65a603 4190 int should_write, struct mem_attrib *attrib,
29e57380 4191 struct target_ops *target)
c906108c 4192{
4930751a
C
4193 int res;
4194
4930751a 4195 if (should_write)
b2182ed2 4196 res = remote_write_bytes (mem_addr, buffer, mem_len);
4930751a 4197 else
b2182ed2 4198 res = remote_read_bytes (mem_addr, buffer, mem_len);
4930751a
C
4199
4200 return res;
c906108c
SS
4201}
4202
a76d924d
DJ
4203/* Sends a packet with content determined by the printf format string
4204 FORMAT and the remaining arguments, then gets the reply. Returns
4205 whether the packet was a success, a failure, or unknown. */
4206
4207enum packet_result
4208remote_send_printf (const char *format, ...)
4209{
4210 struct remote_state *rs = get_remote_state ();
4211 int max_size = get_remote_packet_size ();
4212
4213 va_list ap;
4214 va_start (ap, format);
4215
4216 rs->buf[0] = '\0';
4217 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
4218 internal_error (__FILE__, __LINE__, "Too long remote packet.");
4219
4220 if (putpkt (rs->buf) < 0)
4221 error (_("Communication problem with target."));
4222
4223 rs->buf[0] = '\0';
4224 getpkt (&rs->buf, &rs->buf_size, 0);
4225
4226 return packet_check_result (rs->buf);
4227}
4228
4229static void
4230restore_remote_timeout (void *p)
4231{
4232 int value = *(int *)p;
4233 remote_timeout = value;
4234}
4235
4236/* Flash writing can take quite some time. We'll set
4237 effectively infinite timeout for flash operations.
4238 In future, we'll need to decide on a better approach. */
4239static const int remote_flash_timeout = 1000;
4240
4241static void
4242remote_flash_erase (struct target_ops *ops,
4243 ULONGEST address, LONGEST length)
4244{
4245 int saved_remote_timeout = remote_timeout;
4246 enum packet_result ret;
4247
4248 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
4249 &saved_remote_timeout);
4250 remote_timeout = remote_flash_timeout;
4251
4252 ret = remote_send_printf ("vFlashErase:%s,%s",
4253 paddr (address),
4254 phex (length, 4));
4255 switch (ret)
4256 {
4257 case PACKET_UNKNOWN:
4258 error (_("Remote target does not support flash erase"));
4259 case PACKET_ERROR:
4260 error (_("Error erasing flash with vFlashErase packet"));
4261 default:
4262 break;
4263 }
4264
4265 do_cleanups (back_to);
4266}
4267
4268static LONGEST
4269remote_flash_write (struct target_ops *ops,
4270 ULONGEST address, LONGEST length,
4271 const gdb_byte *data)
4272{
4273 int saved_remote_timeout = remote_timeout;
4274 int ret;
4275 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
4276 &saved_remote_timeout);
4277
4278 remote_timeout = remote_flash_timeout;
4279 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
4280 do_cleanups (back_to);
4281
4282 return ret;
4283}
4284
4285static void
4286remote_flash_done (struct target_ops *ops)
4287{
4288 int saved_remote_timeout = remote_timeout;
4289 int ret;
4290 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
4291 &saved_remote_timeout);
4292
4293 remote_timeout = remote_flash_timeout;
4294 ret = remote_send_printf ("vFlashDone");
4295 do_cleanups (back_to);
4296
4297 switch (ret)
4298 {
4299 case PACKET_UNKNOWN:
4300 error (_("Remote target does not support vFlashDone"));
4301 case PACKET_ERROR:
4302 error (_("Error finishing flash operation"));
4303 default:
4304 break;
4305 }
4306}
4307
c906108c 4308static void
fba45db2 4309remote_files_info (struct target_ops *ignore)
c906108c
SS
4310{
4311 puts_filtered ("Debugging a target over a serial line.\n");
4312}
4313\f
4314/* Stuff for dealing with the packets which are part of this protocol.
4315 See comment at top of file for details. */
4316
0876f84a 4317/* Read a single character from the remote end. */
c906108c
SS
4318
4319static int
fba45db2 4320readchar (int timeout)
c906108c
SS
4321{
4322 int ch;
4323
2cd58942 4324 ch = serial_readchar (remote_desc, timeout);
c906108c 4325
2acceee2 4326 if (ch >= 0)
0876f84a 4327 return ch;
2acceee2
JM
4328
4329 switch ((enum serial_rc) ch)
c906108c
SS
4330 {
4331 case SERIAL_EOF:
2acceee2 4332 target_mourn_inferior ();
8a3fe4f8 4333 error (_("Remote connection closed"));
2acceee2 4334 /* no return */
c906108c 4335 case SERIAL_ERROR:
e2e0b3e5 4336 perror_with_name (_("Remote communication error"));
2acceee2 4337 /* no return */
c906108c 4338 case SERIAL_TIMEOUT:
2acceee2 4339 break;
c906108c 4340 }
2acceee2 4341 return ch;
c906108c
SS
4342}
4343
6d820c5c
DJ
4344/* Send the command in *BUF to the remote machine, and read the reply
4345 into *BUF. Report an error if we get an error reply. Resize
4346 *BUF using xrealloc if necessary to hold the result, and update
4347 *SIZEOF_BUF. */
c906108c
SS
4348
4349static void
6d820c5c
DJ
4350remote_send (char **buf,
4351 long *sizeof_buf)
c906108c 4352{
6d820c5c 4353 putpkt (*buf);
c2d11a7d 4354 getpkt (buf, sizeof_buf, 0);
c906108c 4355
6d820c5c
DJ
4356 if ((*buf)[0] == 'E')
4357 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
4358}
4359
4360/* Display a null-terminated packet on stdout, for debugging, using C
4361 string notation. */
4362
4363static void
fba45db2 4364print_packet (char *buf)
c906108c
SS
4365{
4366 puts_filtered ("\"");
43e526b9 4367 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
4368 puts_filtered ("\"");
4369}
4370
4371int
fba45db2 4372putpkt (char *buf)
c906108c
SS
4373{
4374 return putpkt_binary (buf, strlen (buf));
4375}
4376
4377/* Send a packet to the remote machine, with error checking. The data
23860348 4378 of the packet is in BUF. The string in BUF can be at most
ea9c271d 4379 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
4380 and for a possible /0 if we are debugging (remote_debug) and want
4381 to print the sent packet as a string. */
c906108c
SS
4382
4383static int
fba45db2 4384putpkt_binary (char *buf, int cnt)
c906108c
SS
4385{
4386 int i;
4387 unsigned char csum = 0;
11cf8741 4388 char *buf2 = alloca (cnt + 6);
085dd6e6 4389
c906108c
SS
4390 int ch;
4391 int tcount = 0;
4392 char *p;
4393
4394 /* Copy the packet into buffer BUF2, encapsulating it
4395 and giving it a checksum. */
4396
c906108c
SS
4397 p = buf2;
4398 *p++ = '$';
4399
4400 for (i = 0; i < cnt; i++)
4401 {
4402 csum += buf[i];
4403 *p++ = buf[i];
4404 }
4405 *p++ = '#';
4406 *p++ = tohex ((csum >> 4) & 0xf);
4407 *p++ = tohex (csum & 0xf);
4408
4409 /* Send it over and over until we get a positive ack. */
4410
4411 while (1)
4412 {
4413 int started_error_output = 0;
4414
4415 if (remote_debug)
4416 {
4417 *p = '\0';
43e526b9
JM
4418 fprintf_unfiltered (gdb_stdlog, "Sending packet: ");
4419 fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog);
d4f3574e 4420 fprintf_unfiltered (gdb_stdlog, "...");
0f71a2f6 4421 gdb_flush (gdb_stdlog);
c906108c 4422 }
2cd58942 4423 if (serial_write (remote_desc, buf2, p - buf2))
e2e0b3e5 4424 perror_with_name (_("putpkt: write failed"));
c906108c 4425
23860348 4426 /* Read until either a timeout occurs (-2) or '+' is read. */
c906108c
SS
4427 while (1)
4428 {
4429 ch = readchar (remote_timeout);
4430
c5aa993b 4431 if (remote_debug)
c906108c
SS
4432 {
4433 switch (ch)
4434 {
4435 case '+':
1216fa2c 4436 case '-':
c906108c
SS
4437 case SERIAL_TIMEOUT:
4438 case '$':
4439 if (started_error_output)
4440 {
4441 putchar_unfiltered ('\n');
4442 started_error_output = 0;
4443 }
4444 }
4445 }
4446
4447 switch (ch)
4448 {
4449 case '+':
4450 if (remote_debug)
0f71a2f6 4451 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 4452 return 1;
1216fa2c
AC
4453 case '-':
4454 if (remote_debug)
4455 fprintf_unfiltered (gdb_stdlog, "Nak\n");
c906108c 4456 case SERIAL_TIMEOUT:
c5aa993b 4457 tcount++;
c906108c
SS
4458 if (tcount > 3)
4459 return 0;
23860348 4460 break; /* Retransmit buffer. */
c906108c
SS
4461 case '$':
4462 {
40e3f985 4463 if (remote_debug)
2bc416ba 4464 fprintf_unfiltered (gdb_stdlog,
23860348 4465 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
4466 /* It's probably an old response sent because an ACK
4467 was lost. Gobble up the packet and ack it so it
4468 doesn't get retransmitted when we resend this
4469 packet. */
6d820c5c 4470 skip_frame ();
d6f7abdf 4471 serial_write (remote_desc, "+", 1);
23860348 4472 continue; /* Now, go look for +. */
c906108c
SS
4473 }
4474 default:
4475 if (remote_debug)
4476 {
4477 if (!started_error_output)
4478 {
4479 started_error_output = 1;
0f71a2f6 4480 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 4481 }
0f71a2f6 4482 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
4483 }
4484 continue;
4485 }
23860348 4486 break; /* Here to retransmit. */
c906108c
SS
4487 }
4488
4489#if 0
4490 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
4491 able to get out next time we call QUIT, without anything as
4492 violent as interrupt_query. If we want to provide a way out of
4493 here without getting to the next QUIT, it should be based on
4494 hitting ^C twice as in remote_wait. */
c906108c
SS
4495 if (quit_flag)
4496 {
4497 quit_flag = 0;
4498 interrupt_query ();
4499 }
4500#endif
4501 }
4502}
4503
6d820c5c
DJ
4504/* Come here after finding the start of a frame when we expected an
4505 ack. Do our best to discard the rest of this packet. */
4506
4507static void
4508skip_frame (void)
4509{
4510 int c;
4511
4512 while (1)
4513 {
4514 c = readchar (remote_timeout);
4515 switch (c)
4516 {
4517 case SERIAL_TIMEOUT:
4518 /* Nothing we can do. */
4519 return;
4520 case '#':
4521 /* Discard the two bytes of checksum and stop. */
4522 c = readchar (remote_timeout);
4523 if (c >= 0)
4524 c = readchar (remote_timeout);
4525
4526 return;
4527 case '*': /* Run length encoding. */
4528 /* Discard the repeat count. */
4529 c = readchar (remote_timeout);
4530 if (c < 0)
4531 return;
4532 break;
4533 default:
4534 /* A regular character. */
4535 break;
4536 }
4537 }
4538}
4539
c906108c 4540/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
4541 into *BUF, verifying the checksum, length, and handling run-length
4542 compression. NUL terminate the buffer. If there is not enough room,
4543 expand *BUF using xrealloc.
c906108c 4544
c2d11a7d
JM
4545 Returns -1 on error, number of characters in buffer (ignoring the
4546 trailing NULL) on success. (could be extended to return one of the
23860348 4547 SERIAL status indications). */
c2d11a7d
JM
4548
4549static long
6d820c5c
DJ
4550read_frame (char **buf_p,
4551 long *sizeof_buf)
c906108c
SS
4552{
4553 unsigned char csum;
c2d11a7d 4554 long bc;
c906108c 4555 int c;
6d820c5c 4556 char *buf = *buf_p;
c906108c
SS
4557
4558 csum = 0;
c2d11a7d 4559 bc = 0;
c906108c
SS
4560
4561 while (1)
4562 {
4563 c = readchar (remote_timeout);
c906108c
SS
4564 switch (c)
4565 {
4566 case SERIAL_TIMEOUT:
4567 if (remote_debug)
0f71a2f6 4568 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 4569 return -1;
c906108c
SS
4570 case '$':
4571 if (remote_debug)
0f71a2f6
JM
4572 fputs_filtered ("Saw new packet start in middle of old one\n",
4573 gdb_stdlog);
23860348 4574 return -1; /* Start a new packet, count retries. */
c906108c
SS
4575 case '#':
4576 {
4577 unsigned char pktcsum;
e1b09194
AC
4578 int check_0 = 0;
4579 int check_1 = 0;
c906108c 4580
c2d11a7d 4581 buf[bc] = '\0';
c906108c 4582
e1b09194
AC
4583 check_0 = readchar (remote_timeout);
4584 if (check_0 >= 0)
4585 check_1 = readchar (remote_timeout);
802188a7 4586
e1b09194
AC
4587 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
4588 {
4589 if (remote_debug)
2bc416ba 4590 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 4591 gdb_stdlog);
e1b09194
AC
4592 return -1;
4593 }
4594 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
4595 {
4596 if (remote_debug)
2bc416ba 4597 fputs_filtered ("Communication error in checksum\n",
23860348 4598 gdb_stdlog);
40e3f985
FN
4599 return -1;
4600 }
c906108c 4601
e1b09194 4602 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 4603 if (csum == pktcsum)
c2d11a7d 4604 return bc;
c906108c 4605
c5aa993b 4606 if (remote_debug)
c906108c 4607 {
0f71a2f6 4608 fprintf_filtered (gdb_stdlog,
c5aa993b 4609 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
0f71a2f6 4610 pktcsum, csum);
0876f84a 4611 fputstrn_filtered (buf, bc, 0, gdb_stdlog);
0f71a2f6 4612 fputs_filtered ("\n", gdb_stdlog);
c906108c 4613 }
c2d11a7d 4614 /* Number of characters in buffer ignoring trailing
23860348 4615 NULL. */
c2d11a7d 4616 return -1;
c906108c 4617 }
23860348 4618 case '*': /* Run length encoding. */
c2c6d25f
JM
4619 {
4620 int repeat;
4621 csum += c;
c906108c 4622
b4501125
AC
4623 c = readchar (remote_timeout);
4624 csum += c;
23860348 4625 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 4626
23860348 4627 /* The character before ``*'' is repeated. */
c2d11a7d 4628
6d820c5c 4629 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 4630 {
6d820c5c
DJ
4631 if (bc + repeat - 1 >= *sizeof_buf - 1)
4632 {
4633 /* Make some more room in the buffer. */
4634 *sizeof_buf += repeat;
4635 *buf_p = xrealloc (*buf_p, *sizeof_buf);
4636 buf = *buf_p;
4637 }
4638
c2d11a7d
JM
4639 memset (&buf[bc], buf[bc - 1], repeat);
4640 bc += repeat;
c2c6d25f
JM
4641 continue;
4642 }
4643
c2d11a7d 4644 buf[bc] = '\0';
6d820c5c 4645 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 4646 return -1;
c2c6d25f 4647 }
c906108c 4648 default:
6d820c5c 4649 if (bc >= *sizeof_buf - 1)
c906108c 4650 {
6d820c5c
DJ
4651 /* Make some more room in the buffer. */
4652 *sizeof_buf *= 2;
4653 *buf_p = xrealloc (*buf_p, *sizeof_buf);
4654 buf = *buf_p;
c906108c
SS
4655 }
4656
6d820c5c
DJ
4657 buf[bc++] = c;
4658 csum += c;
4659 continue;
c906108c
SS
4660 }
4661 }
4662}
4663
4664/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
4665 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
4666 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
4667 rather than timing out; this is used (in synchronous mode) to wait
4668 for a target that is is executing user code to stop. */
d9fcf2fb
JM
4669/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
4670 don't have to change all the calls to getpkt to deal with the
4671 return value, because at the moment I don't know what the right
23860348 4672 thing to do it for those. */
c906108c 4673void
6d820c5c
DJ
4674getpkt (char **buf,
4675 long *sizeof_buf,
c2d11a7d 4676 int forever)
d9fcf2fb
JM
4677{
4678 int timed_out;
4679
4680 timed_out = getpkt_sane (buf, sizeof_buf, forever);
4681}
4682
4683
4684/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
4685 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
4686 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
4687 rather than timing out; this is used (in synchronous mode) to wait
4688 for a target that is is executing user code to stop. If FOREVER ==
4689 0, this function is allowed to time out gracefully and return an
0876f84a
DJ
4690 indication of this to the caller. Otherwise return the number
4691 of bytes read. */
3172dc30 4692static int
6d820c5c 4693getpkt_sane (char **buf, long *sizeof_buf, int forever)
c906108c
SS
4694{
4695 int c;
4696 int tries;
4697 int timeout;
4698 int val;
4699
6d820c5c 4700 strcpy (*buf, "timeout");
c906108c
SS
4701
4702 if (forever)
4703 {
c906108c 4704 timeout = watchdog > 0 ? watchdog : -1;
c906108c
SS
4705 }
4706
4707 else
4708 timeout = remote_timeout;
4709
4710#define MAX_TRIES 3
4711
4712 for (tries = 1; tries <= MAX_TRIES; tries++)
4713 {
4714 /* This can loop forever if the remote side sends us characters
23860348
MS
4715 continuously, but if it pauses, we'll get a zero from
4716 readchar because of timeout. Then we'll count that as a
4717 retry. */
c906108c 4718
23860348
MS
4719 /* Note that we will only wait forever prior to the start of a
4720 packet. After that, we expect characters to arrive at a
4721 brisk pace. They should show up within remote_timeout
4722 intervals. */
c906108c
SS
4723
4724 do
4725 {
4726 c = readchar (timeout);
4727
4728 if (c == SERIAL_TIMEOUT)
4729 {
23860348 4730 if (forever) /* Watchdog went off? Kill the target. */
c906108c 4731 {
2acceee2 4732 QUIT;
c906108c 4733 target_mourn_inferior ();
8a3fe4f8 4734 error (_("Watchdog has expired. Target detached."));
c906108c 4735 }
c906108c 4736 if (remote_debug)
0f71a2f6 4737 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c
SS
4738 goto retry;
4739 }
4740 }
4741 while (c != '$');
4742
4743 /* We've found the start of a packet, now collect the data. */
4744
c2d11a7d 4745 val = read_frame (buf, sizeof_buf);
c906108c 4746
c2d11a7d 4747 if (val >= 0)
c906108c
SS
4748 {
4749 if (remote_debug)
43e526b9
JM
4750 {
4751 fprintf_unfiltered (gdb_stdlog, "Packet received: ");
0876f84a 4752 fputstrn_unfiltered (*buf, val, 0, gdb_stdlog);
43e526b9
JM
4753 fprintf_unfiltered (gdb_stdlog, "\n");
4754 }
2cd58942 4755 serial_write (remote_desc, "+", 1);
0876f84a 4756 return val;
c906108c
SS
4757 }
4758
4759 /* Try the whole thing again. */
4760 retry:
2cd58942 4761 serial_write (remote_desc, "-", 1);
c906108c
SS
4762 }
4763
2bc416ba 4764 /* We have tried hard enough, and just can't receive the packet.
23860348 4765 Give up. */
c906108c 4766
a3f17187 4767 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
2cd58942 4768 serial_write (remote_desc, "+", 1);
0876f84a 4769 return -1;
c906108c
SS
4770}
4771\f
4772static void
fba45db2 4773remote_kill (void)
c906108c
SS
4774{
4775 /* For some mysterious reason, wait_for_inferior calls kill instead of
4776 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4777 if (kill_kludge)
4778 {
4779 kill_kludge = 0;
4780 target_mourn_inferior ();
4781 return;
4782 }
4783
4784 /* Use catch_errors so the user can quit from gdb even when we aren't on
4785 speaking terms with the remote system. */
c5aa993b 4786 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
c906108c
SS
4787
4788 /* Don't wait for it to die. I'm not really sure it matters whether
4789 we do or not. For the existing stubs, kill is a noop. */
4790 target_mourn_inferior ();
4791}
4792
23860348 4793/* Async version of remote_kill. */
43ff13b4 4794static void
fba45db2 4795remote_async_kill (void)
43ff13b4 4796{
23860348 4797 /* Unregister the file descriptor from the event loop. */
ed9a39eb 4798 if (target_is_async_p ())
2cd58942 4799 serial_async (remote_desc, NULL, 0);
43ff13b4
JM
4800
4801 /* For some mysterious reason, wait_for_inferior calls kill instead of
4802 mourn after it gets TARGET_WAITKIND_SIGNALLED. Work around it. */
4803 if (kill_kludge)
4804 {
4805 kill_kludge = 0;
4806 target_mourn_inferior ();
4807 return;
4808 }
4809
23860348
MS
4810 /* Use catch_errors so the user can quit from gdb even when we
4811 aren't on speaking terms with the remote system. */
c5aa993b 4812 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
43ff13b4
JM
4813
4814 /* Don't wait for it to die. I'm not really sure it matters whether
4815 we do or not. For the existing stubs, kill is a noop. */
4816 target_mourn_inferior ();
4817}
4818
c906108c 4819static void
fba45db2 4820remote_mourn (void)
c906108c
SS
4821{
4822 remote_mourn_1 (&remote_ops);
4823}
4824
53a5351d 4825static void
fba45db2 4826remote_async_mourn (void)
53a5351d
JM
4827{
4828 remote_mourn_1 (&remote_async_ops);
4829}
4830
c906108c 4831static void
fba45db2 4832extended_remote_mourn (void)
c906108c
SS
4833{
4834 /* We do _not_ want to mourn the target like this; this will
4835 remove the extended remote target from the target stack,
802188a7 4836 and the next time the user says "run" it'll fail.
c906108c
SS
4837
4838 FIXME: What is the right thing to do here? */
4839#if 0
4840 remote_mourn_1 (&extended_remote_ops);
4841#endif
4842}
4843
4844/* Worker function for remote_mourn. */
4845static void
fba45db2 4846remote_mourn_1 (struct target_ops *target)
c906108c
SS
4847{
4848 unpush_target (target);
4849 generic_mourn_inferior ();
4850}
4851
4852/* In the extended protocol we want to be able to do things like
4853 "run" and have them basically work as expected. So we need
802188a7 4854 a special create_inferior function.
c906108c
SS
4855
4856 FIXME: One day add support for changing the exec file
4857 we're debugging, arguments and an environment. */
4858
4859static void
23860348
MS
4860extended_remote_create_inferior (char *exec_file, char *args,
4861 char **env, int from_tty)
c906108c
SS
4862{
4863 /* Rip out the breakpoints; we'll reinsert them after restarting
4864 the remote server. */
4865 remove_breakpoints ();
4866
4867 /* Now restart the remote server. */
4868 extended_remote_restart ();
4869
4870 /* Now put the breakpoints back in. This way we're safe if the
4871 restart function works via a unix fork on the remote side. */
4872 insert_breakpoints ();
4873
4874 /* Clean up from the last time we were running. */
4875 clear_proceed_status ();
c906108c
SS
4876}
4877
23860348 4878/* Async version of extended_remote_create_inferior. */
43ff13b4 4879static void
23860348
MS
4880extended_remote_async_create_inferior (char *exec_file, char *args,
4881 char **env, int from_tty)
43ff13b4
JM
4882{
4883 /* Rip out the breakpoints; we'll reinsert them after restarting
4884 the remote server. */
4885 remove_breakpoints ();
4886
4887 /* If running asynchronously, register the target file descriptor
23860348 4888 with the event loop. */
362646f5 4889 if (target_can_async_p ())
2acceee2 4890 target_async (inferior_event_handler, 0);
43ff13b4
JM
4891
4892 /* Now restart the remote server. */
4893 extended_remote_restart ();
4894
4895 /* Now put the breakpoints back in. This way we're safe if the
4896 restart function works via a unix fork on the remote side. */
4897 insert_breakpoints ();
4898
4899 /* Clean up from the last time we were running. */
4900 clear_proceed_status ();
43ff13b4 4901}
c906108c 4902\f
c5aa993b 4903
aaab4dba 4904/* On some machines, e.g. 68k, we may use a different breakpoint
7fec2c59
AC
4905 instruction than other targets; in those use
4906 DEPRECATED_REMOTE_BREAKPOINT instead of just BREAKPOINT_FROM_PC.
4907 Also, bi-endian targets may define
4908 DEPRECATED_LITTLE_REMOTE_BREAKPOINT and
4909 DEPRECATED_BIG_REMOTE_BREAKPOINT. If none of these are defined, we
4910 just call the standard routines that are in mem-break.c. */
4911
4912/* NOTE: cagney/2003-06-08: This is silly. A remote and simulator
4913 target should use an identical BREAKPOINT_FROM_PC. As for native,
4914 the ARCH-OS-tdep.c code can override the default. */
4915
4916#if defined (DEPRECATED_LITTLE_REMOTE_BREAKPOINT) && defined (DEPRECATED_BIG_REMOTE_BREAKPOINT) && !defined(DEPRECATED_REMOTE_BREAKPOINT)
4917#define DEPRECATED_REMOTE_BREAKPOINT
c906108c
SS
4918#endif
4919
7fec2c59 4920#ifdef DEPRECATED_REMOTE_BREAKPOINT
c906108c
SS
4921
4922/* If the target isn't bi-endian, just pretend it is. */
7fec2c59
AC
4923#if !defined (DEPRECATED_LITTLE_REMOTE_BREAKPOINT) && !defined (DEPRECATED_BIG_REMOTE_BREAKPOINT)
4924#define DEPRECATED_LITTLE_REMOTE_BREAKPOINT DEPRECATED_REMOTE_BREAKPOINT
4925#define DEPRECATED_BIG_REMOTE_BREAKPOINT DEPRECATED_REMOTE_BREAKPOINT
c906108c
SS
4926#endif
4927
7fec2c59
AC
4928static unsigned char big_break_insn[] = DEPRECATED_BIG_REMOTE_BREAKPOINT;
4929static unsigned char little_break_insn[] = DEPRECATED_LITTLE_REMOTE_BREAKPOINT;
c906108c 4930
7fec2c59 4931#endif /* DEPRECATED_REMOTE_BREAKPOINT */
c906108c 4932
8181d85f
DJ
4933/* Insert a breakpoint. On targets that have software breakpoint
4934 support, we ask the remote target to do the work; on targets
4935 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
4936
4937static int
8181d85f 4938remote_insert_breakpoint (struct bp_target_info *bp_tgt)
c906108c 4939{
8181d85f 4940 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 4941 struct remote_state *rs = get_remote_state ();
7fec2c59 4942#ifdef DEPRECATED_REMOTE_BREAKPOINT
c906108c 4943 int val;
802188a7 4944#endif
96baa820 4945
d471ea57
AC
4946 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
4947 If it succeeds, then set the support to PACKET_ENABLE. If it
4948 fails, and the user has explicitly requested the Z support then
23860348 4949 report an error, otherwise, mark it disabled and go on. */
802188a7 4950
444abaca 4951 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 4952 {
6d820c5c 4953 char *p = rs->buf;
802188a7 4954
96baa820
JM
4955 *(p++) = 'Z';
4956 *(p++) = '0';
4957 *(p++) = ',';
8181d85f
DJ
4958 BREAKPOINT_FROM_PC (&bp_tgt->placed_address, &bp_tgt->placed_size);
4959 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
4960 p += hexnumstr (p, addr);
4961 sprintf (p, ",%d", bp_tgt->placed_size);
802188a7 4962
6d820c5c
DJ
4963 putpkt (rs->buf);
4964 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 4965
6d820c5c 4966 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 4967 {
d471ea57
AC
4968 case PACKET_ERROR:
4969 return -1;
4970 case PACKET_OK:
4971 return 0;
4972 case PACKET_UNKNOWN:
4973 break;
96baa820
JM
4974 }
4975 }
c906108c 4976
802188a7 4977#ifdef DEPRECATED_REMOTE_BREAKPOINT
8181d85f
DJ
4978 bp_tgt->placed_size = bp_tgt->shadow_len = sizeof big_break_insn;
4979 val = target_read_memory (addr, bp_tgt->shadow_contents, bp_tgt->shadow_len);
c906108c
SS
4980
4981 if (val == 0)
4982 {
d7449b42 4983 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
c906108c
SS
4984 val = target_write_memory (addr, (char *) big_break_insn,
4985 sizeof big_break_insn);
4986 else
4987 val = target_write_memory (addr, (char *) little_break_insn,
4988 sizeof little_break_insn);
4989 }
4990
4991 return val;
4992#else
8181d85f 4993 return memory_insert_breakpoint (bp_tgt);
7fec2c59 4994#endif /* DEPRECATED_REMOTE_BREAKPOINT */
c906108c
SS
4995}
4996
4997static int
8181d85f 4998remote_remove_breakpoint (struct bp_target_info *bp_tgt)
c906108c 4999{
8181d85f 5000 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 5001 struct remote_state *rs = get_remote_state ();
96baa820
JM
5002 int bp_size;
5003
444abaca 5004 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 5005 {
6d820c5c 5006 char *p = rs->buf;
802188a7 5007
96baa820
JM
5008 *(p++) = 'z';
5009 *(p++) = '0';
5010 *(p++) = ',';
5011
8181d85f
DJ
5012 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
5013 p += hexnumstr (p, addr);
5014 sprintf (p, ",%d", bp_tgt->placed_size);
802188a7 5015
6d820c5c
DJ
5016 putpkt (rs->buf);
5017 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5018
6d820c5c 5019 return (rs->buf[0] == 'E');
96baa820
JM
5020 }
5021
7fec2c59 5022#ifdef DEPRECATED_REMOTE_BREAKPOINT
8181d85f
DJ
5023 return target_write_memory (bp_tgt->placed_address, bp_tgt->shadow_contents,
5024 bp_tgt->shadow_len);
c906108c 5025#else
8181d85f 5026 return memory_remove_breakpoint (bp_tgt);
7fec2c59 5027#endif /* DEPRECATED_REMOTE_BREAKPOINT */
c906108c
SS
5028}
5029
d471ea57
AC
5030static int
5031watchpoint_to_Z_packet (int type)
5032{
5033 switch (type)
5034 {
5035 case hw_write:
bb858e6a 5036 return Z_PACKET_WRITE_WP;
d471ea57
AC
5037 break;
5038 case hw_read:
bb858e6a 5039 return Z_PACKET_READ_WP;
d471ea57
AC
5040 break;
5041 case hw_access:
bb858e6a 5042 return Z_PACKET_ACCESS_WP;
d471ea57
AC
5043 break;
5044 default:
8e65ff28 5045 internal_error (__FILE__, __LINE__,
e2e0b3e5 5046 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
5047 }
5048}
5049
3c3bea1c 5050static int
fba45db2 5051remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 5052{
d01949b6 5053 struct remote_state *rs = get_remote_state ();
e514a9d6 5054 char *p;
d471ea57 5055 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 5056
444abaca 5057 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 5058 return -1;
802188a7 5059
6d820c5c
DJ
5060 sprintf (rs->buf, "Z%x,", packet);
5061 p = strchr (rs->buf, '\0');
96baa820
JM
5062 addr = remote_address_masked (addr);
5063 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 5064 sprintf (p, ",%x", len);
802188a7 5065
6d820c5c
DJ
5066 putpkt (rs->buf);
5067 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5068
6d820c5c 5069 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
5070 {
5071 case PACKET_ERROR:
5072 case PACKET_UNKNOWN:
5073 return -1;
5074 case PACKET_OK:
5075 return 0;
5076 }
8e65ff28 5077 internal_error (__FILE__, __LINE__,
e2e0b3e5 5078 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
5079}
5080
d471ea57 5081
3c3bea1c 5082static int
fba45db2 5083remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 5084{
d01949b6 5085 struct remote_state *rs = get_remote_state ();
e514a9d6 5086 char *p;
d471ea57
AC
5087 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
5088
444abaca 5089 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 5090 return -1;
802188a7 5091
6d820c5c
DJ
5092 sprintf (rs->buf, "z%x,", packet);
5093 p = strchr (rs->buf, '\0');
96baa820
JM
5094 addr = remote_address_masked (addr);
5095 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 5096 sprintf (p, ",%x", len);
6d820c5c
DJ
5097 putpkt (rs->buf);
5098 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5099
6d820c5c 5100 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
5101 {
5102 case PACKET_ERROR:
5103 case PACKET_UNKNOWN:
5104 return -1;
5105 case PACKET_OK:
5106 return 0;
5107 }
8e65ff28 5108 internal_error (__FILE__, __LINE__,
e2e0b3e5 5109 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
5110}
5111
3c3bea1c 5112
501eef12
AC
5113int remote_hw_watchpoint_limit = -1;
5114int remote_hw_breakpoint_limit = -1;
d471ea57 5115
b9362cc7 5116static int
3c3bea1c 5117remote_check_watch_resources (int type, int cnt, int ot)
96baa820 5118{
3c3bea1c
GS
5119 if (type == bp_hardware_breakpoint)
5120 {
5121 if (remote_hw_breakpoint_limit == 0)
5122 return 0;
501eef12
AC
5123 else if (remote_hw_breakpoint_limit < 0)
5124 return 1;
3c3bea1c
GS
5125 else if (cnt <= remote_hw_breakpoint_limit)
5126 return 1;
5127 }
5128 else
5129 {
5130 if (remote_hw_watchpoint_limit == 0)
5131 return 0;
501eef12
AC
5132 else if (remote_hw_watchpoint_limit < 0)
5133 return 1;
3c3bea1c
GS
5134 else if (ot)
5135 return -1;
5136 else if (cnt <= remote_hw_watchpoint_limit)
5137 return 1;
5138 }
5139 return -1;
5140}
5141
b9362cc7 5142static int
3c3bea1c
GS
5143remote_stopped_by_watchpoint (void)
5144{
5145 return remote_stopped_by_watchpoint_p;
5146}
5147
7270d8f2
OF
5148extern int stepped_after_stopped_by_watchpoint;
5149
4aa7a7f5
JJ
5150static int
5151remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 5152{
4aa7a7f5 5153 int rc = 0;
7270d8f2
OF
5154 if (remote_stopped_by_watchpoint ()
5155 || stepped_after_stopped_by_watchpoint)
4aa7a7f5
JJ
5156 {
5157 *addr_p = remote_watch_data_address;
5158 rc = 1;
5159 }
5160
5161 return rc;
3c3bea1c
GS
5162}
5163
5164
5165static int
8181d85f 5166remote_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
3c3bea1c 5167{
8181d85f 5168 CORE_ADDR addr;
d01949b6 5169 struct remote_state *rs = get_remote_state ();
6d820c5c 5170 char *p = rs->buf;
802188a7 5171
c8189ed1 5172 /* The length field should be set to the size of a breakpoint
8181d85f 5173 instruction, even though we aren't inserting one ourselves. */
c8189ed1 5174
8181d85f 5175 BREAKPOINT_FROM_PC (&bp_tgt->placed_address, &bp_tgt->placed_size);
3c3bea1c 5176
444abaca 5177 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 5178 return -1;
2bc416ba 5179
96baa820
JM
5180 *(p++) = 'Z';
5181 *(p++) = '1';
5182 *(p++) = ',';
802188a7 5183
8181d85f 5184 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 5185 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 5186 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 5187
6d820c5c
DJ
5188 putpkt (rs->buf);
5189 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5190
6d820c5c 5191 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
5192 {
5193 case PACKET_ERROR:
5194 case PACKET_UNKNOWN:
5195 return -1;
5196 case PACKET_OK:
5197 return 0;
5198 }
8e65ff28 5199 internal_error (__FILE__, __LINE__,
e2e0b3e5 5200 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
5201}
5202
d471ea57 5203
802188a7 5204static int
8181d85f 5205remote_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
96baa820 5206{
8181d85f 5207 CORE_ADDR addr;
d01949b6 5208 struct remote_state *rs = get_remote_state ();
6d820c5c 5209 char *p = rs->buf;
c8189ed1 5210
444abaca 5211 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 5212 return -1;
802188a7 5213
96baa820
JM
5214 *(p++) = 'z';
5215 *(p++) = '1';
5216 *(p++) = ',';
802188a7 5217
8181d85f 5218 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 5219 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 5220 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 5221
6d820c5c
DJ
5222 putpkt (rs->buf);
5223 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 5224
6d820c5c 5225 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
5226 {
5227 case PACKET_ERROR:
5228 case PACKET_UNKNOWN:
5229 return -1;
5230 case PACKET_OK:
5231 return 0;
5232 }
8e65ff28 5233 internal_error (__FILE__, __LINE__,
e2e0b3e5 5234 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 5235}
96baa820 5236
c906108c
SS
5237/* Some targets are only capable of doing downloads, and afterwards
5238 they switch to the remote serial protocol. This function provides
5239 a clean way to get from the download target to the remote target.
5240 It's basically just a wrapper so that we don't have to expose any
5241 of the internal workings of remote.c.
5242
5243 Prior to calling this routine, you should shutdown the current
5244 target code, else you will get the "A program is being debugged
5245 already..." message. Usually a call to pop_target() suffices. */
5246
5247void
fba45db2 5248push_remote_target (char *name, int from_tty)
c906108c 5249{
a3f17187 5250 printf_filtered (_("Switching to remote protocol\n"));
c906108c
SS
5251 remote_open (name, from_tty);
5252}
5253
23860348 5254/* Table used by the crc32 function to calcuate the checksum. */
c906108c 5255
c5aa993b
JM
5256static unsigned long crc32_table[256] =
5257{0, 0};
c906108c
SS
5258
5259static unsigned long
fba45db2 5260crc32 (unsigned char *buf, int len, unsigned int crc)
c906108c 5261{
c5aa993b 5262 if (!crc32_table[1])
c906108c 5263 {
23860348 5264 /* Initialize the CRC table and the decoding table. */
c906108c
SS
5265 int i, j;
5266 unsigned int c;
5267
5268 for (i = 0; i < 256; i++)
c5aa993b
JM
5269 {
5270 for (c = i << 24, j = 8; j > 0; --j)
5271 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
5272 crc32_table[i] = c;
5273 }
c906108c
SS
5274 }
5275
5276 while (len--)
5277 {
5278 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
5279 buf++;
5280 }
5281 return crc;
5282}
5283
5284/* compare-sections command
5285
5286 With no arguments, compares each loadable section in the exec bfd
5287 with the same memory range on the target, and reports mismatches.
5288 Useful for verifying the image on the target against the exec file.
5289 Depends on the target understanding the new "qCRC:" request. */
5290
e514a9d6
JM
5291/* FIXME: cagney/1999-10-26: This command should be broken down into a
5292 target method (target verify memory) and generic version of the
5293 actual command. This will allow other high-level code (especially
23860348 5294 generic_load()) to make use of this target functionality. */
e514a9d6 5295
c906108c 5296static void
fba45db2 5297compare_sections_command (char *args, int from_tty)
c906108c 5298{
d01949b6 5299 struct remote_state *rs = get_remote_state ();
c906108c
SS
5300 asection *s;
5301 unsigned long host_crc, target_crc;
5302 extern bfd *exec_bfd;
5303 struct cleanup *old_chain;
085dd6e6
JM
5304 char *tmp;
5305 char *sectdata;
ce359b09 5306 const char *sectname;
c906108c
SS
5307 bfd_size_type size;
5308 bfd_vma lma;
5309 int matched = 0;
5310 int mismatched = 0;
5311
5312 if (!exec_bfd)
8a3fe4f8 5313 error (_("command cannot be used without an exec file"));
c906108c
SS
5314 if (!current_target.to_shortname ||
5315 strcmp (current_target.to_shortname, "remote") != 0)
8a3fe4f8 5316 error (_("command can only be used with remote target"));
c906108c 5317
c5aa993b 5318 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
5319 {
5320 if (!(s->flags & SEC_LOAD))
c5aa993b 5321 continue; /* skip non-loadable section */
c906108c 5322
2c500098 5323 size = bfd_get_section_size (s);
c906108c 5324 if (size == 0)
c5aa993b 5325 continue; /* skip zero-length section */
c906108c 5326
ce359b09 5327 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 5328 if (args && strcmp (args, sectname) != 0)
c5aa993b 5329 continue; /* not the section selected by user */
c906108c 5330
c5aa993b 5331 matched = 1; /* do this section */
c906108c 5332 lma = s->lma;
23860348 5333 /* FIXME: assumes lma can fit into long. */
ea9c271d 5334 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
ecbc58df 5335 (long) lma, (long) size);
6d820c5c 5336 putpkt (rs->buf);
c906108c 5337
23860348
MS
5338 /* Be clever; compute the host_crc before waiting for target
5339 reply. */
c906108c 5340 sectdata = xmalloc (size);
b8c9b27d 5341 old_chain = make_cleanup (xfree, sectdata);
c906108c
SS
5342 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
5343 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
5344
6d820c5c
DJ
5345 getpkt (&rs->buf, &rs->buf_size, 0);
5346 if (rs->buf[0] == 'E')
8a3fe4f8 5347 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
823ca731 5348 sectname, paddr (lma), paddr (lma + size));
6d820c5c 5349 if (rs->buf[0] != 'C')
8a3fe4f8 5350 error (_("remote target does not support this operation"));
c906108c 5351
6d820c5c 5352 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
c906108c
SS
5353 target_crc = target_crc * 16 + fromhex (*tmp);
5354
d4f3574e
SS
5355 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
5356 sectname, paddr (lma), paddr (lma + size));
c906108c
SS
5357 if (host_crc == target_crc)
5358 printf_filtered ("matched.\n");
5359 else
c5aa993b
JM
5360 {
5361 printf_filtered ("MIS-MATCHED!\n");
5362 mismatched++;
5363 }
c906108c
SS
5364
5365 do_cleanups (old_chain);
5366 }
5367 if (mismatched > 0)
8a3fe4f8
AC
5368 warning (_("One or more sections of the remote executable does not match\n\
5369the loaded file\n"));
c906108c 5370 if (args && !matched)
a3f17187 5371 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
5372}
5373
0876f84a
DJ
5374/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
5375 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
5376 number of bytes read is returned, or 0 for EOF, or -1 for error.
5377 The number of bytes read may be less than LEN without indicating an
5378 EOF. PACKET is checked and updated to indicate whether the remote
5379 target supports this object. */
5380
5381static LONGEST
5382remote_read_qxfer (struct target_ops *ops, const char *object_name,
5383 const char *annex,
5384 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
5385 struct packet_config *packet)
5386{
5387 static char *finished_object;
5388 static char *finished_annex;
5389 static ULONGEST finished_offset;
5390
5391 struct remote_state *rs = get_remote_state ();
5392 unsigned int total = 0;
5393 LONGEST i, n, packet_len;
5394
5395 if (packet->support == PACKET_DISABLE)
5396 return -1;
5397
5398 /* Check whether we've cached an end-of-object packet that matches
5399 this request. */
5400 if (finished_object)
5401 {
5402 if (strcmp (object_name, finished_object) == 0
5403 && strcmp (annex ? annex : "", finished_annex) == 0
5404 && offset == finished_offset)
5405 return 0;
5406
5407 /* Otherwise, we're now reading something different. Discard
5408 the cache. */
5409 xfree (finished_object);
5410 xfree (finished_annex);
5411 finished_object = NULL;
5412 finished_annex = NULL;
5413 }
5414
5415 /* Request only enough to fit in a single packet. The actual data
5416 may not, since we don't know how much of it will need to be escaped;
5417 the target is free to respond with slightly less data. We subtract
5418 five to account for the response type and the protocol frame. */
5419 n = min (get_remote_packet_size () - 5, len);
5420 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
5421 object_name, annex ? annex : "",
5422 phex_nz (offset, sizeof offset),
5423 phex_nz (n, sizeof n));
5424 i = putpkt (rs->buf);
5425 if (i < 0)
5426 return -1;
5427
5428 rs->buf[0] = '\0';
5429 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
5430 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
5431 return -1;
5432
5433 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
5434 error (_("Unknown remote qXfer reply: %s"), rs->buf);
5435
5436 /* 'm' means there is (or at least might be) more data after this
5437 batch. That does not make sense unless there's at least one byte
5438 of data in this reply. */
5439 if (rs->buf[0] == 'm' && packet_len == 1)
5440 error (_("Remote qXfer reply contained no data."));
5441
5442 /* Got some data. */
5443 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
5444
5445 /* 'l' is an EOF marker, possibly including a final block of data,
5446 or possibly empty. Record it to bypass the next read, if one is
5447 issued. */
5448 if (rs->buf[0] == 'l')
5449 {
5450 finished_object = xstrdup (object_name);
5451 finished_annex = xstrdup (annex ? annex : "");
5452 finished_offset = offset + i;
5453 }
5454
5455 return i;
5456}
5457
1e3ff5ad 5458static LONGEST
4b8a223f 5459remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5
MK
5460 const char *annex, gdb_byte *readbuf,
5461 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
c906108c 5462{
d01949b6 5463 struct remote_state *rs = get_remote_state ();
c906108c 5464 int i;
6d820c5c 5465 char *p2;
1e3ff5ad 5466 char query_type;
c906108c 5467
b2182ed2 5468 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
5469 if (object == TARGET_OBJECT_MEMORY)
5470 {
5471 int xfered;
5472 errno = 0;
5473
5474 if (writebuf != NULL)
b2182ed2 5475 xfered = remote_write_bytes (offset, writebuf, len);
21e3b9b9 5476 else
b2182ed2 5477 xfered = remote_read_bytes (offset, readbuf, len);
21e3b9b9
DJ
5478
5479 if (xfered > 0)
5480 return xfered;
5481 else if (xfered == 0 && errno == 0)
5482 return 0;
5483 else
5484 return -1;
5485 }
5486
a76d924d
DJ
5487 /* Only handle flash writes. */
5488 if (writebuf != NULL)
5489 {
5490 LONGEST xfered;
5491
5492 switch (object)
5493 {
5494 case TARGET_OBJECT_FLASH:
5495 xfered = remote_flash_write (ops, offset, len, writebuf);
5496
5497 if (xfered > 0)
5498 return xfered;
5499 else if (xfered == 0 && errno == 0)
5500 return 0;
5501 else
5502 return -1;
5503
5504 default:
5505 return -1;
5506 }
5507 }
4b8a223f 5508
1e3ff5ad
AC
5509 /* Map pre-existing objects onto letters. DO NOT do this for new
5510 objects!!! Instead specify new query packets. */
5511 switch (object)
c906108c 5512 {
1e3ff5ad
AC
5513 case TARGET_OBJECT_AVR:
5514 query_type = 'R';
5515 break;
802188a7
RM
5516
5517 case TARGET_OBJECT_AUXV:
0876f84a
DJ
5518 gdb_assert (annex == NULL);
5519 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
5520 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 5521
fd79ecee
DJ
5522 case TARGET_OBJECT_MEMORY_MAP:
5523 gdb_assert (annex == NULL);
5524 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
5525 &remote_protocol_packets[PACKET_qXfer_memory_map]);
5526
1e3ff5ad 5527 default:
c906108c
SS
5528 return -1;
5529 }
5530
4b8a223f 5531 /* Note: a zero OFFSET and LEN can be used to query the minimum
1e3ff5ad 5532 buffer size. */
4b8a223f 5533 if (offset == 0 && len == 0)
ea9c271d
DJ
5534 return (get_remote_packet_size ());
5535 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 5536 large enough let the caller deal with it. */
ea9c271d 5537 if (len < get_remote_packet_size ())
1e3ff5ad 5538 return -1;
ea9c271d 5539 len = get_remote_packet_size ();
1e3ff5ad 5540
23860348 5541 /* Except for querying the minimum buffer size, target must be open. */
c5aa993b 5542 if (!remote_desc)
8a3fe4f8 5543 error (_("remote query is only available after target open"));
c906108c 5544
1e3ff5ad 5545 gdb_assert (annex != NULL);
4b8a223f 5546 gdb_assert (readbuf != NULL);
c906108c 5547
6d820c5c 5548 p2 = rs->buf;
c906108c
SS
5549 *p2++ = 'q';
5550 *p2++ = query_type;
5551
23860348
MS
5552 /* We used one buffer char for the remote protocol q command and
5553 another for the query type. As the remote protocol encapsulation
5554 uses 4 chars plus one extra in case we are debugging
5555 (remote_debug), we have PBUFZIZ - 7 left to pack the query
5556 string. */
c906108c 5557 i = 0;
ea9c271d 5558 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 5559 {
1e3ff5ad
AC
5560 /* Bad caller may have sent forbidden characters. */
5561 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
5562 *p2++ = annex[i];
c906108c
SS
5563 i++;
5564 }
1e3ff5ad
AC
5565 *p2 = '\0';
5566 gdb_assert (annex[i] == '\0');
c906108c 5567
6d820c5c 5568 i = putpkt (rs->buf);
c5aa993b
JM
5569 if (i < 0)
5570 return i;
c906108c 5571
6d820c5c
DJ
5572 getpkt (&rs->buf, &rs->buf_size, 0);
5573 strcpy ((char *) readbuf, rs->buf);
c906108c 5574
cfd77fa1 5575 return strlen ((char *) readbuf);
c906108c
SS
5576}
5577
96baa820
JM
5578static void
5579remote_rcmd (char *command,
d9fcf2fb 5580 struct ui_file *outbuf)
96baa820 5581{
d01949b6 5582 struct remote_state *rs = get_remote_state ();
2e9f7625 5583 char *p = rs->buf;
96baa820
JM
5584
5585 if (!remote_desc)
8a3fe4f8 5586 error (_("remote rcmd is only available after target open"));
96baa820 5587
23860348 5588 /* Send a NULL command across as an empty command. */
7be570e7
JM
5589 if (command == NULL)
5590 command = "";
5591
23860348 5592 /* The query prefix. */
2e9f7625
DJ
5593 strcpy (rs->buf, "qRcmd,");
5594 p = strchr (rs->buf, '\0');
96baa820 5595
2e9f7625 5596 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
8a3fe4f8 5597 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 5598
23860348 5599 /* Encode the actual command. */
cfd77fa1 5600 bin2hex ((gdb_byte *) command, p, 0);
96baa820 5601
6d820c5c 5602 if (putpkt (rs->buf) < 0)
8a3fe4f8 5603 error (_("Communication problem with target."));
96baa820
JM
5604
5605 /* get/display the response */
5606 while (1)
5607 {
2e9f7625
DJ
5608 char *buf;
5609
23860348 5610 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
2e9f7625 5611 rs->buf[0] = '\0';
6d820c5c 5612 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 5613 buf = rs->buf;
96baa820 5614 if (buf[0] == '\0')
8a3fe4f8 5615 error (_("Target does not support this command."));
96baa820
JM
5616 if (buf[0] == 'O' && buf[1] != 'K')
5617 {
23860348 5618 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
5619 continue;
5620 }
5621 if (strcmp (buf, "OK") == 0)
5622 break;
7be570e7
JM
5623 if (strlen (buf) == 3 && buf[0] == 'E'
5624 && isdigit (buf[1]) && isdigit (buf[2]))
5625 {
8a3fe4f8 5626 error (_("Protocol error with Rcmd"));
7be570e7 5627 }
96baa820
JM
5628 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
5629 {
5630 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
5631 fputc_unfiltered (c, outbuf);
5632 }
5633 break;
5634 }
5635}
5636
fd79ecee
DJ
5637static VEC(mem_region_s) *
5638remote_memory_map (struct target_ops *ops)
5639{
5640 VEC(mem_region_s) *result = NULL;
5641 char *text = target_read_stralloc (&current_target,
5642 TARGET_OBJECT_MEMORY_MAP, NULL);
5643
5644 if (text)
5645 {
5646 struct cleanup *back_to = make_cleanup (xfree, text);
5647 result = parse_memory_map (text);
5648 do_cleanups (back_to);
5649 }
5650
5651 return result;
5652}
5653
c906108c 5654static void
fba45db2 5655packet_command (char *args, int from_tty)
c906108c 5656{
d01949b6 5657 struct remote_state *rs = get_remote_state ();
c906108c 5658
c5aa993b 5659 if (!remote_desc)
8a3fe4f8 5660 error (_("command can only be used with remote target"));
c906108c 5661
c5aa993b 5662 if (!args)
8a3fe4f8 5663 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
5664
5665 puts_filtered ("sending: ");
5666 print_packet (args);
5667 puts_filtered ("\n");
5668 putpkt (args);
5669
6d820c5c 5670 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 5671 puts_filtered ("received: ");
6d820c5c 5672 print_packet (rs->buf);
c906108c
SS
5673 puts_filtered ("\n");
5674}
5675
5676#if 0
23860348 5677/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 5678
a14ed312 5679static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 5680
a14ed312 5681static void threadset_test_cmd (char *cmd, int tty);
c906108c 5682
a14ed312 5683static void threadalive_test (char *cmd, int tty);
c906108c 5684
a14ed312 5685static void threadlist_test_cmd (char *cmd, int tty);
c906108c 5686
23860348 5687int get_and_display_threadinfo (threadref *ref);
c906108c 5688
a14ed312 5689static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 5690
23860348 5691static int thread_display_step (threadref *ref, void *context);
c906108c 5692
a14ed312 5693static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 5694
a14ed312 5695static void init_remote_threadtests (void);
c906108c 5696
23860348 5697#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
5698
5699static void
fba45db2 5700threadset_test_cmd (char *cmd, int tty)
c906108c
SS
5701{
5702 int sample_thread = SAMPLE_THREAD;
5703
a3f17187 5704 printf_filtered (_("Remote threadset test\n"));
c906108c
SS
5705 set_thread (sample_thread, 1);
5706}
5707
5708
5709static void
fba45db2 5710threadalive_test (char *cmd, int tty)
c906108c
SS
5711{
5712 int sample_thread = SAMPLE_THREAD;
5713
39f77062 5714 if (remote_thread_alive (pid_to_ptid (sample_thread)))
c906108c
SS
5715 printf_filtered ("PASS: Thread alive test\n");
5716 else
5717 printf_filtered ("FAIL: Thread alive test\n");
5718}
5719
23860348 5720void output_threadid (char *title, threadref *ref);
c906108c
SS
5721
5722void
fba45db2 5723output_threadid (char *title, threadref *ref)
c906108c
SS
5724{
5725 char hexid[20];
5726
23860348 5727 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
5728 hexid[16] = 0;
5729 printf_filtered ("%s %s\n", title, (&hexid[0]));
5730}
5731
5732static void
fba45db2 5733threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
5734{
5735 int startflag = 1;
5736 threadref nextthread;
5737 int done, result_count;
5738 threadref threadlist[3];
5739
5740 printf_filtered ("Remote Threadlist test\n");
5741 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
5742 &result_count, &threadlist[0]))
5743 printf_filtered ("FAIL: threadlist test\n");
5744 else
5745 {
5746 threadref *scan = threadlist;
5747 threadref *limit = scan + result_count;
5748
5749 while (scan < limit)
5750 output_threadid (" thread ", scan++);
5751 }
5752}
5753
5754void
fba45db2 5755display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
5756{
5757 output_threadid ("Threadid: ", &info->threadid);
5758 printf_filtered ("Name: %s\n ", info->shortname);
5759 printf_filtered ("State: %s\n", info->display);
5760 printf_filtered ("other: %s\n\n", info->more_display);
5761}
5762
5763int
fba45db2 5764get_and_display_threadinfo (threadref *ref)
c906108c
SS
5765{
5766 int result;
5767 int set;
5768 struct gdb_ext_thread_info threadinfo;
5769
5770 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
5771 | TAG_MOREDISPLAY | TAG_DISPLAY;
5772 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
5773 display_thread_info (&threadinfo);
5774 return result;
5775}
5776
5777static void
fba45db2 5778threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
5779{
5780 int athread = SAMPLE_THREAD;
5781 threadref thread;
5782 int set;
5783
5784 int_to_threadref (&thread, athread);
5785 printf_filtered ("Remote Threadinfo test\n");
5786 if (!get_and_display_threadinfo (&thread))
5787 printf_filtered ("FAIL cannot get thread info\n");
5788}
5789
5790static int
fba45db2 5791thread_display_step (threadref *ref, void *context)
c906108c
SS
5792{
5793 /* output_threadid(" threadstep ",ref); *//* simple test */
5794 return get_and_display_threadinfo (ref);
5795}
5796
5797static void
fba45db2 5798threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
5799{
5800 printf_filtered ("Remote Threadlist update test\n");
5801 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
5802}
5803
5804static void
5805init_remote_threadtests (void)
5806{
1bedd215
AC
5807 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
5808Fetch and print the remote list of thread identifiers, one pkt only"));
c906108c 5809 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 5810 _("Fetch and display info about one thread"));
c906108c 5811 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 5812 _("Test setting to a different thread"));
c906108c 5813 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 5814 _("Iterate through updating all remote thread info"));
c906108c 5815 add_com ("talive", class_obscure, threadalive_test,
1bedd215 5816 _(" Remote thread alive test "));
c906108c
SS
5817}
5818
5819#endif /* 0 */
5820
f3fb8c85
MS
5821/* Convert a thread ID to a string. Returns the string in a static
5822 buffer. */
5823
5824static char *
39f77062 5825remote_pid_to_str (ptid_t ptid)
f3fb8c85 5826{
fd0a2a6f 5827 static char buf[32];
f3fb8c85 5828
32a5b2f1 5829 xsnprintf (buf, sizeof buf, "Thread %d", ptid_get_pid (ptid));
f3fb8c85
MS
5830 return buf;
5831}
5832
38691318
KB
5833/* Get the address of the thread local variable in OBJFILE which is
5834 stored at OFFSET within the thread local storage for thread PTID. */
5835
5836static CORE_ADDR
5837remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
5838{
444abaca 5839 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
38691318
KB
5840 {
5841 struct remote_state *rs = get_remote_state ();
6d820c5c 5842 char *p = rs->buf;
571dd617 5843 enum packet_result result;
38691318
KB
5844
5845 strcpy (p, "qGetTLSAddr:");
5846 p += strlen (p);
5847 p += hexnumstr (p, PIDGET (ptid));
5848 *p++ = ',';
5849 p += hexnumstr (p, offset);
5850 *p++ = ',';
5851 p += hexnumstr (p, lm);
5852 *p++ = '\0';
5853
6d820c5c
DJ
5854 putpkt (rs->buf);
5855 getpkt (&rs->buf, &rs->buf_size, 0);
5856 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 5857 if (result == PACKET_OK)
38691318
KB
5858 {
5859 ULONGEST result;
5860
6d820c5c 5861 unpack_varlen_hex (rs->buf, &result);
38691318
KB
5862 return result;
5863 }
571dd617 5864 else if (result == PACKET_UNKNOWN)
109c3e39
AC
5865 throw_error (TLS_GENERIC_ERROR,
5866 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 5867 else
109c3e39
AC
5868 throw_error (TLS_GENERIC_ERROR,
5869 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
5870 }
5871 else
109c3e39
AC
5872 throw_error (TLS_GENERIC_ERROR,
5873 _("TLS not supported or disabled on this target"));
38691318
KB
5874 /* Not reached. */
5875 return 0;
5876}
5877
c906108c 5878static void
fba45db2 5879init_remote_ops (void)
c906108c 5880{
c5aa993b 5881 remote_ops.to_shortname = "remote";
c906108c 5882 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 5883 remote_ops.to_doc =
c906108c 5884 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
5885Specify the serial device it is connected to\n\
5886(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
5887 remote_ops.to_open = remote_open;
5888 remote_ops.to_close = remote_close;
c906108c 5889 remote_ops.to_detach = remote_detach;
6ad8ae5c 5890 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 5891 remote_ops.to_resume = remote_resume;
c906108c
SS
5892 remote_ops.to_wait = remote_wait;
5893 remote_ops.to_fetch_registers = remote_fetch_registers;
5894 remote_ops.to_store_registers = remote_store_registers;
5895 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c8e73a31 5896 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
c5aa993b 5897 remote_ops.to_files_info = remote_files_info;
c906108c
SS
5898 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
5899 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
3c3bea1c
GS
5900 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
5901 remote_ops.to_stopped_data_address = remote_stopped_data_address;
5902 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
5903 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
5904 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
5905 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
5906 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b
JM
5907 remote_ops.to_kill = remote_kill;
5908 remote_ops.to_load = generic_load;
c906108c
SS
5909 remote_ops.to_mourn_inferior = remote_mourn;
5910 remote_ops.to_thread_alive = remote_thread_alive;
0f71a2f6 5911 remote_ops.to_find_new_threads = remote_threads_info;
0caabb7e 5912 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 5913 remote_ops.to_extra_thread_info = remote_threads_extra_info;
c906108c 5914 remote_ops.to_stop = remote_stop;
4b8a223f 5915 remote_ops.to_xfer_partial = remote_xfer_partial;
96baa820 5916 remote_ops.to_rcmd = remote_rcmd;
38691318 5917 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 5918 remote_ops.to_stratum = process_stratum;
c5aa993b
JM
5919 remote_ops.to_has_all_memory = 1;
5920 remote_ops.to_has_memory = 1;
5921 remote_ops.to_has_stack = 1;
5922 remote_ops.to_has_registers = 1;
5923 remote_ops.to_has_execution = 1;
5924 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
5925 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 5926 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
5927 remote_ops.to_flash_erase = remote_flash_erase;
5928 remote_ops.to_flash_done = remote_flash_done;
c906108c
SS
5929}
5930
5931/* Set up the extended remote vector by making a copy of the standard
5932 remote vector and adding to it. */
5933
5934static void
fba45db2 5935init_extended_remote_ops (void)
c906108c
SS
5936{
5937 extended_remote_ops = remote_ops;
5938
0f71a2f6 5939 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 5940 extended_remote_ops.to_longname =
c906108c 5941 "Extended remote serial target in gdb-specific protocol";
c5aa993b 5942 extended_remote_ops.to_doc =
c906108c
SS
5943 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
5944Specify the serial device it is connected to (e.g. /dev/ttya).",
c5aa993b 5945 extended_remote_ops.to_open = extended_remote_open;
c906108c
SS
5946 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
5947 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
0f71a2f6
JM
5948}
5949
6426a772
JM
5950static int
5951remote_can_async_p (void)
5952{
23860348 5953 /* We're async whenever the serial device is. */
2cd58942 5954 return (current_target.to_async_mask_value) && serial_can_async_p (remote_desc);
6426a772
JM
5955}
5956
5957static int
5958remote_is_async_p (void)
5959{
23860348 5960 /* We're async whenever the serial device is. */
2cd58942 5961 return (current_target.to_async_mask_value) && serial_is_async_p (remote_desc);
6426a772
JM
5962}
5963
2acceee2
JM
5964/* Pass the SERIAL event on and up to the client. One day this code
5965 will be able to delay notifying the client of an event until the
23860348 5966 point where an entire packet has been received. */
2acceee2 5967
2bc416ba 5968static void (*async_client_callback) (enum inferior_event_type event_type,
23860348 5969 void *context);
2acceee2
JM
5970static void *async_client_context;
5971static serial_event_ftype remote_async_serial_handler;
5972
6426a772 5973static void
819cc324 5974remote_async_serial_handler (struct serial *scb, void *context)
6426a772 5975{
2acceee2
JM
5976 /* Don't propogate error information up to the client. Instead let
5977 the client find out about the error by querying the target. */
5978 async_client_callback (INF_REG_EVENT, async_client_context);
5979}
5980
5981static void
2bc416ba 5982remote_async (void (*callback) (enum inferior_event_type event_type,
23860348 5983 void *context), void *context)
2acceee2 5984{
ed9a39eb 5985 if (current_target.to_async_mask_value == 0)
8e65ff28 5986 internal_error (__FILE__, __LINE__,
e2e0b3e5 5987 _("Calling remote_async when async is masked"));
ed9a39eb 5988
2acceee2
JM
5989 if (callback != NULL)
5990 {
2cd58942 5991 serial_async (remote_desc, remote_async_serial_handler, NULL);
2acceee2
JM
5992 async_client_callback = callback;
5993 async_client_context = context;
5994 }
5995 else
2cd58942 5996 serial_async (remote_desc, NULL, NULL);
6426a772
JM
5997}
5998
43ff13b4
JM
5999/* Target async and target extended-async.
6000
6001 This are temporary targets, until it is all tested. Eventually
6002 async support will be incorporated int the usual 'remote'
23860348 6003 target. */
43ff13b4
JM
6004
6005static void
c2d11a7d 6006init_remote_async_ops (void)
43ff13b4
JM
6007{
6008 remote_async_ops.to_shortname = "async";
2bc416ba 6009 remote_async_ops.to_longname =
23860348 6010 "Remote serial target in async version of the gdb-specific protocol";
c5aa993b 6011 remote_async_ops.to_doc =
43ff13b4
JM
6012 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
6013Specify the serial device it is connected to (e.g. /dev/ttya).";
c5aa993b
JM
6014 remote_async_ops.to_open = remote_async_open;
6015 remote_async_ops.to_close = remote_close;
6ad8ae5c
DJ
6016 remote_async_ops.to_detach = remote_detach;
6017 remote_async_ops.to_disconnect = remote_disconnect;
c5aa993b
JM
6018 remote_async_ops.to_resume = remote_async_resume;
6019 remote_async_ops.to_wait = remote_async_wait;
6020 remote_async_ops.to_fetch_registers = remote_fetch_registers;
6021 remote_async_ops.to_store_registers = remote_store_registers;
6022 remote_async_ops.to_prepare_to_store = remote_prepare_to_store;
c8e73a31 6023 remote_async_ops.deprecated_xfer_memory = remote_xfer_memory;
c5aa993b 6024 remote_async_ops.to_files_info = remote_files_info;
43ff13b4
JM
6025 remote_async_ops.to_insert_breakpoint = remote_insert_breakpoint;
6026 remote_async_ops.to_remove_breakpoint = remote_remove_breakpoint;
3c3bea1c
GS
6027 remote_async_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
6028 remote_async_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
6029 remote_async_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
6030 remote_async_ops.to_insert_watchpoint = remote_insert_watchpoint;
6031 remote_async_ops.to_remove_watchpoint = remote_remove_watchpoint;
6032 remote_async_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
6033 remote_async_ops.to_stopped_data_address = remote_stopped_data_address;
6426a772
JM
6034 remote_async_ops.to_terminal_inferior = remote_async_terminal_inferior;
6035 remote_async_ops.to_terminal_ours = remote_async_terminal_ours;
c5aa993b
JM
6036 remote_async_ops.to_kill = remote_async_kill;
6037 remote_async_ops.to_load = generic_load;
53a5351d 6038 remote_async_ops.to_mourn_inferior = remote_async_mourn;
c5aa993b
JM
6039 remote_async_ops.to_thread_alive = remote_thread_alive;
6040 remote_async_ops.to_find_new_threads = remote_threads_info;
cf759d3b
ND
6041 remote_async_ops.to_pid_to_str = remote_pid_to_str;
6042 remote_async_ops.to_extra_thread_info = remote_threads_extra_info;
43ff13b4 6043 remote_async_ops.to_stop = remote_stop;
4b8a223f 6044 remote_async_ops.to_xfer_partial = remote_xfer_partial;
96baa820 6045 remote_async_ops.to_rcmd = remote_rcmd;
c5aa993b
JM
6046 remote_async_ops.to_stratum = process_stratum;
6047 remote_async_ops.to_has_all_memory = 1;
6048 remote_async_ops.to_has_memory = 1;
6049 remote_async_ops.to_has_stack = 1;
6050 remote_async_ops.to_has_registers = 1;
6051 remote_async_ops.to_has_execution = 1;
6052 remote_async_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
6426a772
JM
6053 remote_async_ops.to_can_async_p = remote_can_async_p;
6054 remote_async_ops.to_is_async_p = remote_is_async_p;
6055 remote_async_ops.to_async = remote_async;
ed9a39eb 6056 remote_async_ops.to_async_mask_value = 1;
c5aa993b 6057 remote_async_ops.to_magic = OPS_MAGIC;
fd79ecee 6058 remote_async_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
6059 remote_async_ops.to_flash_erase = remote_flash_erase;
6060 remote_async_ops.to_flash_done = remote_flash_done;
43ff13b4
JM
6061}
6062
6063/* Set up the async extended remote vector by making a copy of the standard
6064 remote vector and adding to it. */
6065
6066static void
c2d11a7d 6067init_extended_async_remote_ops (void)
43ff13b4
JM
6068{
6069 extended_async_remote_ops = remote_async_ops;
6070
6071 extended_async_remote_ops.to_shortname = "extended-async";
c5aa993b 6072 extended_async_remote_ops.to_longname =
43ff13b4 6073 "Extended remote serial target in async gdb-specific protocol";
c5aa993b 6074 extended_async_remote_ops.to_doc =
43ff13b4
JM
6075 "Use a remote computer via a serial line, using an async gdb-specific protocol.\n\
6076Specify the serial device it is connected to (e.g. /dev/ttya).",
c5aa993b 6077 extended_async_remote_ops.to_open = extended_remote_async_open;
43ff13b4
JM
6078 extended_async_remote_ops.to_create_inferior = extended_remote_async_create_inferior;
6079 extended_async_remote_ops.to_mourn_inferior = extended_remote_mourn;
6080}
6081
5a2468f5 6082static void
c2d11a7d 6083set_remote_cmd (char *args, int from_tty)
5a2468f5 6084{
427c3a89 6085 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
5a2468f5
JM
6086}
6087
d471ea57
AC
6088static void
6089show_remote_cmd (char *args, int from_tty)
6090{
37a105a1 6091 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 6092 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1
DJ
6093 struct cleanup *showlist_chain;
6094 struct cmd_list_element *list = remote_show_cmdlist;
6095
6096 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
6097 for (; list != NULL; list = list->next)
6098 if (strcmp (list->name, "Z-packet") == 0)
6099 continue;
427c3a89
DJ
6100 else if (list->type == not_set_cmd)
6101 /* Alias commands are exactly like the original, except they
6102 don't have the normal type. */
6103 continue;
6104 else
37a105a1
DJ
6105 {
6106 struct cleanup *option_chain
6107 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
6108 ui_out_field_string (uiout, "name", list->name);
6109 ui_out_text (uiout, ": ");
427c3a89
DJ
6110 if (list->type == show_cmd)
6111 do_setshow_command ((char *) NULL, from_tty, list);
6112 else
6113 cmd_func (list, NULL, from_tty);
37a105a1
DJ
6114 /* Close the tuple. */
6115 do_cleanups (option_chain);
6116 }
427c3a89
DJ
6117
6118 /* Close the tuple. */
6119 do_cleanups (showlist_chain);
d471ea57 6120}
5a2468f5 6121
0f71a2f6 6122static void
fba45db2 6123build_remote_gdbarch_data (void)
0f71a2f6 6124{
d696208f 6125 remote_address_size = TARGET_ADDR_BIT;
0f71a2f6
JM
6126}
6127
23860348 6128/* Saved pointer to previous owner of the new_objfile event. */
dc8acb97
MS
6129static void (*remote_new_objfile_chain) (struct objfile *);
6130
23860348 6131/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
6132static void
6133remote_new_objfile (struct objfile *objfile)
6134{
23860348 6135 if (remote_desc != 0) /* Have a remote connection. */
dc8acb97
MS
6136 {
6137 remote_check_symbols (objfile);
6138 }
23860348 6139 /* Call predecessor on chain, if any. */
f86172a5 6140 if (remote_new_objfile_chain)
dc8acb97
MS
6141 remote_new_objfile_chain (objfile);
6142}
6143
c906108c 6144void
fba45db2 6145_initialize_remote (void)
c906108c 6146{
ea9c271d
DJ
6147 struct remote_state *rs;
6148
0f71a2f6 6149 /* architecture specific data */
2bc416ba 6150 remote_gdbarch_data_handle =
23860348 6151 gdbarch_data_register_post_init (init_remote_state);
d01949b6
AC
6152
6153 /* Old tacky stuff. NOTE: This comes after the remote protocol so
6154 that the remote protocol has been initialized. */
046a4708
AC
6155 DEPRECATED_REGISTER_GDBARCH_SWAP (remote_address_size);
6156 deprecated_register_gdbarch_swap (NULL, 0, build_remote_gdbarch_data);
0f71a2f6 6157
ea9c271d
DJ
6158 /* Initialize the per-target state. At the moment there is only one
6159 of these, not one per target. Only one target is active at a
6160 time. The default buffer size is unimportant; it will be expanded
6161 whenever a larger buffer is needed. */
0b83947e 6162 rs = get_remote_state_raw ();
ea9c271d
DJ
6163 rs->buf_size = 400;
6164 rs->buf = xmalloc (rs->buf_size);
6165
c906108c
SS
6166 init_remote_ops ();
6167 add_target (&remote_ops);
6168
6169 init_extended_remote_ops ();
6170 add_target (&extended_remote_ops);
cce74817 6171
43ff13b4
JM
6172 init_remote_async_ops ();
6173 add_target (&remote_async_ops);
6174
6175 init_extended_async_remote_ops ();
6176 add_target (&extended_async_remote_ops);
6177
dc8acb97 6178 /* Hook into new objfile notification. */
9a4105ab
AC
6179 remote_new_objfile_chain = deprecated_target_new_objfile_hook;
6180 deprecated_target_new_objfile_hook = remote_new_objfile;
dc8acb97 6181
c906108c
SS
6182#if 0
6183 init_remote_threadtests ();
6184#endif
6185
23860348 6186 /* set/show remote ... */
d471ea57 6187
1bedd215 6188 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
6189Remote protocol specific variables\n\
6190Configure various remote-protocol specific variables such as\n\
1bedd215 6191the packets being used"),
cff3e48b 6192 &remote_set_cmdlist, "set remote ",
23860348 6193 0 /* allow-unknown */, &setlist);
1bedd215 6194 add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
5a2468f5
JM
6195Remote protocol specific variables\n\
6196Configure various remote-protocol specific variables such as\n\
1bedd215 6197the packets being used"),
cff3e48b 6198 &remote_show_cmdlist, "show remote ",
23860348 6199 0 /* allow-unknown */, &showlist);
5a2468f5 6200
1a966eab
AC
6201 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
6202Compare section data on target to the exec file.\n\
6203Argument is a single section name (default: all loaded sections)."),
c906108c
SS
6204 &cmdlist);
6205
1a966eab
AC
6206 add_cmd ("packet", class_maintenance, packet_command, _("\
6207Send an arbitrary packet to a remote target.\n\
c906108c
SS
6208 maintenance packet TEXT\n\
6209If GDB is talking to an inferior via the GDB serial protocol, then\n\
6210this command sends the string TEXT to the inferior, and displays the\n\
6211response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 6212terminating `#' character and checksum."),
c906108c
SS
6213 &maintenancelist);
6214
7915a72c
AC
6215 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
6216Set whether to send break if interrupted."), _("\
6217Show whether to send break if interrupted."), _("\
6218If set, a break, instead of a cntrl-c, is sent to the remote target."),
2c5b56ce 6219 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
e707bbc2 6220 &setlist, &showlist);
c906108c 6221
23860348 6222 /* Install commands for configuring memory read/write packets. */
11cf8741 6223
1a966eab
AC
6224 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
6225Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 6226 &setlist);
1a966eab
AC
6227 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
6228Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
6229 &showlist);
6230 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
6231 set_memory_write_packet_size, _("\
6232Set the maximum number of bytes per memory-write packet.\n\
6233Specify the number of bytes in a packet or 0 (zero) for the\n\
6234default packet size. The actual limit is further reduced\n\
6235dependent on the target. Specify ``fixed'' to disable the\n\
6236further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
6237 &remote_set_cmdlist);
6238 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
6239 set_memory_read_packet_size, _("\
6240Set the maximum number of bytes per memory-read packet.\n\
6241Specify the number of bytes in a packet or 0 (zero) for the\n\
6242default packet size. The actual limit is further reduced\n\
6243dependent on the target. Specify ``fixed'' to disable the\n\
6244further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
6245 &remote_set_cmdlist);
6246 add_cmd ("memory-write-packet-size", no_class,
6247 show_memory_write_packet_size,
1a966eab 6248 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
6249 &remote_show_cmdlist);
6250 add_cmd ("memory-read-packet-size", no_class,
6251 show_memory_read_packet_size,
1a966eab 6252 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 6253 &remote_show_cmdlist);
c906108c 6254
b3f42336 6255 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
6256 &remote_hw_watchpoint_limit, _("\
6257Set the maximum number of target hardware watchpoints."), _("\
6258Show the maximum number of target hardware watchpoints."), _("\
6259Specify a negative limit for unlimited."),
2c5b56ce 6260 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
b3f42336
AC
6261 &remote_set_cmdlist, &remote_show_cmdlist);
6262 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
6263 &remote_hw_breakpoint_limit, _("\
6264Set the maximum number of target hardware breakpoints."), _("\
6265Show the maximum number of target hardware breakpoints."), _("\
6266Specify a negative limit for unlimited."),
2c5b56ce 6267 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
b3f42336 6268 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 6269
4d28ad1e
AC
6270 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
6271 &remote_address_size, _("\
6272Set the maximum size of the address (in bits) in a memory packet."), _("\
6273Show the maximum size of the address (in bits) in a memory packet."), NULL,
6274 NULL,
6275 NULL, /* FIXME: i18n: */
6276 &setlist, &showlist);
c906108c 6277
444abaca 6278 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 6279 "X", "binary-download", 1);
0f71a2f6 6280
444abaca 6281 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 6282 "vCont", "verbose-resume", 0);
506fb367 6283
444abaca 6284 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 6285 "qSymbol", "symbol-lookup", 0);
dc8acb97 6286
444abaca 6287 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 6288 "P", "set-register", 1);
d471ea57 6289
444abaca 6290 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 6291 "p", "fetch-register", 1);
b96ec7ac 6292
444abaca 6293 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 6294 "Z0", "software-breakpoint", 0);
d471ea57 6295
444abaca 6296 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 6297 "Z1", "hardware-breakpoint", 0);
d471ea57 6298
444abaca 6299 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 6300 "Z2", "write-watchpoint", 0);
d471ea57 6301
444abaca 6302 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 6303 "Z3", "read-watchpoint", 0);
d471ea57 6304
444abaca 6305 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 6306 "Z4", "access-watchpoint", 0);
d471ea57 6307
0876f84a
DJ
6308 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
6309 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 6310
fd79ecee
DJ
6311 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
6312 "qXfer:memory-map:read", "memory-map", 0);
6313
444abaca 6314 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 6315 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
6316 0);
6317
be2a5f71
DJ
6318 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
6319 "qSupported", "supported-packets", 0);
6320
37a105a1
DJ
6321 /* Keep the old ``set remote Z-packet ...'' working. Each individual
6322 Z sub-packet has its own set and show commands, but users may
6323 have sets to this variable in their .gdbinit files (or in their
6324 documentation). */
e9e68a56 6325 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
6326 &remote_Z_packet_detect, _("\
6327Set use of remote protocol `Z' packets"), _("\
6328Show use of remote protocol `Z' packets "), _("\
3b64bf98 6329When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 6330packets."),
e9e68a56 6331 set_remote_protocol_Z_packet_cmd,
2c5b56ce 6332 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
e9e68a56 6333 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6
CV
6334
6335 /* Eventually initialize fileio. See fileio.c */
6336 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
c906108c 6337}