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