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