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