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