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