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