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