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