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