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