*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / remote.c
CommitLineData
c906108c 1/* Remote target communications for serial-line targets in custom GDB protocol
8926118c 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
MS
2044
2045 if (use_threadextra_query)
2046 {
79d7f229
PA
2047 xsnprintf (rs->buf, get_remote_packet_size (), "qThreadExtraInfo,%lx",
2048 ptid_get_tid (tp->ptid));
2e9f7625 2049 putpkt (rs->buf);
6d820c5c 2050 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2051 if (rs->buf[0] != 0)
9d1f7ab2 2052 {
2e9f7625
DJ
2053 n = min (strlen (rs->buf) / 2, sizeof (display_buf));
2054 result = hex2bin (rs->buf, (gdb_byte *) display_buf, n);
30559e10 2055 display_buf [result] = '\0';
9d1f7ab2
MS
2056 return display_buf;
2057 }
0f71a2f6 2058 }
9d1f7ab2
MS
2059
2060 /* If the above query fails, fall back to the old method. */
2061 use_threadextra_query = 0;
2062 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
2063 | TAG_MOREDISPLAY | TAG_DISPLAY;
79d7f229 2064 int_to_threadref (&id, ptid_get_tid (tp->ptid));
9d1f7ab2
MS
2065 if (remote_get_threadinfo (&id, set, &threadinfo))
2066 if (threadinfo.active)
0f71a2f6 2067 {
9d1f7ab2 2068 if (*threadinfo.shortname)
2bc416ba 2069 n += xsnprintf (&display_buf[0], sizeof (display_buf) - n,
ecbc58df 2070 " Name: %s,", threadinfo.shortname);
9d1f7ab2 2071 if (*threadinfo.display)
2bc416ba 2072 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2073 " State: %s,", threadinfo.display);
9d1f7ab2 2074 if (*threadinfo.more_display)
2bc416ba 2075 n += xsnprintf (&display_buf[n], sizeof (display_buf) - n,
ecbc58df 2076 " Priority: %s", threadinfo.more_display);
9d1f7ab2
MS
2077
2078 if (n > 0)
c5aa993b 2079 {
23860348 2080 /* For purely cosmetic reasons, clear up trailing commas. */
9d1f7ab2
MS
2081 if (',' == display_buf[n-1])
2082 display_buf[n-1] = ' ';
2083 return display_buf;
c5aa993b 2084 }
0f71a2f6 2085 }
9d1f7ab2 2086 return NULL;
0f71a2f6 2087}
c906108c 2088\f
c5aa993b 2089
24b06219 2090/* Restart the remote side; this is an extended protocol operation. */
c906108c
SS
2091
2092static void
fba45db2 2093extended_remote_restart (void)
c906108c 2094{
d01949b6 2095 struct remote_state *rs = get_remote_state ();
c906108c
SS
2096
2097 /* Send the restart command; for reasons I don't understand the
2098 remote side really expects a number after the "R". */
ea9c271d 2099 xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
6d820c5c 2100 putpkt (rs->buf);
c906108c 2101
ad9a8f3f 2102 remote_fileio_reset ();
c906108c
SS
2103}
2104\f
2105/* Clean up connection to a remote debugger. */
2106
c906108c 2107static void
fba45db2 2108remote_close (int quitting)
c906108c
SS
2109{
2110 if (remote_desc)
2cd58942 2111 serial_close (remote_desc);
c906108c
SS
2112 remote_desc = NULL;
2113}
2114
23860348 2115/* Query the remote side for the text, data and bss offsets. */
c906108c
SS
2116
2117static void
fba45db2 2118get_offsets (void)
c906108c 2119{
d01949b6 2120 struct remote_state *rs = get_remote_state ();
2e9f7625 2121 char *buf;
085dd6e6 2122 char *ptr;
31d99776
DJ
2123 int lose, num_segments = 0, do_sections, do_segments;
2124 CORE_ADDR text_addr, data_addr, bss_addr, segments[2];
c906108c 2125 struct section_offsets *offs;
31d99776
DJ
2126 struct symfile_segment_data *data;
2127
2128 if (symfile_objfile == NULL)
2129 return;
c906108c
SS
2130
2131 putpkt ("qOffsets");
6d820c5c 2132 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2133 buf = rs->buf;
c906108c
SS
2134
2135 if (buf[0] == '\000')
2136 return; /* Return silently. Stub doesn't support
23860348 2137 this command. */
c906108c
SS
2138 if (buf[0] == 'E')
2139 {
8a3fe4f8 2140 warning (_("Remote failure reply: %s"), buf);
c906108c
SS
2141 return;
2142 }
2143
2144 /* Pick up each field in turn. This used to be done with scanf, but
2145 scanf will make trouble if CORE_ADDR size doesn't match
2146 conversion directives correctly. The following code will work
2147 with any size of CORE_ADDR. */
2148 text_addr = data_addr = bss_addr = 0;
2149 ptr = buf;
2150 lose = 0;
2151
2152 if (strncmp (ptr, "Text=", 5) == 0)
2153 {
2154 ptr += 5;
2155 /* Don't use strtol, could lose on big values. */
2156 while (*ptr && *ptr != ';')
2157 text_addr = (text_addr << 4) + fromhex (*ptr++);
c906108c 2158
31d99776
DJ
2159 if (strncmp (ptr, ";Data=", 6) == 0)
2160 {
2161 ptr += 6;
2162 while (*ptr && *ptr != ';')
2163 data_addr = (data_addr << 4) + fromhex (*ptr++);
2164 }
2165 else
2166 lose = 1;
2167
2168 if (!lose && strncmp (ptr, ";Bss=", 5) == 0)
2169 {
2170 ptr += 5;
2171 while (*ptr && *ptr != ';')
2172 bss_addr = (bss_addr << 4) + fromhex (*ptr++);
c906108c 2173
31d99776
DJ
2174 if (bss_addr != data_addr)
2175 warning (_("Target reported unsupported offsets: %s"), buf);
2176 }
2177 else
2178 lose = 1;
2179 }
2180 else if (strncmp (ptr, "TextSeg=", 8) == 0)
c906108c 2181 {
31d99776
DJ
2182 ptr += 8;
2183 /* Don't use strtol, could lose on big values. */
c906108c 2184 while (*ptr && *ptr != ';')
31d99776
DJ
2185 text_addr = (text_addr << 4) + fromhex (*ptr++);
2186 num_segments = 1;
2187
2188 if (strncmp (ptr, ";DataSeg=", 9) == 0)
2189 {
2190 ptr += 9;
2191 while (*ptr && *ptr != ';')
2192 data_addr = (data_addr << 4) + fromhex (*ptr++);
2193 num_segments++;
2194 }
c906108c
SS
2195 }
2196 else
2197 lose = 1;
2198
2199 if (lose)
8a3fe4f8 2200 error (_("Malformed response to offset query, %s"), buf);
31d99776
DJ
2201 else if (*ptr != '\0')
2202 warning (_("Target reported unsupported offsets: %s"), buf);
c906108c 2203
802188a7 2204 offs = ((struct section_offsets *)
a39a16c4 2205 alloca (SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections)));
802188a7 2206 memcpy (offs, symfile_objfile->section_offsets,
a39a16c4 2207 SIZEOF_N_SECTION_OFFSETS (symfile_objfile->num_sections));
c906108c 2208
31d99776
DJ
2209 data = get_symfile_segment_data (symfile_objfile->obfd);
2210 do_segments = (data != NULL);
2211 do_sections = num_segments == 0;
c906108c 2212
28c32713 2213 if (num_segments > 0)
31d99776 2214 {
31d99776
DJ
2215 segments[0] = text_addr;
2216 segments[1] = data_addr;
2217 }
28c32713
JB
2218 /* If we have two segments, we can still try to relocate everything
2219 by assuming that the .text and .data offsets apply to the whole
2220 text and data segments. Convert the offsets given in the packet
2221 to base addresses for symfile_map_offsets_to_segments. */
2222 else if (data && data->num_segments == 2)
2223 {
2224 segments[0] = data->segment_bases[0] + text_addr;
2225 segments[1] = data->segment_bases[1] + data_addr;
2226 num_segments = 2;
2227 }
8d385431
DJ
2228 /* If the object file has only one segment, assume that it is text
2229 rather than data; main programs with no writable data are rare,
2230 but programs with no code are useless. Of course the code might
2231 have ended up in the data segment... to detect that we would need
2232 the permissions here. */
2233 else if (data && data->num_segments == 1)
2234 {
2235 segments[0] = data->segment_bases[0] + text_addr;
2236 num_segments = 1;
2237 }
28c32713
JB
2238 /* There's no way to relocate by segment. */
2239 else
2240 do_segments = 0;
31d99776
DJ
2241
2242 if (do_segments)
2243 {
2244 int ret = symfile_map_offsets_to_segments (symfile_objfile->obfd, data,
2245 offs, num_segments, segments);
2246
2247 if (ret == 0 && !do_sections)
2248 error (_("Can not handle qOffsets TextSeg response with this symbol file"));
2249
2250 if (ret > 0)
2251 do_sections = 0;
2252 }
c906108c 2253
9ef895d6
DJ
2254 if (data)
2255 free_symfile_segment_data (data);
31d99776
DJ
2256
2257 if (do_sections)
2258 {
2259 offs->offsets[SECT_OFF_TEXT (symfile_objfile)] = text_addr;
2260
2261 /* This is a temporary kludge to force data and bss to use the same offsets
2262 because that's what nlmconv does now. The real solution requires changes
2263 to the stub and remote.c that I don't have time to do right now. */
2264
2265 offs->offsets[SECT_OFF_DATA (symfile_objfile)] = data_addr;
2266 offs->offsets[SECT_OFF_BSS (symfile_objfile)] = data_addr;
2267 }
c906108c
SS
2268
2269 objfile_relocate (symfile_objfile, offs);
2270}
2271
8621d6a9 2272/* Stub for catch_exception. */
0f71a2f6 2273
2d717e4f
DJ
2274struct start_remote_args
2275{
2276 int from_tty;
2277
2278 /* The current target. */
2279 struct target_ops *target;
2280
2281 /* Non-zero if this is an extended-remote target. */
2282 int extended_p;
2283};
2284
9cbc821d 2285static void
2d717e4f 2286remote_start_remote (struct ui_out *uiout, void *opaque)
c906108c 2287{
2d717e4f
DJ
2288 struct remote_state *rs = get_remote_state ();
2289 struct start_remote_args *args = opaque;
2290 char *wait_status = NULL;
8621d6a9 2291
23860348 2292 immediate_quit++; /* Allow user to interrupt it. */
c906108c
SS
2293
2294 /* Ack any packet which the remote side has already sent. */
2cd58942 2295 serial_write (remote_desc, "+", 1);
c906108c 2296
2d717e4f
DJ
2297 /* Check whether the target is running now. */
2298 putpkt ("?");
2299 getpkt (&rs->buf, &rs->buf_size, 0);
2300
2301 if (rs->buf[0] == 'W' || rs->buf[0] == 'X')
2302 {
2303 if (args->extended_p)
2304 {
2305 /* We're connected, but not running. Drop out before we
2306 call start_remote. */
2307 target_mark_exited (args->target);
2308 return;
2309 }
2310 else
2311 error (_("The target is not running (try extended-remote?)"));
2312 }
2313 else
2314 {
2315 if (args->extended_p)
2316 target_mark_running (args->target);
2317
2318 /* Save the reply for later. */
2319 wait_status = alloca (strlen (rs->buf) + 1);
2320 strcpy (wait_status, rs->buf);
2321 }
2322
c0a2216e
PA
2323 /* Start afresh. */
2324 init_thread_list ();
2325
c906108c 2326 /* Let the stub know that we want it to return the thread. */
79d7f229 2327 set_continue_thread (minus_one_ptid);
c906108c 2328
2d717e4f
DJ
2329 /* Without this, some commands which require an active target
2330 (such as kill) won't work. This variable serves (at least)
2331 double duty as both the pid of the target process (if it has
2332 such), and as a flag indicating that a target is active.
2333 These functions should be split out into seperate variables,
2334 especially since GDB will someday have a notion of debugging
2335 several processes. */
79d7f229 2336 inferior_ptid = magic_null_ptid;
2d717e4f
DJ
2337
2338 /* Now, if we have thread information, update inferior_ptid. */
39f77062 2339 inferior_ptid = remote_current_thread (inferior_ptid);
c906108c 2340
c0a2216e
PA
2341 /* Always add the main thread. */
2342 add_thread_silent (inferior_ptid);
2343
23860348 2344 get_offsets (); /* Get text, data & bss offsets. */
c906108c 2345
2d717e4f
DJ
2346 /* Use the previously fetched status. */
2347 gdb_assert (wait_status != NULL);
2348 strcpy (rs->buf, wait_status);
2349 rs->cached_wait_status = 1;
c906108c 2350
2d717e4f
DJ
2351 immediate_quit--;
2352 start_remote (args->from_tty); /* Initialize gdb process mechanisms. */
c906108c
SS
2353}
2354
2355/* Open a connection to a remote debugger.
2356 NAME is the filename used for communication. */
2357
2358static void
fba45db2 2359remote_open (char *name, int from_tty)
c906108c 2360{
75c99385 2361 remote_open_1 (name, from_tty, &remote_ops, 0);
43ff13b4
JM
2362}
2363
c906108c
SS
2364/* Open a connection to a remote debugger using the extended
2365 remote gdb protocol. NAME is the filename used for communication. */
2366
2367static void
fba45db2 2368extended_remote_open (char *name, int from_tty)
c906108c 2369{
75c99385 2370 remote_open_1 (name, from_tty, &extended_remote_ops, 1 /*extended_p */);
43ff13b4
JM
2371}
2372
c906108c
SS
2373/* Generic code for opening a connection to a remote target. */
2374
d471ea57
AC
2375static void
2376init_all_packet_configs (void)
2377{
2378 int i;
444abaca
DJ
2379 for (i = 0; i < PACKET_MAX; i++)
2380 update_packet_config (&remote_protocol_packets[i]);
d471ea57
AC
2381}
2382
23860348 2383/* Symbol look-up. */
dc8acb97
MS
2384
2385static void
2386remote_check_symbols (struct objfile *objfile)
2387{
d01949b6 2388 struct remote_state *rs = get_remote_state ();
dc8acb97
MS
2389 char *msg, *reply, *tmp;
2390 struct minimal_symbol *sym;
2391 int end;
2392
444abaca 2393 if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
dc8acb97
MS
2394 return;
2395
6d820c5c
DJ
2396 /* Allocate a message buffer. We can't reuse the input buffer in RS,
2397 because we need both at the same time. */
ea9c271d 2398 msg = alloca (get_remote_packet_size ());
6d820c5c 2399
23860348 2400 /* Invite target to request symbol lookups. */
dc8acb97
MS
2401
2402 putpkt ("qSymbol::");
6d820c5c
DJ
2403 getpkt (&rs->buf, &rs->buf_size, 0);
2404 packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
2e9f7625 2405 reply = rs->buf;
dc8acb97
MS
2406
2407 while (strncmp (reply, "qSymbol:", 8) == 0)
2408 {
2409 tmp = &reply[8];
cfd77fa1 2410 end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
dc8acb97
MS
2411 msg[end] = '\0';
2412 sym = lookup_minimal_symbol (msg, NULL, NULL);
2413 if (sym == NULL)
ea9c271d 2414 xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
dc8acb97 2415 else
2bbe3cc1
DJ
2416 {
2417 CORE_ADDR sym_addr = SYMBOL_VALUE_ADDRESS (sym);
2418
2419 /* If this is a function address, return the start of code
2420 instead of any data function descriptor. */
2421 sym_addr = gdbarch_convert_from_func_ptr_addr (current_gdbarch,
2422 sym_addr,
2423 &current_target);
2424
2425 xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
2426 paddr_nz (sym_addr), &reply[8]);
2427 }
2428
dc8acb97 2429 putpkt (msg);
6d820c5c 2430 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 2431 reply = rs->buf;
dc8acb97
MS
2432 }
2433}
2434
9db8d71f
DJ
2435static struct serial *
2436remote_serial_open (char *name)
2437{
2438 static int udp_warning = 0;
2439
2440 /* FIXME: Parsing NAME here is a hack. But we want to warn here instead
2441 of in ser-tcp.c, because it is the remote protocol assuming that the
2442 serial connection is reliable and not the serial connection promising
2443 to be. */
2444 if (!udp_warning && strncmp (name, "udp:", 4) == 0)
2445 {
8a3fe4f8
AC
2446 warning (_("\
2447The remote protocol may be unreliable over UDP.\n\
2448Some events may be lost, rendering further debugging impossible."));
9db8d71f
DJ
2449 udp_warning = 1;
2450 }
2451
2452 return serial_open (name);
2453}
2454
be2a5f71
DJ
2455/* This type describes each known response to the qSupported
2456 packet. */
2457struct protocol_feature
2458{
2459 /* The name of this protocol feature. */
2460 const char *name;
2461
2462 /* The default for this protocol feature. */
2463 enum packet_support default_support;
2464
2465 /* The function to call when this feature is reported, or after
2466 qSupported processing if the feature is not supported.
2467 The first argument points to this structure. The second
2468 argument indicates whether the packet requested support be
2469 enabled, disabled, or probed (or the default, if this function
2470 is being called at the end of processing and this feature was
2471 not reported). The third argument may be NULL; if not NULL, it
2472 is a NUL-terminated string taken from the packet following
2473 this feature's name and an equals sign. */
2474 void (*func) (const struct protocol_feature *, enum packet_support,
2475 const char *);
2476
2477 /* The corresponding packet for this feature. Only used if
2478 FUNC is remote_supported_packet. */
2479 int packet;
2480};
2481
be2a5f71
DJ
2482static void
2483remote_supported_packet (const struct protocol_feature *feature,
2484 enum packet_support support,
2485 const char *argument)
2486{
2487 if (argument)
2488 {
2489 warning (_("Remote qSupported response supplied an unexpected value for"
2490 " \"%s\"."), feature->name);
2491 return;
2492 }
2493
2494 if (remote_protocol_packets[feature->packet].support
2495 == PACKET_SUPPORT_UNKNOWN)
2496 remote_protocol_packets[feature->packet].support = support;
2497}
be2a5f71
DJ
2498
2499static void
2500remote_packet_size (const struct protocol_feature *feature,
2501 enum packet_support support, const char *value)
2502{
2503 struct remote_state *rs = get_remote_state ();
2504
2505 int packet_size;
2506 char *value_end;
2507
2508 if (support != PACKET_ENABLE)
2509 return;
2510
2511 if (value == NULL || *value == '\0')
2512 {
2513 warning (_("Remote target reported \"%s\" without a size."),
2514 feature->name);
2515 return;
2516 }
2517
2518 errno = 0;
2519 packet_size = strtol (value, &value_end, 16);
2520 if (errno != 0 || *value_end != '\0' || packet_size < 0)
2521 {
2522 warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
2523 feature->name, value);
2524 return;
2525 }
2526
2527 if (packet_size > MAX_REMOTE_PACKET_SIZE)
2528 {
2529 warning (_("limiting remote suggested packet size (%d bytes) to %d"),
2530 packet_size, MAX_REMOTE_PACKET_SIZE);
2531 packet_size = MAX_REMOTE_PACKET_SIZE;
2532 }
2533
2534 /* Record the new maximum packet size. */
2535 rs->explicit_packet_size = packet_size;
2536}
2537
2538static struct protocol_feature remote_protocol_features[] = {
0876f84a 2539 { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 },
40e57cf2 2540 { "qXfer:auxv:read", PACKET_DISABLE, remote_supported_packet,
fd79ecee 2541 PACKET_qXfer_auxv },
23181151
DJ
2542 { "qXfer:features:read", PACKET_DISABLE, remote_supported_packet,
2543 PACKET_qXfer_features },
cfa9d6d9
DJ
2544 { "qXfer:libraries:read", PACKET_DISABLE, remote_supported_packet,
2545 PACKET_qXfer_libraries },
fd79ecee 2546 { "qXfer:memory-map:read", PACKET_DISABLE, remote_supported_packet,
89be2091 2547 PACKET_qXfer_memory_map },
4de6483e
UW
2548 { "qXfer:spu:read", PACKET_DISABLE, remote_supported_packet,
2549 PACKET_qXfer_spu_read },
2550 { "qXfer:spu:write", PACKET_DISABLE, remote_supported_packet,
2551 PACKET_qXfer_spu_write },
89be2091
DJ
2552 { "QPassSignals", PACKET_DISABLE, remote_supported_packet,
2553 PACKET_QPassSignals },
be2a5f71
DJ
2554};
2555
2556static void
2557remote_query_supported (void)
2558{
2559 struct remote_state *rs = get_remote_state ();
2560 char *next;
2561 int i;
2562 unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
2563
2564 /* The packet support flags are handled differently for this packet
2565 than for most others. We treat an error, a disabled packet, and
2566 an empty response identically: any features which must be reported
2567 to be used will be automatically disabled. An empty buffer
2568 accomplishes this, since that is also the representation for a list
2569 containing no features. */
2570
2571 rs->buf[0] = 0;
2572 if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
2573 {
2574 putpkt ("qSupported");
2575 getpkt (&rs->buf, &rs->buf_size, 0);
2576
2577 /* If an error occured, warn, but do not return - just reset the
2578 buffer to empty and go on to disable features. */
2579 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
2580 == PACKET_ERROR)
2581 {
2582 warning (_("Remote failure reply: %s"), rs->buf);
2583 rs->buf[0] = 0;
2584 }
2585 }
2586
2587 memset (seen, 0, sizeof (seen));
2588
2589 next = rs->buf;
2590 while (*next)
2591 {
2592 enum packet_support is_supported;
2593 char *p, *end, *name_end, *value;
2594
2595 /* First separate out this item from the rest of the packet. If
2596 there's another item after this, we overwrite the separator
2597 (terminated strings are much easier to work with). */
2598 p = next;
2599 end = strchr (p, ';');
2600 if (end == NULL)
2601 {
2602 end = p + strlen (p);
2603 next = end;
2604 }
2605 else
2606 {
89be2091
DJ
2607 *end = '\0';
2608 next = end + 1;
2609
be2a5f71
DJ
2610 if (end == p)
2611 {
2612 warning (_("empty item in \"qSupported\" response"));
2613 continue;
2614 }
be2a5f71
DJ
2615 }
2616
2617 name_end = strchr (p, '=');
2618 if (name_end)
2619 {
2620 /* This is a name=value entry. */
2621 is_supported = PACKET_ENABLE;
2622 value = name_end + 1;
2623 *name_end = '\0';
2624 }
2625 else
2626 {
2627 value = NULL;
2628 switch (end[-1])
2629 {
2630 case '+':
2631 is_supported = PACKET_ENABLE;
2632 break;
2633
2634 case '-':
2635 is_supported = PACKET_DISABLE;
2636 break;
2637
2638 case '?':
2639 is_supported = PACKET_SUPPORT_UNKNOWN;
2640 break;
2641
2642 default:
2643 warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
2644 continue;
2645 }
2646 end[-1] = '\0';
2647 }
2648
2649 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
2650 if (strcmp (remote_protocol_features[i].name, p) == 0)
2651 {
2652 const struct protocol_feature *feature;
2653
2654 seen[i] = 1;
2655 feature = &remote_protocol_features[i];
2656 feature->func (feature, is_supported, value);
2657 break;
2658 }
2659 }
2660
2661 /* If we increased the packet size, make sure to increase the global
2662 buffer size also. We delay this until after parsing the entire
2663 qSupported packet, because this is the same buffer we were
2664 parsing. */
2665 if (rs->buf_size < rs->explicit_packet_size)
2666 {
2667 rs->buf_size = rs->explicit_packet_size;
2668 rs->buf = xrealloc (rs->buf, rs->buf_size);
2669 }
2670
2671 /* Handle the defaults for unmentioned features. */
2672 for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
2673 if (!seen[i])
2674 {
2675 const struct protocol_feature *feature;
2676
2677 feature = &remote_protocol_features[i];
2678 feature->func (feature, feature->default_support, NULL);
2679 }
2680}
2681
2682
c906108c 2683static void
75c99385 2684remote_open_1 (char *name, int from_tty, struct target_ops *target, int extended_p)
c906108c 2685{
d01949b6 2686 struct remote_state *rs = get_remote_state ();
c906108c 2687 if (name == 0)
8a3fe4f8 2688 error (_("To open a remote debug connection, you need to specify what\n"
22e04375 2689 "serial device is attached to the remote system\n"
8a3fe4f8 2690 "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
c906108c 2691
23860348 2692 /* See FIXME above. */
75c99385 2693 if (!remote_async_permitted)
92d1e331 2694 wait_forever_enabled_p = 1;
6426a772 2695
2d717e4f
DJ
2696 /* If we're connected to a running target, target_preopen will kill it.
2697 But if we're connected to a target system with no running process,
2698 then we will still be connected when it returns. Ask this question
2699 first, before target_preopen has a chance to kill anything. */
2700 if (remote_desc != NULL && !target_has_execution)
2701 {
2702 if (!from_tty
2703 || query (_("Already connected to a remote target. Disconnect? ")))
2704 pop_target ();
2705 else
2706 error (_("Still connected."));
2707 }
2708
c906108c
SS
2709 target_preopen (from_tty);
2710
2711 unpush_target (target);
2712
2d717e4f
DJ
2713 /* This time without a query. If we were connected to an
2714 extended-remote target and target_preopen killed the running
2715 process, we may still be connected. If we are starting "target
2716 remote" now, the extended-remote target will not have been
2717 removed by unpush_target. */
2718 if (remote_desc != NULL && !target_has_execution)
2719 pop_target ();
2720
89be2091
DJ
2721 /* Make sure we send the passed signals list the next time we resume. */
2722 xfree (last_pass_packet);
2723 last_pass_packet = NULL;
2724
ad9a8f3f 2725 remote_fileio_reset ();
1dd41f16
NS
2726 reopen_exec_file ();
2727 reread_symbols ();
2728
9db8d71f 2729 remote_desc = remote_serial_open (name);
c906108c
SS
2730 if (!remote_desc)
2731 perror_with_name (name);
2732
2733 if (baud_rate != -1)
2734 {
2cd58942 2735 if (serial_setbaudrate (remote_desc, baud_rate))
c906108c 2736 {
9b74d5d3
KB
2737 /* The requested speed could not be set. Error out to
2738 top level after closing remote_desc. Take care to
2739 set remote_desc to NULL to avoid closing remote_desc
2740 more than once. */
2cd58942 2741 serial_close (remote_desc);
9b74d5d3 2742 remote_desc = NULL;
c906108c
SS
2743 perror_with_name (name);
2744 }
2745 }
2746
2cd58942 2747 serial_raw (remote_desc);
c906108c
SS
2748
2749 /* If there is something sitting in the buffer we might take it as a
2750 response to a command, which would be bad. */
2cd58942 2751 serial_flush_input (remote_desc);
c906108c
SS
2752
2753 if (from_tty)
2754 {
2755 puts_filtered ("Remote debugging using ");
2756 puts_filtered (name);
2757 puts_filtered ("\n");
2758 }
23860348 2759 push_target (target); /* Switch to using remote target now. */
c906108c 2760
2d717e4f
DJ
2761 /* Assume that the target is running, unless we learn otherwise. */
2762 target_mark_running (target);
2763
be2a5f71
DJ
2764 /* Reset the target state; these things will be queried either by
2765 remote_query_supported or as they are needed. */
d471ea57 2766 init_all_packet_configs ();
be2a5f71 2767 rs->explicit_packet_size = 0;
802188a7 2768
79d7f229
PA
2769 general_thread = not_sent_ptid;
2770 continue_thread = not_sent_ptid;
c906108c 2771
9d1f7ab2
MS
2772 /* Probe for ability to use "ThreadInfo" query, as required. */
2773 use_threadinfo_query = 1;
2774 use_threadextra_query = 1;
2775
be2a5f71
DJ
2776 /* The first packet we send to the target is the optional "supported
2777 packets" request. If the target can answer this, it will tell us
2778 which later probes to skip. */
2779 remote_query_supported ();
2780
424163ea
DJ
2781 /* Next, if the target can specify a description, read it. We do
2782 this before anything involving memory or registers. */
2783 target_find_description ();
2784
75c99385 2785 if (remote_async_permitted)
92d1e331 2786 {
23860348 2787 /* With this target we start out by owning the terminal. */
92d1e331
DJ
2788 remote_async_terminal_ours_p = 1;
2789
2790 /* FIXME: cagney/1999-09-23: During the initial connection it is
2791 assumed that the target is already ready and able to respond to
2792 requests. Unfortunately remote_start_remote() eventually calls
2793 wait_for_inferior() with no timeout. wait_forever_enabled_p gets
2794 around this. Eventually a mechanism that allows
2795 wait_for_inferior() to expect/get timeouts will be
23860348 2796 implemented. */
92d1e331
DJ
2797 wait_forever_enabled_p = 0;
2798 }
2799
23860348 2800 /* First delete any symbols previously loaded from shared libraries. */
f78f6cf1 2801 no_shared_libraries (NULL, 0);
f78f6cf1 2802
36918e70 2803 /* Start the remote connection. If error() or QUIT, discard this
165b8e33
AC
2804 target (we'd otherwise be in an inconsistent state) and then
2805 propogate the error on up the exception chain. This ensures that
2806 the caller doesn't stumble along blindly assuming that the
2807 function succeeded. The CLI doesn't have this problem but other
2808 UI's, such as MI do.
36918e70
AC
2809
2810 FIXME: cagney/2002-05-19: Instead of re-throwing the exception,
2811 this function should return an error indication letting the
ce2826aa 2812 caller restore the previous state. Unfortunately the command
36918e70
AC
2813 ``target remote'' is directly wired to this function making that
2814 impossible. On a positive note, the CLI side of this problem has
2815 been fixed - the function set_cmd_context() makes it possible for
2816 all the ``target ....'' commands to share a common callback
2817 function. See cli-dump.c. */
109c3e39 2818 {
2d717e4f
DJ
2819 struct gdb_exception ex;
2820 struct start_remote_args args;
2821
2822 args.from_tty = from_tty;
2823 args.target = target;
2824 args.extended_p = extended_p;
2825
2826 ex = catch_exception (uiout, remote_start_remote, &args, RETURN_MASK_ALL);
109c3e39
AC
2827 if (ex.reason < 0)
2828 {
2829 pop_target ();
75c99385 2830 if (remote_async_permitted)
109c3e39
AC
2831 wait_forever_enabled_p = 1;
2832 throw_exception (ex);
2833 }
2834 }
c906108c 2835
75c99385 2836 if (remote_async_permitted)
92d1e331 2837 wait_forever_enabled_p = 1;
6426a772
JM
2838
2839 if (extended_p)
43ff13b4 2840 {
6240bebf 2841 /* Tell the remote that we are using the extended protocol. */
6426a772 2842 putpkt ("!");
6d820c5c 2843 getpkt (&rs->buf, &rs->buf_size, 0);
43ff13b4 2844 }
a77053c2 2845
2d717e4f
DJ
2846 /* If we connected to a live target, do some additional setup. */
2847 if (target_has_execution)
2848 {
2849 if (exec_bfd) /* No use without an exec file. */
2850 remote_check_symbols (symfile_objfile);
2851 }
43ff13b4
JM
2852}
2853
c906108c
SS
2854/* This takes a program previously attached to and detaches it. After
2855 this is done, GDB can be used to debug some other program. We
2856 better not have left any breakpoints in the target program or it'll
2857 die when it hits one. */
2858
2859static void
2d717e4f 2860remote_detach_1 (char *args, int from_tty, int extended)
c906108c 2861{
d01949b6 2862 struct remote_state *rs = get_remote_state ();
c906108c
SS
2863
2864 if (args)
8a3fe4f8 2865 error (_("Argument given to \"detach\" when remotely debugging."));
c906108c 2866
2d717e4f
DJ
2867 if (!target_has_execution)
2868 error (_("No process to detach from."));
2869
c906108c 2870 /* Tell the remote target to detach. */
6d820c5c 2871 strcpy (rs->buf, "D");
4ddda9b5
PA
2872 putpkt (rs->buf);
2873 getpkt (&rs->buf, &rs->buf_size, 0);
2874
2875 if (rs->buf[0] == 'E')
2876 error (_("Can't detach process."));
c906108c 2877
23860348 2878 /* Unregister the file descriptor from the event loop. */
6ad8ae5c
DJ
2879 if (target_is_async_p ())
2880 serial_async (remote_desc, NULL, 0);
2881
cca728d0 2882 target_mourn_inferior ();
c906108c 2883 if (from_tty)
2d717e4f
DJ
2884 {
2885 if (extended)
2886 puts_filtered ("Detached from remote process.\n");
2887 else
2888 puts_filtered ("Ending remote debugging.\n");
2889 }
2890}
2891
2892static void
2893remote_detach (char *args, int from_tty)
2894{
2895 remote_detach_1 (args, from_tty, 0);
2896}
2897
2898static void
2899extended_remote_detach (char *args, int from_tty)
2900{
2901 remote_detach_1 (args, from_tty, 1);
c906108c
SS
2902}
2903
6ad8ae5c
DJ
2904/* Same as remote_detach, but don't send the "D" packet; just disconnect. */
2905
43ff13b4 2906static void
597320e7 2907remote_disconnect (struct target_ops *target, char *args, int from_tty)
43ff13b4 2908{
43ff13b4 2909 if (args)
2d717e4f 2910 error (_("Argument given to \"disconnect\" when remotely debugging."));
43ff13b4 2911
23860348 2912 /* Unregister the file descriptor from the event loop. */
ed9a39eb 2913 if (target_is_async_p ())
2cd58942 2914 serial_async (remote_desc, NULL, 0);
43ff13b4 2915
2d717e4f
DJ
2916 /* Make sure we unpush even the extended remote targets; mourn
2917 won't do it. So call remote_mourn_1 directly instead of
2918 target_mourn_inferior. */
2919 remote_mourn_1 (target);
2920
43ff13b4
JM
2921 if (from_tty)
2922 puts_filtered ("Ending remote debugging.\n");
2923}
2924
2d717e4f
DJ
2925/* Attach to the process specified by ARGS. If FROM_TTY is non-zero,
2926 be chatty about it. */
2927
2928static void
2929extended_remote_attach_1 (struct target_ops *target, char *args, int from_tty)
2930{
2931 struct remote_state *rs = get_remote_state ();
be86555c 2932 int pid;
2d717e4f 2933 char *dummy;
96ef3384 2934 char *wait_status = NULL;
2d717e4f
DJ
2935
2936 if (!args)
2937 error_no_arg (_("process-id to attach"));
2938
2939 dummy = args;
2940 pid = strtol (args, &dummy, 0);
2941 /* Some targets don't set errno on errors, grrr! */
2942 if (pid == 0 && args == dummy)
2943 error (_("Illegal process-id: %s."), args);
2944
2945 if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
2946 error (_("This target does not support attaching to a process"));
2947
2948 sprintf (rs->buf, "vAttach;%x", pid);
2949 putpkt (rs->buf);
2950 getpkt (&rs->buf, &rs->buf_size, 0);
2951
2952 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vAttach]) == PACKET_OK)
2953 {
2954 if (from_tty)
2955 printf_unfiltered (_("Attached to %s\n"),
2956 target_pid_to_str (pid_to_ptid (pid)));
2957
96ef3384
UW
2958 /* Save the reply for later. */
2959 wait_status = alloca (strlen (rs->buf) + 1);
2960 strcpy (wait_status, rs->buf);
2d717e4f
DJ
2961 }
2962 else if (remote_protocol_packets[PACKET_vAttach].support == PACKET_DISABLE)
2963 error (_("This target does not support attaching to a process"));
2964 else
2965 error (_("Attaching to %s failed"),
2966 target_pid_to_str (pid_to_ptid (pid)));
2967
2968 target_mark_running (target);
2969 inferior_ptid = pid_to_ptid (pid);
79d7f229
PA
2970
2971 /* Now, if we have thread information, update inferior_ptid. */
2972 inferior_ptid = remote_current_thread (inferior_ptid);
2973
c0a2216e
PA
2974 /* Now, add the main thread to the thread list. */
2975 add_thread_silent (inferior_ptid);
2976
df7df359 2977 attach_flag = 1;
96ef3384
UW
2978
2979 /* Next, if the target can specify a description, read it. We do
2980 this before anything involving memory or registers. */
2981 target_find_description ();
2982
2983 /* Use the previously fetched status. */
2984 gdb_assert (wait_status != NULL);
2985 strcpy (rs->buf, wait_status);
2986 rs->cached_wait_status = 1;
2d717e4f
DJ
2987}
2988
2989static void
2990extended_remote_attach (char *args, int from_tty)
2991{
2992 extended_remote_attach_1 (&extended_remote_ops, args, from_tty);
2993}
2994
c906108c
SS
2995/* Convert hex digit A to a number. */
2996
30559e10 2997static int
fba45db2 2998fromhex (int a)
c906108c
SS
2999{
3000 if (a >= '0' && a <= '9')
3001 return a - '0';
3002 else if (a >= 'a' && a <= 'f')
3003 return a - 'a' + 10;
3004 else if (a >= 'A' && a <= 'F')
3005 return a - 'A' + 10;
c5aa993b 3006 else
8a3fe4f8 3007 error (_("Reply contains invalid hex digit %d"), a);
c906108c
SS
3008}
3009
30559e10 3010static int
cfd77fa1 3011hex2bin (const char *hex, gdb_byte *bin, int count)
30559e10
MS
3012{
3013 int i;
3014
30559e10
MS
3015 for (i = 0; i < count; i++)
3016 {
3017 if (hex[0] == 0 || hex[1] == 0)
3018 {
3019 /* Hex string is short, or of uneven length.
23860348 3020 Return the count that has been converted so far. */
30559e10
MS
3021 return i;
3022 }
3023 *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
3024 hex += 2;
3025 }
3026 return i;
3027}
3028
c906108c
SS
3029/* Convert number NIB to a hex digit. */
3030
3031static int
fba45db2 3032tohex (int nib)
c906108c
SS
3033{
3034 if (nib < 10)
c5aa993b 3035 return '0' + nib;
c906108c 3036 else
c5aa993b 3037 return 'a' + nib - 10;
c906108c 3038}
30559e10
MS
3039
3040static int
cfd77fa1 3041bin2hex (const gdb_byte *bin, char *hex, int count)
30559e10
MS
3042{
3043 int i;
23860348 3044 /* May use a length, or a nul-terminated string as input. */
30559e10 3045 if (count == 0)
cfd77fa1 3046 count = strlen ((char *) bin);
30559e10
MS
3047
3048 for (i = 0; i < count; i++)
3049 {
3050 *hex++ = tohex ((*bin >> 4) & 0xf);
3051 *hex++ = tohex (*bin++ & 0xf);
3052 }
3053 *hex = 0;
3054 return i;
3055}
c906108c 3056\f
506fb367
DJ
3057/* Check for the availability of vCont. This function should also check
3058 the response. */
c906108c
SS
3059
3060static void
6d820c5c 3061remote_vcont_probe (struct remote_state *rs)
c906108c 3062{
2e9f7625 3063 char *buf;
6d820c5c 3064
2e9f7625
DJ
3065 strcpy (rs->buf, "vCont?");
3066 putpkt (rs->buf);
6d820c5c 3067 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 3068 buf = rs->buf;
c906108c 3069
506fb367
DJ
3070 /* Make sure that the features we assume are supported. */
3071 if (strncmp (buf, "vCont", 5) == 0)
3072 {
3073 char *p = &buf[5];
3074 int support_s, support_S, support_c, support_C;
3075
3076 support_s = 0;
3077 support_S = 0;
3078 support_c = 0;
3079 support_C = 0;
3080 while (p && *p == ';')
3081 {
3082 p++;
3083 if (*p == 's' && (*(p + 1) == ';' || *(p + 1) == 0))
3084 support_s = 1;
3085 else if (*p == 'S' && (*(p + 1) == ';' || *(p + 1) == 0))
3086 support_S = 1;
3087 else if (*p == 'c' && (*(p + 1) == ';' || *(p + 1) == 0))
3088 support_c = 1;
3089 else if (*p == 'C' && (*(p + 1) == ';' || *(p + 1) == 0))
3090 support_C = 1;
3091
3092 p = strchr (p, ';');
3093 }
c906108c 3094
506fb367
DJ
3095 /* If s, S, c, and C are not all supported, we can't use vCont. Clearing
3096 BUF will make packet_ok disable the packet. */
3097 if (!support_s || !support_S || !support_c || !support_C)
3098 buf[0] = 0;
3099 }
c906108c 3100
444abaca 3101 packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
506fb367 3102}
c906108c 3103
506fb367
DJ
3104/* Resume the remote inferior by using a "vCont" packet. The thread
3105 to be resumed is PTID; STEP and SIGGNAL indicate whether the
79d7f229
PA
3106 resumed thread should be single-stepped and/or signalled. If PTID
3107 equals minus_one_ptid, then all threads are resumed; the thread to
3108 be stepped and/or signalled is given in the global INFERIOR_PTID.
3109 This function returns non-zero iff it resumes the inferior.
44eaed12 3110
506fb367
DJ
3111 This function issues a strict subset of all possible vCont commands at the
3112 moment. */
44eaed12 3113
506fb367
DJ
3114static int
3115remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
3116{
3117 struct remote_state *rs = get_remote_state ();
2d717e4f 3118 char *outbuf;
506fb367 3119 struct cleanup *old_cleanup;
44eaed12 3120
444abaca 3121 if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
6d820c5c 3122 remote_vcont_probe (rs);
44eaed12 3123
444abaca 3124 if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
6d820c5c 3125 return 0;
44eaed12 3126
506fb367
DJ
3127 /* If we could generate a wider range of packets, we'd have to worry
3128 about overflowing BUF. Should there be a generic
3129 "multi-part-packet" packet? */
3130
79d7f229 3131 if (ptid_equal (ptid, magic_null_ptid))
c906108c 3132 {
79d7f229
PA
3133 /* MAGIC_NULL_PTID means that we don't have any active threads,
3134 so we don't have any TID numbers the inferior will
3135 understand. Make sure to only send forms that do not specify
3136 a TID. */
506fb367 3137 if (step && siggnal != TARGET_SIGNAL_0)
2963ee1d 3138 outbuf = xstrprintf ("vCont;S%02x", siggnal);
506fb367 3139 else if (step)
2963ee1d 3140 outbuf = xstrprintf ("vCont;s");
506fb367 3141 else if (siggnal != TARGET_SIGNAL_0)
2963ee1d 3142 outbuf = xstrprintf ("vCont;C%02x", siggnal);
506fb367 3143 else
2963ee1d 3144 outbuf = xstrprintf ("vCont;c");
506fb367 3145 }
79d7f229 3146 else if (ptid_equal (ptid, minus_one_ptid))
506fb367
DJ
3147 {
3148 /* Resume all threads, with preference for INFERIOR_PTID. */
79d7f229 3149 int tid = ptid_get_tid (inferior_ptid);
506fb367 3150 if (step && siggnal != TARGET_SIGNAL_0)
79d7f229 3151 outbuf = xstrprintf ("vCont;S%02x:%x;c", siggnal, tid);
506fb367 3152 else if (step)
79d7f229 3153 outbuf = xstrprintf ("vCont;s:%x;c", tid);
506fb367 3154 else if (siggnal != TARGET_SIGNAL_0)
79d7f229 3155 outbuf = xstrprintf ("vCont;C%02x:%x;c", siggnal, tid);
506fb367 3156 else
2963ee1d 3157 outbuf = xstrprintf ("vCont;c");
c906108c
SS
3158 }
3159 else
506fb367
DJ
3160 {
3161 /* Scheduler locking; resume only PTID. */
79d7f229 3162 int tid = ptid_get_tid (ptid);
506fb367 3163 if (step && siggnal != TARGET_SIGNAL_0)
79d7f229 3164 outbuf = xstrprintf ("vCont;S%02x:%x", siggnal, tid);
506fb367 3165 else if (step)
79d7f229 3166 outbuf = xstrprintf ("vCont;s:%x", tid);
506fb367 3167 else if (siggnal != TARGET_SIGNAL_0)
79d7f229 3168 outbuf = xstrprintf ("vCont;C%02x:%x", siggnal, tid);
506fb367 3169 else
79d7f229 3170 outbuf = xstrprintf ("vCont;c:%x", tid);
506fb367 3171 }
c906108c 3172
ea9c271d 3173 gdb_assert (outbuf && strlen (outbuf) < get_remote_packet_size ());
6d820c5c 3174 old_cleanup = make_cleanup (xfree, outbuf);
2963ee1d
DJ
3175
3176 putpkt (outbuf);
506fb367
DJ
3177
3178 do_cleanups (old_cleanup);
3179
3180 return 1;
c906108c 3181}
43ff13b4 3182
506fb367
DJ
3183/* Tell the remote machine to resume. */
3184
3185static enum target_signal last_sent_signal = TARGET_SIGNAL_0;
3186
3187static int last_sent_step;
3188
43ff13b4 3189static void
506fb367 3190remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
43ff13b4 3191{
d01949b6 3192 struct remote_state *rs = get_remote_state ();
2e9f7625 3193 char *buf;
43ff13b4 3194
43ff13b4
JM
3195 last_sent_signal = siggnal;
3196 last_sent_step = step;
3197
89be2091
DJ
3198 /* Update the inferior on signals to silently pass, if they've changed. */
3199 remote_pass_signals ();
3200
506fb367
DJ
3201 /* The vCont packet doesn't need to specify threads via Hc. */
3202 if (remote_vcont_resume (ptid, step, siggnal))
75c99385 3203 goto done;
506fb367 3204
79d7f229
PA
3205 /* All other supported resume packets do use Hc, so set the continue
3206 thread. */
3207 if (ptid_equal (ptid, minus_one_ptid))
3208 set_continue_thread (any_thread_ptid);
506fb367 3209 else
79d7f229 3210 set_continue_thread (ptid);
506fb367 3211
2e9f7625 3212 buf = rs->buf;
43ff13b4
JM
3213 if (siggnal != TARGET_SIGNAL_0)
3214 {
3215 buf[0] = step ? 'S' : 'C';
c5aa993b 3216 buf[1] = tohex (((int) siggnal >> 4) & 0xf);
506fb367 3217 buf[2] = tohex (((int) siggnal) & 0xf);
43ff13b4
JM
3218 buf[3] = '\0';
3219 }
3220 else
c5aa993b 3221 strcpy (buf, step ? "s" : "c");
506fb367 3222
44eaed12 3223 putpkt (buf);
43ff13b4 3224
75c99385 3225 done:
2acceee2
JM
3226 /* We are about to start executing the inferior, let's register it
3227 with the event loop. NOTE: this is the one place where all the
3228 execution commands end up. We could alternatively do this in each
23860348 3229 of the execution commands in infcmd.c. */
2acceee2
JM
3230 /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
3231 into infcmd.c in order to allow inferior function calls to work
23860348 3232 NOT asynchronously. */
362646f5 3233 if (target_can_async_p ())
2acceee2 3234 target_async (inferior_event_handler, 0);
43ff13b4 3235}
c906108c 3236\f
43ff13b4
JM
3237
3238/* Set up the signal handler for SIGINT, while the target is
23860348 3239 executing, ovewriting the 'regular' SIGINT signal handler. */
43ff13b4 3240static void
fba45db2 3241initialize_sigint_signal_handler (void)
43ff13b4 3242{
43ff13b4
JM
3243 signal (SIGINT, handle_remote_sigint);
3244}
3245
23860348 3246/* Signal handler for SIGINT, while the target is executing. */
43ff13b4 3247static void
fba45db2 3248handle_remote_sigint (int sig)
43ff13b4
JM
3249{
3250 signal (sig, handle_remote_sigint_twice);
43ff13b4
JM
3251 mark_async_signal_handler_wrapper (sigint_remote_token);
3252}
3253
3254/* Signal handler for SIGINT, installed after SIGINT has already been
3255 sent once. It will take effect the second time that the user sends
23860348 3256 a ^C. */
43ff13b4 3257static void
fba45db2 3258handle_remote_sigint_twice (int sig)
43ff13b4 3259{
b803fb0f 3260 signal (sig, handle_remote_sigint);
43ff13b4
JM
3261 mark_async_signal_handler_wrapper (sigint_remote_twice_token);
3262}
3263
6426a772 3264/* Perform the real interruption of the target execution, in response
23860348 3265 to a ^C. */
c5aa993b 3266static void
fba45db2 3267async_remote_interrupt (gdb_client_data arg)
43ff13b4
JM
3268{
3269 if (remote_debug)
3270 fprintf_unfiltered (gdb_stdlog, "remote_interrupt called\n");
3271
94cc34af 3272 target_stop (inferior_ptid);
43ff13b4
JM
3273}
3274
3275/* Perform interrupt, if the first attempt did not succeed. Just give
23860348 3276 up on the target alltogether. */
2df3850c 3277void
fba45db2 3278async_remote_interrupt_twice (gdb_client_data arg)
43ff13b4 3279{
2df3850c
JM
3280 if (remote_debug)
3281 fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
b803fb0f
DJ
3282
3283 interrupt_query ();
43ff13b4
JM
3284}
3285
3286/* Reinstall the usual SIGINT handlers, after the target has
23860348 3287 stopped. */
6426a772
JM
3288static void
3289cleanup_sigint_signal_handler (void *dummy)
43ff13b4
JM
3290{
3291 signal (SIGINT, handle_sigint);
43ff13b4
JM
3292}
3293
c906108c
SS
3294/* Send ^C to target to halt it. Target will respond, and send us a
3295 packet. */
507f3c78 3296static void (*ofunc) (int);
c906108c 3297
7a292a7a
SS
3298/* The command line interface's stop routine. This function is installed
3299 as a signal handler for SIGINT. The first time a user requests a
3300 stop, we call remote_stop to send a break or ^C. If there is no
3301 response from the target (it didn't stop when the user requested it),
23860348 3302 we ask the user if he'd like to detach from the target. */
c906108c 3303static void
fba45db2 3304remote_interrupt (int signo)
c906108c 3305{
23860348 3306 /* If this doesn't work, try more severe steps. */
7a292a7a
SS
3307 signal (signo, remote_interrupt_twice);
3308
b803fb0f 3309 gdb_call_async_signal_handler (sigint_remote_token, 1);
7a292a7a
SS
3310}
3311
3312/* The user typed ^C twice. */
3313
3314static void
fba45db2 3315remote_interrupt_twice (int signo)
7a292a7a
SS
3316{
3317 signal (signo, ofunc);
b803fb0f 3318 gdb_call_async_signal_handler (sigint_remote_twice_token, 1);
c906108c
SS
3319 signal (signo, remote_interrupt);
3320}
7a292a7a
SS
3321
3322/* This is the generic stop called via the target vector. When a target
3323 interrupt is requested, either by the command line or the GUI, we
23860348 3324 will eventually end up here. */
c906108c 3325static void
94cc34af 3326remote_stop (ptid_t ptid)
c906108c 3327{
7a292a7a
SS
3328 /* Send a break or a ^C, depending on user preference. */
3329 if (remote_debug)
0f71a2f6 3330 fprintf_unfiltered (gdb_stdlog, "remote_stop called\n");
c906108c 3331
7a292a7a 3332 if (remote_break)
2cd58942 3333 serial_send_break (remote_desc);
c906108c 3334 else
2cd58942 3335 serial_write (remote_desc, "\003", 1);
c906108c
SS
3336}
3337
3338/* Ask the user what to do when an interrupt is received. */
3339
3340static void
fba45db2 3341interrupt_query (void)
c906108c
SS
3342{
3343 target_terminal_ours ();
3344
3345 if (query ("Interrupted while waiting for the program.\n\
3346Give up (and stop debugging it)? "))
3347 {
3348 target_mourn_inferior ();
b803fb0f 3349 signal (SIGINT, handle_sigint);
315a522e 3350 deprecated_throw_reason (RETURN_QUIT);
c906108c
SS
3351 }
3352
3353 target_terminal_inferior ();
3354}
3355
6426a772
JM
3356/* Enable/disable target terminal ownership. Most targets can use
3357 terminal groups to control terminal ownership. Remote targets are
3358 different in that explicit transfer of ownership to/from GDB/target
23860348 3359 is required. */
6426a772
JM
3360
3361static void
75c99385 3362remote_terminal_inferior (void)
6426a772 3363{
75c99385
PA
3364 if (!remote_async_permitted)
3365 /* Nothing to do. */
3366 return;
3367
6426a772
JM
3368 /* FIXME: cagney/1999-09-27: Shouldn't need to test for
3369 sync_execution here. This function should only be called when
3370 GDB is resuming the inferior in the forground. A background
3371 resume (``run&'') should leave GDB in control of the terminal and
23860348 3372 consequently should not call this code. */
6426a772
JM
3373 if (!sync_execution)
3374 return;
3375 /* FIXME: cagney/1999-09-27: Closely related to the above. Make
3376 calls target_terminal_*() idenpotent. The event-loop GDB talking
3377 to an asynchronous target with a synchronous command calls this
3378 function from both event-top.c and infrun.c/infcmd.c. Once GDB
3379 stops trying to transfer the terminal to the target when it
3380 shouldn't this guard can go away. */
3381 if (!remote_async_terminal_ours_p)
3382 return;
3383 delete_file_handler (input_fd);
3384 remote_async_terminal_ours_p = 0;
3385 initialize_sigint_signal_handler ();
3386 /* NOTE: At this point we could also register our selves as the
3387 recipient of all input. Any characters typed could then be
23860348 3388 passed on down to the target. */
6426a772
JM
3389}
3390
3391static void
75c99385 3392remote_terminal_ours (void)
6426a772 3393{
75c99385
PA
3394 if (!remote_async_permitted)
3395 /* Nothing to do. */
3396 return;
3397
3398 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
3399 if (!sync_execution)
3400 return;
75c99385 3401 /* See FIXME in remote_terminal_inferior. */
6426a772
JM
3402 if (remote_async_terminal_ours_p)
3403 return;
3404 cleanup_sigint_signal_handler (NULL);
3405 add_file_handler (input_fd, stdin_event_handler, 0);
3406 remote_async_terminal_ours_p = 1;
3407}
3408
c906108c 3409void
917317f4 3410remote_console_output (char *msg)
c906108c
SS
3411{
3412 char *p;
3413
c5aa993b 3414 for (p = msg; p[0] && p[1]; p += 2)
c906108c
SS
3415 {
3416 char tb[2];
3417 char c = fromhex (p[0]) * 16 + fromhex (p[1]);
3418 tb[0] = c;
3419 tb[1] = 0;
43ff13b4 3420 fputs_unfiltered (tb, gdb_stdtarg);
c906108c 3421 }
917317f4 3422 gdb_flush (gdb_stdtarg);
c906108c
SS
3423}
3424
0f71a2f6 3425/* Wait until the remote machine stops, then return,
79d7f229 3426 storing status in STATUS just as `wait' would. */
c906108c 3427
39f77062
KB
3428static ptid_t
3429remote_wait (ptid_t ptid, struct target_waitstatus *status)
c906108c 3430{
d01949b6 3431 struct remote_state *rs = get_remote_state ();
ea9c271d 3432 struct remote_arch_state *rsa = get_remote_arch_state ();
b2dd6311 3433 ULONGEST thread_num = -1;
79d7f229 3434 ULONGEST process_num = -1;
3c3bea1c 3435 ULONGEST addr;
cfa9d6d9 3436 int solibs_changed = 0;
c906108c
SS
3437
3438 status->kind = TARGET_WAITKIND_EXITED;
3439 status->value.integer = 0;
3440
43ff13b4
JM
3441 while (1)
3442 {
2e9f7625 3443 char *buf, *p;
c5aa993b 3444
2d717e4f
DJ
3445 if (rs->cached_wait_status)
3446 /* Use the cached wait status, but only once. */
3447 rs->cached_wait_status = 0;
3448 else
9fa2223d 3449 {
2d717e4f 3450 if (!target_is_async_p ())
9fa2223d 3451 {
2d717e4f
DJ
3452 ofunc = signal (SIGINT, remote_interrupt);
3453 /* If the user hit C-c before this packet, or between packets,
3454 pretend that it was hit right here. */
3455 if (quit_flag)
3456 {
3457 quit_flag = 0;
3458 remote_interrupt (SIGINT);
3459 }
9fa2223d 3460 }
2d717e4f
DJ
3461 /* FIXME: cagney/1999-09-27: If we're in async mode we should
3462 _never_ wait for ever -> test on target_is_async_p().
3463 However, before we do that we need to ensure that the caller
3464 knows how to take the target into/out of async mode. */
3465 getpkt (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
3466 if (!target_is_async_p ())
3467 signal (SIGINT, ofunc);
9fa2223d 3468 }
43ff13b4 3469
2e9f7625
DJ
3470 buf = rs->buf;
3471
75c99385
PA
3472 remote_stopped_by_watchpoint_p = 0;
3473
43ff13b4
JM
3474 switch (buf[0])
3475 {
23860348 3476 case 'E': /* Error of some sort. */
20b4711e
DJ
3477 /* We're out of sync with the target now. Did it continue or not?
3478 Not is more likely, so report a stop. */
8a3fe4f8 3479 warning (_("Remote failure reply: %s"), buf);
20b4711e
DJ
3480 status->kind = TARGET_WAITKIND_STOPPED;
3481 status->value.sig = TARGET_SIGNAL_0;
3482 goto got_status;
23860348 3483 case 'F': /* File-I/O request. */
449092f6
CV
3484 remote_fileio_request (buf);
3485 continue;
23860348 3486 case 'T': /* Status with PC, SP, FP, ... */
43ff13b4 3487 {
cfd77fa1 3488 gdb_byte regs[MAX_REGISTER_SIZE];
43ff13b4 3489
23860348 3490 /* Expedited reply, containing Signal, {regno, reg} repeat. */
43ff13b4 3491 /* format is: 'Tssn...:r...;n...:r...;n...:r...;#cc', where
c5aa993b
JM
3492 ss = signal number
3493 n... = register number
3494 r... = register contents
3495 */
43ff13b4
JM
3496 p = &buf[3]; /* after Txx */
3497
3498 while (*p)
3499 {
cfd77fa1 3500 char *p1;
43ff13b4 3501 char *p_temp;
6c3f2dbf 3502 int fieldsize;
75c99385 3503 LONGEST pnum = 0;
43ff13b4 3504
23860348
MS
3505 /* If the packet contains a register number, save it
3506 in pnum and set p1 to point to the character
3507 following it. Otherwise p1 points to p. */
3c3bea1c 3508
75c99385
PA
3509 /* If this packet is an awatch packet, don't parse the
3510 'a' as a register number. */
802188a7 3511
cfa9d6d9 3512 if (strncmp (p, "awatch", strlen("awatch")) != 0)
3c3bea1c 3513 {
75c99385 3514 /* Read the ``P'' register number. */
3c3bea1c 3515 pnum = strtol (p, &p_temp, 16);
cfd77fa1 3516 p1 = p_temp;
3c3bea1c 3517 }
802188a7 3518 else
3c3bea1c 3519 p1 = p;
43ff13b4 3520
23860348 3521 if (p1 == p) /* No register number present here. */
43ff13b4 3522 {
cfd77fa1 3523 p1 = strchr (p, ':');
43ff13b4 3524 if (p1 == NULL)
8a3fe4f8
AC
3525 error (_("Malformed packet(a) (missing colon): %s\n\
3526Packet: '%s'\n"),
3fcb8548 3527 p, buf);
3c3bea1c 3528 if (strncmp (p, "thread", p1 - p) == 0)
43ff13b4
JM
3529 {
3530 p_temp = unpack_varlen_hex (++p1, &thread_num);
cfd77fa1 3531 p = p_temp;
43ff13b4 3532 }
3c3bea1c
GS
3533 else if ((strncmp (p, "watch", p1 - p) == 0)
3534 || (strncmp (p, "rwatch", p1 - p) == 0)
3535 || (strncmp (p, "awatch", p1 - p) == 0))
3536 {
3537 remote_stopped_by_watchpoint_p = 1;
3538 p = unpack_varlen_hex (++p1, &addr);
3539 remote_watch_data_address = (CORE_ADDR)addr;
3540 }
cfa9d6d9
DJ
3541 else if (strncmp (p, "library", p1 - p) == 0)
3542 {
3543 p1++;
3544 p_temp = p1;
3545 while (*p_temp && *p_temp != ';')
3546 p_temp++;
3547
3548 solibs_changed = 1;
3549 p = p_temp;
3550 }
3c3bea1c
GS
3551 else
3552 {
3553 /* Silently skip unknown optional info. */
cfd77fa1 3554 p_temp = strchr (p1 + 1, ';');
3c3bea1c
GS
3555 if (p_temp)
3556 p = p_temp;
3557 }
43ff13b4
JM
3558 }
3559 else
3560 {
ea9c271d 3561 struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
43ff13b4 3562 p = p1;
75c99385 3563
b4f62b57 3564 if (*p != ':')
8a3fe4f8
AC
3565 error (_("Malformed packet(b) (missing colon): %s\n\
3566Packet: '%s'\n"),
3fcb8548 3567 p, buf);
b4f62b57 3568 ++p;
43ff13b4 3569
ad10f812 3570 if (reg == NULL)
75c99385 3571 error (_("Remote sent bad register number %s: %s\n\
8a3fe4f8 3572Packet: '%s'\n"),
75c99385 3573 phex_nz (pnum, 0), p, buf);
43ff13b4 3574
cfd77fa1 3575 fieldsize = hex2bin (p, regs,
2bc416ba 3576 register_size (current_gdbarch,
23860348 3577 reg->regnum));
6c3f2dbf 3578 p += 2 * fieldsize;
2bc416ba 3579 if (fieldsize < register_size (current_gdbarch,
23860348 3580 reg->regnum))
8a3fe4f8 3581 warning (_("Remote reply is too short: %s"), buf);
594f7785
UW
3582 regcache_raw_supply (get_current_regcache (),
3583 reg->regnum, regs);
43ff13b4
JM
3584 }
3585
b4f62b57 3586 if (*p != ';')
8a3fe4f8 3587 error (_("Remote register badly formatted: %s\nhere: %s"),
0a2cfde4 3588 buf, p);
b4f62b57 3589 ++p;
43ff13b4
JM
3590 }
3591 }
3592 /* fall through */
23860348 3593 case 'S': /* Old style status, just signal only. */
cfa9d6d9
DJ
3594 if (solibs_changed)
3595 status->kind = TARGET_WAITKIND_LOADED;
3596 else
3597 {
3598 status->kind = TARGET_WAITKIND_STOPPED;
3599 status->value.sig = (enum target_signal)
3600 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
3601 }
43ff13b4 3602 goto got_status;
23860348 3603 case 'W': /* Target exited. */
43ff13b4
JM
3604 {
3605 /* The remote process exited. */
3606 status->kind = TARGET_WAITKIND_EXITED;
3607 status->value.integer = (fromhex (buf[1]) << 4) + fromhex (buf[2]);
3608 goto got_status;
3609 }
3610 case 'X':
3611 status->kind = TARGET_WAITKIND_SIGNALLED;
3612 status->value.sig = (enum target_signal)
3613 (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
43ff13b4
JM
3614
3615 goto got_status;
23860348 3616 case 'O': /* Console output. */
43ff13b4 3617 remote_console_output (buf + 1);
75c99385
PA
3618 if (target_can_async_p ())
3619 {
3620 /* Return immediately to the event loop. The event loop
3621 will still be waiting on the inferior afterwards. */
3622 status->kind = TARGET_WAITKIND_IGNORE;
3623 goto got_status;
3624 }
3625 else
3626 continue;
43ff13b4
JM
3627 case '\0':
3628 if (last_sent_signal != TARGET_SIGNAL_0)
3629 {
3630 /* Zero length reply means that we tried 'S' or 'C' and
c5aa993b 3631 the remote system doesn't support it. */
43ff13b4
JM
3632 target_terminal_ours_for_output ();
3633 printf_filtered
3634 ("Can't send signals to this remote system. %s not sent.\n",
3635 target_signal_to_name (last_sent_signal));
3636 last_sent_signal = TARGET_SIGNAL_0;
3637 target_terminal_inferior ();
3638
3639 strcpy ((char *) buf, last_sent_step ? "s" : "c");
3640 putpkt ((char *) buf);
3641 continue;
3642 }
3643 /* else fallthrough */
3644 default:
8a3fe4f8 3645 warning (_("Invalid remote reply: %s"), buf);
43ff13b4
JM
3646 continue;
3647 }
3648 }
c5aa993b 3649got_status:
43ff13b4
JM
3650 if (thread_num != -1)
3651 {
79d7f229
PA
3652 ptid_t ptid;
3653 ptid = ptid_build (ptid_get_pid (inferior_ptid), 0, thread_num);
3654 record_currthread (ptid);
3655 return ptid;
43ff13b4 3656 }
79d7f229 3657
39f77062 3658 return inferior_ptid;
43ff13b4
JM
3659}
3660
74ca34ce 3661/* Fetch a single register using a 'p' packet. */
c906108c 3662
b96ec7ac 3663static int
56be3814 3664fetch_register_using_p (struct regcache *regcache, struct packet_reg *reg)
b96ec7ac
AC
3665{
3666 struct remote_state *rs = get_remote_state ();
2e9f7625 3667 char *buf, *p;
b96ec7ac
AC
3668 char regp[MAX_REGISTER_SIZE];
3669 int i;
3670
74ca34ce
DJ
3671 if (remote_protocol_packets[PACKET_p].support == PACKET_DISABLE)
3672 return 0;
3673
3674 if (reg->pnum == -1)
3675 return 0;
3676
2e9f7625 3677 p = rs->buf;
fcad0fa4 3678 *p++ = 'p';
74ca34ce 3679 p += hexnumstr (p, reg->pnum);
fcad0fa4 3680 *p++ = '\0';
6d820c5c 3681 remote_send (&rs->buf, &rs->buf_size);
3f9a994c 3682
2e9f7625
DJ
3683 buf = rs->buf;
3684
74ca34ce
DJ
3685 switch (packet_ok (buf, &remote_protocol_packets[PACKET_p]))
3686 {
3687 case PACKET_OK:
3688 break;
3689 case PACKET_UNKNOWN:
3690 return 0;
3691 case PACKET_ERROR:
3692 error (_("Could not fetch register \"%s\""),
4a22f64d 3693 gdbarch_register_name (get_regcache_arch (regcache), reg->regnum));
74ca34ce 3694 }
3f9a994c
JB
3695
3696 /* If this register is unfetchable, tell the regcache. */
3697 if (buf[0] == 'x')
8480adf2 3698 {
56be3814 3699 regcache_raw_supply (regcache, reg->regnum, NULL);
8480adf2 3700 return 1;
b96ec7ac 3701 }
b96ec7ac 3702
3f9a994c
JB
3703 /* Otherwise, parse and supply the value. */
3704 p = buf;
3705 i = 0;
3706 while (p[0] != 0)
3707 {
3708 if (p[1] == 0)
74ca34ce 3709 error (_("fetch_register_using_p: early buf termination"));
3f9a994c
JB
3710
3711 regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
3712 p += 2;
3713 }
56be3814 3714 regcache_raw_supply (regcache, reg->regnum, regp);
3f9a994c 3715 return 1;
b96ec7ac
AC
3716}
3717
74ca34ce
DJ
3718/* Fetch the registers included in the target's 'g' packet. */
3719
29709017
DJ
3720static int
3721send_g_packet (void)
c906108c 3722{
d01949b6 3723 struct remote_state *rs = get_remote_state ();
74ca34ce 3724 int i, buf_len;
c906108c 3725 char *p;
74ca34ce 3726 char *regs;
c906108c 3727
74ca34ce
DJ
3728 sprintf (rs->buf, "g");
3729 remote_send (&rs->buf, &rs->buf_size);
c906108c 3730
29709017
DJ
3731 /* We can get out of synch in various cases. If the first character
3732 in the buffer is not a hex character, assume that has happened
3733 and try to fetch another packet to read. */
3734 while ((rs->buf[0] < '0' || rs->buf[0] > '9')
3735 && (rs->buf[0] < 'A' || rs->buf[0] > 'F')
3736 && (rs->buf[0] < 'a' || rs->buf[0] > 'f')
3737 && rs->buf[0] != 'x') /* New: unavailable register value. */
3738 {
3739 if (remote_debug)
3740 fprintf_unfiltered (gdb_stdlog,
3741 "Bad register packet; fetching a new packet\n");
3742 getpkt (&rs->buf, &rs->buf_size, 0);
3743 }
3744
74ca34ce
DJ
3745 buf_len = strlen (rs->buf);
3746
3747 /* Sanity check the received packet. */
3748 if (buf_len % 2 != 0)
3749 error (_("Remote 'g' packet reply is of odd length: %s"), rs->buf);
29709017
DJ
3750
3751 return buf_len / 2;
3752}
3753
3754static void
56be3814 3755process_g_packet (struct regcache *regcache)
29709017 3756{
4a22f64d 3757 struct gdbarch *gdbarch = get_regcache_arch (regcache);
29709017
DJ
3758 struct remote_state *rs = get_remote_state ();
3759 struct remote_arch_state *rsa = get_remote_arch_state ();
3760 int i, buf_len;
3761 char *p;
3762 char *regs;
3763
3764 buf_len = strlen (rs->buf);
3765
3766 /* Further sanity checks, with knowledge of the architecture. */
74ca34ce
DJ
3767 if (buf_len > 2 * rsa->sizeof_g_packet)
3768 error (_("Remote 'g' packet reply is too long: %s"), rs->buf);
3769
3770 /* Save the size of the packet sent to us by the target. It is used
3771 as a heuristic when determining the max size of packets that the
3772 target can safely receive. */
3773 if (rsa->actual_register_packet_size == 0)
3774 rsa->actual_register_packet_size = buf_len;
3775
3776 /* If this is smaller than we guessed the 'g' packet would be,
3777 update our records. A 'g' reply that doesn't include a register's
3778 value implies either that the register is not available, or that
3779 the 'p' packet must be used. */
3780 if (buf_len < 2 * rsa->sizeof_g_packet)
b323314b 3781 {
74ca34ce
DJ
3782 rsa->sizeof_g_packet = buf_len / 2;
3783
4a22f64d 3784 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
b96ec7ac 3785 {
74ca34ce
DJ
3786 if (rsa->regs[i].pnum == -1)
3787 continue;
3788
3789 if (rsa->regs[i].offset >= rsa->sizeof_g_packet)
3790 rsa->regs[i].in_g_packet = 0;
b96ec7ac 3791 else
74ca34ce 3792 rsa->regs[i].in_g_packet = 1;
b96ec7ac 3793 }
74ca34ce 3794 }
b323314b 3795
74ca34ce 3796 regs = alloca (rsa->sizeof_g_packet);
c906108c
SS
3797
3798 /* Unimplemented registers read as all bits zero. */
ea9c271d 3799 memset (regs, 0, rsa->sizeof_g_packet);
c906108c 3800
c906108c
SS
3801 /* Reply describes registers byte by byte, each byte encoded as two
3802 hex characters. Suck them all up, then supply them to the
3803 register cacheing/storage mechanism. */
3804
74ca34ce 3805 p = rs->buf;
ea9c271d 3806 for (i = 0; i < rsa->sizeof_g_packet; i++)
c906108c 3807 {
74ca34ce
DJ
3808 if (p[0] == 0 || p[1] == 0)
3809 /* This shouldn't happen - we adjusted sizeof_g_packet above. */
3810 internal_error (__FILE__, __LINE__,
3811 "unexpected end of 'g' packet reply");
3812
c906108c 3813 if (p[0] == 'x' && p[1] == 'x')
c5aa993b 3814 regs[i] = 0; /* 'x' */
c906108c
SS
3815 else
3816 regs[i] = fromhex (p[0]) * 16 + fromhex (p[1]);
3817 p += 2;
3818 }
3819
ad10f812 3820 {
b323314b 3821 int i;
4a22f64d 3822 for (i = 0; i < gdbarch_num_regs (gdbarch); i++)
ad10f812 3823 {
ea9c271d 3824 struct packet_reg *r = &rsa->regs[i];
b323314b
AC
3825 if (r->in_g_packet)
3826 {
74ca34ce
DJ
3827 if (r->offset * 2 >= strlen (rs->buf))
3828 /* This shouldn't happen - we adjusted in_g_packet above. */
3829 internal_error (__FILE__, __LINE__,
3830 "unexpected end of 'g' packet reply");
3831 else if (rs->buf[r->offset * 2] == 'x')
8ccc1287 3832 {
74ca34ce 3833 gdb_assert (r->offset * 2 < strlen (rs->buf));
8ccc1287
AC
3834 /* The register isn't available, mark it as such (at
3835 the same time setting the value to zero). */
56be3814 3836 regcache_raw_supply (regcache, r->regnum, NULL);
8ccc1287
AC
3837 }
3838 else
56be3814 3839 regcache_raw_supply (regcache, r->regnum,
8ccc1287 3840 regs + r->offset);
b323314b 3841 }
ad10f812
AC
3842 }
3843 }
c906108c
SS
3844}
3845
29709017 3846static void
56be3814 3847fetch_registers_using_g (struct regcache *regcache)
29709017
DJ
3848{
3849 send_g_packet ();
56be3814 3850 process_g_packet (regcache);
29709017
DJ
3851}
3852
74ca34ce 3853static void
56be3814 3854remote_fetch_registers (struct regcache *regcache, int regnum)
74ca34ce
DJ
3855{
3856 struct remote_state *rs = get_remote_state ();
3857 struct remote_arch_state *rsa = get_remote_arch_state ();
3858 int i;
3859
79d7f229 3860 set_general_thread (inferior_ptid);
74ca34ce
DJ
3861
3862 if (regnum >= 0)
3863 {
3864 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
3865 gdb_assert (reg != NULL);
3866
3867 /* If this register might be in the 'g' packet, try that first -
3868 we are likely to read more than one register. If this is the
3869 first 'g' packet, we might be overly optimistic about its
3870 contents, so fall back to 'p'. */
3871 if (reg->in_g_packet)
3872 {
56be3814 3873 fetch_registers_using_g (regcache);
74ca34ce
DJ
3874 if (reg->in_g_packet)
3875 return;
3876 }
3877
56be3814 3878 if (fetch_register_using_p (regcache, reg))
74ca34ce
DJ
3879 return;
3880
3881 /* This register is not available. */
56be3814 3882 regcache_raw_supply (regcache, reg->regnum, NULL);
74ca34ce
DJ
3883
3884 return;
3885 }
3886
56be3814 3887 fetch_registers_using_g (regcache);
74ca34ce 3888
4a22f64d 3889 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 3890 if (!rsa->regs[i].in_g_packet)
56be3814 3891 if (!fetch_register_using_p (regcache, &rsa->regs[i]))
74ca34ce
DJ
3892 {
3893 /* This register is not available. */
56be3814 3894 regcache_raw_supply (regcache, i, NULL);
74ca34ce
DJ
3895 }
3896}
3897
c906108c
SS
3898/* Prepare to store registers. Since we may send them all (using a
3899 'G' request), we have to read out the ones we don't want to change
3900 first. */
3901
c5aa993b 3902static void
316f2060 3903remote_prepare_to_store (struct regcache *regcache)
c906108c 3904{
ea9c271d 3905 struct remote_arch_state *rsa = get_remote_arch_state ();
cf0e1e0d 3906 int i;
cfd77fa1 3907 gdb_byte buf[MAX_REGISTER_SIZE];
cf0e1e0d 3908
c906108c 3909 /* Make sure the entire registers array is valid. */
444abaca 3910 switch (remote_protocol_packets[PACKET_P].support)
5a2468f5
JM
3911 {
3912 case PACKET_DISABLE:
3913 case PACKET_SUPPORT_UNKNOWN:
cf0e1e0d 3914 /* Make sure all the necessary registers are cached. */
4a22f64d 3915 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
ea9c271d 3916 if (rsa->regs[i].in_g_packet)
316f2060 3917 regcache_raw_read (regcache, rsa->regs[i].regnum, buf);
5a2468f5
JM
3918 break;
3919 case PACKET_ENABLE:
3920 break;
3921 }
3922}
3923
ad10f812 3924/* Helper: Attempt to store REGNUM using the P packet. Return fail IFF
23860348 3925 packet was not recognized. */
5a2468f5
JM
3926
3927static int
56be3814 3928store_register_using_P (const struct regcache *regcache, struct packet_reg *reg)
5a2468f5 3929{
4a22f64d 3930 struct gdbarch *gdbarch = get_regcache_arch (regcache);
d01949b6 3931 struct remote_state *rs = get_remote_state ();
ea9c271d 3932 struct remote_arch_state *rsa = get_remote_arch_state ();
5a2468f5 3933 /* Try storing a single register. */
6d820c5c 3934 char *buf = rs->buf;
cfd77fa1 3935 gdb_byte regp[MAX_REGISTER_SIZE];
5a2468f5 3936 char *p;
5a2468f5 3937
74ca34ce
DJ
3938 if (remote_protocol_packets[PACKET_P].support == PACKET_DISABLE)
3939 return 0;
3940
3941 if (reg->pnum == -1)
3942 return 0;
3943
ea9c271d 3944 xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
5a2468f5 3945 p = buf + strlen (buf);
56be3814 3946 regcache_raw_collect (regcache, reg->regnum, regp);
4a22f64d 3947 bin2hex (regp, p, register_size (gdbarch, reg->regnum));
6d820c5c 3948 remote_send (&rs->buf, &rs->buf_size);
5a2468f5 3949
74ca34ce
DJ
3950 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_P]))
3951 {
3952 case PACKET_OK:
3953 return 1;
3954 case PACKET_ERROR:
3955 error (_("Could not write register \"%s\""),
4a22f64d 3956 gdbarch_register_name (gdbarch, reg->regnum));
74ca34ce
DJ
3957 case PACKET_UNKNOWN:
3958 return 0;
3959 default:
3960 internal_error (__FILE__, __LINE__, _("Bad result from packet_ok"));
3961 }
c906108c
SS
3962}
3963
23860348
MS
3964/* Store register REGNUM, or all registers if REGNUM == -1, from the
3965 contents of the register cache buffer. FIXME: ignores errors. */
c906108c
SS
3966
3967static void
56be3814 3968store_registers_using_G (const struct regcache *regcache)
c906108c 3969{
d01949b6 3970 struct remote_state *rs = get_remote_state ();
ea9c271d 3971 struct remote_arch_state *rsa = get_remote_arch_state ();
cfd77fa1 3972 gdb_byte *regs;
c906108c
SS
3973 char *p;
3974
193cb69f
AC
3975 /* Extract all the registers in the regcache copying them into a
3976 local buffer. */
3977 {
b323314b 3978 int i;
ea9c271d
DJ
3979 regs = alloca (rsa->sizeof_g_packet);
3980 memset (regs, 0, rsa->sizeof_g_packet);
4a22f64d 3981 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
193cb69f 3982 {
ea9c271d 3983 struct packet_reg *r = &rsa->regs[i];
b323314b 3984 if (r->in_g_packet)
56be3814 3985 regcache_raw_collect (regcache, r->regnum, regs + r->offset);
193cb69f
AC
3986 }
3987 }
c906108c
SS
3988
3989 /* Command describes registers byte by byte,
3990 each byte encoded as two hex characters. */
6d820c5c 3991 p = rs->buf;
193cb69f 3992 *p++ = 'G';
74ca34ce
DJ
3993 /* remote_prepare_to_store insures that rsa->sizeof_g_packet gets
3994 updated. */
3995 bin2hex (regs, p, rsa->sizeof_g_packet);
6d820c5c 3996 remote_send (&rs->buf, &rs->buf_size);
c906108c 3997}
74ca34ce
DJ
3998
3999/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
4000 of the register cache buffer. FIXME: ignores errors. */
4001
4002static void
56be3814 4003remote_store_registers (struct regcache *regcache, int regnum)
74ca34ce
DJ
4004{
4005 struct remote_state *rs = get_remote_state ();
4006 struct remote_arch_state *rsa = get_remote_arch_state ();
4007 int i;
4008
79d7f229 4009 set_general_thread (inferior_ptid);
74ca34ce
DJ
4010
4011 if (regnum >= 0)
4012 {
4013 struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
4014 gdb_assert (reg != NULL);
4015
4016 /* Always prefer to store registers using the 'P' packet if
4017 possible; we often change only a small number of registers.
4018 Sometimes we change a larger number; we'd need help from a
4019 higher layer to know to use 'G'. */
56be3814 4020 if (store_register_using_P (regcache, reg))
74ca34ce
DJ
4021 return;
4022
4023 /* For now, don't complain if we have no way to write the
4024 register. GDB loses track of unavailable registers too
4025 easily. Some day, this may be an error. We don't have
4026 any way to read the register, either... */
4027 if (!reg->in_g_packet)
4028 return;
4029
56be3814 4030 store_registers_using_G (regcache);
74ca34ce
DJ
4031 return;
4032 }
4033
56be3814 4034 store_registers_using_G (regcache);
74ca34ce 4035
4a22f64d 4036 for (i = 0; i < gdbarch_num_regs (get_regcache_arch (regcache)); i++)
74ca34ce 4037 if (!rsa->regs[i].in_g_packet)
56be3814 4038 if (!store_register_using_P (regcache, &rsa->regs[i]))
74ca34ce
DJ
4039 /* See above for why we do not issue an error here. */
4040 continue;
4041}
c906108c
SS
4042\f
4043
4044/* Return the number of hex digits in num. */
4045
4046static int
fba45db2 4047hexnumlen (ULONGEST num)
c906108c
SS
4048{
4049 int i;
4050
4051 for (i = 0; num != 0; i++)
4052 num >>= 4;
4053
4054 return max (i, 1);
4055}
4056
2df3850c 4057/* Set BUF to the minimum number of hex digits representing NUM. */
c906108c
SS
4058
4059static int
fba45db2 4060hexnumstr (char *buf, ULONGEST num)
c906108c 4061{
c906108c 4062 int len = hexnumlen (num);
2df3850c
JM
4063 return hexnumnstr (buf, num, len);
4064}
4065
c906108c 4066
2df3850c 4067/* Set BUF to the hex digits representing NUM, padded to WIDTH characters. */
c906108c 4068
2df3850c 4069static int
fba45db2 4070hexnumnstr (char *buf, ULONGEST num, int width)
2df3850c
JM
4071{
4072 int i;
4073
4074 buf[width] = '\0';
4075
4076 for (i = width - 1; i >= 0; i--)
c906108c 4077 {
c5aa993b 4078 buf[i] = "0123456789abcdef"[(num & 0xf)];
c906108c
SS
4079 num >>= 4;
4080 }
4081
2df3850c 4082 return width;
c906108c
SS
4083}
4084
23860348 4085/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
c906108c
SS
4086
4087static CORE_ADDR
fba45db2 4088remote_address_masked (CORE_ADDR addr)
c906108c 4089{
911c95a5
UW
4090 int address_size = remote_address_size;
4091 /* If "remoteaddresssize" was not set, default to target address size. */
4092 if (!address_size)
4093 address_size = gdbarch_addr_bit (current_gdbarch);
4094
4095 if (address_size > 0
4096 && address_size < (sizeof (ULONGEST) * 8))
c906108c
SS
4097 {
4098 /* Only create a mask when that mask can safely be constructed
23860348 4099 in a ULONGEST variable. */
c906108c 4100 ULONGEST mask = 1;
911c95a5 4101 mask = (mask << address_size) - 1;
c906108c
SS
4102 addr &= mask;
4103 }
4104 return addr;
4105}
4106
a31ea83d
DJ
4107/* Convert BUFFER, binary data at least LEN bytes long, into escaped
4108 binary data in OUT_BUF. Set *OUT_LEN to the length of the data
4109 encoded in OUT_BUF, and return the number of bytes in OUT_BUF
4110 (which may be more than *OUT_LEN due to escape characters). The
4111 total number of bytes in the output buffer will be at most
4112 OUT_MAXLEN. */
4113
4114static int
4115remote_escape_output (const gdb_byte *buffer, int len,
4116 gdb_byte *out_buf, int *out_len,
4117 int out_maxlen)
4118{
4119 int input_index, output_index;
4120
4121 output_index = 0;
4122 for (input_index = 0; input_index < len; input_index++)
4123 {
4124 gdb_byte b = buffer[input_index];
4125
4126 if (b == '$' || b == '#' || b == '}')
4127 {
4128 /* These must be escaped. */
4129 if (output_index + 2 > out_maxlen)
4130 break;
4131 out_buf[output_index++] = '}';
4132 out_buf[output_index++] = b ^ 0x20;
4133 }
4134 else
4135 {
4136 if (output_index + 1 > out_maxlen)
4137 break;
4138 out_buf[output_index++] = b;
4139 }
4140 }
4141
4142 *out_len = input_index;
4143 return output_index;
4144}
4145
0876f84a
DJ
4146/* Convert BUFFER, escaped data LEN bytes long, into binary data
4147 in OUT_BUF. Return the number of bytes written to OUT_BUF.
4148 Raise an error if the total number of bytes exceeds OUT_MAXLEN.
4149
4150 This function reverses remote_escape_output. It allows more
4151 escaped characters than that function does, in particular because
4152 '*' must be escaped to avoid the run-length encoding processing
4153 in reading packets. */
4154
4155static int
4156remote_unescape_input (const gdb_byte *buffer, int len,
4157 gdb_byte *out_buf, int out_maxlen)
4158{
4159 int input_index, output_index;
4160 int escaped;
4161
4162 output_index = 0;
4163 escaped = 0;
4164 for (input_index = 0; input_index < len; input_index++)
4165 {
4166 gdb_byte b = buffer[input_index];
4167
4168 if (output_index + 1 > out_maxlen)
4169 {
4170 warning (_("Received too much data from remote target;"
4171 " ignoring overflow."));
4172 return output_index;
4173 }
4174
4175 if (escaped)
4176 {
4177 out_buf[output_index++] = b ^ 0x20;
4178 escaped = 0;
4179 }
4180 else if (b == '}')
4181 escaped = 1;
4182 else
4183 out_buf[output_index++] = b;
4184 }
4185
4186 if (escaped)
4187 error (_("Unmatched escape character in target response."));
4188
4189 return output_index;
4190}
4191
c906108c
SS
4192/* Determine whether the remote target supports binary downloading.
4193 This is accomplished by sending a no-op memory write of zero length
4194 to the target at the specified address. It does not suffice to send
23860348
MS
4195 the whole packet, since many stubs strip the eighth bit and
4196 subsequently compute a wrong checksum, which causes real havoc with
4197 remote_write_bytes.
7a292a7a 4198
96baa820
JM
4199 NOTE: This can still lose if the serial line is not eight-bit
4200 clean. In cases like this, the user should clear "remote
23860348 4201 X-packet". */
96baa820 4202
c906108c 4203static void
fba45db2 4204check_binary_download (CORE_ADDR addr)
c906108c 4205{
d01949b6 4206 struct remote_state *rs = get_remote_state ();
24b06219 4207
444abaca 4208 switch (remote_protocol_packets[PACKET_X].support)
c906108c 4209 {
96baa820
JM
4210 case PACKET_DISABLE:
4211 break;
4212 case PACKET_ENABLE:
4213 break;
4214 case PACKET_SUPPORT_UNKNOWN:
4215 {
96baa820 4216 char *p;
802188a7 4217
2e9f7625 4218 p = rs->buf;
96baa820
JM
4219 *p++ = 'X';
4220 p += hexnumstr (p, (ULONGEST) addr);
4221 *p++ = ',';
4222 p += hexnumstr (p, (ULONGEST) 0);
4223 *p++ = ':';
4224 *p = '\0';
802188a7 4225
2e9f7625 4226 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 4227 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 4228
2e9f7625 4229 if (rs->buf[0] == '\0')
96baa820
JM
4230 {
4231 if (remote_debug)
4232 fprintf_unfiltered (gdb_stdlog,
4233 "binary downloading NOT suppported by target\n");
444abaca 4234 remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
96baa820
JM
4235 }
4236 else
4237 {
4238 if (remote_debug)
4239 fprintf_unfiltered (gdb_stdlog,
4240 "binary downloading suppported by target\n");
444abaca 4241 remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
96baa820
JM
4242 }
4243 break;
4244 }
c906108c
SS
4245 }
4246}
4247
4248/* Write memory data directly to the remote machine.
4249 This does not inform the data cache; the data cache uses this.
a76d924d 4250 HEADER is the starting part of the packet.
c906108c
SS
4251 MEMADDR is the address in the remote memory space.
4252 MYADDR is the address of the buffer in our space.
4253 LEN is the number of bytes.
a76d924d
DJ
4254 PACKET_FORMAT should be either 'X' or 'M', and indicates if we
4255 should send data as binary ('X'), or hex-encoded ('M').
4256
4257 The function creates packet of the form
4258 <HEADER><ADDRESS>,<LENGTH>:<DATA>
4259
4260 where encoding of <DATA> is termined by PACKET_FORMAT.
4261
4262 If USE_LENGTH is 0, then the <LENGTH> field and the preceding comma
4263 are omitted.
4264
4265 Returns the number of bytes transferred, or 0 (setting errno) for
23860348 4266 error. Only transfer a single packet. */
c906108c 4267
a76d924d
DJ
4268static int
4269remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
4270 const gdb_byte *myaddr, int len,
4271 char packet_format, int use_length)
c906108c 4272{
6d820c5c 4273 struct remote_state *rs = get_remote_state ();
cfd77fa1 4274 char *p;
a76d924d
DJ
4275 char *plen = NULL;
4276 int plenlen = 0;
917317f4
JM
4277 int todo;
4278 int nr_bytes;
a257b5bb 4279 int payload_size;
6765f3e5 4280 int payload_length;
a76d924d
DJ
4281 int header_length;
4282
4283 if (packet_format != 'X' && packet_format != 'M')
4284 internal_error (__FILE__, __LINE__,
4285 "remote_write_bytes_aux: bad packet format");
c906108c 4286
b2182ed2
DJ
4287 if (len <= 0)
4288 return 0;
4289
3de11b2e 4290 payload_size = get_memory_write_packet_size ();
2bc416ba 4291
6d820c5c
DJ
4292 /* The packet buffer will be large enough for the payload;
4293 get_memory_packet_size ensures this. */
a76d924d 4294 rs->buf[0] = '\0';
c906108c 4295
a257b5bb 4296 /* Compute the size of the actual payload by subtracting out the
3de11b2e
NS
4297 packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
4298 */
a76d924d
DJ
4299 payload_size -= strlen ("$,:#NN");
4300 if (!use_length)
4301 /* The comma won't be used. */
4302 payload_size += 1;
4303 header_length = strlen (header);
4304 payload_size -= header_length;
3de11b2e 4305 payload_size -= hexnumlen (memaddr);
c906108c 4306
a76d924d 4307 /* Construct the packet excluding the data: "<header><memaddr>,<len>:". */
917317f4 4308
a76d924d
DJ
4309 strcat (rs->buf, header);
4310 p = rs->buf + strlen (header);
4311
4312 /* Compute a best guess of the number of bytes actually transfered. */
4313 if (packet_format == 'X')
c906108c 4314 {
23860348 4315 /* Best guess at number of bytes that will fit. */
a257b5bb 4316 todo = min (len, payload_size);
a76d924d
DJ
4317 if (use_length)
4318 payload_size -= hexnumlen (todo);
3de11b2e 4319 todo = min (todo, payload_size);
a76d924d
DJ
4320 }
4321 else
4322 {
23860348 4323 /* Num bytes that will fit. */
a257b5bb 4324 todo = min (len, payload_size / 2);
a76d924d
DJ
4325 if (use_length)
4326 payload_size -= hexnumlen (todo);
3de11b2e 4327 todo = min (todo, payload_size / 2);
917317f4 4328 }
a76d924d 4329
3de11b2e
NS
4330 if (todo <= 0)
4331 internal_error (__FILE__, __LINE__,
4332 _("minumum packet size too small to write data"));
802188a7 4333
6765f3e5
DJ
4334 /* If we already need another packet, then try to align the end
4335 of this packet to a useful boundary. */
4336 if (todo > 2 * REMOTE_ALIGN_WRITES && todo < len)
4337 todo = ((memaddr + todo) & ~(REMOTE_ALIGN_WRITES - 1)) - memaddr;
4338
a257b5bb 4339 /* Append "<memaddr>". */
917317f4
JM
4340 memaddr = remote_address_masked (memaddr);
4341 p += hexnumstr (p, (ULONGEST) memaddr);
a257b5bb 4342
a76d924d
DJ
4343 if (use_length)
4344 {
4345 /* Append ",". */
4346 *p++ = ',';
802188a7 4347
a76d924d
DJ
4348 /* Append <len>. Retain the location/size of <len>. It may need to
4349 be adjusted once the packet body has been created. */
4350 plen = p;
4351 plenlen = hexnumstr (p, (ULONGEST) todo);
4352 p += plenlen;
4353 }
a257b5bb
AC
4354
4355 /* Append ":". */
917317f4
JM
4356 *p++ = ':';
4357 *p = '\0';
802188a7 4358
a257b5bb 4359 /* Append the packet body. */
a76d924d 4360 if (packet_format == 'X')
917317f4 4361 {
917317f4
JM
4362 /* Binary mode. Send target system values byte by byte, in
4363 increasing byte addresses. Only escape certain critical
4364 characters. */
6765f3e5
DJ
4365 payload_length = remote_escape_output (myaddr, todo, p, &nr_bytes,
4366 payload_size);
4367
4368 /* If not all TODO bytes fit, then we'll need another packet. Make
9b7194bc
DJ
4369 a second try to keep the end of the packet aligned. Don't do
4370 this if the packet is tiny. */
4371 if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
6765f3e5
DJ
4372 {
4373 int new_nr_bytes;
4374
4375 new_nr_bytes = (((memaddr + nr_bytes) & ~(REMOTE_ALIGN_WRITES - 1))
4376 - memaddr);
4377 if (new_nr_bytes != nr_bytes)
4378 payload_length = remote_escape_output (myaddr, new_nr_bytes,
4379 p, &nr_bytes,
4380 payload_size);
4381 }
4382
4383 p += payload_length;
a76d924d 4384 if (use_length && nr_bytes < todo)
c906108c 4385 {
802188a7 4386 /* Escape chars have filled up the buffer prematurely,
917317f4
JM
4387 and we have actually sent fewer bytes than planned.
4388 Fix-up the length field of the packet. Use the same
4389 number of characters as before. */
917317f4
JM
4390 plen += hexnumnstr (plen, (ULONGEST) nr_bytes, plenlen);
4391 *plen = ':'; /* overwrite \0 from hexnumnstr() */
c906108c 4392 }
a76d924d
DJ
4393 }
4394 else
4395 {
917317f4
JM
4396 /* Normal mode: Send target system values byte by byte, in
4397 increasing byte addresses. Each byte is encoded as a two hex
4398 value. */
2644f393 4399 nr_bytes = bin2hex (myaddr, p, todo);
aa6c0017 4400 p += 2 * nr_bytes;
c906108c 4401 }
802188a7 4402
2e9f7625 4403 putpkt_binary (rs->buf, (int) (p - rs->buf));
6d820c5c 4404 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 4405
2e9f7625 4406 if (rs->buf[0] == 'E')
917317f4
JM
4407 {
4408 /* There is no correspondance between what the remote protocol
4409 uses for errors and errno codes. We would like a cleaner way
4410 of representing errors (big enough to include errno codes,
4411 bfd_error codes, and others). But for now just return EIO. */
4412 errno = EIO;
4413 return 0;
4414 }
802188a7 4415
23860348
MS
4416 /* Return NR_BYTES, not TODO, in case escape chars caused us to send
4417 fewer bytes than we'd planned. */
917317f4 4418 return nr_bytes;
c906108c
SS
4419}
4420
a76d924d
DJ
4421/* Write memory data directly to the remote machine.
4422 This does not inform the data cache; the data cache uses this.
4423 MEMADDR is the address in the remote memory space.
4424 MYADDR is the address of the buffer in our space.
4425 LEN is the number of bytes.
4426
4427 Returns number of bytes transferred, or 0 (setting errno) for
4428 error. Only transfer a single packet. */
4429
4430int
4431remote_write_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
4432{
4433 char *packet_format = 0;
4434
4435 /* Check whether the target supports binary download. */
4436 check_binary_download (memaddr);
4437
4438 switch (remote_protocol_packets[PACKET_X].support)
4439 {
4440 case PACKET_ENABLE:
4441 packet_format = "X";
4442 break;
4443 case PACKET_DISABLE:
4444 packet_format = "M";
4445 break;
4446 case PACKET_SUPPORT_UNKNOWN:
4447 internal_error (__FILE__, __LINE__,
4448 _("remote_write_bytes: bad internal state"));
4449 default:
4450 internal_error (__FILE__, __LINE__, _("bad switch"));
4451 }
4452
4453 return remote_write_bytes_aux (packet_format,
4454 memaddr, myaddr, len, packet_format[0], 1);
4455}
4456
c906108c
SS
4457/* Read memory data directly from the remote machine.
4458 This does not use the data cache; the data cache uses this.
4459 MEMADDR is the address in the remote memory space.
4460 MYADDR is the address of the buffer in our space.
4461 LEN is the number of bytes.
4462
4463 Returns number of bytes transferred, or 0 for error. */
4464
917317f4
JM
4465/* NOTE: cagney/1999-10-18: This function (and its siblings in other
4466 remote targets) shouldn't attempt to read the entire buffer.
4467 Instead it should read a single packet worth of data and then
4468 return the byte size of that packet to the caller. The caller (its
4469 caller and its callers caller ;-) already contains code for
23860348 4470 handling partial reads. */
917317f4 4471
449092f6 4472int
cfd77fa1 4473remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 4474{
6d820c5c 4475 struct remote_state *rs = get_remote_state ();
23860348 4476 int max_buf_size; /* Max size of packet output buffer. */
c906108c
SS
4477 int origlen;
4478
b2182ed2
DJ
4479 if (len <= 0)
4480 return 0;
4481
11cf8741 4482 max_buf_size = get_memory_read_packet_size ();
6d820c5c
DJ
4483 /* The packet buffer will be large enough for the payload;
4484 get_memory_packet_size ensures this. */
c906108c
SS
4485
4486 origlen = len;
4487 while (len > 0)
4488 {
c906108c
SS
4489 char *p;
4490 int todo;
4491 int i;
4492
c5aa993b 4493 todo = min (len, max_buf_size / 2); /* num bytes that will fit */
c906108c
SS
4494
4495 /* construct "m"<memaddr>","<len>" */
2e9f7625 4496 /* sprintf (rs->buf, "m%lx,%x", (unsigned long) memaddr, todo); */
c906108c 4497 memaddr = remote_address_masked (memaddr);
2e9f7625 4498 p = rs->buf;
c906108c
SS
4499 *p++ = 'm';
4500 p += hexnumstr (p, (ULONGEST) memaddr);
4501 *p++ = ',';
4502 p += hexnumstr (p, (ULONGEST) todo);
4503 *p = '\0';
4504
2e9f7625 4505 putpkt (rs->buf);
6d820c5c 4506 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 4507
2e9f7625
DJ
4508 if (rs->buf[0] == 'E'
4509 && isxdigit (rs->buf[1]) && isxdigit (rs->buf[2])
4510 && rs->buf[3] == '\0')
c906108c 4511 {
23860348
MS
4512 /* There is no correspondance between what the remote
4513 protocol uses for errors and errno codes. We would like
4514 a cleaner way of representing errors (big enough to
4515 include errno codes, bfd_error codes, and others). But
4516 for now just return EIO. */
c906108c
SS
4517 errno = EIO;
4518 return 0;
4519 }
4520
c5aa993b
JM
4521 /* Reply describes memory byte by byte,
4522 each byte encoded as two hex characters. */
c906108c 4523
2e9f7625 4524 p = rs->buf;
30559e10 4525 if ((i = hex2bin (p, myaddr, todo)) < todo)
c906108c 4526 {
30559e10 4527 /* Reply is short. This means that we were able to read
23860348 4528 only part of what we wanted to. */
30559e10 4529 return i + (origlen - len);
c906108c
SS
4530 }
4531 myaddr += todo;
4532 memaddr += todo;
4533 len -= todo;
4534 }
4535 return origlen;
4536}
4537\f
4538/* Read or write LEN bytes from inferior memory at MEMADDR,
23860348
MS
4539 transferring to or from debugger address BUFFER. Write to inferior
4540 if SHOULD_WRITE is nonzero. Returns length of data written or
4541 read; 0 for error. TARGET is unused. */
392a587b 4542
c906108c 4543static int
961cb7b5 4544remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
0a65a603 4545 int should_write, struct mem_attrib *attrib,
29e57380 4546 struct target_ops *target)
c906108c 4547{
4930751a
C
4548 int res;
4549
4930751a 4550 if (should_write)
b2182ed2 4551 res = remote_write_bytes (mem_addr, buffer, mem_len);
4930751a 4552 else
b2182ed2 4553 res = remote_read_bytes (mem_addr, buffer, mem_len);
4930751a
C
4554
4555 return res;
c906108c
SS
4556}
4557
a76d924d
DJ
4558/* Sends a packet with content determined by the printf format string
4559 FORMAT and the remaining arguments, then gets the reply. Returns
4560 whether the packet was a success, a failure, or unknown. */
4561
4562enum packet_result
4563remote_send_printf (const char *format, ...)
4564{
4565 struct remote_state *rs = get_remote_state ();
4566 int max_size = get_remote_packet_size ();
4567
4568 va_list ap;
4569 va_start (ap, format);
4570
4571 rs->buf[0] = '\0';
4572 if (vsnprintf (rs->buf, max_size, format, ap) >= max_size)
4573 internal_error (__FILE__, __LINE__, "Too long remote packet.");
4574
4575 if (putpkt (rs->buf) < 0)
4576 error (_("Communication problem with target."));
4577
4578 rs->buf[0] = '\0';
4579 getpkt (&rs->buf, &rs->buf_size, 0);
4580
4581 return packet_check_result (rs->buf);
4582}
4583
4584static void
4585restore_remote_timeout (void *p)
4586{
4587 int value = *(int *)p;
4588 remote_timeout = value;
4589}
4590
4591/* Flash writing can take quite some time. We'll set
4592 effectively infinite timeout for flash operations.
4593 In future, we'll need to decide on a better approach. */
4594static const int remote_flash_timeout = 1000;
4595
4596static void
4597remote_flash_erase (struct target_ops *ops,
4598 ULONGEST address, LONGEST length)
4599{
4600 int saved_remote_timeout = remote_timeout;
4601 enum packet_result ret;
4602
4603 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
4604 &saved_remote_timeout);
4605 remote_timeout = remote_flash_timeout;
4606
4607 ret = remote_send_printf ("vFlashErase:%s,%s",
4608 paddr (address),
4609 phex (length, 4));
4610 switch (ret)
4611 {
4612 case PACKET_UNKNOWN:
4613 error (_("Remote target does not support flash erase"));
4614 case PACKET_ERROR:
4615 error (_("Error erasing flash with vFlashErase packet"));
4616 default:
4617 break;
4618 }
4619
4620 do_cleanups (back_to);
4621}
4622
4623static LONGEST
4624remote_flash_write (struct target_ops *ops,
4625 ULONGEST address, LONGEST length,
4626 const gdb_byte *data)
4627{
4628 int saved_remote_timeout = remote_timeout;
4629 int ret;
4630 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
4631 &saved_remote_timeout);
4632
4633 remote_timeout = remote_flash_timeout;
4634 ret = remote_write_bytes_aux ("vFlashWrite:", address, data, length, 'X', 0);
4635 do_cleanups (back_to);
4636
4637 return ret;
4638}
4639
4640static void
4641remote_flash_done (struct target_ops *ops)
4642{
4643 int saved_remote_timeout = remote_timeout;
4644 int ret;
4645 struct cleanup *back_to = make_cleanup (restore_remote_timeout,
4646 &saved_remote_timeout);
4647
4648 remote_timeout = remote_flash_timeout;
4649 ret = remote_send_printf ("vFlashDone");
4650 do_cleanups (back_to);
4651
4652 switch (ret)
4653 {
4654 case PACKET_UNKNOWN:
4655 error (_("Remote target does not support vFlashDone"));
4656 case PACKET_ERROR:
4657 error (_("Error finishing flash operation"));
4658 default:
4659 break;
4660 }
4661}
4662
c906108c 4663static void
fba45db2 4664remote_files_info (struct target_ops *ignore)
c906108c
SS
4665{
4666 puts_filtered ("Debugging a target over a serial line.\n");
4667}
4668\f
4669/* Stuff for dealing with the packets which are part of this protocol.
4670 See comment at top of file for details. */
4671
0876f84a 4672/* Read a single character from the remote end. */
c906108c
SS
4673
4674static int
fba45db2 4675readchar (int timeout)
c906108c
SS
4676{
4677 int ch;
4678
2cd58942 4679 ch = serial_readchar (remote_desc, timeout);
c906108c 4680
2acceee2 4681 if (ch >= 0)
0876f84a 4682 return ch;
2acceee2
JM
4683
4684 switch ((enum serial_rc) ch)
c906108c
SS
4685 {
4686 case SERIAL_EOF:
2acceee2 4687 target_mourn_inferior ();
8a3fe4f8 4688 error (_("Remote connection closed"));
2acceee2 4689 /* no return */
c906108c 4690 case SERIAL_ERROR:
e2e0b3e5 4691 perror_with_name (_("Remote communication error"));
2acceee2 4692 /* no return */
c906108c 4693 case SERIAL_TIMEOUT:
2acceee2 4694 break;
c906108c 4695 }
2acceee2 4696 return ch;
c906108c
SS
4697}
4698
6d820c5c
DJ
4699/* Send the command in *BUF to the remote machine, and read the reply
4700 into *BUF. Report an error if we get an error reply. Resize
4701 *BUF using xrealloc if necessary to hold the result, and update
4702 *SIZEOF_BUF. */
c906108c
SS
4703
4704static void
6d820c5c
DJ
4705remote_send (char **buf,
4706 long *sizeof_buf)
c906108c 4707{
6d820c5c 4708 putpkt (*buf);
c2d11a7d 4709 getpkt (buf, sizeof_buf, 0);
c906108c 4710
6d820c5c
DJ
4711 if ((*buf)[0] == 'E')
4712 error (_("Remote failure reply: %s"), *buf);
c906108c
SS
4713}
4714
4715/* Display a null-terminated packet on stdout, for debugging, using C
4716 string notation. */
4717
4718static void
fba45db2 4719print_packet (char *buf)
c906108c
SS
4720{
4721 puts_filtered ("\"");
43e526b9 4722 fputstr_filtered (buf, '"', gdb_stdout);
c906108c
SS
4723 puts_filtered ("\"");
4724}
4725
4726int
fba45db2 4727putpkt (char *buf)
c906108c
SS
4728{
4729 return putpkt_binary (buf, strlen (buf));
4730}
4731
4732/* Send a packet to the remote machine, with error checking. The data
23860348 4733 of the packet is in BUF. The string in BUF can be at most
ea9c271d 4734 get_remote_packet_size () - 5 to account for the $, # and checksum,
23860348
MS
4735 and for a possible /0 if we are debugging (remote_debug) and want
4736 to print the sent packet as a string. */
c906108c
SS
4737
4738static int
fba45db2 4739putpkt_binary (char *buf, int cnt)
c906108c 4740{
2d717e4f 4741 struct remote_state *rs = get_remote_state ();
c906108c
SS
4742 int i;
4743 unsigned char csum = 0;
11cf8741 4744 char *buf2 = alloca (cnt + 6);
085dd6e6 4745
c906108c
SS
4746 int ch;
4747 int tcount = 0;
4748 char *p;
4749
2d717e4f
DJ
4750 /* We're sending out a new packet. Make sure we don't look at a
4751 stale cached response. */
4752 rs->cached_wait_status = 0;
4753
c906108c
SS
4754 /* Copy the packet into buffer BUF2, encapsulating it
4755 and giving it a checksum. */
4756
c906108c
SS
4757 p = buf2;
4758 *p++ = '$';
4759
4760 for (i = 0; i < cnt; i++)
4761 {
4762 csum += buf[i];
4763 *p++ = buf[i];
4764 }
4765 *p++ = '#';
4766 *p++ = tohex ((csum >> 4) & 0xf);
4767 *p++ = tohex (csum & 0xf);
4768
4769 /* Send it over and over until we get a positive ack. */
4770
4771 while (1)
4772 {
4773 int started_error_output = 0;
4774
4775 if (remote_debug)
4776 {
4777 *p = '\0';
43e526b9
JM
4778 fprintf_unfiltered (gdb_stdlog, "Sending packet: ");
4779 fputstrn_unfiltered (buf2, p - buf2, 0, gdb_stdlog);
d4f3574e 4780 fprintf_unfiltered (gdb_stdlog, "...");
0f71a2f6 4781 gdb_flush (gdb_stdlog);
c906108c 4782 }
2cd58942 4783 if (serial_write (remote_desc, buf2, p - buf2))
e2e0b3e5 4784 perror_with_name (_("putpkt: write failed"));
c906108c 4785
23860348 4786 /* Read until either a timeout occurs (-2) or '+' is read. */
c906108c
SS
4787 while (1)
4788 {
4789 ch = readchar (remote_timeout);
4790
c5aa993b 4791 if (remote_debug)
c906108c
SS
4792 {
4793 switch (ch)
4794 {
4795 case '+':
1216fa2c 4796 case '-':
c906108c
SS
4797 case SERIAL_TIMEOUT:
4798 case '$':
4799 if (started_error_output)
4800 {
4801 putchar_unfiltered ('\n');
4802 started_error_output = 0;
4803 }
4804 }
4805 }
4806
4807 switch (ch)
4808 {
4809 case '+':
4810 if (remote_debug)
0f71a2f6 4811 fprintf_unfiltered (gdb_stdlog, "Ack\n");
c906108c 4812 return 1;
1216fa2c
AC
4813 case '-':
4814 if (remote_debug)
4815 fprintf_unfiltered (gdb_stdlog, "Nak\n");
c906108c 4816 case SERIAL_TIMEOUT:
c5aa993b 4817 tcount++;
c906108c
SS
4818 if (tcount > 3)
4819 return 0;
23860348 4820 break; /* Retransmit buffer. */
c906108c
SS
4821 case '$':
4822 {
40e3f985 4823 if (remote_debug)
2bc416ba 4824 fprintf_unfiltered (gdb_stdlog,
23860348 4825 "Packet instead of Ack, ignoring it\n");
d6f7abdf
AC
4826 /* It's probably an old response sent because an ACK
4827 was lost. Gobble up the packet and ack it so it
4828 doesn't get retransmitted when we resend this
4829 packet. */
6d820c5c 4830 skip_frame ();
d6f7abdf 4831 serial_write (remote_desc, "+", 1);
23860348 4832 continue; /* Now, go look for +. */
c906108c
SS
4833 }
4834 default:
4835 if (remote_debug)
4836 {
4837 if (!started_error_output)
4838 {
4839 started_error_output = 1;
0f71a2f6 4840 fprintf_unfiltered (gdb_stdlog, "putpkt: Junk: ");
c906108c 4841 }
0f71a2f6 4842 fputc_unfiltered (ch & 0177, gdb_stdlog);
c906108c
SS
4843 }
4844 continue;
4845 }
23860348 4846 break; /* Here to retransmit. */
c906108c
SS
4847 }
4848
4849#if 0
4850 /* This is wrong. If doing a long backtrace, the user should be
c5aa993b
JM
4851 able to get out next time we call QUIT, without anything as
4852 violent as interrupt_query. If we want to provide a way out of
4853 here without getting to the next QUIT, it should be based on
4854 hitting ^C twice as in remote_wait. */
c906108c
SS
4855 if (quit_flag)
4856 {
4857 quit_flag = 0;
4858 interrupt_query ();
4859 }
4860#endif
4861 }
4862}
4863
6d820c5c
DJ
4864/* Come here after finding the start of a frame when we expected an
4865 ack. Do our best to discard the rest of this packet. */
4866
4867static void
4868skip_frame (void)
4869{
4870 int c;
4871
4872 while (1)
4873 {
4874 c = readchar (remote_timeout);
4875 switch (c)
4876 {
4877 case SERIAL_TIMEOUT:
4878 /* Nothing we can do. */
4879 return;
4880 case '#':
4881 /* Discard the two bytes of checksum and stop. */
4882 c = readchar (remote_timeout);
4883 if (c >= 0)
4884 c = readchar (remote_timeout);
4885
4886 return;
4887 case '*': /* Run length encoding. */
4888 /* Discard the repeat count. */
4889 c = readchar (remote_timeout);
4890 if (c < 0)
4891 return;
4892 break;
4893 default:
4894 /* A regular character. */
4895 break;
4896 }
4897 }
4898}
4899
c906108c 4900/* Come here after finding the start of the frame. Collect the rest
6d820c5c
DJ
4901 into *BUF, verifying the checksum, length, and handling run-length
4902 compression. NUL terminate the buffer. If there is not enough room,
4903 expand *BUF using xrealloc.
c906108c 4904
c2d11a7d
JM
4905 Returns -1 on error, number of characters in buffer (ignoring the
4906 trailing NULL) on success. (could be extended to return one of the
23860348 4907 SERIAL status indications). */
c2d11a7d
JM
4908
4909static long
6d820c5c
DJ
4910read_frame (char **buf_p,
4911 long *sizeof_buf)
c906108c
SS
4912{
4913 unsigned char csum;
c2d11a7d 4914 long bc;
c906108c 4915 int c;
6d820c5c 4916 char *buf = *buf_p;
c906108c
SS
4917
4918 csum = 0;
c2d11a7d 4919 bc = 0;
c906108c
SS
4920
4921 while (1)
4922 {
4923 c = readchar (remote_timeout);
c906108c
SS
4924 switch (c)
4925 {
4926 case SERIAL_TIMEOUT:
4927 if (remote_debug)
0f71a2f6 4928 fputs_filtered ("Timeout in mid-packet, retrying\n", gdb_stdlog);
c2d11a7d 4929 return -1;
c906108c
SS
4930 case '$':
4931 if (remote_debug)
0f71a2f6
JM
4932 fputs_filtered ("Saw new packet start in middle of old one\n",
4933 gdb_stdlog);
23860348 4934 return -1; /* Start a new packet, count retries. */
c906108c
SS
4935 case '#':
4936 {
4937 unsigned char pktcsum;
e1b09194
AC
4938 int check_0 = 0;
4939 int check_1 = 0;
c906108c 4940
c2d11a7d 4941 buf[bc] = '\0';
c906108c 4942
e1b09194
AC
4943 check_0 = readchar (remote_timeout);
4944 if (check_0 >= 0)
4945 check_1 = readchar (remote_timeout);
802188a7 4946
e1b09194
AC
4947 if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
4948 {
4949 if (remote_debug)
2bc416ba 4950 fputs_filtered ("Timeout in checksum, retrying\n",
23860348 4951 gdb_stdlog);
e1b09194
AC
4952 return -1;
4953 }
4954 else if (check_0 < 0 || check_1 < 0)
40e3f985
FN
4955 {
4956 if (remote_debug)
2bc416ba 4957 fputs_filtered ("Communication error in checksum\n",
23860348 4958 gdb_stdlog);
40e3f985
FN
4959 return -1;
4960 }
c906108c 4961
e1b09194 4962 pktcsum = (fromhex (check_0) << 4) | fromhex (check_1);
c906108c 4963 if (csum == pktcsum)
c2d11a7d 4964 return bc;
c906108c 4965
c5aa993b 4966 if (remote_debug)
c906108c 4967 {
0f71a2f6 4968 fprintf_filtered (gdb_stdlog,
c5aa993b 4969 "Bad checksum, sentsum=0x%x, csum=0x%x, buf=",
0f71a2f6 4970 pktcsum, csum);
0876f84a 4971 fputstrn_filtered (buf, bc, 0, gdb_stdlog);
0f71a2f6 4972 fputs_filtered ("\n", gdb_stdlog);
c906108c 4973 }
c2d11a7d 4974 /* Number of characters in buffer ignoring trailing
23860348 4975 NULL. */
c2d11a7d 4976 return -1;
c906108c 4977 }
23860348 4978 case '*': /* Run length encoding. */
c2c6d25f
JM
4979 {
4980 int repeat;
4981 csum += c;
c906108c 4982
b4501125
AC
4983 c = readchar (remote_timeout);
4984 csum += c;
23860348 4985 repeat = c - ' ' + 3; /* Compute repeat count. */
c906108c 4986
23860348 4987 /* The character before ``*'' is repeated. */
c2d11a7d 4988
6d820c5c 4989 if (repeat > 0 && repeat <= 255 && bc > 0)
c2c6d25f 4990 {
6d820c5c
DJ
4991 if (bc + repeat - 1 >= *sizeof_buf - 1)
4992 {
4993 /* Make some more room in the buffer. */
4994 *sizeof_buf += repeat;
4995 *buf_p = xrealloc (*buf_p, *sizeof_buf);
4996 buf = *buf_p;
4997 }
4998
c2d11a7d
JM
4999 memset (&buf[bc], buf[bc - 1], repeat);
5000 bc += repeat;
c2c6d25f
JM
5001 continue;
5002 }
5003
c2d11a7d 5004 buf[bc] = '\0';
6d820c5c 5005 printf_filtered (_("Invalid run length encoding: %s\n"), buf);
c2d11a7d 5006 return -1;
c2c6d25f 5007 }
c906108c 5008 default:
6d820c5c 5009 if (bc >= *sizeof_buf - 1)
c906108c 5010 {
6d820c5c
DJ
5011 /* Make some more room in the buffer. */
5012 *sizeof_buf *= 2;
5013 *buf_p = xrealloc (*buf_p, *sizeof_buf);
5014 buf = *buf_p;
c906108c
SS
5015 }
5016
6d820c5c
DJ
5017 buf[bc++] = c;
5018 csum += c;
5019 continue;
c906108c
SS
5020 }
5021 }
5022}
5023
5024/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
5025 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
5026 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
5027 rather than timing out; this is used (in synchronous mode) to wait
5028 for a target that is is executing user code to stop. */
d9fcf2fb
JM
5029/* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
5030 don't have to change all the calls to getpkt to deal with the
5031 return value, because at the moment I don't know what the right
23860348 5032 thing to do it for those. */
c906108c 5033void
6d820c5c
DJ
5034getpkt (char **buf,
5035 long *sizeof_buf,
c2d11a7d 5036 int forever)
d9fcf2fb
JM
5037{
5038 int timed_out;
5039
5040 timed_out = getpkt_sane (buf, sizeof_buf, forever);
5041}
5042
5043
5044/* Read a packet from the remote machine, with error checking, and
6d820c5c
DJ
5045 store it in *BUF. Resize *BUF using xrealloc if necessary to hold
5046 the result, and update *SIZEOF_BUF. If FOREVER, wait forever
5047 rather than timing out; this is used (in synchronous mode) to wait
5048 for a target that is is executing user code to stop. If FOREVER ==
5049 0, this function is allowed to time out gracefully and return an
0876f84a
DJ
5050 indication of this to the caller. Otherwise return the number
5051 of bytes read. */
3172dc30 5052static int
6d820c5c 5053getpkt_sane (char **buf, long *sizeof_buf, int forever)
c906108c 5054{
2d717e4f 5055 struct remote_state *rs = get_remote_state ();
c906108c
SS
5056 int c;
5057 int tries;
5058 int timeout;
5059 int val;
5060
2d717e4f
DJ
5061 /* We're reading a new response. Make sure we don't look at a
5062 previously cached response. */
5063 rs->cached_wait_status = 0;
5064
6d820c5c 5065 strcpy (*buf, "timeout");
c906108c
SS
5066
5067 if (forever)
5068 {
c906108c 5069 timeout = watchdog > 0 ? watchdog : -1;
c906108c
SS
5070 }
5071
5072 else
5073 timeout = remote_timeout;
5074
5075#define MAX_TRIES 3
5076
5077 for (tries = 1; tries <= MAX_TRIES; tries++)
5078 {
5079 /* This can loop forever if the remote side sends us characters
23860348
MS
5080 continuously, but if it pauses, we'll get a zero from
5081 readchar because of timeout. Then we'll count that as a
5082 retry. */
c906108c 5083
23860348
MS
5084 /* Note that we will only wait forever prior to the start of a
5085 packet. After that, we expect characters to arrive at a
5086 brisk pace. They should show up within remote_timeout
5087 intervals. */
c906108c
SS
5088
5089 do
5090 {
5091 c = readchar (timeout);
5092
5093 if (c == SERIAL_TIMEOUT)
5094 {
23860348 5095 if (forever) /* Watchdog went off? Kill the target. */
c906108c 5096 {
2acceee2 5097 QUIT;
c906108c 5098 target_mourn_inferior ();
489eaeba 5099 error (_("Watchdog timeout has expired. Target detached."));
c906108c 5100 }
c906108c 5101 if (remote_debug)
0f71a2f6 5102 fputs_filtered ("Timed out.\n", gdb_stdlog);
c906108c
SS
5103 goto retry;
5104 }
5105 }
5106 while (c != '$');
5107
5108 /* We've found the start of a packet, now collect the data. */
5109
c2d11a7d 5110 val = read_frame (buf, sizeof_buf);
c906108c 5111
c2d11a7d 5112 if (val >= 0)
c906108c
SS
5113 {
5114 if (remote_debug)
43e526b9
JM
5115 {
5116 fprintf_unfiltered (gdb_stdlog, "Packet received: ");
0876f84a 5117 fputstrn_unfiltered (*buf, val, 0, gdb_stdlog);
43e526b9
JM
5118 fprintf_unfiltered (gdb_stdlog, "\n");
5119 }
2cd58942 5120 serial_write (remote_desc, "+", 1);
0876f84a 5121 return val;
c906108c
SS
5122 }
5123
5124 /* Try the whole thing again. */
5125 retry:
2cd58942 5126 serial_write (remote_desc, "-", 1);
c906108c
SS
5127 }
5128
2bc416ba 5129 /* We have tried hard enough, and just can't receive the packet.
23860348 5130 Give up. */
c906108c 5131
a3f17187 5132 printf_unfiltered (_("Ignoring packet error, continuing...\n"));
2cd58942 5133 serial_write (remote_desc, "+", 1);
0876f84a 5134 return -1;
c906108c
SS
5135}
5136\f
5137static void
fba45db2 5138remote_kill (void)
43ff13b4 5139{
23860348 5140 /* Unregister the file descriptor from the event loop. */
ed9a39eb 5141 if (target_is_async_p ())
2cd58942 5142 serial_async (remote_desc, NULL, 0);
43ff13b4 5143
23860348
MS
5144 /* Use catch_errors so the user can quit from gdb even when we
5145 aren't on speaking terms with the remote system. */
c5aa993b 5146 catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
43ff13b4
JM
5147
5148 /* Don't wait for it to die. I'm not really sure it matters whether
5149 we do or not. For the existing stubs, kill is a noop. */
5150 target_mourn_inferior ();
5151}
5152
c906108c 5153static void
fba45db2 5154remote_mourn (void)
c906108c
SS
5155{
5156 remote_mourn_1 (&remote_ops);
5157}
5158
c906108c
SS
5159/* Worker function for remote_mourn. */
5160static void
fba45db2 5161remote_mourn_1 (struct target_ops *target)
c906108c
SS
5162{
5163 unpush_target (target);
5164 generic_mourn_inferior ();
5165}
5166
2d717e4f
DJ
5167static void
5168extended_remote_mourn_1 (struct target_ops *target)
5169{
5170 struct remote_state *rs = get_remote_state ();
c906108c 5171
2d717e4f
DJ
5172 /* Unlike "target remote", we do not want to unpush the target; then
5173 the next time the user says "run", we won't be connected. */
5174
5175 /* Call common code to mark the inferior as not running. */
5176 generic_mourn_inferior ();
5177
5178 /* Check whether the target is running now - some remote stubs
5179 automatically restart after kill. */
5180 putpkt ("?");
5181 getpkt (&rs->buf, &rs->buf_size, 0);
5182
5183 if (rs->buf[0] == 'S' || rs->buf[0] == 'T')
5184 {
5185 /* Assume that the target has been restarted. Set inferior_ptid
5186 so that bits of core GDB realizes there's something here, e.g.,
5187 so that the user can say "kill" again. */
c0a2216e
PA
5188 inferior_ptid = remote_current_thread (magic_null_ptid);
5189 add_thread_silent (inferior_ptid);
2d717e4f
DJ
5190 }
5191 else
5192 {
5193 /* Mark this (still pushed) target as not executable until we
5194 restart it. */
5195 target_mark_exited (target);
5196 }
5197}
c906108c
SS
5198
5199static void
2d717e4f 5200extended_remote_mourn (void)
c906108c 5201{
2d717e4f
DJ
5202 extended_remote_mourn_1 (&extended_remote_ops);
5203}
c906108c 5204
2d717e4f
DJ
5205static int
5206extended_remote_run (char *args)
5207{
5208 struct remote_state *rs = get_remote_state ();
5209 char *p;
5210 int len;
c906108c 5211
2d717e4f
DJ
5212 /* If the user has disabled vRun support, or we have detected that
5213 support is not available, do not try it. */
5214 if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
5215 return -1;
424163ea 5216
2d717e4f
DJ
5217 strcpy (rs->buf, "vRun;");
5218 len = strlen (rs->buf);
c906108c 5219
2d717e4f
DJ
5220 if (strlen (remote_exec_file) * 2 + len >= get_remote_packet_size ())
5221 error (_("Remote file name too long for run packet"));
5222 len += 2 * bin2hex ((gdb_byte *) remote_exec_file, rs->buf + len, 0);
5223
5224 if (*args)
5225 {
5226 struct cleanup *back_to;
5227 int i;
5228 char **argv;
5229
5230 argv = buildargv (args);
5231 back_to = make_cleanup ((void (*) (void *)) freeargv, argv);
5232 for (i = 0; argv[i] != NULL; i++)
5233 {
5234 if (strlen (argv[i]) * 2 + 1 + len >= get_remote_packet_size ())
5235 error (_("Argument list too long for run packet"));
5236 rs->buf[len++] = ';';
5237 len += 2 * bin2hex ((gdb_byte *) argv[i], rs->buf + len, 0);
5238 }
5239 do_cleanups (back_to);
5240 }
5241
5242 rs->buf[len++] = '\0';
5243
5244 putpkt (rs->buf);
5245 getpkt (&rs->buf, &rs->buf_size, 0);
5246
5247 if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_vRun]) == PACKET_OK)
5248 {
5249 /* We have a wait response; we don't need it, though. All is well. */
5250 return 0;
5251 }
5252 else if (remote_protocol_packets[PACKET_vRun].support == PACKET_DISABLE)
5253 /* It wasn't disabled before, but it is now. */
5254 return -1;
5255 else
5256 {
5257 if (remote_exec_file[0] == '\0')
5258 error (_("Running the default executable on the remote target failed; "
5259 "try \"set remote exec-file\"?"));
5260 else
5261 error (_("Running \"%s\" on the remote target failed"),
5262 remote_exec_file);
5263 }
c906108c
SS
5264}
5265
2d717e4f
DJ
5266/* In the extended protocol we want to be able to do things like
5267 "run" and have them basically work as expected. So we need
5268 a special create_inferior function. We support changing the
5269 executable file and the command line arguments, but not the
5270 environment. */
5271
43ff13b4 5272static void
2d717e4f 5273extended_remote_create_inferior_1 (char *exec_file, char *args,
75c99385 5274 char **env, int from_tty)
43ff13b4 5275{
43ff13b4 5276 /* If running asynchronously, register the target file descriptor
23860348 5277 with the event loop. */
75c99385 5278 if (target_can_async_p ())
2acceee2 5279 target_async (inferior_event_handler, 0);
43ff13b4
JM
5280
5281 /* Now restart the remote server. */
2d717e4f
DJ
5282 if (extended_remote_run (args) == -1)
5283 {
5284 /* vRun was not supported. Fail if we need it to do what the
5285 user requested. */
5286 if (remote_exec_file[0])
5287 error (_("Remote target does not support \"set remote exec-file\""));
5288 if (args[0])
5289 error (_("Remote target does not support \"set args\" or run <ARGS>"));
43ff13b4 5290
2d717e4f
DJ
5291 /* Fall back to "R". */
5292 extended_remote_restart ();
5293 }
424163ea 5294
45280a52
DJ
5295 /* Clean up from the last time we ran, before we mark the target
5296 running again. This will mark breakpoints uninserted, and
5297 get_offsets may insert breakpoints. */
5298 init_thread_list ();
5299 init_wait_for_inferior ();
5300
2d717e4f 5301 /* Now mark the inferior as running before we do anything else. */
df7df359 5302 attach_flag = 0;
79d7f229 5303 inferior_ptid = magic_null_ptid;
c0a2216e
PA
5304
5305 add_thread_silent (inferior_ptid);
5306
75c99385 5307 target_mark_running (&extended_remote_ops);
2d717e4f
DJ
5308
5309 /* Get updated offsets, if the stub uses qOffsets. */
5310 get_offsets ();
2d717e4f
DJ
5311}
5312
5313static void
5314extended_remote_create_inferior (char *exec_file, char *args,
5315 char **env, int from_tty)
5316{
75c99385 5317 extended_remote_create_inferior_1 (exec_file, args, env, from_tty);
43ff13b4 5318}
c906108c 5319\f
c5aa993b 5320
8181d85f
DJ
5321/* Insert a breakpoint. On targets that have software breakpoint
5322 support, we ask the remote target to do the work; on targets
5323 which don't, we insert a traditional memory breakpoint. */
c906108c
SS
5324
5325static int
8181d85f 5326remote_insert_breakpoint (struct bp_target_info *bp_tgt)
c906108c 5327{
d471ea57
AC
5328 /* Try the "Z" s/w breakpoint packet if it is not already disabled.
5329 If it succeeds, then set the support to PACKET_ENABLE. If it
5330 fails, and the user has explicitly requested the Z support then
23860348 5331 report an error, otherwise, mark it disabled and go on. */
802188a7 5332
444abaca 5333 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 5334 {
7c0f6dcc 5335 CORE_ADDR addr = bp_tgt->placed_address;
4fff2411
JZ
5336 struct remote_state *rs;
5337 char *p;
7c0f6dcc 5338 int bpsize;
4fff2411
JZ
5339
5340 gdbarch_breakpoint_from_pc
7c0f6dcc 5341 (current_gdbarch, &addr, &bpsize);
4fff2411
JZ
5342
5343 rs = get_remote_state ();
5344 p = rs->buf;
802188a7 5345
96baa820
JM
5346 *(p++) = 'Z';
5347 *(p++) = '0';
5348 *(p++) = ',';
7c0f6dcc 5349 addr = (ULONGEST) remote_address_masked (addr);
8181d85f 5350 p += hexnumstr (p, addr);
7c0f6dcc 5351 sprintf (p, ",%d", bpsize);
802188a7 5352
6d820c5c
DJ
5353 putpkt (rs->buf);
5354 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5355
6d820c5c 5356 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
96baa820 5357 {
d471ea57
AC
5358 case PACKET_ERROR:
5359 return -1;
5360 case PACKET_OK:
7c0f6dcc
JL
5361 bp_tgt->placed_address = addr;
5362 bp_tgt->placed_size = bpsize;
d471ea57
AC
5363 return 0;
5364 case PACKET_UNKNOWN:
5365 break;
96baa820
JM
5366 }
5367 }
c906108c 5368
8181d85f 5369 return memory_insert_breakpoint (bp_tgt);
c906108c
SS
5370}
5371
5372static int
8181d85f 5373remote_remove_breakpoint (struct bp_target_info *bp_tgt)
c906108c 5374{
8181d85f 5375 CORE_ADDR addr = bp_tgt->placed_address;
d01949b6 5376 struct remote_state *rs = get_remote_state ();
96baa820
JM
5377 int bp_size;
5378
444abaca 5379 if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
96baa820 5380 {
6d820c5c 5381 char *p = rs->buf;
802188a7 5382
96baa820
JM
5383 *(p++) = 'z';
5384 *(p++) = '0';
5385 *(p++) = ',';
5386
8181d85f
DJ
5387 addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
5388 p += hexnumstr (p, addr);
5389 sprintf (p, ",%d", bp_tgt->placed_size);
802188a7 5390
6d820c5c
DJ
5391 putpkt (rs->buf);
5392 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5393
6d820c5c 5394 return (rs->buf[0] == 'E');
96baa820
JM
5395 }
5396
8181d85f 5397 return memory_remove_breakpoint (bp_tgt);
c906108c
SS
5398}
5399
d471ea57
AC
5400static int
5401watchpoint_to_Z_packet (int type)
5402{
5403 switch (type)
5404 {
5405 case hw_write:
bb858e6a 5406 return Z_PACKET_WRITE_WP;
d471ea57
AC
5407 break;
5408 case hw_read:
bb858e6a 5409 return Z_PACKET_READ_WP;
d471ea57
AC
5410 break;
5411 case hw_access:
bb858e6a 5412 return Z_PACKET_ACCESS_WP;
d471ea57
AC
5413 break;
5414 default:
8e65ff28 5415 internal_error (__FILE__, __LINE__,
e2e0b3e5 5416 _("hw_bp_to_z: bad watchpoint type %d"), type);
d471ea57
AC
5417 }
5418}
5419
3c3bea1c 5420static int
fba45db2 5421remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 5422{
d01949b6 5423 struct remote_state *rs = get_remote_state ();
e514a9d6 5424 char *p;
d471ea57 5425 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
96baa820 5426
444abaca 5427 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 5428 return -1;
802188a7 5429
6d820c5c
DJ
5430 sprintf (rs->buf, "Z%x,", packet);
5431 p = strchr (rs->buf, '\0');
96baa820
JM
5432 addr = remote_address_masked (addr);
5433 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 5434 sprintf (p, ",%x", len);
802188a7 5435
6d820c5c
DJ
5436 putpkt (rs->buf);
5437 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5438
6d820c5c 5439 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
5440 {
5441 case PACKET_ERROR:
5442 case PACKET_UNKNOWN:
5443 return -1;
5444 case PACKET_OK:
5445 return 0;
5446 }
8e65ff28 5447 internal_error (__FILE__, __LINE__,
e2e0b3e5 5448 _("remote_insert_watchpoint: reached end of function"));
96baa820
JM
5449}
5450
d471ea57 5451
3c3bea1c 5452static int
fba45db2 5453remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
96baa820 5454{
d01949b6 5455 struct remote_state *rs = get_remote_state ();
e514a9d6 5456 char *p;
d471ea57
AC
5457 enum Z_packet_type packet = watchpoint_to_Z_packet (type);
5458
444abaca 5459 if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
5cffb350 5460 return -1;
802188a7 5461
6d820c5c
DJ
5462 sprintf (rs->buf, "z%x,", packet);
5463 p = strchr (rs->buf, '\0');
96baa820
JM
5464 addr = remote_address_masked (addr);
5465 p += hexnumstr (p, (ULONGEST) addr);
d4f3574e 5466 sprintf (p, ",%x", len);
6d820c5c
DJ
5467 putpkt (rs->buf);
5468 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5469
6d820c5c 5470 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
d471ea57
AC
5471 {
5472 case PACKET_ERROR:
5473 case PACKET_UNKNOWN:
5474 return -1;
5475 case PACKET_OK:
5476 return 0;
5477 }
8e65ff28 5478 internal_error (__FILE__, __LINE__,
e2e0b3e5 5479 _("remote_remove_watchpoint: reached end of function"));
96baa820
JM
5480}
5481
3c3bea1c 5482
501eef12
AC
5483int remote_hw_watchpoint_limit = -1;
5484int remote_hw_breakpoint_limit = -1;
d471ea57 5485
b9362cc7 5486static int
3c3bea1c 5487remote_check_watch_resources (int type, int cnt, int ot)
96baa820 5488{
3c3bea1c
GS
5489 if (type == bp_hardware_breakpoint)
5490 {
5491 if (remote_hw_breakpoint_limit == 0)
5492 return 0;
501eef12
AC
5493 else if (remote_hw_breakpoint_limit < 0)
5494 return 1;
3c3bea1c
GS
5495 else if (cnt <= remote_hw_breakpoint_limit)
5496 return 1;
5497 }
5498 else
5499 {
5500 if (remote_hw_watchpoint_limit == 0)
5501 return 0;
501eef12
AC
5502 else if (remote_hw_watchpoint_limit < 0)
5503 return 1;
3c3bea1c
GS
5504 else if (ot)
5505 return -1;
5506 else if (cnt <= remote_hw_watchpoint_limit)
5507 return 1;
5508 }
5509 return -1;
5510}
5511
b9362cc7 5512static int
3c3bea1c
GS
5513remote_stopped_by_watchpoint (void)
5514{
5515 return remote_stopped_by_watchpoint_p;
5516}
5517
4aa7a7f5
JJ
5518static int
5519remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
3c3bea1c 5520{
4aa7a7f5 5521 int rc = 0;
d983da9c 5522 if (remote_stopped_by_watchpoint ())
4aa7a7f5
JJ
5523 {
5524 *addr_p = remote_watch_data_address;
5525 rc = 1;
5526 }
5527
5528 return rc;
3c3bea1c
GS
5529}
5530
5531
5532static int
8181d85f 5533remote_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
3c3bea1c 5534{
8181d85f 5535 CORE_ADDR addr;
4fff2411
JZ
5536 struct remote_state *rs;
5537 char *p;
802188a7 5538
c8189ed1 5539 /* The length field should be set to the size of a breakpoint
8181d85f 5540 instruction, even though we aren't inserting one ourselves. */
c8189ed1 5541
3b3b875c
UW
5542 gdbarch_breakpoint_from_pc
5543 (current_gdbarch, &bp_tgt->placed_address, &bp_tgt->placed_size);
3c3bea1c 5544
444abaca 5545 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 5546 return -1;
2bc416ba 5547
4fff2411
JZ
5548 rs = get_remote_state ();
5549 p = rs->buf;
5550
96baa820
JM
5551 *(p++) = 'Z';
5552 *(p++) = '1';
5553 *(p++) = ',';
802188a7 5554
8181d85f 5555 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 5556 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 5557 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 5558
6d820c5c
DJ
5559 putpkt (rs->buf);
5560 getpkt (&rs->buf, &rs->buf_size, 0);
96baa820 5561
6d820c5c 5562 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
5563 {
5564 case PACKET_ERROR:
5565 case PACKET_UNKNOWN:
5566 return -1;
5567 case PACKET_OK:
5568 return 0;
5569 }
8e65ff28 5570 internal_error (__FILE__, __LINE__,
e2e0b3e5 5571 _("remote_insert_hw_breakpoint: reached end of function"));
96baa820
JM
5572}
5573
d471ea57 5574
802188a7 5575static int
8181d85f 5576remote_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
96baa820 5577{
8181d85f 5578 CORE_ADDR addr;
d01949b6 5579 struct remote_state *rs = get_remote_state ();
6d820c5c 5580 char *p = rs->buf;
c8189ed1 5581
444abaca 5582 if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
5cffb350 5583 return -1;
802188a7 5584
96baa820
JM
5585 *(p++) = 'z';
5586 *(p++) = '1';
5587 *(p++) = ',';
802188a7 5588
8181d85f 5589 addr = remote_address_masked (bp_tgt->placed_address);
96baa820 5590 p += hexnumstr (p, (ULONGEST) addr);
8181d85f 5591 sprintf (p, ",%x", bp_tgt->placed_size);
96baa820 5592
6d820c5c
DJ
5593 putpkt (rs->buf);
5594 getpkt (&rs->buf, &rs->buf_size, 0);
802188a7 5595
6d820c5c 5596 switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
d471ea57
AC
5597 {
5598 case PACKET_ERROR:
5599 case PACKET_UNKNOWN:
5600 return -1;
5601 case PACKET_OK:
5602 return 0;
5603 }
8e65ff28 5604 internal_error (__FILE__, __LINE__,
e2e0b3e5 5605 _("remote_remove_hw_breakpoint: reached end of function"));
96baa820 5606}
96baa820 5607
c906108c
SS
5608/* Some targets are only capable of doing downloads, and afterwards
5609 they switch to the remote serial protocol. This function provides
5610 a clean way to get from the download target to the remote target.
5611 It's basically just a wrapper so that we don't have to expose any
5612 of the internal workings of remote.c.
5613
5614 Prior to calling this routine, you should shutdown the current
5615 target code, else you will get the "A program is being debugged
5616 already..." message. Usually a call to pop_target() suffices. */
5617
5618void
fba45db2 5619push_remote_target (char *name, int from_tty)
c906108c 5620{
a3f17187 5621 printf_filtered (_("Switching to remote protocol\n"));
c906108c
SS
5622 remote_open (name, from_tty);
5623}
5624
23860348 5625/* Table used by the crc32 function to calcuate the checksum. */
c906108c 5626
c5aa993b
JM
5627static unsigned long crc32_table[256] =
5628{0, 0};
c906108c
SS
5629
5630static unsigned long
fba45db2 5631crc32 (unsigned char *buf, int len, unsigned int crc)
c906108c 5632{
c5aa993b 5633 if (!crc32_table[1])
c906108c 5634 {
23860348 5635 /* Initialize the CRC table and the decoding table. */
c906108c
SS
5636 int i, j;
5637 unsigned int c;
5638
5639 for (i = 0; i < 256; i++)
c5aa993b
JM
5640 {
5641 for (c = i << 24, j = 8; j > 0; --j)
5642 c = c & 0x80000000 ? (c << 1) ^ 0x04c11db7 : (c << 1);
5643 crc32_table[i] = c;
5644 }
c906108c
SS
5645 }
5646
5647 while (len--)
5648 {
5649 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
5650 buf++;
5651 }
5652 return crc;
5653}
5654
5655/* compare-sections command
5656
5657 With no arguments, compares each loadable section in the exec bfd
5658 with the same memory range on the target, and reports mismatches.
5659 Useful for verifying the image on the target against the exec file.
5660 Depends on the target understanding the new "qCRC:" request. */
5661
e514a9d6
JM
5662/* FIXME: cagney/1999-10-26: This command should be broken down into a
5663 target method (target verify memory) and generic version of the
5664 actual command. This will allow other high-level code (especially
23860348 5665 generic_load()) to make use of this target functionality. */
e514a9d6 5666
c906108c 5667static void
fba45db2 5668compare_sections_command (char *args, int from_tty)
c906108c 5669{
d01949b6 5670 struct remote_state *rs = get_remote_state ();
c906108c
SS
5671 asection *s;
5672 unsigned long host_crc, target_crc;
5673 extern bfd *exec_bfd;
5674 struct cleanup *old_chain;
085dd6e6
JM
5675 char *tmp;
5676 char *sectdata;
ce359b09 5677 const char *sectname;
c906108c
SS
5678 bfd_size_type size;
5679 bfd_vma lma;
5680 int matched = 0;
5681 int mismatched = 0;
5682
5683 if (!exec_bfd)
8a3fe4f8 5684 error (_("command cannot be used without an exec file"));
c906108c
SS
5685 if (!current_target.to_shortname ||
5686 strcmp (current_target.to_shortname, "remote") != 0)
8a3fe4f8 5687 error (_("command can only be used with remote target"));
c906108c 5688
c5aa993b 5689 for (s = exec_bfd->sections; s; s = s->next)
c906108c
SS
5690 {
5691 if (!(s->flags & SEC_LOAD))
c5aa993b 5692 continue; /* skip non-loadable section */
c906108c 5693
2c500098 5694 size = bfd_get_section_size (s);
c906108c 5695 if (size == 0)
c5aa993b 5696 continue; /* skip zero-length section */
c906108c 5697
ce359b09 5698 sectname = bfd_get_section_name (exec_bfd, s);
c906108c 5699 if (args && strcmp (args, sectname) != 0)
c5aa993b 5700 continue; /* not the section selected by user */
c906108c 5701
c5aa993b 5702 matched = 1; /* do this section */
c906108c 5703 lma = s->lma;
23860348 5704 /* FIXME: assumes lma can fit into long. */
ea9c271d 5705 xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
ecbc58df 5706 (long) lma, (long) size);
6d820c5c 5707 putpkt (rs->buf);
c906108c 5708
23860348
MS
5709 /* Be clever; compute the host_crc before waiting for target
5710 reply. */
c906108c 5711 sectdata = xmalloc (size);
b8c9b27d 5712 old_chain = make_cleanup (xfree, sectdata);
c906108c
SS
5713 bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
5714 host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
5715
6d820c5c
DJ
5716 getpkt (&rs->buf, &rs->buf_size, 0);
5717 if (rs->buf[0] == 'E')
8a3fe4f8 5718 error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
823ca731 5719 sectname, paddr (lma), paddr (lma + size));
6d820c5c 5720 if (rs->buf[0] != 'C')
8a3fe4f8 5721 error (_("remote target does not support this operation"));
c906108c 5722
6d820c5c 5723 for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
c906108c
SS
5724 target_crc = target_crc * 16 + fromhex (*tmp);
5725
d4f3574e
SS
5726 printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
5727 sectname, paddr (lma), paddr (lma + size));
c906108c
SS
5728 if (host_crc == target_crc)
5729 printf_filtered ("matched.\n");
5730 else
c5aa993b
JM
5731 {
5732 printf_filtered ("MIS-MATCHED!\n");
5733 mismatched++;
5734 }
c906108c
SS
5735
5736 do_cleanups (old_chain);
5737 }
5738 if (mismatched > 0)
8a3fe4f8
AC
5739 warning (_("One or more sections of the remote executable does not match\n\
5740the loaded file\n"));
c906108c 5741 if (args && !matched)
a3f17187 5742 printf_filtered (_("No loaded section named '%s'.\n"), args);
c906108c
SS
5743}
5744
0e7f50da
UW
5745/* Write LEN bytes from WRITEBUF into OBJECT_NAME/ANNEX at OFFSET
5746 into remote target. The number of bytes written to the remote
5747 target is returned, or -1 for error. */
5748
5749static LONGEST
5750remote_write_qxfer (struct target_ops *ops, const char *object_name,
5751 const char *annex, const gdb_byte *writebuf,
5752 ULONGEST offset, LONGEST len,
5753 struct packet_config *packet)
5754{
5755 int i, buf_len;
5756 ULONGEST n;
5757 gdb_byte *wbuf;
5758 struct remote_state *rs = get_remote_state ();
5759 int max_size = get_memory_write_packet_size ();
5760
5761 if (packet->support == PACKET_DISABLE)
5762 return -1;
5763
5764 /* Insert header. */
5765 i = snprintf (rs->buf, max_size,
5766 "qXfer:%s:write:%s:%s:",
5767 object_name, annex ? annex : "",
5768 phex_nz (offset, sizeof offset));
5769 max_size -= (i + 1);
5770
5771 /* Escape as much data as fits into rs->buf. */
5772 buf_len = remote_escape_output
5773 (writebuf, len, (rs->buf + i), &max_size, max_size);
5774
5775 if (putpkt_binary (rs->buf, i + buf_len) < 0
5776 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
5777 || packet_ok (rs->buf, packet) != PACKET_OK)
5778 return -1;
5779
5780 unpack_varlen_hex (rs->buf, &n);
5781 return n;
5782}
5783
0876f84a
DJ
5784/* Read OBJECT_NAME/ANNEX from the remote target using a qXfer packet.
5785 Data at OFFSET, of up to LEN bytes, is read into READBUF; the
5786 number of bytes read is returned, or 0 for EOF, or -1 for error.
5787 The number of bytes read may be less than LEN without indicating an
5788 EOF. PACKET is checked and updated to indicate whether the remote
5789 target supports this object. */
5790
5791static LONGEST
5792remote_read_qxfer (struct target_ops *ops, const char *object_name,
5793 const char *annex,
5794 gdb_byte *readbuf, ULONGEST offset, LONGEST len,
5795 struct packet_config *packet)
5796{
5797 static char *finished_object;
5798 static char *finished_annex;
5799 static ULONGEST finished_offset;
5800
5801 struct remote_state *rs = get_remote_state ();
5802 unsigned int total = 0;
5803 LONGEST i, n, packet_len;
5804
5805 if (packet->support == PACKET_DISABLE)
5806 return -1;
5807
5808 /* Check whether we've cached an end-of-object packet that matches
5809 this request. */
5810 if (finished_object)
5811 {
5812 if (strcmp (object_name, finished_object) == 0
5813 && strcmp (annex ? annex : "", finished_annex) == 0
5814 && offset == finished_offset)
5815 return 0;
5816
5817 /* Otherwise, we're now reading something different. Discard
5818 the cache. */
5819 xfree (finished_object);
5820 xfree (finished_annex);
5821 finished_object = NULL;
5822 finished_annex = NULL;
5823 }
5824
5825 /* Request only enough to fit in a single packet. The actual data
5826 may not, since we don't know how much of it will need to be escaped;
5827 the target is free to respond with slightly less data. We subtract
5828 five to account for the response type and the protocol frame. */
5829 n = min (get_remote_packet_size () - 5, len);
5830 snprintf (rs->buf, get_remote_packet_size () - 4, "qXfer:%s:read:%s:%s,%s",
5831 object_name, annex ? annex : "",
5832 phex_nz (offset, sizeof offset),
5833 phex_nz (n, sizeof n));
5834 i = putpkt (rs->buf);
5835 if (i < 0)
5836 return -1;
5837
5838 rs->buf[0] = '\0';
5839 packet_len = getpkt_sane (&rs->buf, &rs->buf_size, 0);
5840 if (packet_len < 0 || packet_ok (rs->buf, packet) != PACKET_OK)
5841 return -1;
5842
5843 if (rs->buf[0] != 'l' && rs->buf[0] != 'm')
5844 error (_("Unknown remote qXfer reply: %s"), rs->buf);
5845
5846 /* 'm' means there is (or at least might be) more data after this
5847 batch. That does not make sense unless there's at least one byte
5848 of data in this reply. */
5849 if (rs->buf[0] == 'm' && packet_len == 1)
5850 error (_("Remote qXfer reply contained no data."));
5851
5852 /* Got some data. */
5853 i = remote_unescape_input (rs->buf + 1, packet_len - 1, readbuf, n);
5854
5855 /* 'l' is an EOF marker, possibly including a final block of data,
0e7f50da
UW
5856 or possibly empty. If we have the final block of a non-empty
5857 object, record this fact to bypass a subsequent partial read. */
5858 if (rs->buf[0] == 'l' && offset + i > 0)
0876f84a
DJ
5859 {
5860 finished_object = xstrdup (object_name);
5861 finished_annex = xstrdup (annex ? annex : "");
5862 finished_offset = offset + i;
5863 }
5864
5865 return i;
5866}
5867
1e3ff5ad 5868static LONGEST
4b8a223f 5869remote_xfer_partial (struct target_ops *ops, enum target_object object,
961cb7b5
MK
5870 const char *annex, gdb_byte *readbuf,
5871 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
c906108c 5872{
d01949b6 5873 struct remote_state *rs = get_remote_state ();
c906108c 5874 int i;
6d820c5c 5875 char *p2;
1e3ff5ad 5876 char query_type;
c906108c 5877
b2182ed2 5878 /* Handle memory using the standard memory routines. */
21e3b9b9
DJ
5879 if (object == TARGET_OBJECT_MEMORY)
5880 {
5881 int xfered;
5882 errno = 0;
5883
2d717e4f
DJ
5884 /* If the remote target is connected but not running, we should
5885 pass this request down to a lower stratum (e.g. the executable
5886 file). */
5887 if (!target_has_execution)
5888 return 0;
5889
21e3b9b9 5890 if (writebuf != NULL)
b2182ed2 5891 xfered = remote_write_bytes (offset, writebuf, len);
21e3b9b9 5892 else
b2182ed2 5893 xfered = remote_read_bytes (offset, readbuf, len);
21e3b9b9
DJ
5894
5895 if (xfered > 0)
5896 return xfered;
5897 else if (xfered == 0 && errno == 0)
5898 return 0;
5899 else
5900 return -1;
5901 }
5902
0e7f50da
UW
5903 /* Handle SPU memory using qxfer packets. */
5904 if (object == TARGET_OBJECT_SPU)
5905 {
5906 if (readbuf)
5907 return remote_read_qxfer (ops, "spu", annex, readbuf, offset, len,
5908 &remote_protocol_packets
5909 [PACKET_qXfer_spu_read]);
5910 else
5911 return remote_write_qxfer (ops, "spu", annex, writebuf, offset, len,
5912 &remote_protocol_packets
5913 [PACKET_qXfer_spu_write]);
5914 }
5915
a76d924d
DJ
5916 /* Only handle flash writes. */
5917 if (writebuf != NULL)
5918 {
5919 LONGEST xfered;
5920
5921 switch (object)
5922 {
5923 case TARGET_OBJECT_FLASH:
5924 xfered = remote_flash_write (ops, offset, len, writebuf);
5925
5926 if (xfered > 0)
5927 return xfered;
5928 else if (xfered == 0 && errno == 0)
5929 return 0;
5930 else
5931 return -1;
5932
5933 default:
5934 return -1;
5935 }
5936 }
4b8a223f 5937
1e3ff5ad
AC
5938 /* Map pre-existing objects onto letters. DO NOT do this for new
5939 objects!!! Instead specify new query packets. */
5940 switch (object)
c906108c 5941 {
1e3ff5ad
AC
5942 case TARGET_OBJECT_AVR:
5943 query_type = 'R';
5944 break;
802188a7
RM
5945
5946 case TARGET_OBJECT_AUXV:
0876f84a
DJ
5947 gdb_assert (annex == NULL);
5948 return remote_read_qxfer (ops, "auxv", annex, readbuf, offset, len,
5949 &remote_protocol_packets[PACKET_qXfer_auxv]);
802188a7 5950
23181151
DJ
5951 case TARGET_OBJECT_AVAILABLE_FEATURES:
5952 return remote_read_qxfer
5953 (ops, "features", annex, readbuf, offset, len,
5954 &remote_protocol_packets[PACKET_qXfer_features]);
5955
cfa9d6d9
DJ
5956 case TARGET_OBJECT_LIBRARIES:
5957 return remote_read_qxfer
5958 (ops, "libraries", annex, readbuf, offset, len,
5959 &remote_protocol_packets[PACKET_qXfer_libraries]);
5960
fd79ecee
DJ
5961 case TARGET_OBJECT_MEMORY_MAP:
5962 gdb_assert (annex == NULL);
5963 return remote_read_qxfer (ops, "memory-map", annex, readbuf, offset, len,
5964 &remote_protocol_packets[PACKET_qXfer_memory_map]);
5965
1e3ff5ad 5966 default:
c906108c
SS
5967 return -1;
5968 }
5969
4b8a223f 5970 /* Note: a zero OFFSET and LEN can be used to query the minimum
1e3ff5ad 5971 buffer size. */
4b8a223f 5972 if (offset == 0 && len == 0)
ea9c271d
DJ
5973 return (get_remote_packet_size ());
5974 /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
24b06219 5975 large enough let the caller deal with it. */
ea9c271d 5976 if (len < get_remote_packet_size ())
1e3ff5ad 5977 return -1;
ea9c271d 5978 len = get_remote_packet_size ();
1e3ff5ad 5979
23860348 5980 /* Except for querying the minimum buffer size, target must be open. */
c5aa993b 5981 if (!remote_desc)
8a3fe4f8 5982 error (_("remote query is only available after target open"));
c906108c 5983
1e3ff5ad 5984 gdb_assert (annex != NULL);
4b8a223f 5985 gdb_assert (readbuf != NULL);
c906108c 5986
6d820c5c 5987 p2 = rs->buf;
c906108c
SS
5988 *p2++ = 'q';
5989 *p2++ = query_type;
5990
23860348
MS
5991 /* We used one buffer char for the remote protocol q command and
5992 another for the query type. As the remote protocol encapsulation
5993 uses 4 chars plus one extra in case we are debugging
5994 (remote_debug), we have PBUFZIZ - 7 left to pack the query
5995 string. */
c906108c 5996 i = 0;
ea9c271d 5997 while (annex[i] && (i < (get_remote_packet_size () - 8)))
c906108c 5998 {
1e3ff5ad
AC
5999 /* Bad caller may have sent forbidden characters. */
6000 gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
6001 *p2++ = annex[i];
c906108c
SS
6002 i++;
6003 }
1e3ff5ad
AC
6004 *p2 = '\0';
6005 gdb_assert (annex[i] == '\0');
c906108c 6006
6d820c5c 6007 i = putpkt (rs->buf);
c5aa993b
JM
6008 if (i < 0)
6009 return i;
c906108c 6010
6d820c5c
DJ
6011 getpkt (&rs->buf, &rs->buf_size, 0);
6012 strcpy ((char *) readbuf, rs->buf);
c906108c 6013
cfd77fa1 6014 return strlen ((char *) readbuf);
c906108c
SS
6015}
6016
08388c79
DE
6017static int
6018remote_search_memory (struct target_ops* ops,
6019 CORE_ADDR start_addr, ULONGEST search_space_len,
6020 const gdb_byte *pattern, ULONGEST pattern_len,
6021 CORE_ADDR *found_addrp)
6022{
6023 struct remote_state *rs = get_remote_state ();
6024 int max_size = get_memory_write_packet_size ();
6025 struct packet_config *packet =
6026 &remote_protocol_packets[PACKET_qSearch_memory];
6027 /* number of packet bytes used to encode the pattern,
6028 this could be more than PATTERN_LEN due to escape characters */
6029 int escaped_pattern_len;
6030 /* amount of pattern that was encodable in the packet */
6031 int used_pattern_len;
6032 int i;
6033 int found;
6034 ULONGEST found_addr;
6035
6036 /* Don't go to the target if we don't have to.
6037 This is done before checking packet->support to avoid the possibility that
6038 a success for this edge case means the facility works in general. */
6039 if (pattern_len > search_space_len)
6040 return 0;
6041 if (pattern_len == 0)
6042 {
6043 *found_addrp = start_addr;
6044 return 1;
6045 }
6046
6047 /* If we already know the packet isn't supported, fall back to the simple
6048 way of searching memory. */
6049
6050 if (packet->support == PACKET_DISABLE)
6051 {
6052 /* Target doesn't provided special support, fall back and use the
6053 standard support (copy memory and do the search here). */
6054 return simple_search_memory (ops, start_addr, search_space_len,
6055 pattern, pattern_len, found_addrp);
6056 }
6057
6058 /* Insert header. */
6059 i = snprintf (rs->buf, max_size,
6060 "qSearch:memory:%s;%s;",
6061 paddr_nz (start_addr),
6062 phex_nz (search_space_len, sizeof (search_space_len)));
6063 max_size -= (i + 1);
6064
6065 /* Escape as much data as fits into rs->buf. */
6066 escaped_pattern_len =
6067 remote_escape_output (pattern, pattern_len, (rs->buf + i),
6068 &used_pattern_len, max_size);
6069
6070 /* Bail if the pattern is too large. */
6071 if (used_pattern_len != pattern_len)
10e0fa18 6072 error ("Pattern is too large to transmit to remote target.");
08388c79
DE
6073
6074 if (putpkt_binary (rs->buf, i + escaped_pattern_len) < 0
6075 || getpkt_sane (&rs->buf, &rs->buf_size, 0) < 0
6076 || packet_ok (rs->buf, packet) != PACKET_OK)
6077 {
6078 /* The request may not have worked because the command is not
6079 supported. If so, fall back to the simple way. */
6080 if (packet->support == PACKET_DISABLE)
6081 {
6082 return simple_search_memory (ops, start_addr, search_space_len,
6083 pattern, pattern_len, found_addrp);
6084 }
6085 return -1;
6086 }
6087
6088 if (rs->buf[0] == '0')
6089 found = 0;
6090 else if (rs->buf[0] == '1')
6091 {
6092 found = 1;
6093 if (rs->buf[1] != ',')
10e0fa18 6094 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
6095 unpack_varlen_hex (rs->buf + 2, &found_addr);
6096 *found_addrp = found_addr;
6097 }
6098 else
10e0fa18 6099 error (_("Unknown qSearch:memory reply: %s"), rs->buf);
08388c79
DE
6100
6101 return found;
6102}
6103
96baa820
JM
6104static void
6105remote_rcmd (char *command,
d9fcf2fb 6106 struct ui_file *outbuf)
96baa820 6107{
d01949b6 6108 struct remote_state *rs = get_remote_state ();
2e9f7625 6109 char *p = rs->buf;
96baa820
JM
6110
6111 if (!remote_desc)
8a3fe4f8 6112 error (_("remote rcmd is only available after target open"));
96baa820 6113
23860348 6114 /* Send a NULL command across as an empty command. */
7be570e7
JM
6115 if (command == NULL)
6116 command = "";
6117
23860348 6118 /* The query prefix. */
2e9f7625
DJ
6119 strcpy (rs->buf, "qRcmd,");
6120 p = strchr (rs->buf, '\0');
96baa820 6121
2e9f7625 6122 if ((strlen (rs->buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
8a3fe4f8 6123 error (_("\"monitor\" command ``%s'' is too long."), command);
96baa820 6124
23860348 6125 /* Encode the actual command. */
cfd77fa1 6126 bin2hex ((gdb_byte *) command, p, 0);
96baa820 6127
6d820c5c 6128 if (putpkt (rs->buf) < 0)
8a3fe4f8 6129 error (_("Communication problem with target."));
96baa820
JM
6130
6131 /* get/display the response */
6132 while (1)
6133 {
2e9f7625
DJ
6134 char *buf;
6135
23860348 6136 /* XXX - see also tracepoint.c:remote_get_noisy_reply(). */
2e9f7625 6137 rs->buf[0] = '\0';
6d820c5c 6138 getpkt (&rs->buf, &rs->buf_size, 0);
2e9f7625 6139 buf = rs->buf;
96baa820 6140 if (buf[0] == '\0')
8a3fe4f8 6141 error (_("Target does not support this command."));
96baa820
JM
6142 if (buf[0] == 'O' && buf[1] != 'K')
6143 {
23860348 6144 remote_console_output (buf + 1); /* 'O' message from stub. */
96baa820
JM
6145 continue;
6146 }
6147 if (strcmp (buf, "OK") == 0)
6148 break;
7be570e7
JM
6149 if (strlen (buf) == 3 && buf[0] == 'E'
6150 && isdigit (buf[1]) && isdigit (buf[2]))
6151 {
8a3fe4f8 6152 error (_("Protocol error with Rcmd"));
7be570e7 6153 }
96baa820
JM
6154 for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
6155 {
6156 char c = (fromhex (p[0]) << 4) + fromhex (p[1]);
6157 fputc_unfiltered (c, outbuf);
6158 }
6159 break;
6160 }
6161}
6162
fd79ecee
DJ
6163static VEC(mem_region_s) *
6164remote_memory_map (struct target_ops *ops)
6165{
6166 VEC(mem_region_s) *result = NULL;
6167 char *text = target_read_stralloc (&current_target,
6168 TARGET_OBJECT_MEMORY_MAP, NULL);
6169
6170 if (text)
6171 {
6172 struct cleanup *back_to = make_cleanup (xfree, text);
6173 result = parse_memory_map (text);
6174 do_cleanups (back_to);
6175 }
6176
6177 return result;
6178}
6179
c906108c 6180static void
fba45db2 6181packet_command (char *args, int from_tty)
c906108c 6182{
d01949b6 6183 struct remote_state *rs = get_remote_state ();
c906108c 6184
c5aa993b 6185 if (!remote_desc)
8a3fe4f8 6186 error (_("command can only be used with remote target"));
c906108c 6187
c5aa993b 6188 if (!args)
8a3fe4f8 6189 error (_("remote-packet command requires packet text as argument"));
c906108c
SS
6190
6191 puts_filtered ("sending: ");
6192 print_packet (args);
6193 puts_filtered ("\n");
6194 putpkt (args);
6195
6d820c5c 6196 getpkt (&rs->buf, &rs->buf_size, 0);
c906108c 6197 puts_filtered ("received: ");
6d820c5c 6198 print_packet (rs->buf);
c906108c
SS
6199 puts_filtered ("\n");
6200}
6201
6202#if 0
23860348 6203/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
c906108c 6204
a14ed312 6205static void display_thread_info (struct gdb_ext_thread_info *info);
c906108c 6206
a14ed312 6207static void threadset_test_cmd (char *cmd, int tty);
c906108c 6208
a14ed312 6209static void threadalive_test (char *cmd, int tty);
c906108c 6210
a14ed312 6211static void threadlist_test_cmd (char *cmd, int tty);
c906108c 6212
23860348 6213int get_and_display_threadinfo (threadref *ref);
c906108c 6214
a14ed312 6215static void threadinfo_test_cmd (char *cmd, int tty);
c906108c 6216
23860348 6217static int thread_display_step (threadref *ref, void *context);
c906108c 6218
a14ed312 6219static void threadlist_update_test_cmd (char *cmd, int tty);
c906108c 6220
a14ed312 6221static void init_remote_threadtests (void);
c906108c 6222
23860348 6223#define SAMPLE_THREAD 0x05060708 /* Truncated 64 bit threadid. */
c906108c
SS
6224
6225static void
fba45db2 6226threadset_test_cmd (char *cmd, int tty)
c906108c
SS
6227{
6228 int sample_thread = SAMPLE_THREAD;
6229
a3f17187 6230 printf_filtered (_("Remote threadset test\n"));
79d7f229 6231 set_general_thread (sample_thread);
c906108c
SS
6232}
6233
6234
6235static void
fba45db2 6236threadalive_test (char *cmd, int tty)
c906108c
SS
6237{
6238 int sample_thread = SAMPLE_THREAD;
79d7f229
PA
6239 int pid = ptid_get_pid (inferior_ptid);
6240 ptid_t ptid = ptid_build (pid, 0, sample_thread);
c906108c 6241
79d7f229 6242 if (remote_thread_alive (ptid))
c906108c
SS
6243 printf_filtered ("PASS: Thread alive test\n");
6244 else
6245 printf_filtered ("FAIL: Thread alive test\n");
6246}
6247
23860348 6248void output_threadid (char *title, threadref *ref);
c906108c
SS
6249
6250void
fba45db2 6251output_threadid (char *title, threadref *ref)
c906108c
SS
6252{
6253 char hexid[20];
6254
23860348 6255 pack_threadid (&hexid[0], ref); /* Convert threead id into hex. */
c906108c
SS
6256 hexid[16] = 0;
6257 printf_filtered ("%s %s\n", title, (&hexid[0]));
6258}
6259
6260static void
fba45db2 6261threadlist_test_cmd (char *cmd, int tty)
c906108c
SS
6262{
6263 int startflag = 1;
6264 threadref nextthread;
6265 int done, result_count;
6266 threadref threadlist[3];
6267
6268 printf_filtered ("Remote Threadlist test\n");
6269 if (!remote_get_threadlist (startflag, &nextthread, 3, &done,
6270 &result_count, &threadlist[0]))
6271 printf_filtered ("FAIL: threadlist test\n");
6272 else
6273 {
6274 threadref *scan = threadlist;
6275 threadref *limit = scan + result_count;
6276
6277 while (scan < limit)
6278 output_threadid (" thread ", scan++);
6279 }
6280}
6281
6282void
fba45db2 6283display_thread_info (struct gdb_ext_thread_info *info)
c906108c
SS
6284{
6285 output_threadid ("Threadid: ", &info->threadid);
6286 printf_filtered ("Name: %s\n ", info->shortname);
6287 printf_filtered ("State: %s\n", info->display);
6288 printf_filtered ("other: %s\n\n", info->more_display);
6289}
6290
6291int
fba45db2 6292get_and_display_threadinfo (threadref *ref)
c906108c
SS
6293{
6294 int result;
6295 int set;
6296 struct gdb_ext_thread_info threadinfo;
6297
6298 set = TAG_THREADID | TAG_EXISTS | TAG_THREADNAME
6299 | TAG_MOREDISPLAY | TAG_DISPLAY;
6300 if (0 != (result = remote_get_threadinfo (ref, set, &threadinfo)))
6301 display_thread_info (&threadinfo);
6302 return result;
6303}
6304
6305static void
fba45db2 6306threadinfo_test_cmd (char *cmd, int tty)
c906108c
SS
6307{
6308 int athread = SAMPLE_THREAD;
6309 threadref thread;
6310 int set;
6311
6312 int_to_threadref (&thread, athread);
6313 printf_filtered ("Remote Threadinfo test\n");
6314 if (!get_and_display_threadinfo (&thread))
6315 printf_filtered ("FAIL cannot get thread info\n");
6316}
6317
6318static int
fba45db2 6319thread_display_step (threadref *ref, void *context)
c906108c
SS
6320{
6321 /* output_threadid(" threadstep ",ref); *//* simple test */
6322 return get_and_display_threadinfo (ref);
6323}
6324
6325static void
fba45db2 6326threadlist_update_test_cmd (char *cmd, int tty)
c906108c
SS
6327{
6328 printf_filtered ("Remote Threadlist update test\n");
6329 remote_threadlist_iterator (thread_display_step, 0, CRAZY_MAX_THREADS);
6330}
6331
6332static void
6333init_remote_threadtests (void)
6334{
1bedd215
AC
6335 add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
6336Fetch and print the remote list of thread identifiers, one pkt only"));
c906108c 6337 add_com ("tinfo", class_obscure, threadinfo_test_cmd,
1bedd215 6338 _("Fetch and display info about one thread"));
c906108c 6339 add_com ("tset", class_obscure, threadset_test_cmd,
1bedd215 6340 _("Test setting to a different thread"));
c906108c 6341 add_com ("tupd", class_obscure, threadlist_update_test_cmd,
1bedd215 6342 _("Iterate through updating all remote thread info"));
c906108c 6343 add_com ("talive", class_obscure, threadalive_test,
1bedd215 6344 _(" Remote thread alive test "));
c906108c
SS
6345}
6346
6347#endif /* 0 */
6348
f3fb8c85
MS
6349/* Convert a thread ID to a string. Returns the string in a static
6350 buffer. */
6351
6352static char *
39f77062 6353remote_pid_to_str (ptid_t ptid)
f3fb8c85 6354{
79d7f229 6355 static char buf[64];
f3fb8c85 6356
79d7f229
PA
6357 if (ptid_equal (magic_null_ptid, ptid))
6358 {
6359 xsnprintf (buf, sizeof buf, "Thread <main>");
6360 return buf;
6361 }
6362 else if (ptid_get_tid (ptid) != 0)
6363 {
6364 xsnprintf (buf, sizeof buf, "Thread %ld",
6365 ptid_get_tid (ptid));
6366 return buf;
6367 }
6368
6369 return normal_pid_to_str (ptid);
f3fb8c85
MS
6370}
6371
38691318
KB
6372/* Get the address of the thread local variable in OBJFILE which is
6373 stored at OFFSET within the thread local storage for thread PTID. */
6374
6375static CORE_ADDR
6376remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
6377{
444abaca 6378 if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
38691318
KB
6379 {
6380 struct remote_state *rs = get_remote_state ();
6d820c5c 6381 char *p = rs->buf;
571dd617 6382 enum packet_result result;
38691318
KB
6383
6384 strcpy (p, "qGetTLSAddr:");
6385 p += strlen (p);
79d7f229 6386 p += hexnumstr (p, ptid_get_tid (ptid));
38691318
KB
6387 *p++ = ',';
6388 p += hexnumstr (p, offset);
6389 *p++ = ',';
6390 p += hexnumstr (p, lm);
6391 *p++ = '\0';
6392
6d820c5c
DJ
6393 putpkt (rs->buf);
6394 getpkt (&rs->buf, &rs->buf_size, 0);
6395 result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
571dd617 6396 if (result == PACKET_OK)
38691318
KB
6397 {
6398 ULONGEST result;
6399
6d820c5c 6400 unpack_varlen_hex (rs->buf, &result);
38691318
KB
6401 return result;
6402 }
571dd617 6403 else if (result == PACKET_UNKNOWN)
109c3e39
AC
6404 throw_error (TLS_GENERIC_ERROR,
6405 _("Remote target doesn't support qGetTLSAddr packet"));
38691318 6406 else
109c3e39
AC
6407 throw_error (TLS_GENERIC_ERROR,
6408 _("Remote target failed to process qGetTLSAddr request"));
38691318
KB
6409 }
6410 else
109c3e39
AC
6411 throw_error (TLS_GENERIC_ERROR,
6412 _("TLS not supported or disabled on this target"));
38691318
KB
6413 /* Not reached. */
6414 return 0;
6415}
6416
29709017
DJ
6417/* Support for inferring a target description based on the current
6418 architecture and the size of a 'g' packet. While the 'g' packet
6419 can have any size (since optional registers can be left off the
6420 end), some sizes are easily recognizable given knowledge of the
6421 approximate architecture. */
6422
6423struct remote_g_packet_guess
6424{
6425 int bytes;
6426 const struct target_desc *tdesc;
6427};
6428typedef struct remote_g_packet_guess remote_g_packet_guess_s;
6429DEF_VEC_O(remote_g_packet_guess_s);
6430
6431struct remote_g_packet_data
6432{
6433 VEC(remote_g_packet_guess_s) *guesses;
6434};
6435
6436static struct gdbarch_data *remote_g_packet_data_handle;
6437
6438static void *
6439remote_g_packet_data_init (struct obstack *obstack)
6440{
6441 return OBSTACK_ZALLOC (obstack, struct remote_g_packet_data);
6442}
6443
6444void
6445register_remote_g_packet_guess (struct gdbarch *gdbarch, int bytes,
6446 const struct target_desc *tdesc)
6447{
6448 struct remote_g_packet_data *data
6449 = gdbarch_data (gdbarch, remote_g_packet_data_handle);
6450 struct remote_g_packet_guess new_guess, *guess;
6451 int ix;
6452
6453 gdb_assert (tdesc != NULL);
6454
6455 for (ix = 0;
6456 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
6457 ix++)
6458 if (guess->bytes == bytes)
6459 internal_error (__FILE__, __LINE__,
6460 "Duplicate g packet description added for size %d",
6461 bytes);
6462
6463 new_guess.bytes = bytes;
6464 new_guess.tdesc = tdesc;
6465 VEC_safe_push (remote_g_packet_guess_s, data->guesses, &new_guess);
6466}
6467
6468static const struct target_desc *
6469remote_read_description (struct target_ops *target)
6470{
6471 struct remote_g_packet_data *data
6472 = gdbarch_data (current_gdbarch, remote_g_packet_data_handle);
6473
6474 if (!VEC_empty (remote_g_packet_guess_s, data->guesses))
6475 {
6476 struct remote_g_packet_guess *guess;
6477 int ix;
6478 int bytes = send_g_packet ();
6479
6480 for (ix = 0;
6481 VEC_iterate (remote_g_packet_guess_s, data->guesses, ix, guess);
6482 ix++)
6483 if (guess->bytes == bytes)
6484 return guess->tdesc;
6485
6486 /* We discard the g packet. A minor optimization would be to
6487 hold on to it, and fill the register cache once we have selected
6488 an architecture, but it's too tricky to do safely. */
6489 }
6490
6491 return NULL;
6492}
6493
a6b151f1
DJ
6494/* Remote file transfer support. This is host-initiated I/O, not
6495 target-initiated; for target-initiated, see remote-fileio.c. */
6496
6497/* If *LEFT is at least the length of STRING, copy STRING to
6498 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6499 decrease *LEFT. Otherwise raise an error. */
6500
6501static void
6502remote_buffer_add_string (char **buffer, int *left, char *string)
6503{
6504 int len = strlen (string);
6505
6506 if (len > *left)
6507 error (_("Packet too long for target."));
6508
6509 memcpy (*buffer, string, len);
6510 *buffer += len;
6511 *left -= len;
6512
6513 /* NUL-terminate the buffer as a convenience, if there is
6514 room. */
6515 if (*left)
6516 **buffer = '\0';
6517}
6518
6519/* If *LEFT is large enough, hex encode LEN bytes from BYTES into
6520 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6521 decrease *LEFT. Otherwise raise an error. */
6522
6523static void
6524remote_buffer_add_bytes (char **buffer, int *left, const gdb_byte *bytes,
6525 int len)
6526{
6527 if (2 * len > *left)
6528 error (_("Packet too long for target."));
6529
6530 bin2hex (bytes, *buffer, len);
6531 *buffer += 2 * len;
6532 *left -= 2 * len;
6533
6534 /* NUL-terminate the buffer as a convenience, if there is
6535 room. */
6536 if (*left)
6537 **buffer = '\0';
6538}
6539
6540/* If *LEFT is large enough, convert VALUE to hex and add it to
6541 *BUFFER, update *BUFFER to point to the new end of the buffer, and
6542 decrease *LEFT. Otherwise raise an error. */
6543
6544static void
6545remote_buffer_add_int (char **buffer, int *left, ULONGEST value)
6546{
6547 int len = hexnumlen (value);
6548
6549 if (len > *left)
6550 error (_("Packet too long for target."));
6551
6552 hexnumstr (*buffer, value);
6553 *buffer += len;
6554 *left -= len;
6555
6556 /* NUL-terminate the buffer as a convenience, if there is
6557 room. */
6558 if (*left)
6559 **buffer = '\0';
6560}
6561
6562/* Parse an I/O result packet from BUFFER. Set RETCODE to the return
6563 value, *REMOTE_ERRNO to the remote error number or zero if none
6564 was included, and *ATTACHMENT to point to the start of the annex
6565 if any. The length of the packet isn't needed here; there may
6566 be NUL bytes in BUFFER, but they will be after *ATTACHMENT.
6567
6568 Return 0 if the packet could be parsed, -1 if it could not. If
6569 -1 is returned, the other variables may not be initialized. */
6570
6571static int
6572remote_hostio_parse_result (char *buffer, int *retcode,
6573 int *remote_errno, char **attachment)
6574{
6575 char *p, *p2;
6576
6577 *remote_errno = 0;
6578 *attachment = NULL;
6579
6580 if (buffer[0] != 'F')
6581 return -1;
6582
6583 errno = 0;
6584 *retcode = strtol (&buffer[1], &p, 16);
6585 if (errno != 0 || p == &buffer[1])
6586 return -1;
6587
6588 /* Check for ",errno". */
6589 if (*p == ',')
6590 {
6591 errno = 0;
6592 *remote_errno = strtol (p + 1, &p2, 16);
6593 if (errno != 0 || p + 1 == p2)
6594 return -1;
6595 p = p2;
6596 }
6597
6598 /* Check for ";attachment". If there is no attachment, the
6599 packet should end here. */
6600 if (*p == ';')
6601 {
6602 *attachment = p + 1;
6603 return 0;
6604 }
6605 else if (*p == '\0')
6606 return 0;
6607 else
6608 return -1;
6609}
6610
6611/* Send a prepared I/O packet to the target and read its response.
6612 The prepared packet is in the global RS->BUF before this function
6613 is called, and the answer is there when we return.
6614
6615 COMMAND_BYTES is the length of the request to send, which may include
6616 binary data. WHICH_PACKET is the packet configuration to check
6617 before attempting a packet. If an error occurs, *REMOTE_ERRNO
6618 is set to the error number and -1 is returned. Otherwise the value
6619 returned by the function is returned.
6620
6621 ATTACHMENT and ATTACHMENT_LEN should be non-NULL if and only if an
6622 attachment is expected; an error will be reported if there's a
6623 mismatch. If one is found, *ATTACHMENT will be set to point into
6624 the packet buffer and *ATTACHMENT_LEN will be set to the
6625 attachment's length. */
6626
6627static int
6628remote_hostio_send_command (int command_bytes, int which_packet,
6629 int *remote_errno, char **attachment,
6630 int *attachment_len)
6631{
6632 struct remote_state *rs = get_remote_state ();
6633 int ret, bytes_read;
6634 char *attachment_tmp;
6635
6636 if (remote_protocol_packets[which_packet].support == PACKET_DISABLE)
6637 {
6638 *remote_errno = FILEIO_ENOSYS;
6639 return -1;
6640 }
6641
6642 putpkt_binary (rs->buf, command_bytes);
6643 bytes_read = getpkt_sane (&rs->buf, &rs->buf_size, 0);
6644
6645 /* If it timed out, something is wrong. Don't try to parse the
6646 buffer. */
6647 if (bytes_read < 0)
6648 {
6649 *remote_errno = FILEIO_EINVAL;
6650 return -1;
6651 }
6652
6653 switch (packet_ok (rs->buf, &remote_protocol_packets[which_packet]))
6654 {
6655 case PACKET_ERROR:
6656 *remote_errno = FILEIO_EINVAL;
6657 return -1;
6658 case PACKET_UNKNOWN:
6659 *remote_errno = FILEIO_ENOSYS;
6660 return -1;
6661 case PACKET_OK:
6662 break;
6663 }
6664
6665 if (remote_hostio_parse_result (rs->buf, &ret, remote_errno,
6666 &attachment_tmp))
6667 {
6668 *remote_errno = FILEIO_EINVAL;
6669 return -1;
6670 }
6671
6672 /* Make sure we saw an attachment if and only if we expected one. */
6673 if ((attachment_tmp == NULL && attachment != NULL)
6674 || (attachment_tmp != NULL && attachment == NULL))
6675 {
6676 *remote_errno = FILEIO_EINVAL;
6677 return -1;
6678 }
6679
6680 /* If an attachment was found, it must point into the packet buffer;
6681 work out how many bytes there were. */
6682 if (attachment_tmp != NULL)
6683 {
6684 *attachment = attachment_tmp;
6685 *attachment_len = bytes_read - (*attachment - rs->buf);
6686 }
6687
6688 return ret;
6689}
6690
6691/* Open FILENAME on the remote target, using FLAGS and MODE. Return a
6692 remote file descriptor, or -1 if an error occurs (and set
6693 *REMOTE_ERRNO). */
6694
6695static int
6696remote_hostio_open (const char *filename, int flags, int mode,
6697 int *remote_errno)
6698{
6699 struct remote_state *rs = get_remote_state ();
6700 char *p = rs->buf;
6701 int left = get_remote_packet_size () - 1;
6702
6703 remote_buffer_add_string (&p, &left, "vFile:open:");
6704
6705 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
6706 strlen (filename));
6707 remote_buffer_add_string (&p, &left, ",");
6708
6709 remote_buffer_add_int (&p, &left, flags);
6710 remote_buffer_add_string (&p, &left, ",");
6711
6712 remote_buffer_add_int (&p, &left, mode);
6713
6714 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_open,
6715 remote_errno, NULL, NULL);
6716}
6717
6718/* Write up to LEN bytes from WRITE_BUF to FD on the remote target.
6719 Return the number of bytes written, or -1 if an error occurs (and
6720 set *REMOTE_ERRNO). */
6721
6722static int
6723remote_hostio_pwrite (int fd, const gdb_byte *write_buf, int len,
6724 ULONGEST offset, int *remote_errno)
6725{
6726 struct remote_state *rs = get_remote_state ();
6727 char *p = rs->buf;
6728 int left = get_remote_packet_size ();
6729 int out_len;
6730
6731 remote_buffer_add_string (&p, &left, "vFile:pwrite:");
6732
6733 remote_buffer_add_int (&p, &left, fd);
6734 remote_buffer_add_string (&p, &left, ",");
6735
6736 remote_buffer_add_int (&p, &left, offset);
6737 remote_buffer_add_string (&p, &left, ",");
6738
6739 p += remote_escape_output (write_buf, len, p, &out_len,
6740 get_remote_packet_size () - (p - rs->buf));
6741
6742 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_pwrite,
6743 remote_errno, NULL, NULL);
6744}
6745
6746/* Read up to LEN bytes FD on the remote target into READ_BUF
6747 Return the number of bytes read, or -1 if an error occurs (and
6748 set *REMOTE_ERRNO). */
6749
6750static int
6751remote_hostio_pread (int fd, gdb_byte *read_buf, int len,
6752 ULONGEST offset, int *remote_errno)
6753{
6754 struct remote_state *rs = get_remote_state ();
6755 char *p = rs->buf;
6756 char *attachment;
6757 int left = get_remote_packet_size ();
6758 int ret, attachment_len;
6759 int read_len;
6760
6761 remote_buffer_add_string (&p, &left, "vFile:pread:");
6762
6763 remote_buffer_add_int (&p, &left, fd);
6764 remote_buffer_add_string (&p, &left, ",");
6765
6766 remote_buffer_add_int (&p, &left, len);
6767 remote_buffer_add_string (&p, &left, ",");
6768
6769 remote_buffer_add_int (&p, &left, offset);
6770
6771 ret = remote_hostio_send_command (p - rs->buf, PACKET_vFile_pread,
6772 remote_errno, &attachment,
6773 &attachment_len);
6774
6775 if (ret < 0)
6776 return ret;
6777
6778 read_len = remote_unescape_input (attachment, attachment_len,
6779 read_buf, len);
6780 if (read_len != ret)
6781 error (_("Read returned %d, but %d bytes."), ret, (int) read_len);
6782
6783 return ret;
6784}
6785
6786/* Close FD on the remote target. Return 0, or -1 if an error occurs
6787 (and set *REMOTE_ERRNO). */
6788
6789static int
6790remote_hostio_close (int fd, int *remote_errno)
6791{
6792 struct remote_state *rs = get_remote_state ();
6793 char *p = rs->buf;
6794 int left = get_remote_packet_size () - 1;
6795
6796 remote_buffer_add_string (&p, &left, "vFile:close:");
6797
6798 remote_buffer_add_int (&p, &left, fd);
6799
6800 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_close,
6801 remote_errno, NULL, NULL);
6802}
6803
6804/* Unlink FILENAME on the remote target. Return 0, or -1 if an error
6805 occurs (and set *REMOTE_ERRNO). */
6806
6807static int
6808remote_hostio_unlink (const char *filename, int *remote_errno)
6809{
6810 struct remote_state *rs = get_remote_state ();
6811 char *p = rs->buf;
6812 int left = get_remote_packet_size () - 1;
6813
6814 remote_buffer_add_string (&p, &left, "vFile:unlink:");
6815
6816 remote_buffer_add_bytes (&p, &left, (const gdb_byte *) filename,
6817 strlen (filename));
6818
6819 return remote_hostio_send_command (p - rs->buf, PACKET_vFile_unlink,
6820 remote_errno, NULL, NULL);
6821}
6822
6823static int
6824remote_fileio_errno_to_host (int errnum)
6825{
6826 switch (errnum)
6827 {
6828 case FILEIO_EPERM:
6829 return EPERM;
6830 case FILEIO_ENOENT:
6831 return ENOENT;
6832 case FILEIO_EINTR:
6833 return EINTR;
6834 case FILEIO_EIO:
6835 return EIO;
6836 case FILEIO_EBADF:
6837 return EBADF;
6838 case FILEIO_EACCES:
6839 return EACCES;
6840 case FILEIO_EFAULT:
6841 return EFAULT;
6842 case FILEIO_EBUSY:
6843 return EBUSY;
6844 case FILEIO_EEXIST:
6845 return EEXIST;
6846 case FILEIO_ENODEV:
6847 return ENODEV;
6848 case FILEIO_ENOTDIR:
6849 return ENOTDIR;
6850 case FILEIO_EISDIR:
6851 return EISDIR;
6852 case FILEIO_EINVAL:
6853 return EINVAL;
6854 case FILEIO_ENFILE:
6855 return ENFILE;
6856 case FILEIO_EMFILE:
6857 return EMFILE;
6858 case FILEIO_EFBIG:
6859 return EFBIG;
6860 case FILEIO_ENOSPC:
6861 return ENOSPC;
6862 case FILEIO_ESPIPE:
6863 return ESPIPE;
6864 case FILEIO_EROFS:
6865 return EROFS;
6866 case FILEIO_ENOSYS:
6867 return ENOSYS;
6868 case FILEIO_ENAMETOOLONG:
6869 return ENAMETOOLONG;
6870 }
6871 return -1;
6872}
6873
6874static char *
6875remote_hostio_error (int errnum)
6876{
6877 int host_error = remote_fileio_errno_to_host (errnum);
6878
6879 if (host_error == -1)
6880 error (_("Unknown remote I/O error %d"), errnum);
6881 else
6882 error (_("Remote I/O error: %s"), safe_strerror (host_error));
6883}
6884
6885static void
6886fclose_cleanup (void *file)
6887{
6888 fclose (file);
6889}
6890
6891static void
6892remote_hostio_close_cleanup (void *opaque)
6893{
6894 int fd = *(int *) opaque;
6895 int remote_errno;
6896
6897 remote_hostio_close (fd, &remote_errno);
6898}
6899
6900void
6901remote_file_put (const char *local_file, const char *remote_file, int from_tty)
6902{
6903 struct cleanup *back_to, *close_cleanup;
6904 int retcode, fd, remote_errno, bytes, io_size;
6905 FILE *file;
6906 gdb_byte *buffer;
6907 int bytes_in_buffer;
6908 int saw_eof;
6909 ULONGEST offset;
6910
6911 if (!remote_desc)
6912 error (_("command can only be used with remote target"));
6913
6914 file = fopen (local_file, "rb");
6915 if (file == NULL)
6916 perror_with_name (local_file);
6917 back_to = make_cleanup (fclose_cleanup, file);
6918
6919 fd = remote_hostio_open (remote_file, (FILEIO_O_WRONLY | FILEIO_O_CREAT
6920 | FILEIO_O_TRUNC),
6921 0700, &remote_errno);
6922 if (fd == -1)
6923 remote_hostio_error (remote_errno);
6924
6925 /* Send up to this many bytes at once. They won't all fit in the
6926 remote packet limit, so we'll transfer slightly fewer. */
6927 io_size = get_remote_packet_size ();
6928 buffer = xmalloc (io_size);
6929 make_cleanup (xfree, buffer);
6930
6931 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
6932
6933 bytes_in_buffer = 0;
6934 saw_eof = 0;
6935 offset = 0;
6936 while (bytes_in_buffer || !saw_eof)
6937 {
6938 if (!saw_eof)
6939 {
6940 bytes = fread (buffer + bytes_in_buffer, 1, io_size - bytes_in_buffer,
6941 file);
6942 if (bytes == 0)
6943 {
6944 if (ferror (file))
6945 error (_("Error reading %s."), local_file);
6946 else
6947 {
6948 /* EOF. Unless there is something still in the
6949 buffer from the last iteration, we are done. */
6950 saw_eof = 1;
6951 if (bytes_in_buffer == 0)
6952 break;
6953 }
6954 }
6955 }
6956 else
6957 bytes = 0;
6958
6959 bytes += bytes_in_buffer;
6960 bytes_in_buffer = 0;
6961
6962 retcode = remote_hostio_pwrite (fd, buffer, bytes, offset, &remote_errno);
6963
6964 if (retcode < 0)
6965 remote_hostio_error (remote_errno);
6966 else if (retcode == 0)
6967 error (_("Remote write of %d bytes returned 0!"), bytes);
6968 else if (retcode < bytes)
6969 {
6970 /* Short write. Save the rest of the read data for the next
6971 write. */
6972 bytes_in_buffer = bytes - retcode;
6973 memmove (buffer, buffer + retcode, bytes_in_buffer);
6974 }
6975
6976 offset += retcode;
6977 }
6978
6979 discard_cleanups (close_cleanup);
6980 if (remote_hostio_close (fd, &remote_errno))
6981 remote_hostio_error (remote_errno);
6982
6983 if (from_tty)
6984 printf_filtered (_("Successfully sent file \"%s\".\n"), local_file);
6985 do_cleanups (back_to);
6986}
6987
6988void
6989remote_file_get (const char *remote_file, const char *local_file, int from_tty)
6990{
6991 struct cleanup *back_to, *close_cleanup;
6992 int retcode, fd, remote_errno, bytes, io_size;
6993 FILE *file;
6994 gdb_byte *buffer;
6995 ULONGEST offset;
6996
6997 if (!remote_desc)
6998 error (_("command can only be used with remote target"));
6999
7000 fd = remote_hostio_open (remote_file, FILEIO_O_RDONLY, 0, &remote_errno);
7001 if (fd == -1)
7002 remote_hostio_error (remote_errno);
7003
7004 file = fopen (local_file, "wb");
7005 if (file == NULL)
7006 perror_with_name (local_file);
7007 back_to = make_cleanup (fclose_cleanup, file);
7008
7009 /* Send up to this many bytes at once. They won't all fit in the
7010 remote packet limit, so we'll transfer slightly fewer. */
7011 io_size = get_remote_packet_size ();
7012 buffer = xmalloc (io_size);
7013 make_cleanup (xfree, buffer);
7014
7015 close_cleanup = make_cleanup (remote_hostio_close_cleanup, &fd);
7016
7017 offset = 0;
7018 while (1)
7019 {
7020 bytes = remote_hostio_pread (fd, buffer, io_size, offset, &remote_errno);
7021 if (bytes == 0)
7022 /* Success, but no bytes, means end-of-file. */
7023 break;
7024 if (bytes == -1)
7025 remote_hostio_error (remote_errno);
7026
7027 offset += bytes;
7028
7029 bytes = fwrite (buffer, 1, bytes, file);
7030 if (bytes == 0)
7031 perror_with_name (local_file);
7032 }
7033
7034 discard_cleanups (close_cleanup);
7035 if (remote_hostio_close (fd, &remote_errno))
7036 remote_hostio_error (remote_errno);
7037
7038 if (from_tty)
7039 printf_filtered (_("Successfully fetched file \"%s\".\n"), remote_file);
7040 do_cleanups (back_to);
7041}
7042
7043void
7044remote_file_delete (const char *remote_file, int from_tty)
7045{
7046 int retcode, remote_errno;
7047
7048 if (!remote_desc)
7049 error (_("command can only be used with remote target"));
7050
7051 retcode = remote_hostio_unlink (remote_file, &remote_errno);
7052 if (retcode == -1)
7053 remote_hostio_error (remote_errno);
7054
7055 if (from_tty)
7056 printf_filtered (_("Successfully deleted file \"%s\".\n"), remote_file);
7057}
7058
7059static void
7060remote_put_command (char *args, int from_tty)
7061{
7062 struct cleanup *back_to;
7063 char **argv;
7064
7065 argv = buildargv (args);
7066 if (argv == NULL)
7067 nomem (0);
7068 back_to = make_cleanup_freeargv (argv);
7069 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
7070 error (_("Invalid parameters to remote put"));
7071
7072 remote_file_put (argv[0], argv[1], from_tty);
7073
7074 do_cleanups (back_to);
7075}
7076
7077static void
7078remote_get_command (char *args, int from_tty)
7079{
7080 struct cleanup *back_to;
7081 char **argv;
7082
7083 argv = buildargv (args);
7084 if (argv == NULL)
7085 nomem (0);
7086 back_to = make_cleanup_freeargv (argv);
7087 if (argv[0] == NULL || argv[1] == NULL || argv[2] != NULL)
7088 error (_("Invalid parameters to remote get"));
7089
7090 remote_file_get (argv[0], argv[1], from_tty);
7091
7092 do_cleanups (back_to);
7093}
7094
7095static void
7096remote_delete_command (char *args, int from_tty)
7097{
7098 struct cleanup *back_to;
7099 char **argv;
7100
7101 argv = buildargv (args);
7102 if (argv == NULL)
7103 nomem (0);
7104 back_to = make_cleanup_freeargv (argv);
7105 if (argv[0] == NULL || argv[1] != NULL)
7106 error (_("Invalid parameters to remote delete"));
7107
7108 remote_file_delete (argv[0], from_tty);
7109
7110 do_cleanups (back_to);
7111}
7112
7113static void
7114remote_command (char *args, int from_tty)
7115{
7116 help_list (remote_cmdlist, "remote ", -1, gdb_stdout);
7117}
7118
c906108c 7119static void
fba45db2 7120init_remote_ops (void)
c906108c 7121{
c5aa993b 7122 remote_ops.to_shortname = "remote";
c906108c 7123 remote_ops.to_longname = "Remote serial target in gdb-specific protocol";
c5aa993b 7124 remote_ops.to_doc =
c906108c 7125 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
0d06e24b
JM
7126Specify the serial device it is connected to\n\
7127(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).";
c5aa993b
JM
7128 remote_ops.to_open = remote_open;
7129 remote_ops.to_close = remote_close;
c906108c 7130 remote_ops.to_detach = remote_detach;
6ad8ae5c 7131 remote_ops.to_disconnect = remote_disconnect;
c5aa993b 7132 remote_ops.to_resume = remote_resume;
c906108c
SS
7133 remote_ops.to_wait = remote_wait;
7134 remote_ops.to_fetch_registers = remote_fetch_registers;
7135 remote_ops.to_store_registers = remote_store_registers;
7136 remote_ops.to_prepare_to_store = remote_prepare_to_store;
c8e73a31 7137 remote_ops.deprecated_xfer_memory = remote_xfer_memory;
c5aa993b 7138 remote_ops.to_files_info = remote_files_info;
c906108c
SS
7139 remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
7140 remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
3c3bea1c
GS
7141 remote_ops.to_stopped_by_watchpoint = remote_stopped_by_watchpoint;
7142 remote_ops.to_stopped_data_address = remote_stopped_data_address;
7143 remote_ops.to_can_use_hw_breakpoint = remote_check_watch_resources;
7144 remote_ops.to_insert_hw_breakpoint = remote_insert_hw_breakpoint;
7145 remote_ops.to_remove_hw_breakpoint = remote_remove_hw_breakpoint;
7146 remote_ops.to_insert_watchpoint = remote_insert_watchpoint;
7147 remote_ops.to_remove_watchpoint = remote_remove_watchpoint;
c5aa993b
JM
7148 remote_ops.to_kill = remote_kill;
7149 remote_ops.to_load = generic_load;
c906108c
SS
7150 remote_ops.to_mourn_inferior = remote_mourn;
7151 remote_ops.to_thread_alive = remote_thread_alive;
0f71a2f6 7152 remote_ops.to_find_new_threads = remote_threads_info;
0caabb7e 7153 remote_ops.to_pid_to_str = remote_pid_to_str;
cf759d3b 7154 remote_ops.to_extra_thread_info = remote_threads_extra_info;
c906108c 7155 remote_ops.to_stop = remote_stop;
4b8a223f 7156 remote_ops.to_xfer_partial = remote_xfer_partial;
96baa820 7157 remote_ops.to_rcmd = remote_rcmd;
49d03eab 7158 remote_ops.to_log_command = serial_log_command;
38691318 7159 remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
c906108c 7160 remote_ops.to_stratum = process_stratum;
c5aa993b
JM
7161 remote_ops.to_has_all_memory = 1;
7162 remote_ops.to_has_memory = 1;
7163 remote_ops.to_has_stack = 1;
7164 remote_ops.to_has_registers = 1;
7165 remote_ops.to_has_execution = 1;
7166 remote_ops.to_has_thread_control = tc_schedlock; /* can lock scheduler */
7167 remote_ops.to_magic = OPS_MAGIC;
fd79ecee 7168 remote_ops.to_memory_map = remote_memory_map;
a76d924d
DJ
7169 remote_ops.to_flash_erase = remote_flash_erase;
7170 remote_ops.to_flash_done = remote_flash_done;
29709017 7171 remote_ops.to_read_description = remote_read_description;
08388c79 7172 remote_ops.to_search_memory = remote_search_memory;
75c99385
PA
7173 remote_ops.to_can_async_p = remote_can_async_p;
7174 remote_ops.to_is_async_p = remote_is_async_p;
7175 remote_ops.to_async = remote_async;
7176 remote_ops.to_async_mask = remote_async_mask;
7177 remote_ops.to_terminal_inferior = remote_terminal_inferior;
7178 remote_ops.to_terminal_ours = remote_terminal_ours;
c906108c
SS
7179}
7180
7181/* Set up the extended remote vector by making a copy of the standard
7182 remote vector and adding to it. */
7183
7184static void
fba45db2 7185init_extended_remote_ops (void)
c906108c
SS
7186{
7187 extended_remote_ops = remote_ops;
7188
0f71a2f6 7189 extended_remote_ops.to_shortname = "extended-remote";
c5aa993b 7190 extended_remote_ops.to_longname =
c906108c 7191 "Extended remote serial target in gdb-specific protocol";
c5aa993b 7192 extended_remote_ops.to_doc =
c906108c 7193 "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
39237dd1
PA
7194Specify the serial device it is connected to (e.g. /dev/ttya).";
7195 extended_remote_ops.to_open = extended_remote_open;
c906108c
SS
7196 extended_remote_ops.to_create_inferior = extended_remote_create_inferior;
7197 extended_remote_ops.to_mourn_inferior = extended_remote_mourn;
2d717e4f
DJ
7198 extended_remote_ops.to_detach = extended_remote_detach;
7199 extended_remote_ops.to_attach = extended_remote_attach;
0f71a2f6
JM
7200}
7201
6426a772
JM
7202static int
7203remote_can_async_p (void)
7204{
75c99385
PA
7205 if (!remote_async_permitted)
7206 /* We only enable async when the user specifically asks for it. */
7207 return 0;
7208
23860348 7209 /* We're async whenever the serial device is. */
b84876c2 7210 return remote_async_mask_value && serial_can_async_p (remote_desc);
6426a772
JM
7211}
7212
7213static int
7214remote_is_async_p (void)
7215{
75c99385
PA
7216 if (!remote_async_permitted)
7217 /* We only enable async when the user specifically asks for it. */
7218 return 0;
7219
23860348 7220 /* We're async whenever the serial device is. */
b84876c2 7221 return remote_async_mask_value && serial_is_async_p (remote_desc);
6426a772
JM
7222}
7223
2acceee2
JM
7224/* Pass the SERIAL event on and up to the client. One day this code
7225 will be able to delay notifying the client of an event until the
23860348 7226 point where an entire packet has been received. */
2acceee2 7227
2bc416ba 7228static void (*async_client_callback) (enum inferior_event_type event_type,
23860348 7229 void *context);
2acceee2
JM
7230static void *async_client_context;
7231static serial_event_ftype remote_async_serial_handler;
7232
6426a772 7233static void
819cc324 7234remote_async_serial_handler (struct serial *scb, void *context)
6426a772 7235{
2acceee2
JM
7236 /* Don't propogate error information up to the client. Instead let
7237 the client find out about the error by querying the target. */
7238 async_client_callback (INF_REG_EVENT, async_client_context);
7239}
7240
7241static void
2bc416ba 7242remote_async (void (*callback) (enum inferior_event_type event_type,
23860348 7243 void *context), void *context)
2acceee2 7244{
b84876c2 7245 if (remote_async_mask_value == 0)
8e65ff28 7246 internal_error (__FILE__, __LINE__,
e2e0b3e5 7247 _("Calling remote_async when async is masked"));
ed9a39eb 7248
2acceee2
JM
7249 if (callback != NULL)
7250 {
2cd58942 7251 serial_async (remote_desc, remote_async_serial_handler, NULL);
2acceee2
JM
7252 async_client_callback = callback;
7253 async_client_context = context;
7254 }
7255 else
2cd58942 7256 serial_async (remote_desc, NULL, NULL);
6426a772
JM
7257}
7258
b84876c2
PA
7259static int
7260remote_async_mask (int new_mask)
7261{
7262 int curr_mask = remote_async_mask_value;
7263 remote_async_mask_value = new_mask;
7264 return curr_mask;
7265}
7266
5a2468f5 7267static void
c2d11a7d 7268set_remote_cmd (char *args, int from_tty)
5a2468f5 7269{
427c3a89 7270 help_list (remote_set_cmdlist, "set remote ", -1, gdb_stdout);
5a2468f5
JM
7271}
7272
d471ea57
AC
7273static void
7274show_remote_cmd (char *args, int from_tty)
7275{
37a105a1 7276 /* We can't just use cmd_show_list here, because we want to skip
427c3a89 7277 the redundant "show remote Z-packet" and the legacy aliases. */
37a105a1
DJ
7278 struct cleanup *showlist_chain;
7279 struct cmd_list_element *list = remote_show_cmdlist;
7280
7281 showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
7282 for (; list != NULL; list = list->next)
7283 if (strcmp (list->name, "Z-packet") == 0)
7284 continue;
427c3a89
DJ
7285 else if (list->type == not_set_cmd)
7286 /* Alias commands are exactly like the original, except they
7287 don't have the normal type. */
7288 continue;
7289 else
37a105a1
DJ
7290 {
7291 struct cleanup *option_chain
7292 = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
7293 ui_out_field_string (uiout, "name", list->name);
7294 ui_out_text (uiout, ": ");
427c3a89
DJ
7295 if (list->type == show_cmd)
7296 do_setshow_command ((char *) NULL, from_tty, list);
7297 else
7298 cmd_func (list, NULL, from_tty);
37a105a1
DJ
7299 /* Close the tuple. */
7300 do_cleanups (option_chain);
7301 }
427c3a89
DJ
7302
7303 /* Close the tuple. */
7304 do_cleanups (showlist_chain);
d471ea57 7305}
5a2468f5 7306
0f71a2f6 7307
23860348 7308/* Function to be called whenever a new objfile (shlib) is detected. */
dc8acb97
MS
7309static void
7310remote_new_objfile (struct objfile *objfile)
7311{
23860348 7312 if (remote_desc != 0) /* Have a remote connection. */
06d3b283 7313 remote_check_symbols (objfile);
dc8acb97
MS
7314}
7315
c906108c 7316void
fba45db2 7317_initialize_remote (void)
c906108c 7318{
ea9c271d
DJ
7319 struct remote_state *rs;
7320
0f71a2f6 7321 /* architecture specific data */
2bc416ba 7322 remote_gdbarch_data_handle =
23860348 7323 gdbarch_data_register_post_init (init_remote_state);
29709017
DJ
7324 remote_g_packet_data_handle =
7325 gdbarch_data_register_pre_init (remote_g_packet_data_init);
d01949b6 7326
ea9c271d
DJ
7327 /* Initialize the per-target state. At the moment there is only one
7328 of these, not one per target. Only one target is active at a
7329 time. The default buffer size is unimportant; it will be expanded
7330 whenever a larger buffer is needed. */
0b83947e 7331 rs = get_remote_state_raw ();
ea9c271d
DJ
7332 rs->buf_size = 400;
7333 rs->buf = xmalloc (rs->buf_size);
7334
c906108c
SS
7335 init_remote_ops ();
7336 add_target (&remote_ops);
7337
7338 init_extended_remote_ops ();
7339 add_target (&extended_remote_ops);
cce74817 7340
dc8acb97 7341 /* Hook into new objfile notification. */
06d3b283 7342 observer_attach_new_objfile (remote_new_objfile);
dc8acb97 7343
b803fb0f
DJ
7344 /* Set up signal handlers. */
7345 sigint_remote_token =
7346 create_async_signal_handler (async_remote_interrupt, NULL);
7347 sigint_remote_twice_token =
7348 create_async_signal_handler (inferior_event_handler_wrapper, NULL);
7349
c906108c
SS
7350#if 0
7351 init_remote_threadtests ();
7352#endif
7353
23860348 7354 /* set/show remote ... */
d471ea57 7355
1bedd215 7356 add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
5a2468f5
JM
7357Remote protocol specific variables\n\
7358Configure various remote-protocol specific variables such as\n\
1bedd215 7359the packets being used"),
cff3e48b 7360 &remote_set_cmdlist, "set remote ",
23860348 7361 0 /* allow-unknown */, &setlist);
1bedd215 7362 add_prefix_cmd ("remote", class_maintenance, show_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_show_cmdlist, "show remote ",
23860348 7367 0 /* allow-unknown */, &showlist);
5a2468f5 7368
1a966eab
AC
7369 add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
7370Compare section data on target to the exec file.\n\
7371Argument is a single section name (default: all loaded sections)."),
c906108c
SS
7372 &cmdlist);
7373
1a966eab
AC
7374 add_cmd ("packet", class_maintenance, packet_command, _("\
7375Send an arbitrary packet to a remote target.\n\
c906108c
SS
7376 maintenance packet TEXT\n\
7377If GDB is talking to an inferior via the GDB serial protocol, then\n\
7378this command sends the string TEXT to the inferior, and displays the\n\
7379response packet. GDB supplies the initial `$' character, and the\n\
1a966eab 7380terminating `#' character and checksum."),
c906108c
SS
7381 &maintenancelist);
7382
7915a72c
AC
7383 add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
7384Set whether to send break if interrupted."), _("\
7385Show whether to send break if interrupted."), _("\
7386If set, a break, instead of a cntrl-c, is sent to the remote target."),
2c5b56ce 7387 NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s. */
e707bbc2 7388 &setlist, &showlist);
c906108c 7389
23860348 7390 /* Install commands for configuring memory read/write packets. */
11cf8741 7391
1a966eab
AC
7392 add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
7393Set the maximum number of bytes per memory write packet (deprecated)."),
11cf8741 7394 &setlist);
1a966eab
AC
7395 add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
7396Show the maximum number of bytes per memory write packet (deprecated)."),
11cf8741
JM
7397 &showlist);
7398 add_cmd ("memory-write-packet-size", no_class,
1a966eab
AC
7399 set_memory_write_packet_size, _("\
7400Set the maximum number of bytes per memory-write packet.\n\
7401Specify the number of bytes in a packet or 0 (zero) for the\n\
7402default packet size. The actual limit is further reduced\n\
7403dependent on the target. Specify ``fixed'' to disable the\n\
7404further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
7405 &remote_set_cmdlist);
7406 add_cmd ("memory-read-packet-size", no_class,
1a966eab
AC
7407 set_memory_read_packet_size, _("\
7408Set the maximum number of bytes per memory-read packet.\n\
7409Specify the number of bytes in a packet or 0 (zero) for the\n\
7410default packet size. The actual limit is further reduced\n\
7411dependent on the target. Specify ``fixed'' to disable the\n\
7412further restriction and ``limit'' to enable that restriction."),
11cf8741
JM
7413 &remote_set_cmdlist);
7414 add_cmd ("memory-write-packet-size", no_class,
7415 show_memory_write_packet_size,
1a966eab 7416 _("Show the maximum number of bytes per memory-write packet."),
11cf8741
JM
7417 &remote_show_cmdlist);
7418 add_cmd ("memory-read-packet-size", no_class,
7419 show_memory_read_packet_size,
1a966eab 7420 _("Show the maximum number of bytes per memory-read packet."),
11cf8741 7421 &remote_show_cmdlist);
c906108c 7422
b3f42336 7423 add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
7915a72c
AC
7424 &remote_hw_watchpoint_limit, _("\
7425Set the maximum number of target hardware watchpoints."), _("\
7426Show the maximum number of target hardware watchpoints."), _("\
7427Specify a negative limit for unlimited."),
2c5b56ce 7428 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s. */
b3f42336
AC
7429 &remote_set_cmdlist, &remote_show_cmdlist);
7430 add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
7915a72c
AC
7431 &remote_hw_breakpoint_limit, _("\
7432Set the maximum number of target hardware breakpoints."), _("\
7433Show the maximum number of target hardware breakpoints."), _("\
7434Specify a negative limit for unlimited."),
2c5b56ce 7435 NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s. */
b3f42336 7436 &remote_set_cmdlist, &remote_show_cmdlist);
501eef12 7437
4d28ad1e
AC
7438 add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
7439 &remote_address_size, _("\
7440Set the maximum size of the address (in bits) in a memory packet."), _("\
7441Show the maximum size of the address (in bits) in a memory packet."), NULL,
7442 NULL,
7443 NULL, /* FIXME: i18n: */
7444 &setlist, &showlist);
c906108c 7445
444abaca 7446 add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
bb572ddd 7447 "X", "binary-download", 1);
0f71a2f6 7448
444abaca 7449 add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
bb572ddd 7450 "vCont", "verbose-resume", 0);
506fb367 7451
89be2091
DJ
7452 add_packet_config_cmd (&remote_protocol_packets[PACKET_QPassSignals],
7453 "QPassSignals", "pass-signals", 0);
7454
444abaca 7455 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
bb572ddd 7456 "qSymbol", "symbol-lookup", 0);
dc8acb97 7457
444abaca 7458 add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
bb572ddd 7459 "P", "set-register", 1);
d471ea57 7460
444abaca 7461 add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
bb572ddd 7462 "p", "fetch-register", 1);
b96ec7ac 7463
444abaca 7464 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
bb572ddd 7465 "Z0", "software-breakpoint", 0);
d471ea57 7466
444abaca 7467 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
bb572ddd 7468 "Z1", "hardware-breakpoint", 0);
d471ea57 7469
444abaca 7470 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
bb572ddd 7471 "Z2", "write-watchpoint", 0);
d471ea57 7472
444abaca 7473 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
bb572ddd 7474 "Z3", "read-watchpoint", 0);
d471ea57 7475
444abaca 7476 add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
bb572ddd 7477 "Z4", "access-watchpoint", 0);
d471ea57 7478
0876f84a
DJ
7479 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_auxv],
7480 "qXfer:auxv:read", "read-aux-vector", 0);
802188a7 7481
23181151
DJ
7482 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_features],
7483 "qXfer:features:read", "target-features", 0);
7484
cfa9d6d9
DJ
7485 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_libraries],
7486 "qXfer:libraries:read", "library-info", 0);
7487
fd79ecee
DJ
7488 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_memory_map],
7489 "qXfer:memory-map:read", "memory-map", 0);
7490
0e7f50da
UW
7491 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_read],
7492 "qXfer:spu:read", "read-spu-object", 0);
7493
7494 add_packet_config_cmd (&remote_protocol_packets[PACKET_qXfer_spu_write],
7495 "qXfer:spu:write", "write-spu-object", 0);
7496
444abaca 7497 add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
38691318 7498 "qGetTLSAddr", "get-thread-local-storage-address",
38691318
KB
7499 0);
7500
be2a5f71
DJ
7501 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
7502 "qSupported", "supported-packets", 0);
7503
08388c79
DE
7504 add_packet_config_cmd (&remote_protocol_packets[PACKET_qSearch_memory],
7505 "qSearch:memory", "search-memory", 0);
7506
a6b151f1
DJ
7507 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_open],
7508 "vFile:open", "hostio-open", 0);
7509
7510 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pread],
7511 "vFile:pread", "hostio-pread", 0);
7512
7513 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_pwrite],
7514 "vFile:pwrite", "hostio-pwrite", 0);
7515
7516 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_close],
7517 "vFile:close", "hostio-close", 0);
7518
7519 add_packet_config_cmd (&remote_protocol_packets[PACKET_vFile_unlink],
7520 "vFile:unlink", "hostio-unlink", 0);
7521
2d717e4f
DJ
7522 add_packet_config_cmd (&remote_protocol_packets[PACKET_vAttach],
7523 "vAttach", "attach", 0);
7524
7525 add_packet_config_cmd (&remote_protocol_packets[PACKET_vRun],
7526 "vRun", "run", 0);
7527
37a105a1
DJ
7528 /* Keep the old ``set remote Z-packet ...'' working. Each individual
7529 Z sub-packet has its own set and show commands, but users may
7530 have sets to this variable in their .gdbinit files (or in their
7531 documentation). */
e9e68a56 7532 add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
7915a72c
AC
7533 &remote_Z_packet_detect, _("\
7534Set use of remote protocol `Z' packets"), _("\
7535Show use of remote protocol `Z' packets "), _("\
3b64bf98 7536When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
7915a72c 7537packets."),
e9e68a56 7538 set_remote_protocol_Z_packet_cmd,
2c5b56ce 7539 show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s. */
e9e68a56 7540 &remote_set_cmdlist, &remote_show_cmdlist);
449092f6 7541
a6b151f1
DJ
7542 add_prefix_cmd ("remote", class_files, remote_command, _("\
7543Manipulate files on the remote system\n\
7544Transfer files to and from the remote target system."),
7545 &remote_cmdlist, "remote ",
7546 0 /* allow-unknown */, &cmdlist);
7547
7548 add_cmd ("put", class_files, remote_put_command,
7549 _("Copy a local file to the remote system."),
7550 &remote_cmdlist);
7551
7552 add_cmd ("get", class_files, remote_get_command,
7553 _("Copy a remote file to the local system."),
7554 &remote_cmdlist);
7555
7556 add_cmd ("delete", class_files, remote_delete_command,
7557 _("Delete a remote file."),
7558 &remote_cmdlist);
7559
2d717e4f
DJ
7560 remote_exec_file = xstrdup ("");
7561 add_setshow_string_noescape_cmd ("exec-file", class_files,
7562 &remote_exec_file, _("\
7563Set the remote pathname for \"run\""), _("\
7564Show the remote pathname for \"run\""), NULL, NULL, NULL,
7565 &remote_set_cmdlist, &remote_show_cmdlist);
7566
75c99385
PA
7567 add_setshow_boolean_cmd ("remote-async", class_maintenance,
7568 &remote_async_permitted_set, _("\
7569Set whether gdb controls the remote inferior in asynchronous mode."), _("\
7570Show whether gdb controls the remote inferior in asynchronous mode."), _("\
7571Tells gdb whether to control the remote inferior in asynchronous mode."),
7572 set_maintenance_remote_async_permitted,
7573 show_maintenance_remote_async_permitted,
7574 &maintenance_set_cmdlist,
7575 &maintenance_show_cmdlist);
7576
7577
449092f6
CV
7578 /* Eventually initialize fileio. See fileio.c */
7579 initialize_remote_fileio (remote_set_cmdlist, remote_show_cmdlist);
79d7f229
PA
7580
7581 /* Take advantage of the fact that the LWP field is not used, to tag
7582 special ptids with it set to != 0. */
7583 magic_null_ptid = ptid_build (0, 1, -1);
7584 not_sent_ptid = ptid_build (0, 1, -2);
7585 any_thread_ptid = ptid_build (0, 1, 0);
c906108c 7586}
This page took 1.628577 seconds and 4 git commands to generate.