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